当前位置:首页 > linux > 实用技能:60个常用的Linux命令

实用技能:60个常用的Linux命令

N36个月前 (12-05)linux494

●查看硬件信息相关命令(8个)


ifconfig free fdisk ethtool mii-tool dmidecode dmesg lspci

●其它(19个)


echo printf rpm yum watch alias unalias date clear history eject time nohup nc xargs exec export unset type

●系统性能监视高级命令(12个)


uptime top free vmstat mpstat iostat sar chkconfig

内存:


top free vmstat mpstat iostat sar

CPU:


top vmstat mpstat iostat sar

I/O:


vmstat mpstat iostat sar

进程:


ipcs ipcrm lsof strace lstrace

负载:


uptime mount umount df du fsck dd dumpe2fs dump

●关机和查看系统信息的命令(3个)


shutdown halt init

●系统管理相关命令(8个)


uptime top free vmstat mpstat iostat sar chkconfig

●系统安全相关命令(10个)


chmod chown chgrp chage passwd su sudo umask chattr


扫描二维码推送至手机访问。

文章内容摘自网络,如有侵权请联系本站删除。

本文链接:https://www.net3c.com/post/117.html

标签: linux

相关文章

Job for network.service failed because the control process exited with error code问题

Job for network.service failed because the control process exited with error code问题

今天在centOS 7下更改完静态ip后发现network服务重启不了,翻遍了网络,尝试了各种方法,终于解决了。     现把各种解决方法归纳整理,希望能让后面的同学少走...

linux常用命令记忆

linux常用命令记忆

# free -h第一行: 系统物理内存的使用情况第二行: swap交换内存的使用情况total列: 系统中内存的总量,used列: 已用内存总量(used = total-free-buffers-...

linux lsof/netstat查看进程和端口号相关命令

linux lsof/netstat查看进程和端口号相关命令

  在linux操作时,经常要查看运行的项目的进程和端口号,在这里总结了以下常用到的相关命令:       1.查看系统运行的java项目,并查看进程...