Linux习题练习-03(users & group、tar、gzip、yum源配置)

简介: Linux习题练习-03(users & group、tar、gzip、yum源配置)

习题练习03

  1. 修改 tom 的家目录为 /home/tomcat,且其基本组为 mail,uid号为 1111,密码为 '123456'

    [root@localhost home]# mkdir /home/tomcat
    [root@localhost ~]# useradd tom
    [root@localhost ~]# id tom
    uid=1001(tom) gid=1001(tom) groups=1001(tom)
    [root@localhost ~]# usermod -g mail -d /home/tomcat -u 1111 tom
    [root@localhost ~]# id tom
    uid=1111(tom) gid=12(mail) groups=12(mail)
    [root@localhost tomcat]# echo '123456' | passwd --stdin tom
    Changing password for user tom.
    passwd: all authentication tokens updated successfully.
    
    AI 代码解读
  2. 创建系统账号名称为 admin,全名为 administrator,账户的家目录为 /home/admin, 账户的有效时间为 2022年12月24日,账户基本组为root,附加组为 bin,adm,mail

    [root@localhost tomcat]# useradd -c administrator -d /home/admin -e 2022-12-24 -g root -G bin,adm,mail admin
    [root@localhost tomcat]# id admin
    uid=1112(admin) gid=0(root) groups=0(root),1(bin),4(adm),12(mail)
    
    AI 代码解读
  3. 压缩系统的 /home 目录,使用zip格式压缩,并且命名为student.tar.gz, 此文件要放在 /tmp/rhel7 目录下

    [root@localhost tomcat]# mkdir /tmp/rhel7
    [root@localhost tomcat]# tar -czvf /tmp/rhel7/student.tar.gz /home/
    
    AI 代码解读
    gzip 与 bzip2 压缩与解压缩(-d) 
    这两个指令压缩文件,不能压缩目录
    AI 代码解读
    [root@localhost rhel7]# touch aa.txt
    [root@localhost rhel7]# gzip aa.txt 
    [root@localhost rhel7]# ls
    aa.txt.gz  student.tar
    [root@localhost rhel7]# gzip -d aa.txt.gz 
    [root@localhost rhel7]# ls
    aa.txt  student.tar
    [root@localhost rhel7]# bzip2 aa.txt 
    [root@localhost rhel7]# ls
    aa.txt.bz2  home  student.tar.gz
    [root@localhost rhel7]# tar -xjvf aa.txt.bz2 
    [root@localhost rhel7]# ls
    aa.txt.bz2  home  student.tar.gz
    [root@localhost rhel7]# bzip2 -d aa.txt.bz2 
    [root@localhost rhel7]# ls
    aa.txt  home  student.tar.gz
    
    AI 代码解读
  4. 查看 init* 文件末尾2KB 的内容

    [root@localhost ~]# tail -c 2K /root/initial-setup-ks.cfg 
    
    AI 代码解读
  5. 创建以下几个目录(teach,office,finance,admin,market)

    
    [root@localhost ~]# mkdir -p /share/{teach,office,finance,admin,market}
    [root@localhost ~]# cd /share/
    [root@localhost share]# ls
    admin  finance  market  office  teach
    
    AI 代码解读
  6. 配置 yum 源

    [root@localhost share]# mkdir /mnt/cdrom
    [root@localhost share]# mount /dev/cdrom /mnt/cdrom/
    [root@localhost share]# cd /etc/yum.repos.d/
    [root@localhost yum.repos.d]# vim dvd.repo 
    [dvd]
    name = dvd
    baseurl = file:///mnt/cdrom
    gpgcheck = 0
    enabled = 1
    [root@localhost yum.repos.d]# yum clean all
    [root@localhost yum.repos.d]# yum repolist all
    
    AI 代码解读
目录
打赏
0
0
0
0
140
分享
相关文章
Linux中yum、rpm、apt-get、wget的区别,yum、rpm、apt-get常用命令,CentOS、Ubuntu中安装wget
通过本文,我们详细了解了 `yum`、`rpm`、`apt-get`和 `wget`的区别、常用命令以及在CentOS和Ubuntu中安装 `wget`的方法。`yum`和 `apt-get`是高层次的包管理器,分别用于RPM系和Debian系发行版,能够自动解决依赖问题;而 `rpm`是低层次的包管理工具,适合处理单个包;`wget`则是一个功能强大的下载工具,适用于各种下载任务。在实际使用中,根据系统类型和任务需求选择合适的工具,可以大大提高工作效率和系统管理的便利性。
183 25
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for
这篇文章介绍了在CentOS 7系统中安装Docker时遇到的两个常见问题及其解决方法:用户不在sudoers文件中导致权限不足,以及yum被锁定的问题。
92 2
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for
【Linux】另一种基于rpm安装yum的方式
通过本文的方法,您可以在离线环境中使用RPM包安装YUM并进行必要的配置。这种方法适用于无法直接访问互联网的服务器或需要严格控制软件源的环境。通过配置本地YUM仓库,确保了软件包的安装和更新可以顺利进行。希望本文能够为您在特定环境中部署YUM提供实用的指导。
464 0
|
6月前
OpenEuler配置本地yum源
本文档介绍了如何在服务器和虚拟机上挂载光盘镜像并配置本地Yum仓库,包括创建挂载点、编辑repo文件、实现挂载持久化以及通过FTP共享本地仓库的方法。适用于需要频繁安装软件包或管理多台机器的场景。
1026 0
OpenEuler配置本地yum源
Linux yum 命令
10月更文挑战第1天
100 2
Linux 使用Yum安装Go和配置环境
Linux 使用Yum安装Go和配置环境
|
11月前
|
Linux命令(66)之tar
Linux命令(66)之tar
106 6
|
11月前
|
Linux命令之tar
Linux命令之tar
76 3
|
11月前
|
【Linux】常用的压缩解压缩命令之tar命令
【Linux】常用的压缩解压缩命令之tar命令
550 0
Linux命令之解压缩:tar、zip、rar 命令
Linux命令之解压缩:tar、zip、rar 命令
161 0

热门文章

最新文章

AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等