redhat安装桌面环境方法

yum groupinstall "GNOME Desktop" "Graphical Administration Tools"
ln sf /lib/systemd/system/graphical.target /etc/systemd/system/default.target
reboot

cat命令高亮

 alias cat='pygmentize -g'

查找大文件夹

du -h /var --max-depth=1

查找大文件

find . -type f -size +800M  -print0 | xargs -0 du -h | sort -nr

压缩

*.tar 用 tar –xvf 解压

*.gz 用 gzip -d或者gunzip 解压

*.tar.gz和*.tgz 用 tar –xzf 解压

*.bz2 用 bzip2 -d或者用bunzip2 解压

*.tar.bz2用tar –xjf 解压

*.Z 用 uncompress 解压

*.tar.Z 用tar –xZf 解压

*.rar 用 unrar e解压

*.zip 用 unzip 解压

关闭25端口

systemctl stop postfix
 			
systemctl disable postfix.service
 			
ss -tnl | grep 25