软硬链接、文件删除原理、linux中的三种时间、chkconfig优化
第1章 软硬链接 1.1 硬链接 1.1.1 含义 多个文件拥有相同的 inode 号码 硬链接即文件的多个入口 1.1.2 作用 防止你误删除文件 1.1.3 如何创建硬链接 ln 命令,前面是源文件 后面是创建的链接文件 [root@znix clsn]# ln clsn.txt clsn.txt-hard 查看两文件的 inode 号相同。 [root@znix clsn]# ls -lhi clsn.txt clsn.txt-hard 151273 -rw-r--r-- 2 root root 607 Aug 30 09:13 clsn.txt 151273 -rw-r--r-- 2 root root 607 Aug 30 09:13 clsn.txt-hard 1.2 软连接 1.2.1 含义 为了快捷,省事,方便使用 软连接中存放的是源文件的位置 1.2.2 创建软连接 使用 ln -s 命令创建软连接 [root@znix clsn]# ln -s clsn.txt clsn.txt-soft 查看软硬链接的 inode 号不相同 但是同时指向的是同一文件 [root@znix clsn]# ll -i clsn* 151273 -rw-r--r-- 2 root root 607 Aug 30 09:13 clsn.txt 132910 -rw-r--r-- 1