当前位置:   article > 正文

linux中20个高级命令--【转载自微信公众号入门小站】_authoritative answers can be found from:

authoritative answers can be found from:

41. ifconfig命令

ifconfig用于配置内核常驻网络接口。它用于在启动时根据需要设置接口。

检查活动网络接口

  1. [rumenz@local ~]$ ifconfig 
  2. eth0      Link encap:Ethernet  HWaddr 40:2C:F4:EA:CF:0E  
  3.           inet addr:192.168.1.3  Bcast:192.168.1.255  Mask:255.255.255.0 
  4.           inet6 addr: fe80::422c:f4ff:feea:cf0e/64 Scope:Link 
  5.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
  6.           RX packets:163843 errors:0 dropped:0 overruns:0 frame:0 
  7.           TX packets:124990 errors:0 dropped:0 overruns:0 carrier:0 
  8.           collisions:0 txqueuelen:1000 
  9.           RX bytes:154389832 (147.2 MiB)  TX bytes:65085817 (62.0 MiB) 
  10.           Interrupt:20 Memory:f7100000-f7120000 
  11. lo        Link encap:Local Loopback  
  12.           inet addr:127.0.0.1  Mask:255.0.0.0 
  13.           inet6 addr: ::1/128 Scope:Host 
  14.           UP LOOPBACK RUNNING  MTU:16436  Metric:1 
  15.           RX packets:78 errors:0 dropped:0 overruns:0 frame:0 
  16.           TX packets:78 errors:0 dropped:0 overruns:0 carrier:0 
  17.           collisions:0 txqueuelen:0 
  18.           RX bytes:4186 (4.0 KiB)  TX bytes:4186 (4.0 KiB)

检查所有网络接口

使用-a显示所有接口的详细信息

  1. [rumenz@local ~]$ ifconfig -a
  2. eth0      Link encap:Ethernet  HWaddr 40:2C:F4:EA:CF:0E  
  3.           inet addr:192.168.1.3  Bcast:192.168.1.255  Mask:255.255.255.0 
  4.           inet6 addr: fe80::422c:f4ff:feea:cf0e/64 Scope:Link 
  5.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
  6.           RX packets:163843 errors:0 dropped:0 overruns:0 frame:0 
  7.           TX packets:124990 errors:0 dropped:0 overruns:0 carrier:0 
  8.           collisions:0 txqueuelen:1000 
  9.           RX bytes:154389832 (147.2 MiB)  TX bytes:65085817 (62.0 MiB) 
  10.           Interrupt:20 Memory:f7100000-f7120000 
  11. lo        Link encap:Local Loopback  
  12.           inet addr:127.0.0.1  Mask:255.0.0.0 
  13.           inet6 addr: ::1/128 Scope:Host 
  14.           UP LOOPBACK RUNNING  MTU:16436  Metric:1 
  15.           RX packets:78 errors:0 dropped:0 overruns:0 frame:0 
  16.           TX packets:78 errors:0 dropped:0 overruns:0 carrier:0 
  17.           collisions:0 txqueuelen:0 
  18.           RX bytes:4186 (4.0 KiB)  TX bytes:4186 (4.0 KiB) 
  19. virbr0    Link encap:Ethernet  HWaddr 0e:30:a3:3a:bf:03  
  20.           inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0
  21.           UP BROADCAST MULTICAST  MTU:1500  Metric:1
  22.           RX packets:0 errors:0 dropped:0 overruns:0 frame:0
  23.           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
  24.           collisions:0 txqueuelen:0 
  25.           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

禁用网卡

[rumenz@local ~]ifconfig eth0 down

启用网卡

[rumenz@local ~]ifconfig eth0 up

为网卡分配 IP 地址

指定 192.168.1.12 作为网卡 eth0 的 IP 地址。

[rumenz@local ~]ifconfig eth0 192.168.1.12

更改网卡eth0的子网掩码

[rumenz@local ~]ifconfig eth0 netmask 255.255.255.

更改网卡 eth0 的广播地址

[rumenz@local ~]ifconfig eth0 broadcast 192.168.1.255

为网卡 eth0 分配 IP 地址、网络掩码和广播

[rumenz@local ~]$ ifconfig eth0 192.168.1.12 netmask 255.255.255.0 broadcast 192.168.1.255

Note: 如果使用无线网络,则需要使用命令 iwconfig。欲了解更多ifconfig 命令示例和用法,请阅读[15 个有用的 ifconfig 命令]。

42. netstat命令

netstat命令显示各种网络相关信息,如网络连接、路由表

列出所有网络端口

  1. [rumenz@local ~]$ netstat -a
  2. Active UNIX domain sockets (servers and established)
  3. Proto RefCnt Flags       Type       State         I-Node   Path
  4. unix  2      [ ACC ]     STREAM     LISTENING     741379   /run/user/user1/keyring-I5cn1c/gpg
  5. unix  2      [ ACC ]     STREAM     LISTENING     8965     /var/run/acpid.socket
  6. unix  2      [ ACC ]     STREAM     LISTENING     18584    /tmp/.X11-unix/X0
  7. unix  2      [ ACC ]     STREAM     LISTENING     741385   /run/user/user1/keyring-I5cn1c/ssh
  8. unix  2      [ ACC ]     STREAM     LISTENING     741387   /run/user/user1/keyring-I5cn1c/pkcs11
  9. unix  2      [ ACC ]     STREAM     LISTENING     20242    @/tmp/dbus-ghtTjuPN46
  10. unix  2      [ ACC ]     STREAM     LISTENING     13332    /var/run/samba/winbindd_privileged/pipe
  11. unix  2      [ ACC ]     STREAM     LISTENING     13331    /tmp/.winbindd/pipe
  12. unix  2      [ ACC ]     STREAM     LISTENING     11030    /var/run/mysqld/mysqld.sock
  13. unix  2      [ ACC ]     STREAM     LISTENING     19308    /tmp/ssh-qnZadSgJAbqd/agent.3221
  14. unix  2      [ ACC ]     STREAM     LISTENING     436781   /tmp/HotShots
  15. unix  2      [ ACC ]     STREAM     LISTENING     46110    /run/user/ravisaive/pulse/native
  16. unix  2      [ ACC ]     STREAM     LISTENING     19310    /tmp/gpg-zfE9YT/S.gpg-agent
  17. ....

列出所有 TCP 端口

  1. [rumenz@local ~]$ netstat -at
  2. Active Internet connections (servers and established)
  3. Proto Recv-Q Send-Q Local Address           Foreign Address         State      
  4. tcp        0      0 localhost:mysql         *:*                     LISTEN     
  5. tcp        0      0 *:5901                  *:*                     LISTEN     
  6. tcp        0      0 *:5902                  *:*                     LISTEN     
  7. tcp        0      0 *:x11-1                 *:*                     LISTEN     
  8. tcp        0      0 *:x11-2                 *:*                     LISTEN     
  9. tcp        0      0 *:5938                  *:*                     LISTEN     
  10. tcp        0      0 localhost:5940          *:*                     LISTEN     
  11. tcp        0      0 ravisaive-OptiPl:domain *:*                     LISTEN     
  12. tcp        0      0 ravisaive-OptiPl:domain *:*                     LISTEN     
  13. tcp        0      0 localhost:ipp           *:*                     LISTEN     
  14. tcp        0      0 ravisaive-OptiPle:48270 ec2-23-21-236-70.c:http ESTABLISHED
  15. tcp        0      0 ravisaive-OptiPle:48272 ec2-23-21-236-70.c:http TIME_WAIT  
  16. tcp        0      0 ravisaive-OptiPle:48421 bom03s01-in-f22.1:https ESTABLISHED
  17. tcp        0      0 ravisaive-OptiPle:48269 ec2-23-21-236-70.c:http ESTABLISHED
  18. tcp        0      0 ravisaive-OptiPle:39084 channel-ecmp-06-f:https ESTABLISHED
  19. ...

显示所有端口的统计信息

  1. [rumenz@local ~]$ netstat -s
  2. Ip:
  3.     4994239 total packets received
  4.     0 forwarded
  5.     0 incoming packets discarded
  6.     4165741 incoming packets delivered
  7.     3248924 requests sent out
  8.     8 outgoing packets dropped
  9. Icmp:
  10.     29460 ICMP messages received
  11.     566 input ICMP message failed.
  12.     ICMP input histogram:
  13.         destination unreachable: 98
  14.         redirects: 29362
  15.     2918 ICMP messages sent
  16.     0 ICMP messages failed
  17.     ICMP output histogram:
  18.         destination unreachable: 2918
  19. IcmpMsg:
  20.         InType398
  21.         InType529362
  22.         OutType32918
  23. Tcp:
  24.     94533 active connections openings
  25.     23 passive connection openings
  26.     5870 failed connection attempts
  27.     7194 connection resets received
  28. ....

如果你不想将主机、端口和用户名解析为 netstat 的输出。

[rumenz@local ~]netstat -an

你可能需要不断获取 netstat 的输出,直到通过中断指令(ctrl+c)。

[rumenz@local ~]netstat -c

43. nslookup命令

一种网络实用程序,用于获取有关 Internet 服务器的信息。顾名思义,该实用程序通过查询来查找域的名称服务器信息DNS.

  1. [rumenz@local ~]$ nslookup rumenz.com 
  2. Server:  192.168.1.1 
  3. Address192.168.1.1#53 
  4. Non-authoritative answer: 
  5. Name: rumenz.com 
  6. Address50.16.67.239

查询邮件交换记录

  1. [rumenz@local ~]$ nslookup -query=mx rumenz.com 
  2. Server:  192.168.1.1 
  3. Address192.168.1.1#53 
  4. Non-authoritative answer: 
  5. rumenz.com mail exchanger = 0 smtp.secureserver.net. 
  6. rumenz.com mail exchanger = 10 mailstore1.secureserver.net. 
  7. Authoritative answers can be found from:

查询名称服务器

  1. [rumenz@local ~]$ nslookup -type=ns rumenz.com 
  2. Server:  192.168.1.1 
  3. Address192.168.1.1#53 
  4. Non-authoritative answer: 
  5. rumenz.com nameserver = ns3404.com. 
  6. rumenz.com nameserver = ns3403.com. 
  7. Authoritative answers can be found from:

查询 DNS 记录

  1. [rumenz@local ~]$ nslookup -type=any rumenz.com 
  2. Server:  192.168.1.1 
  3. Address192.168.1.1#53 
  4. Non-authoritative answer: 
  5. rumenz.com mail exchanger = 10 mailstore1.secureserver.net. 
  6. rumenz.com mail exchanger = 0 smtp.secureserver.net. 
  7. rumenz.com nameserver = ns06.domaincontrol.com. 
  8. rumenz.com nameserver = ns3404.com. 
  9. rumenz.com nameserver = ns3403.com. 
  10. rumenz.com nameserver = ns05.domaincontrol.com. 
  11. Authoritative answers can be found from:

查询权限开始

  1. [rumenz@local ~]$ nslookup -type=soa rumenz.com 
  2. Server:  192.168.1.1 
  3. Address192.168.1.1#53 
  4. Non-authoritative answer: 
  5. rumenz.com 
  6.   origin = ns3403.hostgator.com 
  7.   mail addr = dnsadmin.gator1702.hostgator.com 
  8.   serial = 2012081102 
  9.   refresh = 86400 
  10.   retry = 7200 
  11.   expire = 3600000 
  12.   minimum = 86400 
  13. Authoritative answers can be found from:

查询端口号

更改要连接的端口号

  1. [rumenz@local ~]$ nslookup -port 56 rumenz.com
  2. Server:  rumenz.com
  3. Address50.16.76.239#53
  4. Name: 56
  5. Address14.13.253.12

44. dig命令

dig是一个查询工具DNSnameservers 获取有关主机地址、邮件交换、名称服务器和相关信息的信息。这个工具可以在任何 Linux (Unix) 或Macintosh OS X操作系统。最典型的用途dig是简单地查询单个主机。

  1. [rumenz@local ~]$ dig rumenz.com
  2. <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> rumenz.com 
  3. ;; global options+cmd 
  4. ;; Got answer: 
  5. ;; ->>HEADER<

关闭注释行

  1. [rumenz@local ~]$ dig rumenz.com +nocomments 
  2. <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> rumenz.com +nocomments 
  3. ;; global options+cmd 
  4. ;rumenz.com.   IN A 
  5. rumenz.com.  14400 IN A 40.216.66.239 
  6. ;; Query time418 msec 
  7. ;; SERVER: 192.168.1.1#53(192.168.1.1
  8. ;; WHEN: Sat Jun 29 13:53:22 2013 
  9. ;; MSG SIZE  rcvd: 45

关闭来源段

  1. [rumenz@local ~]$ dig rumenz.com +noauthority 
  2. <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> rumenz.com +noauthority 
  3. ;; global options+cmd 
  4. ;; Got answer: 
  5. ;; ->>HEADER<

关闭附加段

  1. [rumenz@local ~]$ dig  rumenz.com +noadditional 
  2. <<>> DiG 9.9.2-P1 <<>> rumenz.com +noadditional
  3. ;; global options+cmd
  4. ;; Got answer:
  5. ;; ->>HEADER<

关闭统计段

  1. [rumenz@local ~]$ dig rumenz.com +nostats 
  2. <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> rumenz.com +nostats 
  3. ;; global options+cmd 
  4. ;; Got answer: 
  5. ;; ->>HEADER<

关闭结果段

  1. [rumenz@local ~]$ dig rumenz.com +noanswer 
  2. <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> rumenz.com +noanswer 
  3. ;; global options+cmd 
  4. ;; Got answer: 
  5. ;; ->>HEADER<

一次禁用所有部分

  1. [rumenz@local ~]$ dig rumenz.com +noall 
  2. <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> rumenz.com +noall 
  3. ;; global options+cmd

45. uptime命令

uptime命令能够打印系统总共运行了多长时间和系统的平均负载

  1. [rumenz@local ~]$ uptime
  2. 14:37:10 up  4:21,  2 users,  load average: 0.000.000.04

46. wall命令

管理员最重要的命令之一,wall向使用他们登录的每个人发送消息mesg权限设置为 yes。该消息可以作为参数给出wall,也可以发送到 wall 的标准输入。

  1. [rumenz@local ~]$ wall "we will be going down for maintenance for one hour sharply at 03:30 pm"
  2. Broadcast message from root@localhost.localdomain (pts/0) (Sat Jun 29 14:44:02 2013): 
  3. we will be going down for maintenance for one hour sharply at 03:30 pm

47. mesg命令

让你控制人们是否可以使用 write 命令,通过屏幕向你发送文本。

  1. mesg [n|y]
  2. n - prevents the message from others popping up on the screen.
  3. y – Allows messages to appear on your screen.

48. write命令

让你直接将文本发送到另一台 Linux 机器的屏幕,如果 mesgy

[rumenz@local ~]write ravisaive

49. talk命令

write命令,talk命令可让你与登录用户交谈。

[rumenz@local ~]talk ravisaive

Note: 如果talk命令未安装,你可以随时aptyum所需的包。

  1. [rumenz@local ~]yum install talk
  2. OR
  3. [rumenz@local ~]apt-get install talk

50. w命令

什么命令w 看起来你很有趣吗?但实际上并非如此。这是一个命令,即使它只有一个字母长!命令 w 的组合uptimewho命令一个接一个地发出,按照这个顺序。

  1. [rumenz@local ~]$ w
  2. 15:05:42 up  4:49,  3 users,  load average: 0.020.010.00 
  3. USER     TTY      FROM              LOGIN@   IDLE   JCPU   PCPU WHAT 
  4. server   tty7     :0               14:06    4:43m  1:42   0.08s pam: gdm-passwo 
  5. server   pts/0    :0.0             14:18    0.00s  0.23s  1.65s gnome-terminal 
  6. server   pts/1    :0.0             14:47    4:43   0.01s  0.01s bash

51. rename命令

顾名思义,此命令重命名文件。rename 将通过替换文件名中的第一个匹配项来重命名指定的文件。

Give the file names a1, a2, a3, a4.....1213

只需键入命令。

  1. rename a1 a0 a?
  2.  rename a1 a0 a??

52. 命令:top

显示进程CPU.默认情况下,此命令会自动刷新并继续显示CPU除非给出中断指令,否则处理。

  1. [rumenz@local ~]$ top
  2. top - 14:06:45 up 10 days, 20:57,  2 users,  load average: 0.100.160.21
  3. Tasks: 240 total,   1 running, 235 sleeping,   0 stopped,   4 zombie
  4. %Cpu(s):  2.0 us,  0.5 sy,  0.0 ni, 97.5 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
  5. KiB Mem:   2028240 total,  1777848 used,   250392 free,    81804 buffers
  6. KiB Swap:  3905532 total,   156748 used,  3748784 free,   381456 cached
  7.   PID USER      PR  NI  VIRT  RES  SHR S  %CPU %MEM    TIME+ COMMAND                                                                                                            
  8. 23768 ravisaiv  20   0 1428571m  41m S   2.3 28.9  14:27.52 firefox                                                                                                            
  9. 24182 ravisaiv  20   0  511132m  25m S   1.7  6.7   2:45.94 plugin-containe                                                                                                    
  10. 26929 ravisaiv  20   0  5344 1432  972 R   0.7  0.1   0:00.07 top                                                                                                                
  11. 24875 ravisaiv  20   0  263m  14m  10m S   0.3  0.7   0:02.76 lxterminal                                                                                                         
  12.     1 root      20   0  3896 1928 1228 S   0.0  0.1   0:01.62 init                                                                                                               
  13.     2 root      20   0     0    0    0 S   0.0  0.0   0:00.06 kthreadd                                                                                                           
  14.     3 root      20   0     0    0    0 S   0.0  0.0   0:17.28 ksoftirqd/0                                                                                                        
  15.     5 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kworker/0:0H                                                                                                       
  16.     7 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kworker/u:0H                                                                                                       
  17.     8 root      rt   0     0    0    0 S   0.0  0.0   0:00.12 migration/0                                                                                                        
  18.     9 root      20   0     0    0    0 S   0.0  0.0   0:00.00 rcu_bh                                                                                                             
  19.    10 root      20   0     0    0    0 S   0.0  0.0   0:26.94 rcu_sched                                                                                                          
  20.    11 root      rt   0     0    0    0 S   0.0  0.0   0:01.95 watchdog/0                                                                                                         
  21.    12 root      rt   0     0    0    0 S   0.0  0.0   0:02.00 watchdog/1                                                                                                         
  22.    13 root      20   0     0    0    0 S   0.0  0.0   0:17.80 ksoftirqd/1                                                                                                        
  23.    14 root      rt   0     0    0    0 S   0.0  0.0   0:00.12 migration/1                                                                                                        
  24.    16 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kworker/1:0H                                                                                                       
  25.    17 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 cpuset                                                                                                             
  26.    18 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 khelper                                                                                                            
  27.    19 root      20   0     0    0    0 S   0.0  0.0   0:00.00 kdevtmpfs                                                                                                          
  28.    20 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 netns                                                                                                              
  29.    21 root      20   0     0    0    0 S   0.0  0.0   0:00.04 bdi-default                                                                                                        
  30.    22 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kintegrityd                                                                                                        
  31.    23 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kblockd                                                                                                            
  32.    24 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 ata_sff

53. mkfs.ext4命令

此命令创建一个新的ext4指定设备上的文件系统,如果在此命令后跟随错误的设备,整个块将被擦除和格式化,因此建议不要运行此命令,除非并且直到你明白你在做什么。

  1. Mkfs.ext4 /dev/sda1 (sda1 block will be formatted)
  2. mkfs.ext4 /dev/sdb1 (sdb1 block will be formatted)

54. 命令:vi/emacs/nano

viemacs,nano是 Linux 中一些最常用的编辑器。它们通常用于编辑文本、配置、文件。

vi 编辑器

  1. [rumenz@local ~]touch a.txt (creates a text file a.txt) 
  2. [rumenz@local ~]vi a.txt (open a.txt with vi editor)

[按i 进入插入模式,否则你将无法输入任何内容]

echo "Hello"  (your text here for the file)
  1. alt+x(退出插入模式,记得在最后一个字母之间保留一些空格。

  2. ctrl+x命令或你的最后一句话将被删除)。

  3. :wq!(保存文件,用当前文本,记住!是覆盖)。

nano编辑器

[rumenz@local ~]$ nano a.txt (open a.txt file to be edited with nano)
edit, with the content, required

ctrl +x(关闭编辑器)。它将显示输出为:

  1. Save modified buffer (ANSWERING "No" WILL DESTROY CHANGES) ?                    
  2.  Y Yes 
  3.  N No           ^C Cancel

点击 y 到 yes 并输入文件名,你就完成了。

55. 命令:rsync

Rsync复制文件并有一个-P切换进度条。所以如果你安装了 rsync,你可以使用一个简单的别名。

alias cp='rsync -aP'

现在尝试在终端中复制一个大文件并查看包含剩余项目的输出,类似于进度条。

此外,保持和维护备份是系统管理员需要执行的最重要和最无聊的工作之一。Rsync 是一个非常好的工具(存在,还有其他几个)用于在终端中创建和维护备份。

  1. [rumenz@local ~]$ rsync -zvr IMG_5267copy\=33copy\=ok.jpg ~/Desktop/ 
  2. sending incremental file list 
  3. IMG_5267 copy=33 copy=ok.jpg 
  4. sent 2883830 bytes  received 31 bytes  5767722.00 bytes/sec 
  5. total size is 2882771  speedup is 1.00

Note-z用于压缩,-v 用于详细,-r 用于递归。

56. free命令

跟踪内存和资源与管理员执行的任何其他任务一样重要,并且free命令来拯救这里。

内存使用现状

  1. [rumenz@local ~]$ free
  2.              total       used       free     shared    buffers     cached
  3. Mem:       2028240    1788272     239968          0      69468     363716
  4. -/+ buffers/cache:    1355088     673152
  5. Swap:      3905532     157076    3748456

> 以 KB、MB 或 GB 为单位的调谐输出

  1. [rumenz@local ~]$ free -b
  2.              total       used       free     shared    buffers     cached
  3. Mem:    2076917760 1838272512  238645248          0   71348224  372670464
  4. -/+ buffers/cache: 1394253824  682663936
  5. Swap:   3999264768  160845824 3838418944
  1. [rumenz@local ~]$ free -k
  2.              total       used       free     shared    buffers     cached
  3. Mem:       2028240    1801484     226756          0      69948     363704
  4. -/+ buffers/cache:    1367832     660408
  5. Swap:      3905532     157076    3748456
  1. [rumenz@local ~]$ free -m
  2.              total       used       free     shared    buffers     cached
  3. Mem:          1980       1762        218          0         68        355
  4. -/+ buffers/cache:       1338        641
  5. Swap:         3813        153       3660
  1. [rumenz@local ~]$ free -g
  2.              total       used       free     shared    buffers     cached
  3. Mem:             1          1          0          0          0          0
  4. -/+ buffers/cache:          1          0
  5. Swap:            3          0          3

人类可读格式展示

  1. [rumenz@local ~]$ free -h
  2.              total       used       free     shared    buffers     cached
  3. Mem:          1.9G       1.7G       208M         0B        68M       355M
  4. -/+ buffers/cache:       1.3G       632M
  5. Swap:         3.7G       153M       3.6G

定期检查输出

  1. [rumenz@local ~]$ free -s 3
  2.              total       used       free     shared    buffers     cached
  3. Mem:       2028240    1824096     204144          0      70708     364180
  4. -/+ buffers/cache:    1389208     639032
  5. Swap:      3905532     157076    3748456
  6.              total       used       free     shared    buffers     cached
  7. Mem:       2028240    1824192     204048          0      70716     364212
  8. -/+ buffers/cache:    1389264     638976
  9. Swap:      3905532     157076    3748456

57. mysqldump命令

你应该已经从该命令的名称中了解了该命令的实际含义。mysqldump命令将所有或特定的数据库数据转储(备份)到给定的文件中。例如,

[rumenz@local ~]$ mysqldump -u root -p --all-databases > /home/server/Desktop/backupfile.sql

Notemysqldump需要运行 mysql 并正确密码进行授权。我们已经介绍了一些有用的 mysqldump使用 mysqldump命令进行数据库备份的命令

58. mkpasswd命令

制作指定长度的难以猜测的随机密码。

  1. [rumenz@local ~]$ mkpasswd -l 10
  2. zI4+Ybqfx9
  1. [rumenz@local ~]$ mkpasswd -l 20 
  2. w0Pr7aqKk&hmbmqdrlmk

Note-l 10生成一个随机密码10字符而-l 20生成字符密码20,它可以设置为任何以获得所需的结果。此命令非常有用,通常以脚本语言实现以生成随机密码。你可能需要yumaptexpect' 包来使用这个命令。

  1. [root@rumenz ~]# yum install expect 
  2. OR
  3. [root@rumenz ~]# apt-get install expect

59. paste命令

使用行合并两个或多个文本文件

  1. [rumenz@local ~] cat rumenz1.txt                  #rumenz1.txt文件的内容  
  2. 1
  3. 2
  4. 3
  5. [rumenz@local ~] cat rumenz2.txt                  #rumenz2.txt   文件的内容  
  6. 4
  7. [rumenz@local ~] cat rumenz3.txt                  #rumenz3.txt文件的内容  
  8. 5
  9. 6
  10. [rumenz@local ~] paste rumenz1.txt rumenz2.txt  rumenz3.txt   
  11. 1
  12. 2
  13. 3
  14. 4
  15. 5
  16. 6

60. lsof命令

lsof代表 list open files 并显示你的系统当前打开的所有文件。找出哪些进程使用某个文件或显示单个进程的所有文件非常有用。

  1. [rumenz@local ~]$ lsof 
  2. COMMAND     PID   TID            USER   FD      TYPE     DEVICE SIZE/OFF       NODE NAME
  3. init          1                  root  cwd       DIR        8,1     4096          2 /
  4. init          1                  root  rtd       DIR        8,1     4096          2 /
  5. init          1                  root  txt       REG        8,1   227432     395571 /sbin/init
  6. ...

相关文章

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/130847
推荐阅读
相关标签
  

闽ICP备14008679号