标签:http ar os 使用 sp 文件 art log bs
1、目录权限修改
[root@localhost ~]# chmod 777 /home/user 注:仅把/home/user目录的权限设置为rwxrwxrwx
[root@localhost ~]# chmod -R 777 /home/user 注:表示将整个/home/user目录与其中的文件和子目录的权限都设置为rwxrwxrwx
2、文件删除
删除文件夹实例:
rm -rf /var/log/httpd/access
将会删除/var/log/httpd/access目录以及其下所有文件、文件夹
删除文件使用实例:
rm -f /var/log/httpd/access.log
将会强制删除/var/log/httpd/access.log这个文件
3、文件打包命令
zip -r myfile.zip ./* 打包当前目录下的所有文件包括子目录,文件名为myfile.zip
4、重启Nginx
/etc/init.d/nginx restart
标签:http ar os 使用 sp 文件 art log bs
原文地址:http://www.cnblogs.com/zhaowmm/p/4082626.html