linux命令

一、服务器硬件配置
1、查看硬盘及分区情况
[root@localhost software]# fdisk -l
Disk /dev/sda: 32.2 GB, 32212254720 bytes, 62914560 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk label type: dos
Disk identifier: 0x0003b3c3

Device Boot       Start         End      Blocks   Id  System
/dev/sda1   *        2048      616447      307200   83  Linux
/dev/sda2          616448     4876287     2129920   82  Linux swap / Solaris
/dev/sda3         4876288    62914559    29019136   83  Linux
2、查看分区空间使用情况
可以查看各分区大小、已使用、可用、已使用百分比、挂载情况
[root@localhost software]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sda3        28G  5.4G   23G  20% /
devtmpfs        482M     0  482M   0% /dev
tmpfs           490M  148K  490M   1% /dev/shm
tmpfs           490M  7.1M  483M   2% /run
tmpfs           490M     0  490M   0% /sys/fs/cgroup
/dev/sda1       297M  106M  192M  36% /boot

3、查看内存信息
1)使用free命令
默认单位为K,可通过结合参数-b、-k、-m分别以单位B、K、M进行显示
[root@localhost software]# free -m
             total       used       free     shared    buffers     cached
Mem:           979        810        169          3          0        165
-/+ buffers/cache:        644        334
Swap:         2079        194       1885
2)查看/proc/meminfo文件,可以获得比free命令更详细内存信息
# cat /proc/meminfo

4、CPU信息
1)查询CPU基本信息
# more /proc/cpuinfo
[root@localhost proc]# more /proc/cpuinfo | grep "model name" | sort | uniq
model name    : Intel(R) Core(TM) i7-4510U CPU @ 2.00GHz
2)查询有多少个CPU(相同physical id为同一个CPU)
[root@localhost proc]# more /proc/cpuinfo | grep "physical id" | sort | uniq
physical id    : 0
3)查询单个CPU核数
[root@localhost proc]# more /proc/cpuinfo | grep "cpu cores" | sort | uniq
cpu cores    : 1
4)查询单个CPU线程数(逻辑处理器)
[root@localhost proc]# more /proc/cpuinfo | grep siblings | sort | uniq
siblings    : 1

二、系统信息
1、查看系统信息
1)查看内核名称
[root@localhost proc]# uname -a
Linux localhost.localdomain 3.10.0-123.el7.x86_64 #1 SMP Mon Jun 30 12:09:22 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
[root@localhost proc]# more /etc/redhat-release
CentOS Linux release 7.0.1406 (Core)
3、查看主机名
[root@localhost ~]# hostname
localhost.localdomain
[root@localhost ~]# uname -n
localhost.localdomain
hostname对应的配置文件是/etc/sysconfig/network,如果配置文件中HOSTNAME为空、(none)、localhost或localhost.localdomain,就会尝试根据实际IP从/etc/hosts中查找映射的主机名,如果存在则使用该主机名,否则使用原来的HOSTNAME。

三、网络配置
1.查看服务
1)查看网络服务的状态、启动、停止或重启网络服务
# service network status|start|stop|restart
[root@localhost etc]# service sshd status
Redirecting to /bin/systemctl status  sshd.service
sshd.service - OpenSSH server daemon
   Loaded: loaded (/usr/lib/systemd/system/sshd.service; enabled)
   Active: active (running) since Fri 2015-07-24 02:22:22 PDT; 5 days ago
  Process: 15649 ExecStartPre=/usr/sbin/sshd-keygen (code=exited, status=0/SUCCESS)
 Main PID: 15651 (sshd)
   CGroup: /system.slice/sshd.service
           ?..15651 /usr/sbin/sshd -D

Jul 24 02:22:22 localhost.localdomain systemd[1]: Started OpenSSH server daemon.
Jul 24 02:22:22 localhost.localdomain sshd[15651]: Server listening on 0.0.0.0 port 22.
Jul 24 02:22:22 localhost.localdomain sshd[15651]: Server listening on :: port 22.
Jul 29 04:27:43 localhost.localdomain sshd[17327]: Accepted password for root from 192.168.176.1 port 58671 ssh2
Jul 29 21:41:14 localhost.localdomain sshd[20546]: Accepted password for root from 192.168.176.1 port 65042 ssh2
2)利用进程来查看某个进程或者服务是否存在
#ps -aux  | grep sshd
3)利用chkconfig配置工具可以列出所有的服务在各个runlevel的默认启动状态
#chkconfig --list
[root@localhost etc]# chkconfig --list

Note: This output shows SysV services only and does not include native
      systemd services. SysV configuration data might be overridden by native
      systemd configuration.

      If you want to list systemd services use 'systemctl list-unit-files'.
      To see services enabled on particular target use
      'systemctl list-dependencies [target]'.

iprdump            0:off    1:off    2:on    3:on    4:on    5:on    6:off
iprinit            0:off    1:off    2:on    3:on    4:on    5:on    6:off
iprupdate          0:off    1:off    2:on    3:on    4:on    5:on    6:off
jexec              0:off    1:on    2:on    3:on    4:on    5:on    6:off
netconsole         0:off    1:off    2:off    3:off    4:off    5:off    6:off
network            0:off    1:off    2:on    3:on    4:on    5:on    6:off
vmware-tools       0:off    1:off    2:on    3:on    4:on    5:on    6:off
vmware-tools-thinprint    0:off    1:off    2:on    3:on    4:on    5:on    6:off
2、显示、设置网络设备
1)查看已启用的网络接口信息
# ifconfig
 
2)查看所有网络接口配置
# ifconfig -a
 
3)查看eth0网络接口配置
# ifconfig eth0
 
4)启用eth0网络接口
# ifconfig eth0 up
# ifup eth0
 
5)关闭eth0网络接口
# ifconfig eth0 down
# ifdown eth0
 
6)实时(临时)修改eth0的IP地址
# ifconfig eth0 IP地址
 
7)实时(临时)修改eth0的IP地址、子网掩码
# ifconfig eth0 IP地址 netmask 子网掩码

四:文件、目录管理
1、find命令
查找文件或目录
1)寻找当前目录下,所有以file为前缀的文件或子目录
# find -name file\*
2)查找文件并将结果输出到filelist.txt文件中
# find -name file\* -fprint filelist.txt
3)列出目录下最近两天之内有变动的文件
# find /home -mtime 2
4)寻找dir目录中以file为前缀的文件或目录,寻找时最多只往下找1层子目录
# find dir/ -name file\* -maxdepth 2
2、file命令识别文件或目录的类型
1)查看/home/jsam目录下的文件及目录的类型
# file /home/jsam/*
2)查看指定文件或目录的类型
# file filename
2、du命令
显示文件或目录的大小。
1)显示当前目录下,所有子目录所占用的磁盘空间
# du
2)显示当前目录下,所有子目录所占用的磁盘空间。以bytes、K、M、可读性更高的方式显示大小
# du -b
# du -k
# du -m
# du -h(-h是使输出结果更易于人类阅读)
3)显示当前目录下,所有子目录所占用的磁盘空间。最多只显示2层子目录
# du --max-depth=2
4)显示当前目录下,所有子目录所占用的磁盘空间。显示目录大小时,并不包含其子目录的大小,即目录的大小排除了子目录的大小。
# du -S
5)显示当前目录所占用的磁盘空间
# du -s
# du -sh
6)显示当前目录下,所有子目录及文件各自占用的磁盘空间
# du -a
7)列出当前目录里最大的10个文件
# du -s * | sort -n | tail
注意:不要使用du -sh,尽管-h会使可读性更好,但单位可能不统一
8)history

列出已经执行的历史命令

9)rt能打开远程的文件,用于传送??

相关推荐