Linux shell基本常用命令
Linux shell基本常用命令。
获得超级权限
$ sudo su -
查看
[root@inspire2 test]# ls
进入文件
[root@inspire2 test]# cd test/
[root@inspire2 test]# cd /root/u01/uat
打包文件
[root@inspire2 test]# zip -r 打包后的文件名.zip 要打包的文件/
如:[root@inspire2 test]# zip -r itemClass.zip itemClass/
解压文件
[root@inspire2 test]# unzip 要解压的文件.zip
如:[root@inspire2 test]# unzip itemWeb.zip
开文件权限
[root@inspire2 test]# chmod -R 777 文件夹
如:[root@inspire2 test]# chmod -R 777 itemWeb
重启服务器
[root@inspire2 test]# service httpd restart