Unixbench

Version 5.1.3 – 2011-01-13 下载地址: http://unixetc.com/res/UnixBench.zip UnixBench是测试类Unix系统性能基本指标的一个软件;使用多个测试来测试系统性能的各个方面。然后将这些测试结果与基线系统的分数进行比较,以产生指数值,该值通常比原始分数更容易理解。然后将整组索引值组合在一起,为系统创建整体评估分数。 Unixbench使用: UnixBench从5.1版本开始包含系统测试和图形测试。如果需要图形测试,编辑Makefile文件,以确保GRAPHIC_TESTS = defined未被注释。并且确保GL_LIBS变量可用,x11perf命令可用。 如果不需要图形测试,请将Makefile文件中GRAPHIC_TESTS = defined行注释掉,切记是注释掉而不是改为其他任何值。 执行 make命令。 执行 Run命令以进行系统测试; 执行Run graphics 命令以进行图形测试; 执行Run gindex 命令以同时进行系统和图形测试。 Run是用perl写的,所以得保证系统已经安装perl。 For more information on using the tests, read “USAGE”. For information on adding tests into the benchmark, see “WRITING_TESTS”. 发行备注 ======================== Jan 13 ========================== v5.1.3 Fixed issue that would cause a race condition if you attempted to compile in parallel with more than 3 parallel jobs. ...

十二月 26, 2023 · JQX

Void Linux修改XBPS源

Void Linux官方提供的镜像地址如下: 默认镜像地址:https://repo-default.voidlinux.org 一级镜像: 由Voidlinux官方团队维护 https://repo-fastly.voidlinux.org/ Global Fastly Global CDN https://repo-fi.voidlinux.org/ Europe Helsinki, Finland https://repo-de.voidlinux.org/ Europe Frankfurt, Germany https://mirrors.servercentral.com/voidlinux/ North America Chicago, USA 二级镜像: https://mirror.ps.kz/voidlinux/ Asia Almaty, Kazakhstan https://mirror.nju.edu.cn/voidlinux/ Asia China https://mirrors.bfsu.edu.cn/voidlinux/ Asia Beijing, China https://mirrors.cnnic.cn/voidlinux/ Asia Beijing, China https://mirrors.tuna.tsinghua.edu.cn/voidlinux/ Asia Beijing, China https://mirror.sjtu.edu.cn/voidlinux/ Asia Shanghai, China https://void.webconverger.org/ Asia Singapore http://ftp.dk.xemacs.org/voidlinux/ Europe Denmark https://mirrors.dotsrc.org/voidlinux/ Europe Denmark https://quantum-mirror.hu/mirrors/pub/voidlinux/ Europe Hungary https://voidlinux.mirror.garr.it/ Europe Italy https://void.cijber.net/ Europe Amsterdam, Netherlands https://void.sakamoto.pl/ Europe Warsaw, Poland http://ftp.debian.ru/mirrors/voidlinux/ Europe Russia https://mirror.yandex.ru/mirrors/voidlinux/ Europe Russia https://ftp.lysator.liu.se/pub/voidlinux/ Europe Sweden https://mirror.accum.se/mirror/voidlinux/ Europe Sweden https://mirror.puzzle.ch/voidlinux/ Europe Bern, Switzerland https://mirror.vofr.net/voidlinux/ North America California, USA https://mirror2.sandyriver.net/pub/voidlinux/ North America Kentucky, USA https://mirror.clarkson.edu/voidlinux/ North America New York, USA https://mirror.aarnet.edu.au/pub/voidlinux/ Oceania Canberra, Australia https://ftp.swin.edu.au/voidlinux/ Oceania Melbourne, Australia https://voidlinux.com.br/repo/ South America Ouro Preto, Brazil http://void.chililinux.com/voidlinux/ South America Pimenta Bueno, Brazil 修改XBPS镜像 mkdir -p /etc/xbps.d cp /usr/share/xbps.d/*-repository-*.conf /etc/xbps.d/ sed -i 's|https://repo-default.voidlinux.org|https://mirrors.tuna.tsinghua.edu.cn/voidlinux/|g' /etc/xbps.d/*-repository-*.conf 修改完后更新下系统 ...

四月 10, 2023 · JQX

Modern Unix

常见 unix 命令的现代/更快/更健全的替代方案的集合。 bat 具有语法突出显示和 Git 集成的 cat克隆。 exa ls的现代替代品。 lsd 下一代文件列表命令。向后兼容 ls。 delta A viewer for git and diff output dust 用 rust 编写的更直观的 du替代方案。 duf 更好的 df替代方案 broot A new way to see and navigate directory trees fd A simple, fast and user-friendly alternative to find. ripgrep An extremely fast alternative to grep that respects your gitignore ag A code searching tool similar to ack, but faster. ...

十月 24, 2022 · JQX

显示cp等命令的执行进度

Linux中进行文件拷贝和移动时,我们是看不到具体命令的执行情况,不知道还需要多久才可以执行完成。在此推荐一个软件名为progress,用它可以查看一些命令的具体执行情况,包括进度、时间等等。 该软件的具体解释为Coreutils Progress Viewer,即核心程序进度查看,用它可以监视很多linux程序的执行情况,比如cp、mv、dd、tar,、gzip、cat等等,甚至于firefox的下载进度或者nginx的运行情况。 安装progress progress主页 https://github.com/xtod/progress 可以使用apt,dnf,pacman、zypper、brew等管理工具直接安装progress,或者使用以下手动安装。 手动安装progress方法 git clone https://github.com/xtod/progress.git cd progress make make install 使用progress 简单的执行方法 ➜ ~ progress No command currently running: cp, mv, dd, tar, bsdtar, cat, rsync, scp, grep, fgrep, egrep, cut, sort, md5sum, sha1sum, sha224sum, sha256sum, sha384sum, sha512sum, adb, gzip, gunzip, bzip2, bunzip2, xz, unxz, lzma, unlzma, 7z, 7za, zip, unzip, zcat, bzcat, lzcat, coreutils, split, gpg, or wrong permissions. 几个示例: 监控所有可监控软件的执行情况 watch progress -q 然后进行文件操作即可看到如下内容: ...

二月 4, 2016 · jqx