- 1、本文档共14页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Linux的压缩打包实验报告
实验四
文件的压缩和打包
实验内容:
1.compress,压缩文件
2.gzip压缩、gunzip解压缩、zcat解压并输出到标准输出
3.tar打包
学号:520913080429
姓名:
专业:信息安全
compress,压缩文件
可能在某些Linux版本不支持
[root@localhost ~]# cd /tmp
[root@localhost tmp]# cp /etc/man.config .
[root@localhost tmp]# ls -l
总计 44
drwx 3 root root 4096 02-02 12:25 gconfd-root
srwxr-xr-x 1 root root 0 2011-09-16 gnome-system-monitor.root.344302126
drwx 2 root root 4096 02-02 12:25 keyring-jC3ek9
-rw-r--r-- 1 root root 4617 02-02 12:34 man.config
srwxr-xr-x 1 root root 0 02-02 12:25 mapping-root
drwx 2 root root 4096 02-02 12:33 orbit-root
-rw-r--r-- 1 root root 5 02-02 12:25 scim-bridge-0.3.0.lockfile-0@localhost:0.0
srwxr-xr-x 1 root root 0 02-02 12:25 scim-bridge-0.3.0.socket-0@localhost:0.0
srw 1 root root 0 02-02 12:25 scim-helper-manager-socket-root
srw 1 root root 0 02-02 12:25 scim-panel-socket:0-root
srw 1 root root 0 02-02 12:25 scim-socket-frontend-root
-rw-r--r-- 1 root root 194 02-02 12:25 sealert.log
drwx 2 root root 4096 02-02 12:25 ssh-EbNpQR4791
drwx 2 root root 4096 02-02 12:25 virtual-root.4c8XGh
drwx 2 root root 4096 02-02 12:25 vmware-root
[root@localhost tmp]# compress man.config
bash: compress: command not found
[root@localhost tmp]#
该命令无法再Redhat中运行
2.gzip压缩、gunzip解压缩、zcat解压并输出到标准输出
[root@localhost tmp]# gzip man.config
[root@localhost tmp]# zcat man.config.gz
#
# Generated automatically from man.conf.in by the
# configure script.
#
# man.conf from man-1.6d
#
# For more information about this file, see the man pages man(1)
# and man.conf(5).
#
# This file is read by man to configure the default manpath (also used
# when MANPATH contains an empty substring), to find out where the cat
# pages corresponding to given man pages should be stored,
# and to map each PATH element to a manpath element.
# It may also record the pathname of the man binary. [This is unused.]
# The format is:
#
# MANBIN pathname
# MANPATH manpath_element [corresponding_catdir]
# MANPATH_MAP path_element
文档评论(0)