●线上查询及帮助命令(2 个)
man help

●文件和目录操作命令(13 个) 
ls tree pwd mkdir rmdir cd touch cp mv rm ln find rename

●查看文件及内容处理命令(22 个) 
cat tac more less head tail cut split paste sort uniq wc iconv dos2unix file diff vimdff chattr lsattr rev grep egrep

●文件压缩及解压缩命令(4 个) tar unzip gzip zip

●信息显示命令(12 个)
 uname hostname dmesg uptime file stat du df top free date cal

●搜索文件命令(4 个)
 which find whereis locate

●用户管理命令(10 个) 
useradd usermod userdel groupadd passwd chage id su visudo sudo

●基础网络操作命令(10 个) 
telnet ssh scp wget ping route ifconfig ifup ifdown netstat

●深入网络操作命令(6 个)
 lsof route mail mutt nslookup dig

●有关磁盘文件系统的命令(8 个)
mount umount df du fsck dd dumpe2fs dump

●关机和查看系统信息的命令(3个)
 shutdown halt init

●系统管理相关命令(8个)
uptime top free vmstat mpstat iostat sar chkconfig

●系统安全相关命令(10 个)
 chmod chown chgrp chage passwd su sudo umask chattr lsattr

●查看系统用户登陆信息的命令(7 个)
 whoami who w last lastlog users finger

●查看硬件信息相关命令(8 个) 
ifconfig free fdisk ethtool mii-tool dmidecode dmesg lspci

●其它(19 个)
 echo printf rpm yum watch alias unalias date clear history eject time nohup nc xargs exec export unset type

●系统性能监视高级命令(12 个) 
内存:top free vmstat mpstat iostat sar 
CPU:top vmstat mpstat iostat sar
I/O:vmstat mpstat iostat sar 
进程:ipcs ipcrm lsof strace lstrace 
负载:uptime mount umount df du fsck dd dumpe2fs dump

●关机和查看系统信息的命令(3 个)
 shutdown halt init

●系统管理相关命令(8 个)
 uptime top free vmstat mpstat iostat sar chkconfig

●系统安全相关命令(10 个)
 chmod chown chgrp chage passwd su sudo umask chat

linux150条命令的更多相关文章

  1. 初窥Linux 之 我最常用的20条命令

    魏公 SecureCRTuname -avisftppartition,fsshell kshell,bshelluser,groupIPTables文件数,内核参数tail,less/var/log ...

  2. linux最常用的20条命令

    玩过Linux的人都会知道,Linux中的命令的确是非常多,但是玩过Linux的人也从来不会因为Linux的命令如此之多而烦恼,因为我们只需要掌握我们最常用的命令就可以了.当然你也可以在使用时去找一下 ...

  3. Linux系统性能10条命令监控

    Linux系统性能10条命令监控 概述 通过执行以下命令,可以在1分钟内对系统资源使用情况有个大致的了解. uptime dmesg | tail vmstat 1 mpstat -P ALL 1 p ...

  4. Linux连续执行多条命令

    引自:这里 每条命令使用";"隔开,则无论前边的命令执行成功与否都会继续执行下一条命令这里,故意将第二条命令中的echo多写了一个o,命令执行出错,但并不影响后续命令的执行可以这么 ...

  5. 【wget】一条命令轻松备份博客(包括图片)

    h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h ...

  6. Ubuntu常用200条命令

       查看软件xxx安装内容:dpkg -L xxx 查找软件库中的软件:apt-cache search 正则表达式 查找软件库中的软件:aptitude search 软件包 查找文件属于哪个包: ...

  7. linux系统执行多条命令,linux系统执行复合命令

    在操作linux系统的时候,你是否遇到过打开一个目录,然后查看一个文件里面的内容. 我们可以使用命令   cd + 目录     cat + 文件名,我们需要输入两次,点击两次 enter   有没有 ...

  8. Linux重复执行上条命令

    Linux系统下Shell重复执行上条命令的 4 种方法: 1.使用上方向键,并回车执行.2.按 !! 并回车执行.3.输入 !-1 并回车执行.4.按 Ctrl+P 并回车执行.

  9. Linux重复执行上一条命令

    执行刚刚执行的一条命令: !! 执行最近一个以指定字符串开头的命令(比如man) !man !m 引用上一个命令的最后一个参数 !$ <ESC>, .

随机推荐

  1. nodejs + ts 配置

    参考:https://github.com/nestjs/typescript-starter 和 How to get auto restart and breakpoint support wit ...

  2. Codeforces 1077 F2 - Pictures with Kittens (hard version)

    F2 - Pictures with Kittens (hard version) 思路: 单调队列优化dp 代码: #pragma GCC optimize(2) #pragma GCC optim ...

  3. Java创建多线程和线程安全集合Vector

    public class Test { public static Vector<String> data = new Vector<String>(); public sta ...

  4. Very Good Article on How Git Commands Work

    http://stackoverflow.com/questions/30038999/differences-between-commit-commit-and-push-commit-and-sy ...

  5. linux下编译C/C++ 程序

    C/C++的速度是Python和perl所无法比拟的,尤其对于处理超大的生物信息学文件来说. 最近在写一个最简单的fastq cut工具,Python简直慢到不能忍,8G的fastq.gz文件的cut ...

  6. linux文件管理之管道与重定向

    ============================================================== 内容提要: 输入输出重定向.管道: 重定向的作用: 文件描述符 0 1 2 ...

  7. p1457 The Castle

    原图找最大的房间及房间数很容易.然后从左下到右上找拆的位置.拆掉再bfs一次找面积. #include <iostream> #include <cstdio> #includ ...

  8. android--------自定义控件 之 基本实现篇

    前面简单的讲述了Android中自定义控件中的几个方法,今天通过代码来实现一个简单的案例 自定义一个扇形图 自定义控件示例: 这里先介绍继承View的方式为例 public class Circula ...

  9. display:inline-block与float

    display:inline-block 既有行级元素的特性,也有块级元素的特性,因此在同一行,能设置宽高,margin,padding inline-block和float的区别 虽然设置float ...

  10. python记录_day22 序列化

    序列化是指把内存里的数据类型转换成字符串,以使其能存储到硬盘或通过网络传输到远程,因为硬盘和网络传输时只能接受bytes 一.pickle 把python对象写入到文件中的一种解决方案,但是写入到文件 ...