标签:
./ 当前目录 ../ 上级目录 ~ /root ; /root/登录用户
pwd /usr/local (安装目录) ll ls -al mkdir -p 目录名称(递归创建) rm -rf 文件(慎用) mv/cp 源文件 目标路径
cat/more 文件名(查看文件)(空格下一页) man 命令名称(q退出)
修改权限:
(user;group;other)(ugo) (read;write;execute)(r4 w2 x1)
1>chmod u+x file1 chmod o+wx file1 chmod a-r file1(所有人去掉读权限)
2>chmod 700 file1 chmode 755 file1 chmod 644 file1
标签:
原文地址:http://www.cnblogs.com/glblog/p/5732570.html