17个Linux系统高频率常用命令行和shell小脚本

简介:

以下是在部署OpenStack以及使用Linux过程中摘录的一些较为常用的命令行或shell脚本,仅供参考。

1.杀死所有存在的僵尸进程

1
2
ps  -ef |  grep  defunc |  grep  - v  grep  awk  '{print $3}'  xargs  kill  -9
#pkill dnsmasq

2.去掉配置文件中的#符号和空白行

1
2
3
4
5
6
7
8
9
cat  > /root/delsc .sh <<eof
#!/bin/bash
# delete all spaces and comments of specialized file, using with  filename
[[  "\$1"  ==  ''  ]] &&  echo  "delete all spaces and comments of specialized file, using with \$@ filename"  &&  exit  1
grep  - v  \ # \$1 | grep -v ^$
eof
cat  /root/delsc .sh
chmod  +x  /root/delsc .sh
ln  -s  /root/delsc .sh  /usr/local/bin/delsc

3.CentOS7安装vmtools

1
2
3
4
5
6
7
8
9
# mount /dev/cdrom /mnt/
# cp /mnt/VMwareTools-9.4.10-2092844.tar.gz /tmp/
# cd /tmp/
# tar zxf VMwareTools-9.4.10-2092844.tar.gz
# /tmp/vmware-tools-distrib/vmware-install.pl
yum  install  open -vm-tools -y
systemctl  enable  vmtoolsd.service
systemctl start vmtoolsd.service
systemctl status vmtoolsd.service

4.修改Linux系统时区

1
2
3
4
mv  /etc/localtime  /etc/localtime ~
ln  -s  /usr/share/zoneinfo/Asia/Shanghai  /etc/localtime
chown  -h --reference= /etc/localtime /etc/localtime
chcon -h --reference= /etc/localtime /etc/localtime

5.中国大陆常用时间服务器列表

1
2
3
4
5
6
7
cat  /etc/ntp .conf <<eof
server 2.cn.pool.ntp.org iburst
server 3.asia.pool.ntp.org iburst
server 0.asia.pool.ntp.org iburst
restrict -4 default kod notrap nomodify
restrict -6 default kod notrap nomodify
eof

6.配置时间同步

1
2
3
4
5
6
7
8
9
10
11
12
13
rpm -qa |  grep  ntp || yum  install  -y ntp
ntpdate -u pool.ntp.org || ntpdate -u  time .nist.gov || ntpdate -u  time -nw.nist.gov
date
cat  >> /etc/rc . local <<EOF
ntpdate -u pool.ntp.org || ntpdate -u  time .nist.gov || ntpdate -u  time -nw.nist.gov
hwclock -w
EOF
# Recommoned do
touch  /etc/cron .daily /ntpdate
cat  >> /etc/cron .daily /ntpdate <<EOF
ntpdate -u pool.ntp.org || ntpdate -u  time .nist.gov || ntpdate -u  time -nw.nist.gov
hwclock -w
EOF

7.对配置文件更改前先备份配置文件

1
2
3
4
5
operationfile= /etc/keystone/keystone .conf
bakoperationfile=$operationfile$( date  +-%F-%H-%M-%S) "~"
cp  $operationfile $bakoperationfile
chown  -R --reference=$operationfile $bakoperationfile
chcon -R --reference=$operationfile $bakoperationfile

8.创建计划任务

1
( crontab  -l -u keystone 2>&1 |  grep  -q token_flush) ||  echo  '@hourly /usr/bin/keystone-manage token_flush >/var/log/keystone/keystone-tokenflush.log 2>&1'  >>  /var/spool/cron/keystone

9.不切换用户但以此用户的身份执行命令

1
su  -s  /bin/sh  -c  "glance-manage db_sync"  glance

10.获取路由IP

1
ip=$( ifconfig  `route |  grep  default |  awk  '{print $8}' ` |  grep  inet |  grep  - v  inet6 |  awk  '{print $2}' )

11.判断CPU是否支持虚拟化

1
2
3
4
5
6
7
8
9
if  [[ $( egrep  -c  '(vmx|svm)'  /proc/cpuinfo ) == 0 ]]; then
     defaultnum=` grep  -n  "^\[libvirt\]$"  $operationfile |  awk  -F  ':'  '{print $1}' `
     sedoperation=$defaultnum "a"
     sed  -i  "$sedoperation  virt_type = qemu"  $operationfile
else
     defaultnum=` grep  -n  "^\[libvirt\]$"  $operationfile |  awk  -F  ':'  '{print $1}' `
     sedoperation=$defaultnum "a"
     sed  -i  "$sedoperation  virt_type = kvm"  $operationfile
fi

12.获取指定网卡名所对应的IP地址

1
2
ext_ens=ens160
local_ip=$( ifconfig  `route |  grep  $ext_ens |  awk  '{print $8}' ` |  grep  inet |  grep  - v  inet6 |  awk  '{print $2}' )

13.查找并删除文件

1
find  /tmp  -name core - type  f -print0 |  xargs  -0  /bin/rm  -f

14.查找并列出文件类型

1
find  . - type  f - exec  file  '{}'  \;

15.查找大于1GB以上的文件,并列出

1
find  / -size +1000M - exec  ls  -alh  '{}'  \;

16.测试磁盘性能

1
time  dd  if = /dev/zero  of= /tmp/testfile  bs=4k  count=80000

17.find查找文件大小大于10MB的文件,并find排除某些目录

1
find  / -not \( -path  /var/lib/docker  -prune -o -path  /proc  -prune \) - type  f -size +10M

--end--




本文转自 urey_pp 51CTO博客,原文链接:http://blog.51cto.com/dgd2010/1584952,如需转载请自行联系原作者


相关文章
|
27天前
|
存储 缓存 监控
Linux缓存管理:如何安全地清理系统缓存
在Linux系统中,内存管理至关重要。本文详细介绍了如何安全地清理系统缓存,特别是通过使用`/proc/sys/vm/drop_caches`接口。内容包括清理缓存的原因、步骤、注意事项和最佳实践,帮助你在必要时优化系统性能。
173 78
|
20天前
|
消息中间件 Java Kafka
【手把手教你Linux环境下快速搭建Kafka集群】内含脚本分发教程,实现一键部署多个Kafka节点
本文介绍了Kafka集群的搭建过程,涵盖从虚拟机安装到集群测试的详细步骤。首先规划了集群架构,包括三台Kafka Broker节点,并说明了分布式环境下的服务进程配置。接着,通过VMware导入模板机并克隆出三台虚拟机(kafka-broker1、kafka-broker2、kafka-broker3),分别设置IP地址和主机名。随后,依次安装JDK、ZooKeeper和Kafka,并配置相应的环境变量与启动脚本,确保各组件能正常运行。最后,通过编写启停脚本简化集群的操作流程,并对集群进行测试,验证其功能完整性。整个过程强调了自动化脚本的应用,提高了部署效率。
【手把手教你Linux环境下快速搭建Kafka集群】内含脚本分发教程,实现一键部署多个Kafka节点
|
30天前
|
Linux Shell 网络安全
Kali Linux系统Metasploit框架利用 HTA 文件进行渗透测试实验
本指南介绍如何利用 HTA 文件和 Metasploit 框架进行渗透测试。通过创建反向 shell、生成 HTA 文件、设置 HTTP 服务器和发送文件,最终实现对目标系统的控制。适用于教育目的,需合法授权。
63 9
Kali Linux系统Metasploit框架利用 HTA 文件进行渗透测试实验
|
26天前
|
存储 监控 Linux
嵌入式Linux系统编程 — 5.3 times、clock函数获取进程时间
在嵌入式Linux系统编程中,`times`和 `clock`函数是获取进程时间的两个重要工具。`times`函数提供了更详细的进程和子进程时间信息,而 `clock`函数则提供了更简单的处理器时间获取方法。根据具体需求选择合适的函数,可以更有效地进行性能分析和资源管理。通过本文的介绍,希望能帮助您更好地理解和使用这两个函数,提高嵌入式系统编程的效率和效果。
94 13
|
27天前
|
Ubuntu Linux C++
Win10系统上直接使用linux子系统教程(仅需五步!超简单,快速上手)
本文介绍了如何在Windows 10上安装并使用Linux子系统。首先,通过应用商店安装Windows Terminal和Linux系统(如Ubuntu)。接着,在控制面板中启用“适用于Linux的Windows子系统”并重启电脑。最后,在Windows Terminal中选择安装的Linux系统即可开始使用。文中还提供了注意事项和进一步配置的链接。
42 0
|
1月前
|
存储 Oracle 安全
服务器数据恢复—LINUX系统删除/格式化的数据恢复流程
Linux操作系统是世界上流行的操作系统之一,被广泛用于服务器、个人电脑、移动设备和嵌入式系统。Linux系统下数据被误删除或者误格式化的问题非常普遍。下面北亚企安数据恢复工程师简单聊一下基于linux的文件系统(EXT2/EXT3/EXT4/Reiserfs/Xfs) 下删除或者格式化的数据恢复流程和可行性。
|
2月前
|
Linux 网络安全 数据安全/隐私保护
Linux 超级强大的十六进制 dump 工具:XXD 命令,我教你应该如何使用!
在 Linux 系统中,xxd 命令是一个强大的十六进制 dump 工具,可以将文件或数据以十六进制和 ASCII 字符形式显示,帮助用户深入了解和分析数据。本文详细介绍了 xxd 命令的基本用法、高级功能及实际应用案例,包括查看文件内容、指定输出格式、写入文件、数据比较、数据提取、数据转换和数据加密解密等。通过掌握这些技巧,用户可以更高效地处理各种数据问题。
184 8
|
2月前
|
监控 Linux
如何检查 Linux 内存使用量是否耗尽?这 5 个命令堪称绝了!
本文介绍了在Linux系统中检查内存使用情况的5个常用命令:`free`、`top`、`vmstat`、`pidstat` 和 `/proc/meminfo` 文件,帮助用户准确监控内存状态,确保系统稳定运行。
735 6
|
2月前
|
Linux
在 Linux 系统中,“cd”命令用于切换当前工作目录
在 Linux 系统中,“cd”命令用于切换当前工作目录。本文详细介绍了“cd”命令的基本用法和常见技巧,包括使用“.”、“..”、“~”、绝对路径和相对路径,以及快速切换到上一次工作目录等。此外,还探讨了高级技巧,如使用通配符、结合其他命令、在脚本中使用,以及实际应用案例,帮助读者提高工作效率。
121 3
|
1月前
|
Linux Shell
Linux 10 个“who”命令示例
Linux 10 个“who”命令示例
65 14
Linux 10 个“who”命令示例