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
下一篇 2016-09-19

相关推荐

  • N21-北京-泥人-马哥教育网络班21期+第一周课程练习

    马哥教育网络班21期  第一周课程练习 一、计算机的组成 1、计算机主要由以下几部分组成:运算器 控制器 存储器(编址存储单元)、 输入、输出设备   2、运算器负责运算:只能做二进制的数学、逻辑运算, 控制器:控制由哪得到数据,放到哪去,协调运算器、存储器、输入、输出等设备 运算器、控制器整合到一起就是常说的中央处理器,也就是CPU。 …

    Linux干货 2016-07-12
  • screen命令

    安装SCREEN[root@centos6 ~]# dfFilesystem     1K-blocks    Used Available Use% Mounted on/dev/sda2       51475068 5052580  43801048  11% /…

    2017-07-22
  • 马哥教育网络班20期+第七周博客作业

    1、创建一个10G分区,并格式为ext4文件系统     (1) 要求其block大小为2048,预留空间百分比为2,卷标为MYDATA,默认挂载属性包含acl fdisk /dev/sdbnp1110Gw[root@llww3317 ~]# mke2fs -t ext…

    Linux干货 2016-08-02
  • 梦想走向现实的地方

    曾经羡慕打字快的同学指尖能在键盘上优雅地跳舞,于是我有努力练习打字。 曾经羡慕同事能很神奇地把一个交换机的端口关闭,让那端口下面的人都不能上网,于是我努力学习交换机、路由。 现在我羡慕一个人能管很多服务器的人,于是我开始学习linux了。 努力成为一个也能管很多服务器的人,因为我也想别人叫我运维工程师

    Linux干货 2016-10-25
  • Linux系统时间简单修改方法

          Linux时钟分为系统时钟(System Clock)和硬件(Real Time Clock,简称RTC)时钟。系统时钟是指当前Linux Kernel中的时钟,而硬件时钟则是主板上由电池供电的时钟,这个硬件时钟可以在BIOS中进行设置。Linux中的所有命令(包括函数)都是采用的系统时钟设置。Linux操作系统运行…

    Linux干货 2015-06-12
  • 用shell脚本实现每天定时收集全网日志到一台服务器

    需求 现在公司有这样一个需求,需要收集每天全网运行业务的设备上的某个特定目录底下的日志到一台服务器(这台服务器我们简称logserver),这并在这台logserver上生成以日期为名字的目录 解决思路: 在logserver的crontab里设置两个脚本,在当日晚上23:30执行脚本1收集当日即将被删除的全网脚本;在并在早上8:30执行脚本2,收集昨日全网…

    Linux干货 2015-07-27