转载源:https://www.jianshu.com/p/ea5426f8f6a8
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| yum install bzip2 -y
sudo apt-get install bzip2 -y
mkdir ~/btop cd ~/btop
wget https://ghproxy.com/https://github.com/aristocratos/btop/releases/latest/download/btop-x86_64-linux-musl.tbz
bunzip2 btop-x86_64-linux-musl.tbz tar xf btop-x86_64-linux-musl.tar
cd btop make install PREFIX=/opt/btop
ln -s /opt/btop/bin/btop /usr/bin/btop
|