`
流浪鱼
  • 浏览: 1683115 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

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能打开远程的文件,用于传送??

 

分享到:
评论

相关推荐

    Linux命令大全完整版.pdf

    本文将详细解读《Linux命令大全完整版.pdf》中所收录的各类命令,以帮助读者更好地理解和运用Linux命令。 1. Linux系统管理命令 系统管理命令是Linux系统中最重要的命令类别之一,涵盖了用户管理、进程控制、系统...

    Linux 命令速查手册

    Linux命令速查手册作为一本全面介绍Linux命令的参考书籍,由美国作者Scott Granneman所著,并由成保栋与李保强翻译成中文版本。本书是图灵系统与网络管理技术丛书之一,适合所有与Linux相关的工作人员以及初学者,...

    Linux命令大全搜索工具

    Linux 命令大全搜索工具提供了一个详细的命令列表,包括 A series 命令、apachectl 命令、arp 命令、atop 命令、awk 命令、axel 命令等。这些命令涵盖了 Linux 系统中的各种功能,例如文件管理、网络管理、系统管理...

    Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全

    Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 Linux命令大全 ...

    Linux命令大全(CHM格式离线版)

    Linux命令大全(CHM格式离线版) Linux命令大全(修改版) 进行重新编译的说明 文件传输 bye ftp ftpcount ftpshut ftpwho ncftp tftp uucico uucp uupick uuto 备份压缩 ar bunzip2 bzip2 bzip2recover compress cpio ...

    Linux 命令全集.chm

    Linux 命令全集.chm

    Linux学习课件及Linux命令大全

    Linux课件(ppt)外加一个《Linux命令大全》: Linux_内核完全注释_V11.pdf VI的常见用法.doc 第1章 Linux概况及安装.ppt 第2章 Linux的常用命令.ppt 第3章 Linux系统管理.ppt 第4章 Linux网络基础.ppt 第5章 ...

    linux命令壁纸1920*1080

    linux命令壁纸1920*1080尺寸,留有快捷键放置空间,方便对linux操作系统中各个命令的记忆。

    Linux命令模板 licote 1.1.0

    Licote是Linux command template的缩写,顾名思义就是Linux命令模板。用于快速编写一个linux环境的命令程序,当然如果你愿意,你可以用于任何程序中;Licote的主要任务就是帮助你解析linux环境下的常用命令选项,让...

    Linux命令大全(完整版)+小白速成+面试必备+学不会来找我.rar

    这个压缩包文件“Linux命令大全(完整版)+小白速成+学不会来找我”提供了一套全面的Linux命令教程,旨在帮助初学者快速上手,并为面试做准备。 首先,让我们了解Linux的基础知识。Linux是一种类Unix操作系统,它...

    linux命令.txt

    linux 命令 - 开关机 - 文件操作 - 系统命令 1. top 2. who 3. ifconfig 4. ping 5. kill 6. man 7.clear 8.netstat 4. 软件管理 - dpkg :离线 .deb .rpm .apk - apt-get :在线 5. 压缩解压 tar -...

    Linux命令模板 licote 1.2.2

    Licote是Linux command template的缩写,顾名思义就是Linux命令模板。用于快速编写一个linux环境的命令程序,当然如果你愿意,你可以用于任何程序中;Licote的主要任务就是帮助你解析linux环境下的常用命令选项,让...

    Linux命令大全(修改版)

    linux命令是对Linux系统进行管理的命令。对于Linux系统来说,无论是中央处理器、内存、磁盘驱动器、键盘、鼠标,还是用户等都是文件,Linux系统管理的命令是它正常运行的核心,与之前的DOS命令类似。linux命令在系统...

    linux命令大全linux指令大全(完整篇).pdf

    linux命令大全linux指令大全(完整篇).pdf

    linux命令官方源码

    Linux命令GNU官方源码,是coreutils-common-8.24这个软件包的命令,包含cp、mv、chgrp、chown等大多数基本命令,对学习C语言的人会有很大帮助,可以看看大神都是怎么写代码的TnT

    Linux 命令详解词典.pdf【第二部分】

    Linux 命令详解词典.pdf,施威铭研究室著,大小 74 MB,被压缩成两部分分别上传。这是第二部分,第一部分下载地址:http://download.csdn.net/source/2685010。 本书精选了 381 个 Linux 命令,详细罗列 1729 个范例...

    linux命令汇总+Linux命令大全

    linux命令汇总linux命令汇总+Linux命令大全linux命令汇总+Linux命令大全linux命令汇总+Linux命令大全linux命令汇总+Linux命令大全linux命令汇总+Linux命令大全linux命令汇总+Linux命令大全linux命令汇总+Linux命令...

Global site tag (gtag.js) - Google Analytics