1. 程式人生 > >linux目錄結構

linux目錄結構

linux目錄結構

目錄結構

1.1目錄

1.1.1目錄的特點

1.一切從根開始

2.linux下面的設備你要給他開一個入口(掛載) 才能使用

1.1.2相對路徑

m 相對路徑:相對於當前路徑(位置 目錄)下的路徑..

開頭沒有斜線
pwd
cd root

1.1.3 絕對路徑

m 絕對路徑:從根為起始點的路徑
[[email protected] ~]# cd /root
/etc/init.d/iptables stop

ls -l /tmp/ /usr/tmp/
/tmp/:
total 12
drwxr-xr-x. 3 root root 4096 Jul 14 20:42 a
drwxr-xr-x. 2 root root 4096 Jul 14 18:23 data

-rw-r--r--. 1 root root 46 Jul 14 18:19 oldboy.txt
-rw-------. 1 root root 0 Jul 14 10:54 yum.log
/usr/tmp/:
total 0
ls -ld /tmp/ /usr/tmp/
drwxrwxrwt. 5 root root 4096 Jul 15 05:06 /tmp/
drwxrwxrwt. 2 root root 4096 Jul 14 11:04 /usr/tmp/
ls -ld /tmp/ /usr/tmp/ /bin /usr/bin /sbin/ /usr/sbin/
dr-xr-xr-x. 2 root root 4096 Jul 14 12:26 /bin
dr-xr-xr-x. 2 root root 12288 Jul 14 12:26 /sbin/
drwxrwxrwt. 5 root root 4096 Jul 15 05:06 /tmp/
dr-xr-xr-x. 2 root root 24576 Jul 14 12:26 /usr/bin
dr-xr-xr-x. 2 root root 12288 Jul 14 12:26 /usr/sbin/
drwxrwxrwt. 2 root root 4096 Jul 14 11:04 /usr/tmp/

1.1.4ls

ls list 列表 顯示目錄中的內容 看看目錄中都有啥
-l(小寫字母L) 顯示詳細的信息
-d ls會把目錄當做文件來處理

ls -l /etc/hosts
-rw-r--r--. 2 root root 158 Jul 14 11:46 /etc/hosts
ls -ld /etc/
drwxr-xr-x. 78 root root 4096 Jul 15 05:12 /etc/
ls -l /tmp/
total 12
drwxr-xr-x. 3 root root 4096 Jul 14 20:42 a
drwxr-xr-x. 2 root root 4096 Jul 14 18:23 data
-rw-r--r--. 1 root root 46 Jul 14 18:19 oldboy.txt
-rw-------. 1 root root 0 Jul 14 10:54 yum.log
ls -ld /tmp/
drwxrwxrwt. 5 root root 4096 Jul 15 05:06 /tmp/

1.1.5目錄含義

/etc/profile

/etc/sysconfig/i18n

1.1.6目錄原型

1.1.7/etc/hosts

把主機名解析為ip地址,ip地址與主機名的對應關系

作用:搭建測試環境的時候使用



本文出自 “heyong” 博客,請務必保留此出處http://heyong.blog.51cto.com/13121269/1954905

linux目錄結構