闲者博客 - 命令 https://bk1314.com/tag/%E5%91%BD%E4%BB%A4/ zh-CN Thu, 03 Mar 2022 01:43:00 +0800 Thu, 03 Mar 2022 01:43:00 +0800 liunx centos yum update kernel 命令方法 https://bk1314.com/54.html https://bk1314.com/54.html Thu, 03 Mar 2022 01:43:00 +0800 飞鱼 1.查看当前kernel版本

uname -r

2.查看已安装版本

rpm -q kernel

3.查看可升级kernel版本

yum list kernel

4.升级kernel版本

yum update kernel

5.删除旧的内核

方法一:安装yum-utls:

yum install -y yum-utils

设置你想要保留多少旧的内核,比如我想保留两个:

sudo package-cleanup --oldkernels --count=2

方法二:直接删除对应版本

rpm -e kernel-*

6.设置永久的内核安装数量

vim /etc/yum.conf

设置installonly_limit=2,2为数量

7.服务器重启后,使用前几步查看的信息会变为新的kernel版本信息

[post cid="53" /]

[post cid="52" /]

]]>
0 https://bk1314.com/54.html#comments https://bk1314.com/feed/tag/%E5%91%BD%E4%BB%A4/
liunx之间互相传输文件命令支持断点rsync https://bk1314.com/22.html https://bk1314.com/22.html Wed, 23 Feb 2022 22:09:00 +0800 飞鱼 rsync -rP --rsh=ssh --bwlimit=2000 /data/backup/site/www.fyvps.cn.zip [email protected]:/www/wwwroot/www.fyvps.cn

上面命令解释
--bwlimit=2000 //限速2000字节
/data/backup/site/www.fyvps.cn.zip r//本机需要传输的文件地址
root//远程机器的用户名
192.168.1.1//远程机器的IP
/www/wwwroot/www.fyvps.cn//需要传输到的远程机器目录
执行上面命令后需要输入yes/no 输入yes 然后password是远程机器的密码
本命令支持断点续传

]]>
1 https://bk1314.com/22.html#comments https://bk1314.com/feed/tag/%E5%91%BD%E4%BB%A4/