惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
P
Proofpoint News Feed
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
IT之家
IT之家
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
C
Check Point Blog
Microsoft Azure Blog
Microsoft Azure Blog
aimingoo的专栏
aimingoo的专栏
月光博客
月光博客
美团技术团队
D
Docker
博客园 - Franky
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 【当耐特】
罗磊的独立博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

运维 on 打工人日志

Tmux 安装和使用教程 使用 ElasticSearch Curator 7天定期删除日志 GNU/Linux 一键更换系统软件源脚本 在windows上安装appium 可观测性和监控的区别 systemd 守护命令 Linux crontab 命令 linux基础知识 yaml 语法 iptables 基础知识 网络基础知识 linux服务基础知识 mysql基础知识 shell基础知识 运维知识图谱
linux常用命令
作者 · 2022-02-12 · via 运维 on 打工人日志
jobcher

2022年2月12日 1 分钟阅读 基础 基础知识系列 运维

本页内容


linux 常用命令

软件操作命令

 1#软件包管理器
 2yum
 3# 安装软件
 4yum install xxxx
 5# 卸载软件
 6yum remove xxx
 7# 搜索软件
 8yum search xxx
 9# 清理缓存
10yum clean packages
11# 列出已安装
12yum list
13# 软件包信息
14yum info

服务器硬件资源和磁盘操作

 1# 内存
 2free -h
 3# 硬盘
 4df -h
 5# 负载
 6w/top/htop
 7# 查看cpu
 8cat /proc/cpuinfo
 9# 查看磁盘
10fdisk -l

文件和文件夹操作命令

命令解释
ls查看目录下的文件
touch新建文件
mkdir新建目录
cd进入目录
rm删除文件和目录
cp复制
mv移动
pwd显示路径

系统用户操作命令

防火墙相关设置

提权操作 sudo 和文件传输