12个Linux系统高频率命令行和shell小脚本

简介:
原创作品,允许转载,转载时请务必以超链接形式标明文章  原始出处 、作者信息和本声明。否则将追究法律责任。 http://dgd2010.blog.51cto.com/1539422/1584952

以下是在部署OpenStack过程中摘录的一些较为常用的命令行或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}' )

end

补充:

1.查找并删除文件

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

2.查找并列出文件类型

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

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

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

4.测试磁盘性能

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


本文出自 “通信,我的最爱” 博客,请务必保留此出处http://dgd2010.blog.51cto.com/1539422/1584952

目录
相关文章
|
3月前
|
Shell
一个用于添加/删除定时任务的shell脚本
一个用于添加/删除定时任务的shell脚本
127 1
|
2月前
|
Shell Linux 测试技术
6种方法打造出色的Shell脚本
6种方法打造出色的Shell脚本
74 2
6种方法打造出色的Shell脚本
|
2月前
|
人工智能 Shell iOS开发
AI Shell:在命令行里“对话” AI ,微软推出将 AI 助手引入命令行的 CLI 工具,打造对话式交互命令行
AI Shell 是一款强大的 CLI 工具,将人工智能直接集成到命令行中,帮助用户提高生产力。AI Shell 支持多种 AI 模型和助手,通过多代理框架提供丰富的功能和灵活的使用模式。
198 7
|
2月前
|
存储 Shell Linux
Linux 如何更改默认 Shell
Linux 如何更改默认 Shell
51 0
Linux 如何更改默认 Shell
|
2月前
|
XML JSON 监控
Shell脚本要点和难点以及具体应用和优缺点介绍
Shell脚本在系统管理和自动化任务中扮演着重要角色。尽管存在调试困难、可读性差等问题,但其简洁高效、易于学习和强大的功能使其在许多场景中不可或缺。通过掌握Shell脚本的基本语法、常用命令和函数,并了解其优缺点,开发者可以编写出高效的脚本来完成各种任务,提高工作效率。希望本文能为您在Shell脚本编写和应用中提供有价值的参考和指导。
84 1
|
2月前
|
Ubuntu Shell 开发工具
ubuntu/debian shell 脚本自动配置 gitea git 仓库
这是一个自动配置 Gitea Git 仓库的 Shell 脚本,支持 Ubuntu 20+ 和 Debian 12+ 系统。脚本会创建必要的目录、下载并安装 Gitea,创建 Gitea 用户和服务,确保 Gitea 在系统启动时自动运行。用户可以选择从官方或小绿叶技术博客下载安装包。
78 2
|
3月前
|
Web App开发 网络协议 Linux
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
这篇文章是关于Linux命令的总结,涵盖了从基础操作到网络配置等多个方面的命令及其使用方法。
87 1
linux命令总结(centos):shell常用命令汇总,平时用不到,用到就懵逼忘了,于是专门写了这篇论文,【便持续更新】
|
3月前
|
监控 网络协议 Shell
ip和ip网段攻击拦截系统-绿叶结界防火墙系统shell脚本
这是一个名为“小绿叶技术博客扫段攻击拦截系统”的Bash脚本,用于监控和拦截TCP攻击。通过抓取网络数据包监控可疑IP,并利用iptables和firewalld防火墙规则对这些IP进行拦截。同时,该系统能够查询数据库中的白名单,确保合法IP不受影响。此外,它还具备日志记录功能,以便于后续分析和审计。
70 6
|
2月前
|
运维 监控 Shell
深入理解Linux系统下的Shell脚本编程
【10月更文挑战第24天】本文将深入浅出地介绍Linux系统中Shell脚本的基础知识和实用技巧,帮助读者从零开始学习编写Shell脚本。通过本文的学习,你将能够掌握Shell脚本的基本语法、变量使用、流程控制以及函数定义等核心概念,并学会如何将这些知识应用于实际问题解决中。文章还将展示几个实用的Shell脚本例子,以加深对知识点的理解和应用。无论你是运维人员还是软件开发者,这篇文章都将为你提供强大的Linux自动化工具。