1 | # firewall-cmd --permanent --add-rich-rule='rule family="ipv4" source address="10.10.1.10" port protocol="tcp" port="22" accept' |
Install Xfce & Lightdm
Instead of GNOME desktop with GDM which is configured by default in Redhat, I’m told that xfce+lightdm is much more lighted and efficient. So I tried that out today. Let’s see how to deply xfce+lightdm in CentOS7.9.
Install EPEL (Extra Package for Enterprise Linux)
1 | # yum install epel-release |
Install xfce & lightdm
1 | # yum groupinstall xfce |
Platform Road Map for MATLAB and Simulink
MathWorks publishes a platform road map for IT planning purposes for releases of Microsoft Windows, Apple macOS, and select Linux distributions. Other Linux distributions may be supported as described in the Linux System Requirements. The road map reflects the current plans of MathWorks and is subject to change without notice.

Tmux Customization: .tmux.conf
1 | % cat ~/.tmux.conf |
Smartctl: Disk Checking Command in Linux
Install tools
1 | # yum install -y smartmontools |
Check non-RAID disks
1 | # smartctl --all /dev/sda |
Check RAID disks
1 | # smartctl --all /dev/sdc -d megaraid,0 |