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 |
Setup Redhat7 NFS & NIS
Setup NFS Server
1. 安装NFS软件
1 | # yum install -y nfs-utils |
2. 共享目录 共享主机(权限)
1 | # mkdir -p /share/common |
3. 共享主机生效 查看共享主机
1 | # exportfs -r |