解压
unzip -o -d /home/sunny myfile.zip
tar zxvf san168.tar.gz -C /www/web/san168/public_html
打包
[root@linux ~]# tar -cvf /tmp/etc.tar /etc <==仅打包,不压缩!
[root@linux ~]# tar -zcvf /tmp/etc.tar.gz /etc <==打包后,以 gzip 压缩
[root@linux ~]# tar -jcvf /tmp/etc.tar.bz2 /etc <==打包后,以 bzip2 压缩
删除文件夹实例:
rm -rf /var/log/httpd/access
将会删除/var/log/httpd/access目录以及其下所有文件、文件夹
删除文件使用实例:
rm -f /var/log/httpd/access.log
将会强制删除/var/log/httpd/access.log这个文件
chown -R www:www /mydata/www/www.san168.com/allen
更改目录所有者和所有组为www -R是继承
chown -R mysql:mysql
mv /mydata/www/san168.com/* /www/web/www_san168_com/public_html
移动/mydata/www/san168.com/目录下的所有文件到后面目录
比如查看home目录的大小:
du -s /home
也可以:
du -sh /home
还没有评论,来说两句吧...