Linux学习笔记
maiaimei 2021/11/17 Linux
可以使用 electerm (opens new window)、Xshell 连接 Linux 系统。
# 系统管理
# 重启
reboot
# 关机
poweroff
# 查看操作系统信息
uname -a
# 查看磁盘使用情况
df -hl
# 查看内存使用情况
cat /proc/meminfo
free
free -h
free -g
# 清理缓存
echo 1 > /proc/sys/vm/drop_caches
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 进程管理
ps (英文全拼:process status)命令用于显示进程的状态。
# 查找进程
# 查看所有进程
ps aux
ps -le
# 查找指定进程
ps -ef | grep 关键字
# 以树状图显示进程间的关系
pstree -p
pstree -p | grep 关键字
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
# 查看系统健康状态
top [选项]
1
选项 | 说明 |
---|---|
-d 秒数 | 指定top命令每隔几秒更新。默认是3秒 |
在top交互模式下可以执行以下命令
命令 | 说明 |
---|---|
?或h | 显示交互模式的帮助 |
P | 以CPU使用率排序,默认是此项 |
M | 以内存使用率排序 |
N | 以PID排序 |
q | 退出top |
# 终止进程
# 查看进程可用信号
kill -l
# 强制终止进程
kill -9 pid
killall
pkill
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# 工作管理
将进程放在后台的方式:
- 在命令后面加 &,此方式该命令后台运行
- 执行命令后,按Ctrl+Z,此方式该命令后台暂停
# 查看所有工作进程
jobs
jobs -l
# 将后台暂停的工作进程恢复到前台运行
fg 工作号
# 将后台暂停的工作进程恢复到后台运行
bg 工作号
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 定时任务
Linux的基本操作——crond定时任务 (opens new window)
yum install crontabs # 安装服务
service crond status # 查看状态
service crond start # 启动服务
service crond stop # 关闭服务
service crond restart # 重启服务
service crond reload # 重新载入配置
1
2
3
4
5
6
2
3
4
5
6
系统任务调度
[root@gitlab ~]# cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * user-name command to be executed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
2
3
4
5
6
7
8
9
10
11
12
13
14
15
用户任务调度
所有用户定义的任务调度保存在 /var/spool/cron 目录中,以用户名命名。
# 文件管理
# 文本分析 - awk
awk '{print $2}'
$2:表示第二个字段
print $2 : 打印第二个字段
awk '{print $2}' $fileName : 一行一行的读取指定的文件, 以空格作为分隔符,打印第二个字段
# 全局替换 - sed
sed -i 's/源字符串/新字符串/g'
1
# 输入输出 - tee
读取标准输入数据,并将内容输出到文件
-a 追加,不加表示覆盖
echo "test" | tee test.txt
echo "test" | tee -a test.txt
1
2
2
# 文件传输
# scp
Linux scp 命令用于 Linux 之间复制文件和目录。
scp 是 secure copy 的缩写, scp 是 linux 系统下基于 ssh 登陆进行安全的远程文件拷贝命令。
scp 是加密的,rcp 是不加密的,scp 是 rcp 的加强版。
scp local_file remote_username@remote_ip:remote_folder
scp local_file remote_username@remote_ip:remote_file
scp local_file remote_ip:remote_folder
scp local_file remote_ip:remote_file
# -P 端口
# -r 递归
scp -P remote_port local_file remote_username@remote_ip:remote_folder
scp -P remote_port -r local_folder remote_username@remote_ip:remote_folder
1
2
3
4
5
6
7
8
9
2
3
4
5
6
7
8
9
# 搜索命令 - find, locate, whereis, which
whereis 和 which 都是查找可执行文件路径的命令。
[root@linux opt]# whereis cp
cp: /usr/bin/cp /usr/share/man/man1/cp.1.gz
[root@linux opt]# which cp
alias cp='cp -i'
/usr/bin/cp
1
2
3
4
5
2
3
4
5
# EOF, >, >>, <, <<
EOF是END Of File的缩写,表示自定义终止符。
<<EOF # 开始
…
EOF # 结束
1
2
3
2
3
< : 输入重定向
<< : 标准输入来自命令行的一对分隔号的中间内容
> : 输出重定向
>> : 输出重定向,进行追加,不会覆盖之前内容
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://4uv4xvt5.mirror.aliyuncs.com"]
}
EOF
1
2
3
4
5
2
3
4
5
# ssh & ssh-keygen
# 连接远程服务器
ssh -p port username@ip
# 查看安装 ssh-keygen 的程序
rpm -qf `which ssh-keygen`
# 生成密钥对
ssh-keygen
ssh-keygen -t rsa -P "" -f /root/.ssh/id_rsa
# 发布公钥
ssh-copy-id -i /root/.ssh/id_rsa.pub root@192.168.1.17
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
ssh 免密登录,scp免密传输,使用ssh-keygen生成密钥对,然后将公钥发布出去即可。
注意:A服务器连B服务器,在A服务器使用ssh-keygen生成密钥对,然后使用ssh-copy-id将公钥发布到B服务器。
# grep
grep 用于查找文件里符合条件的字符串。
- -v 不显示匹配到的行
grep -v 字符串
1
# 实用脚本
# 如果文件存在,则删除
log_path=/opt/webapp/uuap-api-ssh/log.log
if [ -f log_path ]; then
rm ${log_path};
fi
1
2
3
4
2
3
4
# 如果目录不存在,则创建
backup_path=/opt/webapp_backup/uuap-api-ssh/${BUILD_NUMBER}
if [ ! -d ${backup_path} ];then
mkdir -p ${backup_path}
fi
1
2
3
4
2
3
4