避免误删文件:Linux回收站机制

1、编写回收站脚本程序

 
 
  1. [root@SlaveA data]# cat /bin/rm.sh
  2. #!/bin/sh
  3. # Author steven
  4. # Modify 20120709
  5. dirpath=/data/Recycle # 选择回收站所在的分区目录
  6. now=`date +%Y%m%d_%H_%M_%S_`
  7. filename=${now}$1 # 给已经删除的文件加一个时间前缀来标识删除时的精准时间
  8. if [ ! -d ${dirpath} ];then
  9. /bin/mkdir -p ${dirpath}
  10. fi
  11. /bin/mv $1 ${dirpath}/${filename}

2、其他步骤

chmod 755 /bin/rm.sh

echo "alias rm='/bin/rm.sh'" >> /etc/bashrc

3、删除文件测试

rm /root/text.txt

此时,text.txt文件就会被mv 到 回收站目录 /data/Recycle

4、删除回收站文件

/bin/rm -rf /data/Recycle/text.txt

5、回收站机制是为了解决不小心误删问题,如果确定某个文件永久删除则直接删除

/bin/rm -rf filename

6、为防止回收站目录遗留文件过多而占用太多的硬盘资源,使用crontab定时删除历史文件

a、编写定时删除回收站文件程序脚本

 
 
  1. [root@SlaveA ~]# cat clean_recycle.sh
  2. #!/bin/sh
  3. # AUthor steven
  4. # Modify 20120709
  5. dirpath=/data/Recycle/
  6. /bin/find ${dirpath} -mtime +30 -exec /bin/rm -rf {} \; # 30 天
  7. #注意:此处是 /bin/rm -rf

b、添加计划任务

crontab -e

1 5 * * 0 sh /root/clean_recycle.sh

7、失误是无法避免的,我们猜不到失误会在何时,何地,何种情况下发生。既然有这种因素存在,能用机制解决就用机制解决把。

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/26585184/viewspace-735123/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/26585184/viewspace-735123/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值