多个文件拥有相同的inode号码
硬链接即文件的多个入口
防止你误删除文件
ln 命令,前面是源文件 后面是创建的链接文件
[root@znix oldboy]# ln oldboyedu.txt oldboyedu.txt-hard
查看两文件的inode号相同。
[root@znix oldboy]# ls -lhi oldboyedu.txt oldboyedu.txt-hard
151273 -rw-r--r-- 2 root root 607 Aug 30 09:13 oldboyedu.txt
151273 -rw-r--r-- 2 root root 607 Aug 30 09:13 oldboyedu.txt-hard
为了快捷,省事,方便使用
软连接中存放的是源文件的位置
使用ln -s 命令创建软连接
[root@znix oldboy]# ln -s oldboyedu.txt oldboyedu.txt-soft
查看软硬链接的inode号不相同
但是同时指向的是同一文件
[root@znix oldboy]# ll -i oldboyedu*
151273 -rw-r--r-- 2 root root 607 Aug 30 09:13 oldboyedu.txt
132910 -rw-r--r-- 1 root root 607 Aug 30 09:14 oldboyedu.txt.bak
151273 -rw-r--r-- 2 root root 607 Aug 30 09:13 oldboyedu.txt-hard
132951 lrwxrwxrwx 1 root root 13 Aug 30 09:22 oldboyedu.txt-soft -> oldboyedu.txt
软链接:
软连接相当于快捷方式
里面存放的是源文件的位置
硬链接:
在同一个分区中,多个文件拥有相同的inode号
ln 创建硬链接
ln -s 软连接
1)软连接可以随意创建
2)不能对目录创建硬链接
3)对文件创建硬链接可以防止文件被误删除
1)删除文件的硬链接,文件可以继续使用
2)只有把这个文件的所有硬链接都删除才可
3)只删除源文件软连接无法使用
4)只删除软连接对文件没有影响
1.硬链接数为0 与这个文件有关的所有硬链接都被删除。
a) 使用rm目录进行删除
2. 进程调用数为0,没有人在使用这个文件才能释放磁盘空间。
a) 使用lsof 查看谁在使用这文件
b) 重启对应的软件/服务就能释放磁盘
使用lsof命令可以列出所有正在使用的文件和相应的进程
[root@znix ~]# lsof /var/log/secure
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
rsyslogd 1262 root 4w REG 8,3 1927 270856 /var/log/secure
[root@znix ~]# lsof |grep message
rsyslogd 1262 root 1w REG 8,3 1044 270855 /var/log/messages
找到软件对应的管理地址,让软件重启,释放空间。
[root@znix ~]# /etc/init.d/rsyslog
Usage: /etc/init.d/rsyslog {start|stop|restart|condrestart|try-restart|reload|force-reload|status}
inode满了……查找出系统目录比较大(1M)
block满了……使用du -sh /* 一层一层找,把较大的文件删除
硬链接数为0,进程调用数不为0
使用 lsof |grep delete 查看占用的文件
没有被彻底删除-硬链接数为0,进程调用数不为零
向 /var/log/message中放入大量数据
seq 100000000 >>/var/log/messages
[root@znix apache]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 8.8G 3.9G 3.7G 59% /
tmpfs 238M 0 238M 0% /dev/shm
/dev/sda1 190M 40M 141M 22% /boot
[root@znix apache]# \rm -f /var/log/messages
[root@znix apache]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 8.8G 3.9G 3.7G 59% /
tmpfs 238M 0 238M 0% /dev/shm
/dev/sda1 190M 40M 141M 22% /boot
[root@znix apache]# lsof |grep delete
rsyslogd 1168 root 1w REG 8,3 889335632 259962 /var/log/messages (deleted)
[root@znix apache]# /etc/init.d/rsyslog restart
Shutting down system logger: [ OK ]
Starting system logger: [ OK ]
查看磁盘空间
[root@znix apache]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda3 8.8G 1.5G 6.9G 18% /
tmpfs 238M 0 238M 0% /dev/shm
/dev/sda1 190M 40M 141M 22% /boot
使用find命令 -inum参数找inode号码,找到相同的inode 互为硬链接。
[root@znix ~]# ls -lhi test.txt
260141 -rw-r--r--. 2 root root 265 Aug 29 19:16 test.txt
[root@znix ~]# find /* -type f -inum 260141
/root/test.txt
/root/test.txt-hard
Modify mtime修改时间 (最常用) 文件的内容 增加 删除 修改改变
Change ctime属性变更时间 文件属性发生改变时更改
Access atime访问时间 查看文件的时间 (只有文件内容有修改时才会改变)
[root@znix ~]# stat oldboy.txt
File: `oldboy.txt'
Size: 237 Blocks: 8 IO Block: 4096 regular file
Device: 803h/2051d Inode: 16976 Links: 2
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-08-28 11:45:26.734849384 +0800
Modify: 2017-08-28 11:45:26.734849384 +0800
Change: 2017-08-30 11:30:27.783364422 +0800
[root@znix ~]# echo "123">>oldboy.txt
[root@znix ~]# stat oldboy.txt
File: `oldboy.txt'
Size: 241 Blocks: 8 IO Block: 4096 regular file
Device: 803h/2051d Inode: 16976 Links: 2
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-08-28 11:45:26.734849384 +0800
Modify: 2017-08-30 11:40:57.384368932 +0800
Change: 2017-08-30 11:40:57.384368932 +0800
[root@znix ~]# ln oldboy.txt oldboy.txt-hard
[root@znix ~]# stat oldboy.txt
File: `oldboy.txt'
Size: 241 Blocks: 8 IO Block: 4096 regular file
Device: 803h/2051d Inode: 16976 Links: 3
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-08-28 11:45:26.734849384 +0800
Modify: 2017-08-30 11:40:57.384368932 +0800
Change: 2017-08-30 11:42:32.981364780 +0800
[root@znix ~]# tail -1 oldboy.txt
123
[root@znix ~]# stat oldboy.txt
File: `oldboy.txt'
Size: 241 Blocks: 8 IO Block: 4096 regular file
Device: 803h/2051d Inode: 16976 Links: 3
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Access: 2017-08-30 11:43:15.288357930 +0800
Modify: 2017-08-30 11:40:57.384368932 +0800
Change: 2017-08-30 11:42:32.981364780 +0800
chkconfig命令实际上控制的是/etc/rc3.d/(3运行模式下)下的软连接。通过不通的软连接,实现不通的控制。实际受/etc/init.d/下脚本的关系。
执行chkconfig iptables on后/etc/rc3.d/下的/etc/init.d/iptables改为S08iptables
[root@znix rc3.d]# chkconfig iptables on
[root@znix rc3.d]# chkconfig |grep ipt
iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
[root@znix rc3.d]# ls -l /etc/rc3.d/ |grep ipt
lrwxrwxrwx 1 root root 18 Aug 30 12:03 S08iptables -> ../init.d/iptables
执行chkconfig iptables off /etc/rc3.d/下的/etc/init.d/iptables软连接改为K92iptables
[root@znix rc3.d]# chkconfig iptables off
[root@znix rc3.d]# chkconfig |grep ipt
iptables 0:off 1:off 2:off 3:off 4:off 5:off 6:off
[root@znix rc3.d]# ls -l /etc/rc3.d/ |grep ipt
lrwxrwxrwx 1 root root 18 Aug 30 12:04 K92iptables -> ../init.d/iptables
iptables 开机自启动 软连接 S开头
iptables 开机不自启动 软连接 K开头
1)把脚本放入/etc/rc.local
2)通过chkconfig 管理命令或脚本,让他开机自启动
[root@znix rc3.d]# echo "hostname" > /etc/init.d/oldboyd
写出chkconfig 才能被chkconfig管理
hkconfig: 2345 99 99
默认在哪几个运行级别启动 开机顺序 关机顺序
自己创建的开机顺序一般写99 ,99为最后一个
[root@znix rc3.d]# cat /etc/init.d/oldboyd
#!/bin/sh
#
#
# chkconfig: 2345 99 99
#
# description: print hostname
hostname
使用chmod命令修改文件权限
需要有可执行的权限,不然无法执行
[root@znix rc3.d]# chmod +x /etc/init.d/oldboyd
[root@znix rc3.d]# ll /etc/init.d/oldboyd
-rwxr-xr-x 1 root root 9 Aug 30 12:22 /etc/init.d/oldboyd
[root@znix rc3.d]# chkconfig --add oldboyd
改为开机自启动
[root@znix rc3.d]# chkconfig |grep old
oldboyd 0:off 1:off 2:on 3:on 4:on 5:on 6:off
[root@znix rc3.d]# ls -l /etc/rc3.d/ |grep old
lrwxrwxrwx 1 root root 17 Aug 30 12:38 S99oldboyd -> ../init.d/oldboyd