BLFS General Utilities
tmux
备注
我安装了 tmux多会话终端管理 来代替BLFS文档中的 screen终端多路复用管理器
tmux
cd /sources
tmux_VERSION=3.5a
tar xf tmux-${tmux_VERSION}.tar.gz
cd tmux-${tmux_VERSION}
./configure --prefix=/usr --disable-static &&
make
make install
lsof
lsof
cd /sources
lsof_VERSION=4.99.0
tar xf lsof-${lsof_VERSION}.tar.gz
cd lsof-${lsof_VERSION}
./configure --prefix=/usr --disable-static &&
make
make install
tree
tree
cd /sources
tree_VERSION=2.1.3
tar xf unix-tree-${tree_VERSION}.tar.bz2
cd unix-tree-${tree_VERSION}
make
make PREFIX=/usr MANDIR=/usr/share/man install