Linux开始必须要会的命令当属ls,在日常工作中用到ls命令时的频率是很多的,作为一个初学者,可能我只会或者顶多ls -l两种用法.但是ls其实是一个非常实用的指令,ls命令就是list的缩写,ls默认是打印出来当前的目录的清单.如果ls用来查看指定目录,那么就会显示指定目录里的文件几文件夹清单.通过ls命令不仅可以查看linux目录中包含的文件,而且可以查看文件权限(包括目录.文件夹.文件权限). 命令1. ls -a 列出文件下所有的文件,包括"."开头的隐藏文件(linux下文…
(5)ps详解 (每周一个linux命令系列) linux命令 ps详解 引言:今天的命令是用来看进程状态的ps命令 ps 我们先看man ps ps - report a snapshot of the current processes. 翻译:显示当前进程的快照.ps是 Process Status的缩写 具体的描述如下: DESCRIPTION ps displays information about a selection of the active processes. If yo…
(4)top详解 (每周一个linux命令系列) linux命令 top详解 引言:今天的命令是用来看cpu信息的top top 我们先看man top top - display Linux processes 翻译:显示linux进程信息 具体的描述如下: The top program provides a dynamic real-time view of a running sys‐ tem. It can display system summary information as w…
(3)lscpu详解 (每周一个linux命令系列) linux命令 lscpu详解 引言:今天的命令是用来看cpu信息的lscpu lscpu 我们先看man lscpu display information about the CPU architecture 翻译:显示cpu架构信息 具体的描述如下: lscpu gathers CPU architecture information from sysfs, /proc/cpuinfo and any applicable archit…
(2)free详解 (每周一个linux命令系列) linux命令 free详解 引言:今天的命令是用来看内存的free free 换一个套路,我们先看man free中对free的描述: Display amount of free and used memory in the system 翻译:显示系统中使用的和未用的内存数量 我们再来看一下命令执行结果 total used free shared buff/cache available Mem: 16131568 8461796 14…