要求:
1.使用tar命令对文件进行打包压缩与解压缩:
使用gzip方式对文件进行压缩,并指定压缩名为 tar_gzip.tar.gz
使用bzip2方式对文件夹进行压缩,并指定压缩名为 tar_bzip2.tar.bz2
使用xz方式对文件进行压缩,并指定压缩名为 tar_xz.tar.xz
新建文件file1.txt,file2.txt,file3.txt
对文件file1.txt和file2.txt,进行压缩(使用gzip方式),排除file3.txt(即不对file3进行压缩)
并指定压缩名为tar_file.tar.gz
新建文件file4.txt,将file4.txt添加到tar_file.tar.gz中
查看压缩包tar_file.tar.gz有哪些文件及目录(不解压,只查看)
解压tar_gzip.tar.gz到指定目录tar_test(没有这个目录就创建)
解压tar_xz.tar.xz
2.在Linux上的/root目录创建一个Linux.txt,在windows上创建windows.txt
通过sftp的 get和put命令,将windows上的windows.txt推送到linux上
通过sftp的 get和put命令,将linux上的linux.txt推送到windows上
使用rz上传文件windows.txt到linux上
使用sz下载文件linux.txt到windows上
3.创建下列用户、组和组成员资格:
1.创建名为 sysmgrs 的组
2.创建用户 natasha 同时指定sysmgrs作为natasha的附加组
3.创建用户 harry 同时指定 sysmgrs作为natasha的附加组
4.创建用户 sarah 指定shell类型为/sbin/false(无权访问系统上的交互式 shell)
且不是 sysmgrs 的成员
5.设置natasha 、 harry 和 sarah 的密码应当都是 123
1.
1. [root@localhost boss]# gzip tar_gzip.tar > tar_gzip.tar.gz
2. [root@localhost boss]# bzip2 tar_bzip2.tar > tar_bzip2.tar.bz2
3. [root@localhost boss]# xz tar_xz.tar > tar_xz.tar.xz
4. [root@localhost boss]# tar --exclude file3.txt -zcvf file > tar_file.tar.gz*
5. [root@localhost boss]# tar -zcfv file4.txt > tar_file4.tar.gz
6. [root@localhost boss]# tar -tzf tar_file.tar.gz
7. [root@localhost boss]# tar zxvf /tar_file.tar.gz -C /tar_test
8. [root@localhost boss]# tar -xvf tar_xz.tar.xz
2.待补
2.在Linux上的/root目录创建一个Linux.txt,在windows上创建windows.txt
通过sftp的 get和put命令,将windows上的windows.txt推送到linux上
通过sftp的 get和put命令,将linux上的linux.txt推送到windows上
使用rz上传文件windows.txt到linux上
使用sz下载文件linux.txt到windows上