如何查看和停止Linux启动的服务

如何查看和停止Linux启动的服务,第1张

1 查看Linux启动的服务
chkconfig --list 查询出所有当前运行的服务
chkconfig --list atd 查询atd服务的当前状态
2停止所有服务并且在下次系统启动时不再启动,如下所示:
chkconfig --levels 12345 NetworkManager off
如果想查看当前处于运行状态的服务,用如下语句过滤即可
chkconfig --list |grep on
3如果只是想当前的设置状态有效,在系统重启动后即不生效的话,可以用如下命令停止服务
service sshd stop
另外,下图是Linux系统中包括的比较齐全的服务的说明及是否需要启动的说明
服务名称 功能 默认开启 推荐 说明
NetworkManager 为了自动连接网络的服务 x 可以不用
acpid 高级配置和电源管理接口 ■ ○ 开启,高级电源管理
anacron 一个自动化运行任务的服务 ■ x 比crond高级的玩意,可以不用
apmd 高级电源管理(支持旧硬件) ■ x 可以不用,apmdacpid二选一
atd 类似于cron的任务调度系统 ■ x 按需启用,一般用cron
auditd 内核审计守护程序 ■ x 可以不用,Seliux相关
autofs 光驱NFSSMB自动加载卸载功能 ■ △ 按需启用
服务名称 功能 默认开启 推荐 说明
avahi-daemon 查找基于zeroconf协议的机器 ■ x 可以不用
avahi-dnsconfd Avahi DNS demo x 可以不用
bluetooth 蓝牙无线通信 ■ x 可以不用
clvmd Cluster LVM ■ x 集群相关
cman ■ x 集群相关
conman remote consoles managed by conmand x 可以不用
cpuspeed 调节cpu频率,可能会导致时间问题 ■ x 可以不用
crond 与计划任务 ■ ○ 强烈建议开启
cups 打印服务 ■ x 可以不用
dnsmasq dns cache服务器 ■ x 可以不用
dund supports dialup networking over bluetooth ■ x 可以不用
firstboot 系统安装后初期设定工具 ■ x 可以不用
gfs global file system ■ x 集群相关
gfs2 ■ x 集群相关
gpm console环境下的鼠标支持 ■ ○ 建议开启
haldaemon 实现硬件自动检测挂载的功能 ■ ○ 建议开启(依赖messagebus服务)
hidd 蓝牙HID服 ■ x 可以不用
>1 查看Linux启动的服务chkconfig --list 查询出所有当前运行的服务chkconfig --list atd 查询atd服务的当前状态2停止所有服务并且在下次系统启动时不再启动,如下所示:chkconfig --levels 12345 NetworkManager off如果想查看当前处于运行状态的服务,用如下语句过滤即可chkconfig --list grep on3如果只是想当前的设置状态有效,在系统重启动后即不生效的话,可以用如下命令停止服务service sshd stop另外,下图是Linux系统中包括的比较齐全的服务的说明及是否需要启动的说明服务名称 功能 默认开启 推荐 说明 NetworkManager 为了自动连接网络的服务 x 可以不用 acpid 高级配置和电源管理接口 ■ ○ 开启,高级电源管理 anacron 一个自动化运行任务的服务 ■ x 比crond高级的玩意,可以不用 apmd 高级电源管理(支持旧硬件) ■ x 可以不用,apmdacpid二选一 atd 类似于cron的任务调度系统 ■ x 按需启用,一般用cron auditd 内核审计守护程序 ■ x 可以不用,Seliux相关 autofs 光驱NFSSMB自动加载卸载功能 ■ △ 按需启用 服务名称 功能 默认开启 推荐 说明 avahi-daemon 查找基于zeroconf协议的机器 ■ x 可以不用 avahi-dnsconfd Avahi DNS demo x 可以不用 bluetooth 蓝牙无线通信 ■ x 可以不用 clvmd Cluster LVM ■ x 集群相关 cman ■ x 集群相关 conman remote consoles managed by conmand x 可以不用 cpuspeed 调节cpu频率,可能会导致时间问题 ■ x 可以不用 crond 与计划任务 ■ ○ 强烈建议开启 cups 打印服务 ■ x 可以不用 dnsmasq dns cache服务器 ■ x 可以不用 dund supports dialup networking over bluetooth ■ x 可以不用 firstboot 系统安装后初期设定工具 ■ x 可以不用 gfs global file system ■ x 集群相关 gfs2 ■ x 集群相关 gpm console环境下的鼠标支持 ■ ○ 建议开启 haldaemon 实现硬件自动检测挂载的功能 ■ ○ 建议开启(依赖messagebus服务) hidd 蓝牙HID服 ■ x 可以不用 >NetworkManager, NetworkManagerDispatcher NetworkManager 是一个自动切换网络连接的后台进程。很多笔记本用户都需要启用该功能,它让你能够在无线网络和有线网络之间切换。大多数台式机用户应该关闭该服务。一些 DHCP 用户可能需要开启它。 acpid ACPI(全称 Advanced Configuration and Power Interface)服务是电源管理接口。建议所有的笔记本用户开启它。一些服务器可能不需要 acpi。支持的通用 *** 作有:“电源开关“,”电池监视“,”笔记本 Lid 开关“,“笔记本显示屏亮度“,“休眠”, “挂机”,等等。 anacron, atd, cron 这几个调度程序有很小的差别。 建议开启 cron,如果你的电脑将长时间运行,那就更应该开启它。对于服务器,应该更深入了解以确定应该开启哪个调度程序。大多数情况下,笔记本/台式机应该关闭 atd 和 anacron。注意:一些任务的执行需要 anacron,比如:清理 /tmp 或 /var。 apmd 一些笔记本和旧的硬件使用 apmd。如果你的电脑支持 acpi,就应该关闭 apmd。如果支持 acpi,那么 apmd 的工作将会由 acpi 来完成。 autofs 该服务自动挂载可移动存储器(比如 USB 硬盘)。如果你使用移动介质(比如移动硬盘,U 盘),建议启用这个服务。 avahi-daemon, avahi-dnsconfd Avahi 是 zeroconf 协议的实现。它可以在没有 DNS 服务的局域网里发现基于 zeroconf 协议的设备和服务。它跟 mDNS 一样。除非你有兼容的设备或使用 zeroconf 协议的服务,否则应该关闭它。我把它关闭。 bluetooth, hcid, hidd, sdpd, dund, pand 蓝牙(Bluetooth)是给无线便携设备使用的(非 wifi, 80211)。很多笔记本提供蓝牙支持。有蓝牙鼠标,蓝牙耳机和支持蓝牙的手机。很多人都没有蓝牙设备或蓝牙相关的服务,所以应该关闭它。其他蓝牙相关的服务有:hcid 管理所有可见的蓝牙设备,hidd 对输入设备(键盘,鼠标)提供支持, dund 支持通过蓝牙拨号连接网络,pand 允许你通过蓝牙连接以太网。 capi 仅仅对使用 ISDN 设备的用户有用。大多数用户应该关闭它。 cpuspeed 该服务可以在运行时动态调节 CPU 的频率来节约能源(省电)。许多笔记本的 CPU 支持该特性,现在,越来越多的台式机也支持这个特性了。如果你的 CPU 是:Petium-M,Centrino,AMD PowerNow, Transmetta,Intel SpeedStep,Athlon-64,Athlon-X2,Intel Core 2 中的一款,就应该开启它。如果你想让你的 CPU 以固定频率运行的话就关闭它。 cron 参见anacron。 cupsd, cups-config-daemon 打印机相关。如果你有能在 Fedora 中驱动的 CUPS 兼容的打印机,你应该开启它。 dc_client, dc_server 磁盘缓存(Distcache)用于分布式的会话缓存。主要用在 SSL/TLS 服务器。它可以被 Apache 使用。大多数的台式机应该关闭它。 dhcdbd 这是一个让 DBUS 系统控制 DHCP 的接口。可以保留默认的关闭状态。 diskdump, netdump 磁盘转储(Diskdump)用来帮助调试内核崩溃。内核崩溃后它将保存一个 “dump“ 文件以供分析之用。网络转储(Netdump)的功能跟 Diskdump 差不多,只不过它可以通过网络来存储。除非你在诊断内核相关的问题,它们应该被关闭。 dund 参见bluetooth。 firstboot 该服务是 Fedora 安装过程特有的。它执行在安装之后的第一次启动时仅仅需要执行一次的特定任务。它可以被关闭。 gpm 终端鼠标指针支持(无图形界面)。如果你不使用文本终端(CTRL-ALT-F1, F2),那就关闭它。不过,我在运行级别 3 开启它,在运行级别 5 关闭它。 hidd 参见bluetooth。 hplip, hpiod, hpssd HPLIP 服务在 Linux 系统上实现 HP 打印机支持,包括 Inkjet,DeskJet,OfficeJet,Photosmart,Business InkJet 和一部分 LaserJet 打印机。这是 HP 赞助的惠普 Linux 打印项目(HP Linux Printing Project)的产物。如果你有相兼容的打印机,那就启用它。 iptables 它是Linux 标准的防火墙(软件防火墙)。如果你直接连接到互联网(如,cable,DSL,T1),建议开启它。如果你使用硬件防火墙(比如:D-Link,Netgear,Linksys 等等),可以关闭它。强烈建议开启它。 ip6tables 如果你不知道你是否在使用 IPv6,大部分情况下说明你没有使用。该服务是用于 IPv6 的软件防火墙。大多数用户都应该关闭它。阅读这里了解如何关闭 Fedora 的 IPv6 支持。 irda, irattach IrDA 提供红外线设备(笔记本,PDA's,手机,计算器等等)间的通讯支持。大多数用户应该关闭它。 irqbalance 在多处理器系统中,启用该服务可以提高系统性能。大多数人不使用多处理器系统,所以关闭它。但是我不知道它作用于多核 CPU's 或 超线程 CPU's 系统的效果。在单 CPU 系统中关闭它应该不会出现问题。 isdn 这是一种互联网的接入方式。除非你使用 ISDN 猫来上网,否则你应该关闭它。 kudzu 该服务进行硬件探测,并进行配置。如果更换硬件或需要探测硬件更动,开启它。但是绝大部分的台式机和服务器都可以关闭它,仅仅在需要时启动。 lm_sensors 该服务可以探测主板感应器件的值或者特定硬件的状态(一般用于笔记本电脑)。你可以通过它来查看电脑的实时状态,了解电脑的健康状况。它在 GKrellM 用户中比较流行。查看 lm_sensors 的主页获得更多信息。如果没有特殊理由,建议关闭它。 mctrans 如果你使用 SELinux 就开启它。默认情况下 Fedora Core 开启 SELinux。 mdmonitor 该服务用来监测 Software RAID 或 LVM 的信息。它不是一个关键性的服务,可以关闭它。 mdmpd 该服务用来监测 Multi-Path 设备(该类型的存储设备能被一种以上的控制器或方法访问)。它应该被关闭。 messagebus 这是Linux 的 IPC(Interprocess Communication,进程间通讯)服务。确切地说,它与 DBUS 交互,是重要的系统服务。强烈建议开启它。 netdump 参见diskdump。 netplugd Netplugd 用于监测网络接口并在接口状态改变时执行指定命令。建议保留它的默认关闭状态。 netfs 该服务用于在系统启动时自动挂载网络中的共享文件空间,比如:NFS,Samba 等等。如果你连接到局域网中的其它服务器并进行文件共享,就开启它。大多数台式机和笔记本用户应该关闭它。 nfs, nfslock 这是用于 Unix/Linux/BSD 系列 *** 作系统的标准文件共享方式。除非你需要以这种方式共享数据,否则关闭它。 ntpd 该服务通过互联网自动更新系统时间。如果你能永久保持互联网连接,建议开启它,但不是必须的。 pand 参见bluetooth。 pcscd 该服务提供智能卡(和嵌入在xyk,识别卡里的小芯片一样大小)和智能卡读卡器支持。如果你没有读卡器设备,就关闭它。 portmap 该服务是 NFS(文件共享)和 NIS(验证)的补充。除非你使用 NFS 或 NIS 服务,否则关闭它。 readahead_early, readahead_later 该服务通过预先加载特定的应用程序到内存中以提供性能。如果你想程序启动更快,就开启它。 restorecond 用于给 SELinux 监测和重新加载正确的文件上下文(file contexts)。它不是必须的,但如果你使用 SELinux 的话强烈建议开启它。 rpcgssd, rpcidmapd, rpcsvcgssd 用于NFS v4。除非你需要或使用 NFS v4,否则关闭它。 sendmail 除非你管理一个邮件服务器或你想在局域网内传递或支持一个共享的 IMAP 或 POP3 服务。大多数人不需要一个邮件传输代理。如果你通过网页(hotmail/yahoo/gmail)或使用邮件收发程序(比如:Thunderbird,Kmail,Evolution 等等)收发程序。你应该关闭它。 smartd SMART Disk Monitoring 服务用于监测并预测磁盘失败或磁盘问题(前提:磁盘必须支持 SMART)。大多数的桌面用户不需要该服务,但建议开启它,特别是服务器。 smb SAMBA 服务是在 Linux 和 Windows 之间共享文件必须的服务。如果有 Windows 用户需要访问 Linux 上的文件,就启用它。查看如何在 Fedora Core 6 下配置 Samba。 sshd SSH 允许其他用户登录到你的系统并执行程序,该用户可以和你同一网络,也可以是远程用户。开启它存在潜在的安全隐患。如果你不需要从其它机器或不需要从远程登录,就应该关闭它。 xinetd (该服务默认可能不被安装)它是一个特殊的服务。它可以根据特定端口收到的请求启动多个服务。比如:典型的 telnet 程序连接到 23 号端口。如果有 telent 请求在 23 号端口被 xinetd 探测到,那 xinetd 将启动 telnetd 服务来响应该请求。为了使用方便,可以开启它。运行 chkconfig --list, 通过检查 xinetd 相关的输出可以知道有哪些服务被 xinetd 管理。

cpuset 允许把所有进程echo到一个cpuset目录中,与指定的cpu绑定。
The following script which is a starting point for investigating willmove all the processes to a specific cpuset with one cpu
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
if [ ! -d /sys/fs/cgroup ]; then
echo "cgroup not supported by the kernel"
else
mkdir /sys/fs/cgroup/cpuset
mount -t cgroup -ocpuset cpuset /sys/fs/cgroup/cpuset
echo 1 > /sys/fs/cgroup/cpuset/cgroupclone_children
mkdir /sys/fs/cgroup/cpuset/cpu0
mkdir /sys/fs/cgroup/cpuset/cpu1
# assign a cpu for cgroup cpu0
echo 0 > /sys/fs/cgroup/cpuset/cpu0/cpusetcpus
# move outself to this new cgroup
echo $$ > /sys/fs/cgroup/cpuset/cpu0/tasks
for i in $(cat /sys/fs/cgroup/cpuset/tasks); do
echo $i > /sys/fs/cgroup/cpuset/cpu0/tasks || echo "failed to add pid $i/$(cat /proc/$i/comm)"
done
# assign a cpu for cgroup cpu1
echo 1 > /sys/fs/cgroup/cpuset/cpu1/cpusetcpus
# make cpu1 exclusive so processes belonging
# to the other cgroup won't use it
echo 1 > /sys/fs/cgroup/cpuset/cpu1/cpusetcpu_exclusive
fi
把系统中的进程与CPU0绑定,然后把CPU1设置 exclusive属性,这样其它cgroup不会使用这个CPU。
开启stress压力测试
在此基础上再开启一个CPUhot:
可见新启动的任务不会占用CPU1。
将CPUhot进程与 CPU1绑定:
此时观察CPU使用率:
另外还有一个问题就是怎样禁止一个中断打断cpu?
内核提供了中断的affinity,但要使用这个还需要关闭 irq balancer 进程。
如下脚本可以设置中断的cpu affinity。
for i in $(find /proc/irq -name "smp_affinity"); do echo 1 > $i; done
以上脚本把所有中断的CPU Affinity都设置为CPU0。
这样在/proc/irq目录下的每一个中断其CPU Affinity都被设置为CPU0。
此时仍有一系列的中断会打断CPU1:
Single function call interrupts
Local timer interrupts
另外要让中断的CPU Affinity起作用,irq balance 服务必须被关闭。但这样中断负载平衡就被打断,能不能修改irq balance 代码,让其在规定的若干个CPU核心上负责中断平衡


什么是PATH环境变量,它有什么作用?

LANG PS1 PATH

######PATH含义

存放的是命令的位置/路径

[root@oldboyedu01-nb ~]# echo $PATH

/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/root/bin

第二个里程牌-liunx 下面运行命令过程

####1、输入命令

####2、在PATH里面 路径进行查找

####3、找到了就运行

####4、找不到就提示 command not found

第1题

如何过滤出已知当前目录下oldboy中的所有一级目录(提示:不包含oldboy目录下面目录的子目录及隐藏目录,即只能是第一级目录)?

mkdir /oldboy -p

cd /oldboy

mkdir ext/oldboy test xiaodong xingfujie -p

touch jeacen olaboy wodigz yingsuigz

yum install tree -y

[root@oldboyedu01-nb oldboy]# #如何查询某个软件是否安装了?

[root@oldboyedu01-nb oldboy]# rpm -qa ( 查找所有安装软件 )

[root@oldboyedu01-nb oldboy]# rpm -qa

[root@oldboyedu01-nb oldboy]# rpm -qa |grep tree ( 查找具体的软件安装包 )

tree-153-3el6x86_64

[root@oldboyedu01-nb oldboy]# rpm -qa tree

tree-153-3el6x86_64

[root@oldboyedu01-nb oldboy]# rpm -qa |grep ipt

initscripts-90358-1el6centosx86_64

iptables-ipv6-147-16el6x86_64

plymouth-scripts-083-29el6centosx86_64

iptables-147-16el6x86_64

[root@oldboyedu01-nb oldboy]# #查看某个软件包里面的内容

[root@oldboyedu01-nb oldboy]# rpm -ql tre

package tre is not installed

[root@oldboyedu01-nb oldboy]# rpm -ql tree ( 查看具体安装包里面的内容 )

/usr/bin/tree

/usr/share/doc/tree-153

/usr/share/doc/tree-153/LICENSE

###方法1

[root@oldboyedu01-nb oldboy]# tree -d /oldboy/

/oldboy/

ext

oldboy

test

xiaodong

xingfujie

5 directories

[root@oldboyedu01-nb oldboy]#

[root@oldboyedu01-nb oldboy]# tree -dL 1 /oldboy/

/oldboy/

ext

test

xiaodong

xingfujie

##方法2

[root@oldboyedu01-nb oldboy]# find -type d

/ext

/ext/oldboy

/xiaodong

/test

/xingfujie

[root@oldboyedu01-nb oldboy]# find -maxdepth 1 -type d ! -name "" ( 找出名字不是点 )

/ext

/xiaodong

/test

/xingfujie

###方法3

[root@oldboyedu01-nb oldboy]# ls -l

total 28

-rw-r--r-- 1 root root 0 Jun 9 07:06 alextxt

-rw-r--r-- 1 root root 292 Jun 9 06:34 etttxt

drwxr-xr-x 3 root root 4096 Jun 22 21:55 ext

-rw-r--r-- 1 root root 0 Jun 22 23:44 jeacen

-rw-r--r-- 1 root root 0 Jun 22 23:44 olaboy

-rw-r--r-- 1 root root 0 Jun 9 07:06 oldboytxt

drwxr-xr-x 2 root root 4096 Jun 9 07:26 test

-rw-r--r-- 1 root root 8 Jun 9 07:26 testsh

-rw-r--r-- 1 root root 8 Jun 9 07:26 tsh

-rw-r--r-- 1 root root 0 Jun 22 23:44 wodigz

drwxr-xr-x 2 root root 4096 Jun 22 21:55 xiaodong

drwxr-xr-x 2 root root 4096 Jun 22 21:55 xingfujie

-rw-r--r-- 1 root root 0 Jun 22 23:44 yingsuigz

[root@oldboyedu01-nb oldboy]# ls -l |grep "^d" ( 找出目录为d开头的文件 )

drwxr-xr-x 3 root root 4096 Jun 22 21:55 ext

drwxr-xr-x 2 root root 4096 Jun 9 07:26 test

drwxr-xr-x 2 root root 4096 Jun 22 21:55 xiaodong

drwxr-xr-x 2 root root 4096 Jun 22 21:55 xingfujie

[root@oldboyedu01-nb oldboy]#

#方法4

[root@oldboyedu01-nb oldboy]# ls -l|awk '$2>1' ( 第二列大于1 )

total 28

drwxr-xr-x 3 root root 4096 Jun 22 21:55 ext

drwxr-xr-x 2 root root 4096 Jun 9 07:26 test

drwxr-xr-x 2 root root 4096 Jun 22 21:55 xiaodong

drwxr-xr-x 2 root root 4096 Jun 22 21:55 xingfujie

[root@oldboyedu01-nb oldboy]#

#第2题假如当前目录[root@oldboyedu01-nb oldboy]# pwd #==>这是打印当前目录的,最菜的命令

/oldboy

现在因为需要进入到/tmp目录下进行 *** 作,执行的命令如下:

[ root@oldboy oldboy]# cd /tmp/

[ root@oldboy tmp]#pwd

/tmp/

*** 作完毕后,希望快速返回上一次进入的目录,即/oldboy目录,如何 *** 作(不使用cd/oldboy)

[root@oldboyedu01-nb tmp]# #快速回到上一次的所在的位置/目录

[root@oldboyedu01-nb tmp]# cd -

/oldboy

[root@oldboyedu01-nb oldboy]# pwd

/oldboy

[root@oldboyedu01-nb oldboy]#

cd -

cd =====当前目录 复制/移动 cp/etc/host

cd =====进入到当前目录的上一级目录

cd~ =====进入当前用户的家目录,回老家

(root用户)~ ====/root

(普通用户)~ ====/home/

cd =====回老家 回家

cd - #快速回到上一次的所在位置/目录

[root@oldboyedu01-nb oldboy]##进入到/etc/sysconfig/network-scripts/目录,并查看你所在的位置

[root@oldboyedu01-nb oldboy]#进入到上一级目录,并查看你所在位置

[root@oldboyedu01-nb oldboy]##进入到/root目录下面,并显示你所在位置

[root@oldboyedu01-nb oldboy]#回到老家

[root@VM-8-6-centos ~]# cd /oldboy/

[root@VM-8-6-centos oldboy]# cd /etc/sysconfig/network-scripts/

[root@VM-8-6-centos network-scripts]# pwd

/etc/sysconfig/network-scripts

[root@VM-8-6-centos network-scripts]# cd

[root@VM-8-6-centos sysconfig]# pwd

/etc/sysconfig

[root@VM-8-6-centos sysconfig]# cd /root/

[root@VM-8-6-centos ~]# pwd

/root

[root@VM-8-6-centos ~]# cd -

/etc/sysconfig

#第3题一个目录中有多文件(ls查看时好多屏),想最快速度查看到最近更新的文件,怎么查

ls -lrt

第5题 调试系统服务时,希望能实时查看系统日志/var/log/messages的更新,如何做?

tail -f 显示文件的实时更新

taillf ====tail -f

第4题 打印配置文件nginxconf 内容的行号及内容,该如何做?

[root@oldboyedu01-nb oldboy]# echo {15}

1 2 3 4 5

[root@oldboyedu01-nb oldboy]# echo stu {0110}

stu 01 02 03 04 05 06 07 08 09 10

[root@oldboyedu01-nb oldboy]# echo stu{0110}

stu01 stu02 stu03 stu04 stu05 stu06 stu07 stu08 stu09 stu10

[root@oldboyedu01-nb oldboy]# echo stu{0110}xargs -n1

stu01xargs stu02xargs stu03xargs stu04xargs stu05xargs stu06xargs stu07xargs stu08xargs stu09xargs stu10xargs -n1

[root@oldboyedu01-nb oldboy]# echo stu{0110}|xargs -n1

stu01

stu02

stu03

stu04

stu05

stu06

stu07

stu08

stu09

stu10

[root@oldboyedu01-nb oldboy]# echo stu{0110}|xargs -n1 >nginxconf

[root@oldboyedu01-nb oldboy]# cat nginxconf

stu01

stu02

stu03

stu04

stu05

stu06

stu07

stu08

stu09

stu10

[root@oldboyedu01-nb oldboy]#

###方法1

[root@oldboyedu01-nb oldboy]# cat -n nginxconf (-n表示行号)

1 stu01

2 stu02

3 stu03

4 stu04

5 stu05

6 stu06

7 stu07

8 stu08

9 stu09

10 stu10

###方法2 -vi/vim

:set nu #显示行号 number

:set monu #取消小时行号

###方法3 -grep -n参数

[root@oldboyedu01-nb oldboy]# grep -n "stu" nginxconf

1:stu01

2:stu02

3:stu03

4:stu04

5:stu05

6:stu06

7:stu07

8:stu08

9:stu09

10:stu10

[root@oldboyedu01-nb oldboy]# grep -n "" nginxconf

1:stu01

2:stu02

3:stu03

4:stu04

5:stu05

6:stu06

7:stu07

8:stu08

9:stu09

10:stu10

小结:

1cat -n;vi/vim显示行号

2、grep -n

3、awk NR $ print

###第5题,装完系统后,希望让网络文件共享服务器NFS(iptables),仅在3级别上开机自启动,如何 *** 作?

chkconfig iptables off

###第6题,liunx系统中查看中文,但是乱码,请问如何解决?

解决:

方法1:推荐修改xshell 字符集

方法2:修改系统字符集

1:命令行 export LANG=en_usutf-8

2写入配置文件

cp /etc/sysconfig/i18n /etc/sysconfig/i18nbat

echo ‘LANG=en_usUTF-8'>/etc/sysconfig/i18n

3、生效

source /etc/sysconfig/i18n

###第7题; /etc/目录为liunx系统默认的配置文件及服务启动命令的目录

a、请用tar 打包/etc整个目录(打包及压缩)

b、请把a点命令的压缩包,解压到/tmp指定目录下(最好只用tar命令实现)

c、请用tar打包/etc整个目录(打包及压缩,但需要排除/etc/services文件)。

tar 创建查看解压压缩包

[root@oldboyedu01-nb oldboy]# tar zcvf /tmp/etctargz /etc/

创建压缩包 压缩包存放的位置 压缩能够目录

zcvf 注释:

z----通过gzip工具进行压缩 ,

c-----表示create创建 压缩包 ,

v---表示verbose显示执行过程

f-----显示file 接上压缩包的名字

[root@oldboyedu01-nb oldboy]# ls -l /tmp/ (查看文件)

total 9508

-rw-r--r-- 1 root root 9736182 Jun 23 05:48 etctargz

查看压缩包的内容

[root@oldboyedu01-nb oldboy]# tar ztf /tmp/etctargz

ztf注释: t----表示list 显示压缩包的内容

解压

[root@oldboyedu01-nb oldboy]# cd /tmp/

[root@oldboyedu01-nb tmp]# tar zxf etctargz (解压)

创建

tar zcf

查看

tar tf

解压

tar xf

[root@oldboyedu01-nb tmp]# tar zxf etctargz

[root@oldboyedu01-nb tmp]# tar zcf /tmp/sysconfigtargz /etc/sysconfig/

tar: Removing leading /' from member names tar: Removing leading /' from hard link targets

[root@oldboyedu01-nb tmp]# tar tf /tmp/sysconfigtargz

[root@oldboyedu01-nb tmp]# ls -l

total 9568

drwxr-xr-x 78 root root 4096 Jun 23 03:39 etc

-rw-r--r-- 1 root root 9736182 Jun 23 05:48 etctargz

-rw-r--r-- 1 root root 53851 Jun 23 06:00 sysconfigtargz

[root@oldboyedu01-nb tmp]# rm -fr etc

do not use rm -fr etc

[root@oldboyedu01-nb tmp]# ll

total 9568

drwxr-xr-x 78 root root 4096 Jun 23 03:39 etc

-rw-r--r-- 1 root root 9736182 Jun 23 05:48 etctargz

-rw-r--r-- 1 root root 53851 Jun 23 06:00 sysconfigtargz

[root@oldboyedu01-nb tmp]# rm -fr etc

[root@oldboyedu01-nb tmp]# ll

total 9564

-rw-r--r-- 1 root root 9736182 Jun 23 05:48 etctargz

-rw-r--r-- 1 root root 53851 Jun 23 06:00 sysconfigtargz

[root@oldboyedu01-nb tmp]# tar xf sysconfigtargz

[root@oldboyedu01-nb tmp]# ll

total 9568

drwxr-xr-x 3 root root 4096 Jun 23 06:02 etc

-rw-r--r-- 1 root root 9736182 Jun 23 05:48 etctargz

-rw-r--r-- 1 root root 53851 Jun 23 06:00 sysconfigtargz

[root@oldboyedu01-nb tmp]# ls etc

sysconfig

[root@oldboyedu01-nb tmp]# ls etc

sysconfig

[root@oldboyedu01-nb tmp]# ls etc/sysconfig/

acpid i18n kernel quota_nld sshd

atd init keyboard raid-check sysstat

auditd ip6tables modules readahead sysstatioconf

authconfig ip6tables-config netconsole readonly-root system-config-firewall

cbq ip6tablesold network rngd system-config-firewallold

clock iptables networking rsyslog udev

console iptables-config network-scripts sandbox

cpuspeed iptablesold ntpd saslauthd

crond irqbalance ntpdate selinux

grub kdump prelink smartmontools

请把A点命令的压缩包,解压到/tmp指定目录下(最好用tar命令实现)

[root@oldboyedu01-nb tmp]# tar xf etctargz -C /opt/ (指定目录)

[root@oldboyedu01-nb tmp]# ls -l /opt/ (查看解压后的目录情况)

请用tar打包/etc整个目录(打包及压缩,但需要排除/etc/services文件)

[root@oldboyedu01-nb tmp]# tar zcf /tmp/etctargz /etc/

tar: Removing leading `/' from member names

tar: Removing leading `/' from hard link targets

[root@oldboyedu01-nb tmp]#

[root@oldboyedu01-nb tmp]# tar zcf /tmp/etc-paichutargz /etc/ --exclude=/etc/services

tar: Removing leading `/' from member names

tar: Removing leading `/' from hard link targets

[root@oldboyedu01-nb tmp]# tar zcf /tmp/etc-paichutargz /etc/ --exclude=/etc/services

tar: Removing leading `/' from member names

tar: Removing leading `/' from hard link targets

[root@oldboyedu01-nb tmp]# tar tf /tmp/etctargz |grep services

etc/init/readahead-disable-servicesconf

etc/services

[root@oldboyedu01-nb tmp]# tar tf /tmp/etc-paichutargz|grep services

etc/init/readahead-disable-servicesconf

[root@oldboyedu01-nb tmp]#

cd /

tar zcf /tmp/etctargz etc/

小结:

1、tar 打包压缩

2、创建压缩包 查看压缩包, 解压

3、解压到指定的文件夹

4、创建压缩包排除

#第8题如何查看etc/services文件的有多少行?

[root@oldboyedu01-nb ~]# cd /oldboy/

[root@oldboyedu01-nb oldboy]# wc -l /etc/services

10774 /etc/services、

屌丝去洗浴中心之路

3、

(1) 查看22端口是否开启telnet

(2) sshd远程连接进程是否在运行

ps -ef

[root@oldboyedu01-nb oldboy]# ps -ef |grep "sshd" (过滤进程sshd)

root 1436 1 0 Jun22 00:00:00 /usr/sbin/sshd

root 2461 1436 0 05:11 00:00:00 sshd: root@pts/0

root 2588 1436 0 06:45 00:00:00 sshd: root@pts/1

root 2656 1436 0 07:30 00:00:00 sshd: root@pts/2

root 2701 2658 0 08:01 pts/2 00:00:00 grep sshd

[root@oldboyedu01-nb oldboy]# ps -ef |grep "/sshd"

root 1436 1 0 Jun22 00:00:00 /usr/sbin/sshd

root 2705 2658 0 08:03 pts/2 00:00:00 grep /sshd

[root@oldboyedu01-nb oldboy]# ps -ef |grep "/sshd"|wc -l (显示进程出现几个;次数)

2

第9题:过滤出/etc/services 文件包含3306和1521两数字所在行号的内容

[root@oldboyedu01-nb oldboy]# grep "3306" /etc/services

mysql 3306/tcp # MySQL

mysql 3306/udp # MySQL

[root@oldboyedu01-nb oldboy]# egrep "3306|1521" /etc/services

mysql 3306/tcp # MySQL

mysql 3306/udp # MySQL

ncube-lm 1521/tcp # nCube License Manager

ncube-lm 1521/udp # nCube License Manager

[root@oldboyedu01-nb oldboy]# #egrep ==grep -E支持高级正则(公鸡里的战斗机)

[root@oldboyedu01-nb oldboy]#

第10题命令行及shell中不加引号、加单引号和加双引号的区别小结

单引号 所见即所得 吃啥吐啥

双引号 里面的特殊符号会被解析

[root@VM-8-6-centos oldboy]# echo 'hello lls $LANG $(hostname) 'pwd''

hello lls $LANG $(hostname) pwd


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/13447945.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-08-08
下一篇 2023-08-08

发表评论

登录后才能评论

评论列表(0条)

保存