debian和ubuntu,centos系统一键更新清理,系统效率再提升
Debian,Ubuntu
查看系统启动时间
1 | systemd-analyze |
一键纯净更新
1 | apt update -y && apt full-upgrade -y && apt autoremove -y && apt autoclean -y |
安装常用工具
1 | apt install -y curl wget sudo |
一键清理垃圾
1 | sudo apt autoremove --purge -y |
查看Debian版本
1 | cat /etc/debian_version |
查看Ubuntu版本
1 | cat /etc/lsb-release |
CentOS
应广大CentOS 用户要求 哈哈 下面是CentOS命令
查看系统启动时间
1 | systemd-analyze |
一键纯净更新
1 | yum update -y && yum upgrade -y && yum autoremove -y && yum clean all |
一键清理垃圾
1 | sudo yum autoremove |
查看CentOS版本
1 | cat /etc/centos-release |
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 赛博空间!
评论