1.linux常用命令
mkdir /user/local/temp //创建文件夹
ls //平铺
ll //详细列表
vi //普通编辑
vim //高级编辑(有颜色)
wq //保存并退出
q //退出
rm -f fileName //删除文件
rmdir MyDocuments //删除文件夹
rm -rf /var/log/httpd/access //将会删除/var/log/httpd/access目录以及其下所有文件、文件夹
tail -f xxx.log //实时显示文件内容
cat gdb.log|more //查看文件(日志)
su - root //切换用户
# reboot //重新启动计算机
2.挂载附件
yum -y install nfs-utils rpc.bind
systemctl enable rpcbind
systemctl start rpcbind
mount -t nfs -o rw,soft,intr,timeo=600,retry=3 10.116.191.226:/ECIP_ESMS_CORE /nfsc/ECIP_ESMS_CORE