Centos 基本命令整理

硬盘类。

  1. lsblk                                                                                  查看分区磁盘
  2. df -h                                                                                            查看空间使用情况
  3. fdisk -l                                                                                         分区工具查看分区信息
  4. cfdisk /dev/sda                                                                            查看分区
  5. blkid                                                                                            查看硬盘label(别名)
  6. du -sh ./*                                                                                     统计当前目录各文件夹大小
  7. free -h                                                                                         查看内存大小
  8. cat /proc/cpuinfo| grep “cpu cores”| uniq                                    查看cpu核心数
  9. cat /proc/cpuinfo| grep “physical id”|uniq| wc -l                                查看物理cpu个数
  10. cat /proc/cpuinfo| grep “processor”| wc -l                                         查看逻辑cpu的个数
  11. netstat -ant|awk ‘/^tcp/ {++S[$NF]} END {for(a in S) print (a,S[a])}’  查看当前网络连接情况
Categories:

Leave a Reply

Your email address will not be published. Required fields are marked *