20个高级命令Linux专家

感谢所有的喜欢,好的话和支持你在本文的前两部分给了我们。在第一篇文章中,我们对谁刚刚 切换到Linux和所需要的必要的知识,开始与这些用户讨论的命令。
  1. 20个有用的命令为Linux新手
在第二篇文章中,我们讨论了一个 中等水平的用户需要管理自己的系统的命令。
  1. 20个中级Linux用户的高级命令
下一步什么 ? 在这篇文章中,我将解释用于管理 Linux服务器所需的命令。

Linux专家命令

命令:ifconfig

使用ifconfig用于配置内核驻留网络接口。它在引导时用于根据需要设置接口。之后,它通常只需要在调试或需要系统调整时。
检查活动网络接口
[avishek@youcl ~]$ ifconfig 
eth0      Link encap:Ethernet  HWaddr 40:2C:F4:EA:CF:0E  
inet addr:192.168.1.3  Bcast:192.168.1.255  Mask:255.255.255.0 
inet6 addr: fe80::422c:f4ff:feea:cf0e/64 Scope:Link 
UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
RX packets:163843 errors:0 dropped:0 overruns:0 frame:0 
TX packets:124990 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:1000 
RX bytes:154389832 (147.2 MiB)  TX bytes:65085817 (62.0 MiB) 
Interrupt:20 Memory:f7100000-f7120000 
lo        Link encap:Local Loopback  
inet addr:127.0.0.1  Mask:255.0.0.0 
inet6 addr: ::1/128 Scope:Host 
UP LOOPBACK RUNNING  MTU:16436  Metric:1 
RX packets:78 errors:0 dropped:0 overruns:0 frame:0 
TX packets:78 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:0 
RX bytes:4186 (4.0 KiB)  TX bytes:4186 (4.0 KiB)
检查所有网络接口
所有的接口,包括使用 “-a”的说法残疾人接口的详情。
[avishek@youcl ~]$ ifconfig -a
eth0      Link encap:Ethernet  HWaddr 40:2C:F4:EA:CF:0E  
inet addr:192.168.1.3  Bcast:192.168.1.255  Mask:255.255.255.0 
inet6 addr: fe80::422c:f4ff:feea:cf0e/64 Scope:Link 
UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
RX packets:163843 errors:0 dropped:0 overruns:0 frame:0 
TX packets:124990 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:1000 
RX bytes:154389832 (147.2 MiB)  TX bytes:65085817 (62.0 MiB) 
Interrupt:20 Memory:f7100000-f7120000 
lo        Link encap:Local Loopback  
inet addr:127.0.0.1  Mask:255.0.0.0 
inet6 addr: ::1/128 Scope:Host 
UP LOOPBACK RUNNING  MTU:16436  Metric:1 
RX packets:78 errors:0 dropped:0 overruns:0 frame:0 
TX packets:78 errors:0 dropped:0 overruns:0 carrier:0 
collisions:0 txqueuelen:0 
RX bytes:4186 (4.0 KiB)  TX bytes:4186 (4.0 KiB) 
virbr0    Link encap:Ethernet  HWaddr 0e:30:a3:3a:bf:03  
inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0
UP BROADCAST MULTICAST  MTU:1500  Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0 
RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
禁用接口
[avishek@youcl ~]$ ifconfig eth0 down
启用接口
[avishek@youcl ~]$ ifconfig eth0 up
为接口分配IP地址
将“192.168.1.12”分配为接口eth0的IP地址。
[avishek@youcl ~]$ ifconfig eth0 192.168.1.12
更改接口eth0的子网掩码
[avishek@youcl ~]$ ifconfig eth0 netmask 255.255.255.
更改接口eth0的广播地址
[avishek@youcl ~]$ ifconfig eth0 broadcast 192.168.1.255
将IP地址,网络掩码和广播分配给接口eth0
[avishek@youcl ~]$ ifconfig eth0 192.168.1.12 netmask 255.255.255.0 broadcast 192.168.1.255
注意 :如果使用无线网络,您需要使用命令 “iwconfig的 ”。 欲了解更多“ 使用ifconfig”命令的例子和用法,阅读 15有用的“使用ifconfig”命令

命令:netstat

netstat命令显示各种网络相关信息,如网络连接,路由表,接口统计,伪装连接,组播成员等,
列出所有网络端口
[avishek@youcl ~]$ netstat -a
Active UNIX domain sockets (servers and established)
Proto RefCnt Flags       Type       State         I-Node   Path
unix  2      [ ACC ]     STREAM     LISTENING     741379   /run/user/user1/keyring-I5cn1c/gpg
unix  2      [ ACC ]     STREAM     LISTENING     8965     /var/run/acpid.socket
unix  2      [ ACC ]     STREAM     LISTENING     18584    /tmp/.X11-unix/X0
unix  2      [ ACC ]     STREAM     LISTENING     741385   /run/user/user1/keyring-I5cn1c/ssh
unix  2      [ ACC ]     STREAM     LISTENING     741387   /run/user/user1/keyring-I5cn1c/pkcs11
unix  2      [ ACC ]     STREAM     LISTENING     20242    @/tmp/dbus-ghtTjuPN46
unix  2      [ ACC ]     STREAM     LISTENING     13332    /var/run/samba/winbindd_privileged/pipe
unix  2      [ ACC ]     STREAM     LISTENING     13331    /tmp/.winbindd/pipe
unix  2      [ ACC ]     STREAM     LISTENING     11030    /var/run/mysqld/mysqld.sock
unix  2      [ ACC ]     STREAM     LISTENING     19308    /tmp/ssh-qnZadSgJAbqd/agent.3221
unix  2      [ ACC ]     STREAM     LISTENING     436781   /tmp/HotShots
unix  2      [ ACC ]     STREAM     LISTENING     46110    /run/user/ravisaive/pulse/native
unix  2      [ ACC ]     STREAM     LISTENING     19310    /tmp/gpg-zfE9YT/S.gpg-agent
....
列出所有TCP端口
[avishek@youcl ~]$ netstat -at
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address           Foreign Address         State      
tcp        0      0 localhost:mysql         *:*                     LISTEN     
tcp        0      0 *:5901                  *:*                     LISTEN     
tcp        0      0 *:5902                  *:*                     LISTEN     
tcp        0      0 *:x11-1                 *:*                     LISTEN     
tcp        0      0 *:x11-2                 *:*                     LISTEN     
tcp        0      0 *:5938                  *:*                     LISTEN     
tcp        0      0 localhost:5940          *:*                     LISTEN     
tcp        0      0 ravisaive-OptiPl:domain *:*                     LISTEN     
tcp        0      0 ravisaive-OptiPl:domain *:*                     LISTEN     
tcp        0      0 localhost:ipp           *:*                     LISTEN     
tcp        0      0 ravisaive-OptiPle:48270 ec2-23-21-236-70.c:http ESTABLISHED
tcp        0      0 ravisaive-OptiPle:48272 ec2-23-21-236-70.c:http TIME_WAIT  
tcp        0      0 ravisaive-OptiPle:48421 bom03s01-in-f22.1:https ESTABLISHED
tcp        0      0 ravisaive-OptiPle:48269 ec2-23-21-236-70.c:http ESTABLISHED
tcp        0      0 ravisaive-OptiPle:39084 channel-ecmp-06-f:https ESTABLISHED
...
显示所有端口的统计信息
[avishek@youcl ~]$ netstat -s
Ip:
4994239 total packets received
0 forwarded
0 incoming packets discarded
4165741 incoming packets delivered
3248924 requests sent out
8 outgoing packets dropped
Icmp:
29460 ICMP messages received
566 input ICMP message failed.
ICMP input histogram:
destination unreachable: 98
redirects: 29362
2918 ICMP messages sent
0 ICMP messages failed
ICMP output histogram:
destination unreachable: 2918
IcmpMsg:
InType3: 98
InType5: 29362
OutType3: 2918
Tcp:
94533 active connections openings
23 passive connection openings
5870 failed connection attempts
7194 connection resets received
....
好!由于某种原因,如果您不想将主机,端口和用户名解析为netstat的输出。
[avishek@youcl ~]$ netstat -an
好吧,你可能需要获得的netstat的连续输出,直到中断指令传递 (CTRL + C)。
[avishek@youcl ~]$ netstat -c
欲了解更多“ 的netstat”命令的例子和用法,请参阅文章 20 netstat命令的例子

命令:nslookup

用于获取有关Internet服务器的信息的网络实用程序。顾名思义,该实用程序发现域名服务器信息通过查询 DNS域。
[avishek@youcl ~]$ nslookup youcl.com 
Server:		192.168.1.1 
Address:	192.168.1.1#53 
Non-authoritative answer: 
Name:	youcl.com 
Address: 50.16.67.239
查询邮件交换器记录
[avishek@youcl ~]$ nslookup -query=mx youcl.com 
Server:		192.168.1.1 
Address:	192.168.1.1#53 
Non-authoritative answer: 
youcl.com	mail exchanger = 0 smtp.secureserver.net. 
youcl.com	mail exchanger = 10 mailstore1.secureserver.net. 
Authoritative answers can be found from:
查询Nameservers
[avishek@youcl ~]$ nslookup -type=ns youcl.com 
Server:		192.168.1.1 
Address:	192.168.1.1#53 
Non-authoritative answer: 
youcl.com	nameserver = ns3404.com. 
youcl.com	nameserver = ns3403.com. 
Authoritative answers can be found from:
查询DNS记录
[avishek@youcl ~]$ nslookup -type=any youcl.com 
Server:		192.168.1.1 
Address:	192.168.1.1#53 
Non-authoritative answer: 
youcl.com	mail exchanger = 10 mailstore1.secureserver.net. 
youcl.com	mail exchanger = 0 smtp.secureserver.net. 
youcl.com	nameserver = ns06.domaincontrol.com. 
youcl.com	nameserver = ns3404.com. 
youcl.com	nameserver = ns3403.com. 
youcl.com	nameserver = ns05.domaincontrol.com. 
Authoritative answers can be found from:
查询开始权限
[avishek@youcl ~]$ nslookup -type=soa youcl.com 
Server:		192.168.1.1 
Address:	192.168.1.1#53 
Non-authoritative answer: 
youcl.com 
origin = ns3403.hostgator.com 
mail addr = dnsadmin.gator1702.hostgator.com 
serial = 2012081102 
refresh = 86400 
retry = 7200 
expire = 3600000 
minimum = 86400 
Authoritative answers can be found from:
查询端口号
更改要连接的端口号
[avishek@youcl ~]$ nslookup -port 56 youcl.com
Server:		youcl.com
Address:	50.16.76.239#53
Name:	56
Address: 14.13.253.12
另请阅读8 Nslookup的命令

命令:dig

是查询 的DNSNameservers有关的主机地址,邮件交流,域名服务器,以及相关信息的一个工具。 这个工具可以从任何 Linux(UNIX)Macintosh OS X操作系统中使用。 最典型的利用 是简单地查询单个主机。
[avishek@youcl ~]$ dig youcl.com
; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> youcl.com 
;; global options: +cmd 
;; Got answer: 
;; ->>HEADER<
关闭评论行
[avishek@youcl ~]$ dig youcl.com +nocomments 
; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> youcl.com +nocomments 
;; global options: +cmd 
;youcl.com.			IN	A 
youcl.com.		14400	IN	A	40.216.66.239 
;; Query time: 418 msec 
;; SERVER: 192.168.1.1#53(192.168.1.1) 
;; WHEN: Sat Jun 29 13:53:22 2013 
;; MSG SIZE  rcvd: 45
关闭权限部分
[avishek@youcl ~]$ dig youcl.com +noauthority 
; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> youcl.com +noauthority 
;; global options: +cmd 
;; Got answer: 
;; ->>HEADER<
关闭其他部分
[avishek@youcl ~]$ dig  youcl.com +noadditional 
; <<>> DiG 9.9.2-P1 <<>> youcl.com +noadditional
;; global options: +cmd
;; Got answer:
;; ->>HEADER<
关闭统计信息
[avishek@youcl ~]$ dig youcl.com +nostats 
; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> youcl.com +nostats 
;; global options: +cmd 
;; Got answer: 
;; ->>HEADER<
关闭答案部分
[avishek@youcl ~]$ dig youcl.com +noanswer 
; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> youcl.com +noanswer 
;; global options: +cmd 
;; Got answer: 
;; ->>HEADER<
一次禁用所有节
[avishek@youcl ~]$ dig youcl.com +noall 
; <<>> DiG 9.8.2rc1-RedHat-9.8.2-0.17.rc1.el6 <<>> youcl.com +noall 
;; global options: +cmd
另请阅读10挖的Linux命令示例

45.命令:正常运行时间

你刚才连接到你的 Linux服务器机器和创立某种不寻常的或恶意的,你会做什么呢? 猜猜...。 NO,绝对不是可以运行 的正常运行时间 ,以验证实际发生了什么事,当服务器是无人值守。
[avishek@youcl ~]$ uptime
14:37:10 up  4:21,  2 users,  load average: 0.00, 0.00, 0.04

命令:墙

管理员最重要的命令之一, 将消息发送到所有在登录时设置为“ ”的 MESG许可。 可以给出消息作为参数到 墙上 ,也可以发送到墙上的标准输入。
[avishek@youcl ~]$ wall "we will be going down for maintenance for one hour sharply at 03:30 pm"
Broadcast message from root@localhost.localdomain (pts/0) (Sat Jun 29 14:44:02 2013): 
we will be going down for maintenance for one hour sharply at 03:30 pm

命令:mesg

您可以控制,如果人们可以用“ ”命令,要在屏幕上发送短信给你。
mesg [n|y]
n - prevents the message from others popping up on the screen.
y – Allows messages to appear on your screen.

命令:写

让你直接发送文本到另一台Linux机器的屏幕上,如果 “MESG''Y'。
[avishek@youcl ~]$ write ravisaive

命令:谈话

一种增强型 写入命令 ,talk命令可以让你倾诉的登录用户。
[avishek@youcl ~]$ talk ravisaive
注意 :如果没有安装 talk命令,你可以随时 贴切Yum所需的软件包。
[avishek@youcl ~]$ yum install talk
OR
[avishek@youcl ~]$ apt-get install talk

命令:w

什么命令 'W'看来你可笑吗? 但实际上不是。 t的命令,即使它只有一个字母! 命令 “W”正常运行时间的组合,并且 命令给定的一个之后,立即,另外,在该顺序。
[avishek@youcl ~]$ w
15:05:42 up  4:49,  3 users,  load average: 0.02, 0.01, 0.00 
USER     TTY      FROM              LOGIN@   IDLE   JCPU   PCPU WHAT 
server   tty7     :0               14:06    4:43m  1:42   0.08s pam: gdm-passwo 
server   pts/0    :0.0             14:18    0.00s  0.23s  1.65s gnome-terminal 
server   pts/1    :0.0             14:47    4:43   0.01s  0.01s bash

命令:rename

顾名思义,此命令重命名文件。 rename将通过替换文件名中的第一个出现来重命名指定的文件。
Give the file names a1, a2, a3, a4.....1213
只需键入命令。
 rename a1 a0 a?
rename a1 a0 a??

命令:top

显示 CPU的处理。 此命令会自动更新,默认情况下并继续显示 CPU进程,除非中断指令中给出。
[avishek@youcl ~]$ top
top - 14:06:45 up 10 days, 20:57,  2 users,  load average: 0.10, 0.16, 0.21
Tasks: 240 total,   1 running, 235 sleeping,   0 stopped,   4 zombie
%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
KiB Mem:   2028240 total,  1777848 used,   250392 free,    81804 buffers
KiB Swap:  3905532 total,   156748 used,  3748784 free,   381456 cached
PID USER      PR  NI  VIRT  RES  SHR S  %CPU %MEM    TIME+ COMMAND                                                                                                            
23768 ravisaiv  20   0 1428m 571m  41m S   2.3 28.9  14:27.52 firefox                                                                                                            
24182 ravisaiv  20   0  511m 132m  25m S   1.7  6.7   2:45.94 plugin-containe                                                                                                    
26929 ravisaiv  20   0  5344 1432  972 R   0.7  0.1   0:00.07 top                                                                                                                
24875 ravisaiv  20   0  263m  14m  10m S   0.3  0.7   0:02.76 lxterminal                                                                                                         
1 root      20   0  3896 1928 1228 S   0.0  0.1   0:01.62 init                                                                                                               
2 root      20   0     0    0    0 S   0.0  0.0   0:00.06 kthreadd                                                                                                           
3 root      20   0     0    0    0 S   0.0  0.0   0:17.28 ksoftirqd/0                                                                                                        
5 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kworker/0:0H                                                                                                       
7 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kworker/u:0H                                                                                                       
8 root      rt   0     0    0    0 S   0.0  0.0   0:00.12 migration/0                                                                                                        
9 root      20   0     0    0    0 S   0.0  0.0   0:00.00 rcu_bh                                                                                                             
10 root      20   0     0    0    0 S   0.0  0.0   0:26.94 rcu_sched                                                                                                          
11 root      rt   0     0    0    0 S   0.0  0.0   0:01.95 watchdog/0                                                                                                         
12 root      rt   0     0    0    0 S   0.0  0.0   0:02.00 watchdog/1                                                                                                         
13 root      20   0     0    0    0 S   0.0  0.0   0:17.80 ksoftirqd/1                                                                                                        
14 root      rt   0     0    0    0 S   0.0  0.0   0:00.12 migration/1                                                                                                        
16 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kworker/1:0H                                                                                                       
17 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 cpuset                                                                                                             
18 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 khelper                                                                                                            
19 root      20   0     0    0    0 S   0.0  0.0   0:00.00 kdevtmpfs                                                                                                          
20 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 netns                                                                                                              
21 root      20   0     0    0    0 S   0.0  0.0   0:00.04 bdi-default                                                                                                        
22 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kintegrityd                                                                                                        
23 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 kblockd                                                                                                            
24 root       0 -20     0    0    0 S   0.0  0.0   0:00.00 ata_sff
另请阅读: 12 top命令的例子

命令:mkfs.ext4

此命令创建指定的设备上的一个新的 ext4文件系统,如果不对设备此命令后跟着,整个块将被抹去,并格式化,因此,建议不要除非并直到你明白你在做什么运行此命令。
Mkfs.ext4 /dev/sda1 (sda1 block will be formatted)
mkfs.ext4 /dev/sdb1 (sdb1 block will be formatted)
阅读更多什么是的ext4和如何创建和转换

54.命令:vi / emacs / nano

VI(视觉 ),emacs的纳米是一些在Linux中最常用的编辑器。它们经常用于编辑文本,配置,...文件。关于vi和nano的工作的快速指南是,emacs是一个。
vi编辑器
[avishek@youcl ~]$ touch a.txt (creates a text file a.txt) 
[avishek@youcl ~]$ 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(保存文件,与当前的文字,记住是重写'!')。
纳米编辑
[avishek@youcl ~]$ nano a.txt (open a.txt file to be edited with nano)
edit, with the content, required
ctrl + x(关闭编辑器)。它将显示输出:
Save modified buffer (ANSWERING "No" WILL DESTROY CHANGES) ?                    
Y Yes 
N No           ^C Cancel
点击 “Y”为是,输入文件名,和你做。

55.命令:rsync

rsync的复制文件,并有一个进度条 -p开关。所以如果你安装了rsync,你可以使用一个简单的别名。
alias cp='rsync -aP'
现在尝试在终端中复制一个大文件,并看到其余项目的输出,类似于进度条。 此外,保持和维护备份是系统管理员需要执行的最重要和最无聊的工作之一。 Rsync是一个非常好的工具(有存在,几个其他)创建和维护备份,在终端。
[avishek@youcl ~]$ rsync -zvr IMG_5267\ copy\=33\ copy\=ok.jpg ~/Desktop/ 
sending incremental file list 
IMG_5267 copy=33 copy=ok.jpg 
sent 2883830 bytes  received 31 bytes  5767722.00 bytes/sec 
total size is 2882771  speedup is 1.00
:-z压缩,-v为详细和-R递归。

命令:自由

跟踪的内存和资源既是重要的,因为由管理员进行任何其他任务,而“ 免费 ”命令来这里抢救。
内存的当前使用状态
[avishek@youcl ~]$ free
total       used       free     shared    buffers     cached
Mem:       2028240    1788272     239968          0      69468     363716
-/+ buffers/cache:    1355088     673152
Swap:      3905532     157076    3748456
调整的输出(KB或MB或GB)
[avishek@youcl ~]$ free -b
total       used       free     shared    buffers     cached
Mem:    2076917760 1838272512  238645248          0   71348224  372670464
-/+ buffers/cache: 1394253824  682663936
Swap:   3999264768  160845824 3838418944
[avishek@youcl ~]$ free -k
total       used       free     shared    buffers     cached
Mem:       2028240    1801484     226756          0      69948     363704
-/+ buffers/cache:    1367832     660408
Swap:      3905532     157076    3748456
[avishek@youcl ~]$ free -m
total       used       free     shared    buffers     cached
Mem:          1980       1762        218          0         68        355
-/+ buffers/cache:       1338        641
Swap:         3813        153       3660
[avishek@youcl ~]$ free -g
total       used       free     shared    buffers     cached
Mem:             1          1          0          0          0          0
-/+ buffers/cache:          1          0
Swap:            3          0          3
检查人类可读格式的当前使用情况
[avishek@youcl ~]$ free -h
total       used       free     shared    buffers     cached
Mem:          1.9G       1.7G       208M         0B        68M       355M
-/+ buffers/cache:       1.3G       632M
Swap:         3.7G       153M       3.6G
定期检查状态
[avishek@youcl ~]$ free -s 3
total       used       free     shared    buffers     cached
Mem:       2028240    1824096     204144          0      70708     364180
-/+ buffers/cache:    1389208     639032
Swap:      3905532     157076    3748456
total       used       free     shared    buffers     cached
Mem:       2028240    1824192     204048          0      70716     364212
-/+ buffers/cache:    1389264     638976
Swap:      3905532     157076    3748456
另请参阅free命令的例子10个

命令:mysqldump

好到现在你已经明白了这个命令实际上代表,从这个命令的名称 。mysqldump的命令转储(备份)全部或特定数据库中的数据到一个给定file.For例如,
[avishek@youcl ~]$ mysqldump -u root -p --all-databases > /home/server/Desktop/backupfile.sql
:需要 的mysqldump授权MySQL来运行和正确的密码。 我们已经讨论了一些有用的 “mysqldump的 ”AT命令 数据库备份使用mysqldump命令

命令:mkpasswd

做一个难以猜测,随机密码的长度指定。
[avishek@youcl ~]$ mkpasswd -l 10
zI4+Ybqfx9
[avishek@youcl ~]$ mkpasswd -l 20 
w0Pr7aqKk&hmbmqdrlmk
注意 :-l 10产生的 10个字符而 -l 20产生字符 20的密码的随机密码,它可以被设置为任何以获得所需的结果。 这个命令是非常有用的,并经常在脚本语言中生成随机密码。 您可能需要 Yumapt'期望'包使用此命令。
[root@youcl ~]# yum install expect 
OR
[root@youcl ~]# apt-get install expect

命令:粘贴

在线上合并两个或多个文本文件。例。如果file1的内容是:
1 
2 
3 
and file2 was: 
a 
b 
c 
d 
the resulting file3 would be: 
1    a 
2    b 
3    c 
     d

命令:lsof

lsof的代表“ 列表打开的文件 ”,并显示所有你的系统目前已打开的文件。 确定哪些进程使用某个文件,或显示单个进程的所有文件非常有用。 一些有用的 10个lsof的命令的例子,你可能会感兴趣的书。
[avishek@youcl ~]$ lsof 
COMMAND     PID   TID            USER   FD      TYPE     DEVICE SIZE/OFF       NODE NAME
init          1                  root  cwd       DIR        8,1     4096          2 /
init          1                  root  rtd       DIR        8,1     4096          2 /
init          1                  root  txt       REG        8,1   227432     395571 /sbin/init
init          1                  root  mem       REG        8,1    47080     263023 /lib/i386-linux-gnu/libnss_files-2.17.so
init          1                  root  mem       REG        8,1    42672     270178 /lib/i386-linux-gnu/libnss_nis-2.17.so
init          1                  root  mem       REG        8,1    87940     270187 /lib/i386-linux-gnu/libnsl-2.17.so
init          1                  root  mem       REG        8,1    30560     263021 /lib/i386-linux-gnu/libnss_compat-2.17.so
init          1                  root  mem       REG        8,1   124637     270176 /lib/i386-linux-gnu/libpthread-2.17.so
init          1                  root  mem       REG        8,1  1770984     266166 /lib/i386-linux-gnu/libc-2.17.so
init          1                  root  mem       REG        8,1    30696     262824 /lib/i386-linux-gnu/librt-2.17.so
init          1                  root  mem       REG        8,1    34392     262867 /lib/i386-linux-gnu/libjson.so.0.1.0
init          1                  root  mem       REG        8,1   296792     262889 /lib/i386-linux-gnu/libdbus-1.so.3.7.2
init          1                  root  mem       REG        8,1    34168     262840 /lib/i386-linux-gnu/libnih-dbus.so.1.0.0
init          1                  root  mem       REG        8,1    95616     262848 /lib/i386-linux-gnu/libnih.so.1.0.0
init          1                  root  mem       REG        8,1   134376     270186 /lib/i386-linux-gnu/ld-2.17.so
init          1                  root    0u      CHR        1,3      0t0       1035 /dev/null
init          1                  root    1u      CHR        1,3      0t0       1035 /dev/null
init          1                  root    2u      CHR        1,3      0t0       1035 /dev/null
init          1                  root    3r     FIFO        0,8      0t0       1714 pipe
init          1                  root    4w     FIFO        0,8      0t0       1714 pipe
init          1                  root    5r     0000        0,9        0       6245 anon_inode
init          1                  root    6r     0000        0,9        0       6245 anon_inode
init          1                  root    7u     unix 0xf5e91f80      0t0       8192 @/com/ubuntu/upstart
init          1                  root    8w      REG        8,1     3916        394 /var/log/upstart/teamviewerd.log.1 (deleted)
这不是结束, 系统管理员做了很多的东西,为您提供这样一个漂亮的界面,在你的工作。 系统管理实际上是一个非常完美的学习和实现的艺术。 我们将尽力让所有其他必要的东西,linux专业必须学习,linux在其基本实际上本身,是一个学习和学习的过程。 你的好话总是寻求,这鼓励我们投入更多的努力,给你一个有见识的文章。 “ 像并分享我们,帮我们传播 ”。
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏