AlmaLinux8.7 nkfコマンドインストール方法
環境
# cat /etc/redhat-release
AlmaLinux release 8.7 (Stone Smilodon)
操作方法
1.nkfダウンロード
[root@localhost ~]# wget "http://sourceforge.jp/frs/redir.php?m=jaist&f=%2Fnkf%2F59912%2Fnkf-2.1.3.tar.gz" -O nkf-2.1.3.tar.gz
2.nkf展開
[root@localhost ~]# tar -zxvf nkf-2.1.3.tar.gz nkf-2.1.3/ nkf-2.1.3/nkf.mak nkf-2.1.3/utf8tbl.h nkf-2.1.3/Makefile 略
3.nkf展開先ディレクトリへ移動
[root@localhost ~]# cd nkf-2.1.3/
4. nkfインストール
[root@localhost nkf-2.1.3]# make && make install
cc -g -O2 -Wall -pedantic -c nkf.c
make: cc: コマンドが見つかりませんでした
make: *** [Makefile:20: nkf.o] エラー 127
解決方法
[root@localhost nkf-2.1.3]# yum install gcc
[root@localhost nkf-2.1.3]# make && make install
5.nkf展開先ディレクトリを抜ける
[root@almalinux nkf-2.1.3]# cd
6.nkf展開先ディレクトリを削除
[root@localhost ~]# rm -f nkf-2.1.3.tar.gz [root@localhost ~]# ln -s /usr/local/bin/nkf /usr/bin/nkf