Linux更新及安装命令 Debian更新:apt-get update && apt-get upgrade
Centos更新:yum update Debian安装curl:apt-get install curl
Centos安装curl:yum install curl Debian安装wget:apt-get install wget
Centos安装wget:yum install wget Centos安装XZ压缩工具:yum install xz Debian/Ubuntu 基础命令 更新软件源:apt-get update
更新升级所有软件:apt-get upgrade 清理旧版本的软件缓存:sudo apt-get autoclean
清理所有软件缓存:sudo apt-get clean
删除系统不再使用的孤立软件:sudo apt-get autoremove 查看内核版本:uname -a
查看ubuntu版本:cat /etc/issue 查看当前的内存使用情况:free -m
查看当前有哪些进程:ps -A
杀死一个进程:kill id / killall id / kill -9 id 安装 openssh-server:sudo apt-get install openssh-server
确认sshserver是否启动:ps -e | grep ssh Linux开启原版BBR echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
sysctl -p
lsmod | grep bbr Linux 常用的一键脚本
UnixBench跑分工具测试 bench.sh 测速脚本 wget -qO- bench.sh | bash
或者
curl -Lso- bench.sh | bash BestTrace 路由追踪 流媒体解锁检测脚本 一键DD纯净系统脚本(萌咖) CentOS/Debian/Ubuntu 系统安装完成后的默认用户名为root,默认密码为: MoeClub.org bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 11 -v 64 -a # Debian 11 64位 bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -u 20.04 -v 64 -a # Ubuntu 20.04 64位
|