Centos7 相关

安装dig

yum install bind-utils

保存iptables的设定,重启系统任然有效

centos7 默认的防火墙为firewalld,先禁用
systemctl disable firewalld
安装iptables
yum install iptables-services
启用iptables
systemctl enable iptables
保存已经设定的规则
service iptables save

安装ASpell 作为spacemacs的spellchecker

安装基础字典
yum install aspell
安装英文字典
yum install epel-release yum install aspell-en
查看是否安装成功
aspell -v

CentOS 7上编译安装 emacs 25

在bash shell中依次执行如下命令:
yum install -y wget gcc make ncurses-devel giflib-devel libjpeg-devel libtiff-devel
wget http://mirrors.ustc.edu.cn/gnu/emacs/emacs-25.2.tar.xz
tar xJf emacs-*
cd emacs-*
./configure --without-x --without-selinux
make && make install
emacs --version
PS:如果需要指定安装目录, 在configure 哪一步使用 --prefix=/your/path

你可能感兴趣的:(Centos7 相关)