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

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

相关推荐
Sheffield9 小时前
Docker的跨主机服务与其对应的优缺点
linux·网络协议·docker
Sheffield17 小时前
Alpine是什么,为什么是Docker首选?
linux·docker·容器
舒一笑1 天前
程序员效率神器:一文掌握 tmux(服务器开发必备工具)
运维·后端·程序员
Johny_Zhao1 天前
centos7安装部署openclaw
linux·人工智能·信息安全·云计算·yum源·系统运维·openclaw
haibindev1 天前
在 Windows+WSL2 上部署 OpenClaw AI员工的实践与踩坑
linux·wsl2·openclaw
NineData2 天前
数据库管理工具NineData,一年进化成为数万+开发者的首选数据库工具?
运维·数据结构·数据库
梦想很大很大2 天前
拒绝“盲猜式”调优:在 Go Gin 项目中落地 OpenTelemetry 链路追踪
运维·后端·go
Sinclair2 天前
内网服务器离线安装 Nginx+PHP+MySQL 的方法
运维
叶落阁主2 天前
Tailscale 完全指南:从入门到私有 DERP 部署
运维·安全·远程工作