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
|
2月前
|
Linux 开发工具 数据安全/隐私保护
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for
这篇文章介绍了在CentOS 7系统中安装Docker时遇到的两个常见问题及其解决方法:用户不在sudoers文件中导致权限不足,以及yum被锁定的问题。
45 2
linux异常一:feng 不在 sudoers 文件中,此事将被报告。yum提示Another app is currently holding the yum lock; waiting for
|
1月前
|
存储 缓存 Linux
【Linux】另一种基于rpm安装yum的方式
通过本文的方法,您可以在离线环境中使用RPM包安装YUM并进行必要的配置。这种方法适用于无法直接访问互联网的服务器或需要严格控制软件源的环境。通过配置本地YUM仓库,确保了软件包的安装和更新可以顺利进行。希望本文能够为您在特定环境中部署YUM提供实用的指导。
161 0
|
2月前
|
缓存 前端开发 Linux
Linux yum 命令
10月更文挑战第1天
55 2
|
3月前
|
关系型数据库 MySQL Linux
Linux 安装 mysql【使用yum源进行安装】
这篇文章介绍了在Linux系统中使用yum源安装MySQL数据库的步骤,包括配置yum源、安装MySQL服务、启动服务以及修改root用户的默认密码。
Linux 安装 mysql【使用yum源进行安装】
|
2月前
|
Unix Linux Go
Linux 使用Yum安装Go和配置环境
Linux 使用Yum安装Go和配置环境
|
1月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
92 8
|
1月前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
251 6