Linux常用命令

一、Linux常用命令(总)

Note_Day02_05:Linux常用命令.png

二、Linux常用命令(分)

1、pwd – print name of current/working directory

pwd.png

2、cd – change directory

Note_Day02_06:Linux常用命令 - cd.png

3、ls – list,dieplay directory content

ls.png

4、date – print or set the system date and time

Note_Day02_06:Linux常用命令 - date.png

5、hwclock & clock – query or set the hardware clock (RTC)

Note_Day02_06:Linux常用命令 - hwclock&clock.png

6、whereis – locate the binary, source, and manual page files for a command

Note_Day02_06:Linux常用命令 - whereis.png

7、which – shows the full path of (shell) commands

Note_Day02_06:Linux常用命令 - which.png

8、shutdown – Halt, power-off or reboot the machine

Note_Day02_06:Linux常用命令 - shutdown.png

9、echo – display a line of text

Note_Day02_06:Linux常用命令15 - echo.png

10、file – determine file typeNote_Day02_06:Linux常用命令13 - file.png

11、type – Display information about command type

Note_Day02_06:Linux常用命令14 - type.png

12、cat – concatenate files and print on the standard output

Note_Day02_06:Linux常用命令 - cat.png


13、tac – concatenate and print files in reverse

Note_Day02_06:Linux常用命令 - tac.png

14、who – show who is logged on

Note_Day02_06:Linux常用命令 - who.png

15、w – Show who is logged on and what they are doing

Note_Day02_06:Linux常用命令 - w.png

原创文章,作者:Tornado,如若转载,请注明出处:http://www.178linux.com/46832

(0)
TornadoTornado
上一篇 2016-09-19 12:03
下一篇 2016-09-19 12:03

相关推荐

  • N26 第五周博客作业

    1、显示当前系统上root、fedora或user1用户的默认shell; 演示:     [root@263821a05cd9 /]# grep -E “^(root|fedora|user1)\>” /etc/passwd    root:x:0:0:root:/r…

    Linux干货 2017-03-05
  • N26_第一周作业

    一、描述计算机的组成及其功能。 计算机系统:是由硬件(Hardware)系统和软件(Software)系统两大部分构成。 1、硬件系统: 1)控制器(Control):是整个计算机的中枢神经,其功能是对程序规定的控制信息进行解释,根据其要求进行控制,调度程序、数据、地址,协调计算机各部分工作及内存与外设的访问等。2)运算器(Datapath):运算器的功能是…

    2017-02-20
  • LB-lvs

    Linux Cluster: Cluster:计算机集合,为解决某个特定问题组合起来形成的单个系统; Linux Cluster类型: LB:Load Balancing,负载均衡; HA:High Availiablity,高可用; A=MTBF/(MTBF+MTTR) (0,1):90%, 95%, 99%, 99.5%, 99.9%, 99.99%, …

    Linux干货 2017-06-25
  • 第七周作业,分区格式化及一些脚本练习

    1、创建一个10G分区,并格式为ext4文件系统;    (1) 要求其block大小为2048, 预留空间百分比为2, 卷标为MYDATA, 默认挂载属性包含acl;       fidsk划分10G分区,partx命令强制内核重新读磁盘分区表,cat /proc/partitions是否内核识别到新分区 …

    Linux干货 2017-02-01
  • 常见HTTP code大全

    1xx(临时响应)表示临时响应并需要请求者继续执行操作的状态代码。 代码 说明 100 (继续) 请求者应当继续提出请求。服务器返回此代码表示已收到请求的第一部分,正在等待其余部分。  101 (切换协议) 请求者已要求服务器切换协议,服务器已确认并准备切换。 2xx (成功)表示成功处理了请求的状…

    Linux干货 2016-09-19
  • 初入linux

    一、认识linux 1、在windows中通过盘符区分文件存放位置,而linux中没有盘符之说,只有文件和文件夹 2、在linux中,万物从根开始,没有后缀之说 二、文件系统的目录结构 /:根目录 /boot:系统启动的相关配置文件 /dev:设备文件 块设备:随机访问,数据块为单位 字符设备:线性访问,按字符为单位 设备号:主设备号(major)和次设备号…

    Linux干货 2017-05-20