Linux 习题练习-02(grep、find命令、yum源配置)

简介: Linux 习题练习-02(grep、find命令、yum源配置)

Liunx 习题练习02

  1. 返回initial-setup-ks.cfg文件中包含字符串 'boot' 的行数

    [root@localhost ~]# grep 'boot' /root/initial-setup-ks.cfg | wc -l
    [root@localhost ~]# grep -c 'boot' /root/initial-setup-ks.cfg 
    
  2. 返回initial-setup-ks.cfg文件中包含字符串 'boot' 的行与行号

    [root@localhost ~]# grep -n 'boot' /root/initial-setup-ks.cfg 
    
  3. 执行ps -aux命令,将文件内容保存到 /root/ps.log 中,查找该文件中包含1774或1775字符串的行

    [root@localhost ~]# ps -aux > /root/ps.log 
    [root@localhost ~]# grep '177[45]' ps.log 
    
  4. 在上述文件中查找包含一串包含四位数的字符串,并且这个字符串最后一个数字为2

    [root@localhost ~]# grep '[0-9][0-9][0-9]2' /root/ps.log 
    
    [root@localhost ~]# grep '[0-9][0-9][0-9]...2' /root/ps.log 
    
    [root@localhost ~]# grep '[0-9][0-9][0-9]...[Ss]' /root/ps.log 
    
  5. 在当前目录下查找除目录以外的所有类型的文件

    [root@localhost ~]# find . ! -type d
    
  6. 找出所有用户ruochen 拥有的文件,并且把它们拷贝到/root/finder怒骂中

    [root@localhost yum.repos.d]# find / -user harry -type f -exec cp {} /root/finder \; 2> /dev/null
    
  7. 查找文件更改时间比文件a.txt 新但比b.txt 文件旧的文件

    • -newr
    • find / - newer a.txt ! -newer b.txt

      [root@localhost ~]# find / -newer initial-setup-ks.cfg ! -newer ps.log -exec ls -lh {} \;

  8. 统计当前系统中一共有多少账户

    • /etc/passwd
    • wc -l /etc/passwd

      [root@localhost ~]# wc -l /etc/passwd
      39 /etc/passwd

  9. 配置本机yum 环境

    [root@localhost Desktop]# mkdir /mnt/cdrom
    [root@localhost Desktop]# mount /dev/sr0 /mnt/cdrom 
    [root@localhost yum]# cd /etc/yum.repos.d/
    [root@localhost yum.repos.d]# ls
    [root@localhost yum.repos.d]# rm -rf *
    [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
目录
相关文章
|
1月前
|
Linux
在 Linux 系统中,`find` 命令
在 Linux 系统中,`find` 命令
33 1
|
1月前
|
Linux
在 Linux 系统中,`find` 命令是一个强大的文件查找工具
在 Linux 系统中,`find` 命令是一个强大的文件查找工具。本文详细介绍了 `find` 命令的基本语法、常用选项和具体应用示例,帮助用户快速掌握如何根据文件名、类型、大小、修改时间等条件查找文件,并展示了如何结合逻辑运算符、正则表达式和排除特定目录等高级用法。
84 6
|
1月前
|
缓存 应用服务中间件 Linux
yum 命令下载软件包到本地
在 Linux 系统中,使用 `yum` 命令可以下载软件包但不安装。通过 `yum` 的下载缓存功能,可以快速获取所需软件包。常用命令包括:`yum list available` 列出可安装的软件包,`yum download nginx` 下载特定软件包,`yum download nginx-1.18.0` 下载特定版本,`yum download -resolve nginx` 下载软件包及其依赖,`yum download nginx -d /path/to/download/directory` 指定下载目录
204 11
|
1月前
|
缓存 应用服务中间件 Linux
yum 命令下载软件包到本地
在 Linux 系统中,使用 yum 命令可以下载软件包但不安装。通过 yum 的下载缓存功能,可以快速获取软件包。常用命令包括:`yum list available` 列出可安装的软件包,`yum download nginx` 下载特定软件包,`yum download nginx-1.18.0` 下载特定版本,`yum download -resolve nginx` 下载软件包及其依赖,`yum download nginx -d /path/to/download/directory` 指定下载目录
133 1
|
2月前
OpenEuler配置本地yum源
本文档介绍了如何在服务器和虚拟机上挂载光盘镜像并配置本地Yum仓库,包括创建挂载点、编辑repo文件、实现挂载持久化以及通过FTP共享本地仓库的方法。适用于需要频繁安装软件包或管理多台机器的场景。
445 0
OpenEuler配置本地yum源
|
2月前
|
缓存 前端开发 Linux
Linux yum 命令
10月更文挑战第1天
55 2
|
3月前
|
存储 Linux Shell
linux查找技巧: find grep xargs
linux查找技巧: find grep xargs
43 13
|
3月前
|
机器学习/深度学习 存储 Linux
linux中强大且常用命令:find、xargs、grep
linux中强大且常用命令:find、xargs、grep
159 9
|
3月前
|
Docker 容器
14 response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file speci
14 response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file speci
40 1
|
2月前
|
Unix Linux Go
Linux 使用Yum安装Go和配置环境
Linux 使用Yum安装Go和配置环境
下一篇
DataWorks