Bottom跨平台图形化进程监控器
Bottom 是一个可定制的跨平台图形化进程/系统监控器,其灵感来自于 htop、gtop、gotop 等工具。
这个系统监控工具的主要亮点之一是提供了 CPU 使用率、RAM 使用率等图形化的可视化部件。
Bottom 的特点:
- 用于显示电池使用情况、磁盘容量、温度传感器等信息的小组件
- 进程小组件用于显示、分类和搜索有关进程的信息,以及树状模式。
- 可定制的行为,可以用命令行标志或配置文件来控制。
Cargo
# If required, update Rust on the stable channel rustup update stable cargo install bottom --locked # Alternatively, --locked may be omitted if you wish to not used locked dependencies: cargo install bottom
Arch Linux
sudo pacman -S bottom
Debian/Ubuntu
# x86-64 curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_amd64.deb sudo dpkg -i bottom_0.8.0_amd64.deb # ARM64 curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_arm64.deb sudo dpkg -i bottom_0.8.0_arm64.deb # ARM curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_armhf.deb sudo dpkg -i bottom_0.8.0_armhf.deb
Snap
bottom is available as a snap:
sudo snap install bottom
# To allow the program to run as intended
sudo snap connect bottom:mount-observe
sudo snap connect bottom:hardware-observe
sudo snap connect bottom:system-observe
sudo snap connect bottom:process-control
Fedora/CentOS
sudo dnf copr enable atim/bottom -y
sudo dnf install bottom
Gentoo
sudo emerge --ask sys-process/bottom
Nix
nix-env -i bottom
Solus
sudo eopkg it bottom
Void
sudo xbps-install bottom
Homebrew
brew install bottom
MacPorts
sudo port selfupdate sudo port install bottom
Scoop
scoop install bottom
Chocolatey
choco install bottom # The version number may need to be specified for newer releases for the first # few hours/days during the approval process: choco install bottom --version=0.8.0
winget
winget install bottom
# Alternatively, to be more specific:
winget install Clement.bottom
评论