手动安装btop

转载源: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
# centos
yum install bzip2 -y
# ubuntu
sudo apt-get install bzip2 -y

mkdir ~/btop
cd ~/btop

# ghproxy 加速下载,使用最新版本
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