LINUX03_磁盘情况查询、ps -ef、centos7查看服务、netstat查看网络、grep、重定向、管道、yum、用户权限(三)

简介: LINUX03_磁盘情况查询、ps -ef、centos7查看服务、netstat查看网络、grep、重定向、管道、yum、用户权限(三)

④. centos7服务查看


  • ①. 有方便统一的管理方式(常用的方法)


systemctl start 服务名(xxxx.service)
systemctl restart 服务名(xxxx.service)
systemctl stop 服务名(xxxx.service)
systemctl reload 服务名(xxxx.service)
systemctl status 服务名(xxxx.service)


  • ②. 查看服务的方法 /usr/lib/systemd/system


  • ③. 查看服务的命令
    systemctl list-unit-files
    systemctl --type service


# 关闭防火墙
[root@TANG2021 opt]# systemctl list-unit-files | grep firewalld
firewalld.service                             enabled 
[root@TANG2021 opt]# systemctl disable firewalld.service
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
[root@TANG2021 opt]# systemctl list-unit-files | grep firewalld
firewalld.service                             disabled
[root@TANG2021 opt]# systemctl status firewalld.service
● firewalld.service - firewalld - dynamic firewall daemon
   Loaded: loaded (/usr/lib/systemd/system/firewalld.service; disabled; vendor preset: enabled)
   Active: inactive (dead)
     Docs: man:firewalld(1)
7月 23 15:58:07 TANG2021.ybc systemd[1]: Starting firewalld - dynamic firewall daemon...
7月 23 15:58:07 TANG2021.ybc systemd[1]: Started firewalld - dynamic firewall daemon.
7月 23 17:06:20 TANG2021.ybc systemd[1]: Stopping firewalld - dynamic firewall daemon...
7月 23 17:06:21 TANG2021.ybc systemd[1]: Stopped firewalld - dynamic firewall daemon.
[root@TANG2021 opt]# 


  #systemctl stop | start | status firewalld # 临时 (关闭|开启|状态) 防火墙
  #systemctl disable firewalld # 禁止开机启动


⑤. netstat 查看系统的网络情况


⑤. netstat:查看系统的网络情况(netstat –anp|grep 8080 查看占用8080端口的进程)


-an 按一定顺序排列输出


-p 显示哪个进程在调用


⑥. grep命令


  • ①. 查找文件里符合条件的字符串
    用法:grep [选项]… PATTERN[FILE]…


grep lang anacondaks.cfg 在文件中查找lang
grep lang anacondaks.cfg --color 高亮显示


②. 高亮显示(grep debug yum.conf --color)


③. 这里是往后再显示5个(grep debug yum.conf --color -A5)


④. 这里后面显示5个,往前显示5个(grep debug yum.conf --color -A5 -B5)


⑦. 重定向输出>和>>


  • 重定向输出,覆盖原有内容; >>重定向输出,有追加功能


cat /etc/passwd > a.txt  将输出定向到a.txt
cat /etc/passwd >> a.txt 输出并且追加
ifconfig > ifconfig.txt
相关文章
|
19天前
|
监控 网络协议 Linux
Linux netstat 命令详解
Linux netstat 命令详解
|
2月前
|
运维 监控 网络协议
|
3月前
|
监控 Linux
linux之grep详解
linux之grep详解
|
3月前
|
存储 Linux Shell
linux查找技巧: find grep xargs
linux查找技巧: find grep xargs
43 13
|
3月前
|
机器学习/深度学习 存储 Linux
linux中强大且常用命令:find、xargs、grep
linux中强大且常用命令:find、xargs、grep
157 9
|
3月前
|
SQL 移动开发 Linux
linux下find、grep命令详解
linux下find、grep命令详解
192 8
|
4月前
|
Unix Linux C语言
在Linux中,grep和egrep命令的区别?
在Linux中,grep和egrep命令的区别?
|
4月前
|
Linux
在Linux中,如何使用grep命令搜索文本?
在Linux中,如何使用grep命令搜索文本?
|
2天前
|
SQL 安全 网络安全
网络安全与信息安全:知识分享####
【10月更文挑战第21天】 随着数字化时代的快速发展,网络安全和信息安全已成为个人和企业不可忽视的关键问题。本文将探讨网络安全漏洞、加密技术以及安全意识的重要性,并提供一些实用的建议,帮助读者提高自身的网络安全防护能力。 ####
34 17
|
12天前
|
存储 SQL 安全
网络安全与信息安全:关于网络安全漏洞、加密技术、安全意识等方面的知识分享
随着互联网的普及,网络安全问题日益突出。本文将介绍网络安全的重要性,分析常见的网络安全漏洞及其危害,探讨加密技术在保障网络安全中的作用,并强调提高安全意识的必要性。通过本文的学习,读者将了解网络安全的基本概念和应对策略,提升个人和组织的网络安全防护能力。