[email protected]:/home/wuheng# ls -l
total 44
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Desktop
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Documents
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Downloads
-rw-r--r-- 1 wuheng wuheng 8980 Mar 3 09:23 examples.desktop
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Music
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Pictures
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Public
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Templates
drwxr-xr-x 2 wuheng wuheng 4096 Mar 3 01:30 Videos
1.d,代表目录
2.rwxr-xr-x,是文件或者目录对所属用户,同一组用户和其它用户的权限
3.第一个:wuheng 代表了文件文件属于用户 wuheng
4.第二个:wuheng 代表了文件文件属于用户组 wuheng
5.4096,表示文件大小为4096字节.
6.Mar 3 01:30 代表了文件最后一次修改的日期和时间.
7.最后面的就是文件/文件夹的名字。如,desktop
[email protected]:/home/wuheng# lsblk -l
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
sda 8:0 0 20G 0 disk
sda1 8:1 0 19G 0 part /
sda2 8:2 0 1K 0 part
sda5 8:5 0 1022M 0 part [SWAP]
sr0 11:0 1 1024M 0 rom
lsblk -l 命令以列表格式显示块设备(而不是树状格式)
注意:lsblk是最有用和最简单的方式来了解新插入的USB设备的名字,特别是当你在终端上处理磁盘/块设备时。
[email protected]:/home/wuheng# uname -a
Linux wuheng-virtual-machine 4.2.0-27-generic #32~14.04.1-Ubuntu SMP Fri Jan 22 15:32:26 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
uname,即“Linux Name”.
注意: uname显示内核类别, uname -a显示详细信息。上面的输出详细说明了uname -a
[email protected]:/home/wuheng# history
1 apt-get install mysql-server mysql-client
2 apt-get install apache2
3 apt-get install php5 libapache2-mod-php5
4 chmod 777 /var/www/
................
history”命令就是历史记录。它显示了在终端中所执行过的所有命令的历史。
[email protected]:/var/www/html# touch a.txt
[email protected]:/var/www/html# ls
a.txt index.html phpmyadmin wh.tar.gz
“touch”命令代表了将文件的访问和修改时间更新为当前时间。touch命令只会在文件不存在的时候才会创建它。
如果文件已经存在了,它会更新时间戳,但是并不会改变文件的内容。
“chown”命令就是改变文件拥有者和所在用户组。每个文件都属于一个用户组和一个用户。在你的目录下,使用"ls -l",你就会看到像这样的东西。
[email protected]:/var/www/html# ls -l
total 16
-rw-r-xr-x 1 wuheng root 0 Mar 9 19:22 a.txt
-rwxrwxrwx 1 root root 11510 Mar 9 19:21 index.html
lrwxrwxrwx 1 root root 21 Mar 3 18:46 phpmyadmin -> /usr/share/phpmyadmin
-rw-r--r-- 1 root root 249 Mar 9 19:21 wh.tar.gz
其中,a.txt属于用户:wuheng ,属于用户组:root; index.html属于用户:root,属于用户组:root.
[email protected]:/var/www/html# chown root root a.txt
chown: cannot access ‘root’: No such file or directory
[email protected]:/var/www/html# ls -l
total 16
-rw-r-xr-x 1 root root 0 Mar 9 19:22 a.txt
-rwxrwxrwx 1 root root 11510 Mar 9 19:21 index.html
lrwxrwxrwx 1 root root 21 Mar 3 18:46 phpmyadmin -> /usr/share/phpmyadmin
-rw-r--r-- 1 root root 249 Mar 9 19:21 wh.tar.gz
[email protected]:/var/www/html#
现在,a.txt属于用户:root,属于用户组:root.
“copy”就是复制。它会从一个地方复制一个文件到另外一个地方。
[email protected]:/var/www/html# cp a.txt demo/
[email protected]:/var/www/html# ls
a.txt demo index.html phpmyadmin wh.tar.gz
[email protected]:/var/www/html# cd demo
[email protected]:/var/www/html/demo# ls
a.txt
“mv”命令将一个地方的文件移动到另外一个地方去。
[email protected]:/var/www/html# touch a.txt
[email protected]:/var/www/html# ls
a.txt demo index.html phpmyadmin wh.tar.gz
[email protected]:/var/www/html# mv a.txt demo/
[email protected]:/var/www/html# ls
demo index.html phpmyadmin wh.tar.gz
[email protected]:/var/www/html# cd demo
[email protected]:/var/www/html/demo# ls
a.txt
pwd”(print working directory),在终端中显示当前工作目录的全路径。
[email protected]:/var/www/html/demo# pwd
/var/www/html/demo