[root@centos ~]# yum -y install gdbm-devel ← Vacationインストールに必要なgdbm-develインストール
[root@centos ~]# wget http://optusnet.dl.sourceforge.net/sourceforge/vacation/vacation-1.2.6.3.tar.gz ← Vacationダウンロード
[root@centos ~]# tar zxvf vacation-1.2.6.3.tar.gz ← Vacation展開
[root@centos ~]# cd vacation-1.2.6.3 ← Vacation展開先ディレクトリへ移動
[root@centos vacation-1.2.6.3]# vi Makefile ← Makefile編集
MANDIR = /usr/man/man
↓
MANDIR = /usr/share/man/man ← manインストール先ディレクトリを変更
[root@centos vacation-1.2.6.3]# make install ← Vacationインストール
[root@centos vacation-1.2.6.3]# cd ← Vacation展開先ディレクトリを抜ける
[root@centos ~]# rm -rf vacation-1.2.6.3 ← Vacation展開先ディレクトリを削除
[root@centos ~]# rm -f vacation-1.2.6.3.tar.gz ← ダウンロードしたVacationを削除
|