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

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

相关推荐
一个有温度的技术博主10 小时前
Linux 核心命令速查指南:从文件操作到系统运维
linux·服务器
小小的木头人10 小时前
Docker 环境下迁移 containerd 数据目录:从 `/var/lib/containerd` 到 `/data/containerd`
linux·docker
天远数科11 小时前
零信任架构实战:基于天远全能消金报告构建自动化信贷评估网关
运维·人工智能·架构·自动化
东城居士11 小时前
验证第一个Linux字符驱动程序
linux·嵌入式系统
网硕互联的小客服13 小时前
各个版本的Linux系统如何修改远程端口ssh端口?
linux·运维·服务器·网络
T1mzhou13 小时前
ARM64 Linux 6.10 内核驱动(12):dd.c:probe/ remove、延迟 probe
linux·服务器·c语言·arm开发·arm
Mr小林15 小时前
Docker 安装教程(在线 + 离线)
运维·docker·容器
JudithHuang16 小时前
把本地服务暴露到公网
运维
yt004yt16 小时前
### 越华环保集团|绿岛 VOCs 集中治理,管网系统安全设计工程实战分享
大数据·运维
yt004yt17 小时前
越华环保集团|绿岛 VOCs 集中治理,管网系统安全设计工程实战分享
大数据·运维