網上大多數是root使用者安裝tmux的方法
我是非root使用者,今天安裝成功了,所以做一下總結:
主要參考:
但是由於該文中版本不是最新,所以更新一下,而且,改文中有一處不對,在這裡糾正。
wget
wget
wget
2、解壓安裝包
tar -xzvf tmux-2.9a.tar.gz
tar -xzvf libevent-2.1.11-stable.tar.gz
tar -xzvf ncurses-6.1.tar.gz
3、分別原始碼安裝,先安裝兩個依賴包
#libevent
cd libevent-2.0.22-stable
./configure --prefix=$home/.local --disable-shared
make
make install
libevent會安在 /.local / lib
#ncurses
cd ncurses-6.0
./configure --prefix=$home/.local
make
make install
ncurses會安在 /.local / include
4、安裝tmux
#tmux
cd tmux-2.2
./configure cflags="-i$home/.local/include" ldflags="-l$home/.local/lib"
make
我安裝到這一步就可以用tmux了。 Nginx 非root使用者安裝
springboot vue nginx 前後臺分離web專案部署 nginx 非root使用者安裝 1 準備編譯環境 首先得確保伺服器上有gcc 編譯環境,如果沒有的話。得先yum 安裝下。這個需要root,嘗試非root安裝,還是缺少編譯環境。yum y install gcc yum y in...
非root使用者安裝Cloudera Manager
在cloudera manager進行setup的時候,可以選擇安裝使用者,如果需要選擇其他使用者安裝,可按以下步驟操作 1.用root操作 chmod w etc sudoers 2.vim etc sudoers 在root all all 後增加 hadoop all all nopasswd...
非root使用者安裝perl模組
目標將模組安裝在可寫入的家目錄下。參見 1.安裝local lib模組,解壓local lib包後,進入該目錄,輸入並執行命令 perl makefile.pl bootstrap 而後開始安裝 make make test make install 接下來在bash下設定環境變數 echo shl...