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

相关推荐

  • 第八周作业

    1、写一个脚本,使用ping命令探测172.16.250.1-172.16.250.254之间的所有主机的在线状态;     在线的主机使用绿色显示;     不在线的主使用红色显示; 2、如何给网络接口配置多个地址,有哪些方式? 方法3:在/etc/sysconfig/netw…

    2017-04-20
  • 11文件查找find和locate

    有些时候我们是想要在系统中查找某个具体的文件,却不知道路径在哪里,只是知道其中的某些特性,比如大小或者名字什么的。这时候就要用到查找工具啦。 在文件系统上查找符合条件的文件命令有两个,locate和find,其中locate是非实时查找即数据库查找。而find是实时查找 locate: 用法:locate [OPTION]… [PATTERN]&…

    Linux干货 2016-11-27
  • PXE原理详解及实践

    一、PXE简介 PXE(preboot execute environment,预启动执行环境)是由Intel公司开发的最新技术,工作于Client/Server的网络模式,支持工作站通过网络从远端服务器下载映像,并由支持通过网络启动操作系统,再启动过程中,终端要求服务器分配IP地址,再用TFTP(trivial file transfer protocol…

    Linux干货 2017-01-10
  • 网络基础

    #**计算机网络**##网络的特征– 速度、成本、安全性、可用性、可扩展性、可靠性、拓扑 ##**物理拓扑分类**– 总线型– 所有设备均可接受信号– 星型拓扑– 通过中心点传输,单一故障点– 扩展星型拓扑– 比星型拓扑的复原能力强– 环拓扑– 信号绕…

    Linux干货 2017-11-27
  • 第四周作业

    1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。 [root@unclez ~]# cp -r /etc/skel /home/tuser1 [root@unclez ~]# chmod -R&…

    Linux干货 2016-12-24
  • screen和ehco命令常用选项

    screen的用法 screen 是个外部命令,用之前需要安装。      安装方式之一:yum 源 安装      yum install -y screen screen 是基于VT100/ANSI的仿真终端屏幕管理器    …

    Linux干货 2016-07-26