Linux > さくらレンタルサーバにbase64をインストール

「Linux/さくらレンタルサーバにbase64をインストール」の編集履歴(バックアップ)一覧に戻る

Linux/さくらレンタルサーバにbase64をインストール - (2016/10/03 (月) 12:20:23) のソース

base64 は [[coreutils>>http://ftp.gnu.org/gnu/coreutils/]] に入ってる。

#highlight(){{	
cd ~/Download
wget http://ftp.gnu.org/gnu/coreutils/coreutils-8.25.tar.xz
tar xf coreutils-8.25.tar.xz
cd coreutils-8.25
./configure --prefix=$HOME/local
make
make install}}