列举部分Centos7最小化安装需要的基本工具

CentOS Linux release 7.9.2009 (Core)

最小化安装一般没有vim,先要使用vi编辑yum.repo下的.repo文件配置yum源
配置好后安装vim

[root@localhost ~]# yum install -y vim

习惯使用dnf安装的可以安装dnf,和yum基本没有多大区别

[root@localhost ~]# yum install -y dnf

wget下载

[root@localhost ~]# yum install -y wget

安装命令自动补全工具,安装后重启生效

[root@localhost ~]# yum -y install bash-completion

安装网络管理工具

[root@localhost ~]# yum install NetworkManager  #对应的nmcli命令
[root@localhost ~]# yum install NetworkManager-tui    #如果没有图形化管理,可以安装这个,对应nmtui

树状查看结构tree

[root@localhost ~]# yum install -y tree

文件上传和下载

[root@localhost ~]# yum install -y lrzsz.x86_64 

killall命令

[root@localhost ~]# yum install -y psmisc.x86_64 

压缩和解压缩,一般默认有gzip,gunzip,xz,unxz

[root@localhost ~]# yum install -y zip
[root@localhost ~]# yum install -y unzip   #zip压缩和unzip解压
[root@localhost ~]# yum install -y bzip2   #bzip2

ntp管理

[root@localhost ~]# yum install -y chrony

例行性工作管理

[root@localhost ~]# yum install -y crontabs

web管理

[root@localhost ~]# yum install -y httpd
[root@localhost ~]# yum install mod_ssl -y   #openssl密码保护,多用于https

nfs文件共享管理

[root@localhost ~]# yum install -y rpcbind   
[root@localhost ~]# yum install -y nfs-utils #用于nfs共享发布和访问 
[root@localhost ~]# yum install -y autofs   #自动挂载

dns域名管理

[root@localhost ~]# yum install -y bind

部分服务下载完成需要手动开启

[root@localhost ~]# systemctl start 服务名
[root@localhost ~]# systemctl enable 服务名

你可能感兴趣的:(#,网卡,yum配置,磁盘,Linux,centos,linux,运维,core,最小化安装)