手把手教你Linux下的文件管理(二)
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-04
0k的块长度,内存用量也限制在200k左右,代价是压缩率会降低.总之,如果机器的内存较少(8兆字节或更少),可对所有操作都采用-s选项.
(2)用bzip2命令压缩文件 //显示当前目录下所有文件 # ll 总用量 32 -rwx------ 1 root root 230 10月 15 22:06 free.txt -rwx------ 1 root root 13512 10月 15 22:06 gong.zip -rwx------ 1 root root 40833 10月 15 22:06 rpm_info.txt -rwx------ 1 root root 226 10月 15 22:06 tar_create.txt -rwx------ 1 root root 7433 10月 15 22:06 tar.txt //用bzip2命令压缩当前目录下所有文件,用bunzip2 -z * 将获得相同的效果 #bzip2 * //再显示当前目录下所有文件,从显示结果可以看出,所有文件都压缩成了原文件名加bz2后缀的形式 # ll 总用量 15 -rwx------ 1 root root 157 10月 15 22:06 free.txt.bz2 -rwx------ 1 root root 13824 10月 15 22:06 gong.zip.bz2 -rwx------ 1 root root 9366 10月 15 22:06 rpm_info.txt.bz2 -rwx------ 1 root root 165 10月 15 22:06 tar_create.txt.bz2 -rwx------ 1 root root 2326 10月 15 22:06 tar.txt.bz2 (3)用bunzip2命令解压缩文件 //显示当前目录下所有文件 # ll 总用量 15 -rwx------ 1 root root 230 10月 15 22:17 free.txt -rwx------ 1 root root 13824 10月 15 22:17 gong.zip.bz2 -rwx------ 1 root root 9366 10月 15 22:17 rpm_info.txt.bz2 -rwx------ 1 root root 165 10月 15 22:17 tar_create.txt.bz2 -rwx------ 1 root root 2326 10月 15 22:17 tar.txt.bz2 //用bunzip2命令解压缩当前目录下所有文件,其中有一个文件free.txt不是以bz2为后缀 //从显示结果可以看出,对free.txt文件解压缩时报错 # bunzip2 * bunzip2: Can''t guess original name for free.txt -- using free.txt.out bunzip2: free.txt is not a bzip2 file. //再显示当前目录下所有文件,从显示结果可以看出,所有bz2文件都解压缩成功 # ll 总用量 32 -rwx------ 1 root root 230 10月 15 22:17 free.txt -rwx------ 1 root root 13512 10月 15 22:18 gong.zip -rwx------ 1 root root 40833 10月 15 22:18 rpm_info.txt -rwx------ 1 root root 226 10月 15 22:18 tar_create.txt -rwx------ 1 root root 7433 10月 15 22:18 tar.txt
本文出自 “卓越始于足下” 博客,谢绝转载!
|
|||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: Nginx启动脚本(1)下一篇: linux软件源码的编译安装
关于手把手教你Linux下的文件管理(二)的所有评论