Linux常用命令 发表于 2019-11-12 更新于 2021-07-20 7z 12345678# 安装 p7zipyum install p7zip# 压缩7za a dump.7z dump.sql# 解压缩7za x dump.7z mysql备份 12345678910# 为了不输入密码vim ~/.my.cnf# 输入以下内容[mysqldump]user=rootpassword=the-password# mysqldump 同时7z压缩mysqldump databaseName | 7za a -si databaseName_2020_01_01.7z rsync 限速拷贝 1rsync -e "ssh -p 23854" --progress --bwlimit=450 root@192.168.100.200:/path/to/file.7z /path/to/file.7z 该有的权限,却提示没有时 123456# 查看权限[root@linux ~]# lsattr YourFile ---i---------- YourFile[root@linux ~]# chattr -i YourFile[root@linux ~]# lsattr YourFile -------------- YourFile ps命令用不了(因为中过毒) 12345# rpm 删掉这个软件rpm -e --nodeps procps# yum重新装一下yum install procps