linux 常用命令/软件包

yum install bash-completion  -y #命令补全 需要重启生效

 

PS1="\[\e[01;31m\][\[\e[01;34m\]\u\[\e[01;32m\]@\h \[\e[01;35m\]\W\[\e[01;33m\]]\\$\[\e[0m\]"

 


curl -o /etc/yum.repos.d/epel.repo  http://mirrors.aliyun.com/repo/epel-7.repo


curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

 

netstat是net-tools里面的一个命令,yum install net-tools组件

yum -y install  net-tools lrzsz sshd 

 

find / -type f -size +10M  -print0 | xargs -0 du -h | sort -nr

 

du -m /usr --max-depth=1 | sort -nr | head

posted @ 2021-05-07 15:01  Linux_小白  阅读(85)  评论(0)    收藏  举报