CentOS 7 Minimal 常用软件工具安装指南

一、系统工具类

1. 网络工具

bash 复制代码
yum install -y net-tools    # ifconfig, netstat
yum install -y wget curl    # 下载工具
yum install -y telnet       # 网络测试
yum install -y bind-utils   # nslookup, dig

2. 系统监控

bash 复制代码
yum install -y epel-release  # 先安装 EPEL 源
yum install -y htop         # 增强型任务管理器
yum install -y iotop        # I/O 监控
yum install -y nethogs      # 网络流量监控

3. 文本编辑和查看

bash 复制代码
yum install -y vim         # 文本编辑器
yum install -y tree        # 树形目录显示
yum install -y lsof        # 查看打开文件
yum install -y psmisc      # killall, pstree

二、开发工具类

1. 编译环境

bash 复制代码
yum groupinstall -y "Development Tools"
yum install -y gcc-c++ make cmake

2. 版本控制

bash 复制代码
yum install -y git
yum install -y subversion

3. 运行环境

bash 复制代码
yum install -y java-1.8.0-openjdk
yum install -y python3
yum install -y perl

三、服务管理类

1. Web 服务器

bash 复制代码
yum install -y httpd       # Apache
systemctl start httpd
systemctl enable httpd

2. 数据库

bash 复制代码
yum install -y mariadb-server mariadb
systemctl start mariadb
systemctl enable mariadb

3. SSH 增强

bash 复制代码
yum install -y openssh-server openssh-clients
systemctl start sshd
systemctl enable sshd

四、实用小工具

1. 压缩解压

bash 复制代码
yum install -y unzip zip
yum install -y bzip2
yum install -y tar

2. 时间同步

bash 复制代码
yum install -y ntpdate
ntpdate time.windows.com

3. 文件传输

bash 复制代码
yum install -y lrzsz       # rz/sz 命令
yum install -y vsftpd      # FTP 服务器

五、一键安装脚本

常用工具集合

bash 复制代码
yum install -y epel-release
yum install -y vim wget curl git tree htop net-tools lsof unzip

开发环境集合

bash 复制代码
yum groupinstall -y "Development Tools"
yum install -y java-1.8.0-openjdk python3 httpd mariadb-server

六、配置建议

1. 更新系统

bash 复制代码
yum update -y

2. 清理缓存

bash 复制代码
yum clean all

3. 禁用不需要的服务

bash 复制代码
systemctl stop postfix    # 邮件服务
systemctl disable postfix

七、总结

  • 必装工具:vim, wget, net-tools, epel-release
  • 推荐监控:htop, iotop, nethogs
  • 开发环境:Development Tools, git, java, python3

根据实际需求选择安装,避免安装不必要的软件以保持系统轻量。

相关推荐
源远流长jerry25 分钟前
NFV(网络功能虚拟化):重塑未来网络架构的革命性技术
linux·服务器·网络·架构
CDN36030 分钟前
CDN 缓存不生效 / 内容不更新?7 种原因 + 一键刷新方案
运维·网络安全·缓存
原来是猿31 分钟前
进程间通信(三):命名管道
linux·服务器·网络·git
满天星830357732 分钟前
【MySQL】表的操作
linux·服务器·数据库·mysql
野木香33 分钟前
fnm在win10下安装配置
运维·学习
17(无规则自律)1 小时前
深度剖析Linux Input子系统(2):驱动开发流程与现代 Multi-touch 协议
linux·驱动开发·嵌入式硬件
wydaicls1 小时前
什么时候触发负载均衡(kernel 6.12)
运维·负载均衡
kainx1 小时前
Linux编译eeprom
linux·运维·c语言·eeprom
cooldream20091 小时前
Windows11中 WSL2全方位安装与实战指南
linux·部署·wsl
文静小土豆2 小时前
标签和选择器(Label和 Selector)
linux·前端