rm -rf 命令带来的恶梦 修改rm命令;让rm 命令删除的文件到回收站

今天,哎,悲剧的一天。。。。。上午在linux下删除火狐浏览器的时候,用错了命令我想把/usr/目录下面的带mozilla的文件都删除掉,结果用这个命令rm -rf mozilla *意思就是执行了rm -rf mozilla 然后又执行了rm -rf * 所以我的/usr/啥都没了,所以回到解放前了,我查了一下网上关于通过rm -rf误删除的文件进行恢复的方法,发现我现在因为/usr目录下面的文件全部删除。所以全不能恢复的可能性不大了,只好重装系统.并且等我吃饭回来的时候连系统文件也进不去了,只好通过ext2explore 软件,在windows下把Linux系统中的主文件里面的东西都copy到windows的桌面上。

简单说一下重装系统的艰苦过程:

1 听一哥们说,装ubuntu14.04的,然后通过在计算机-管理-然后再磁盘管理里面,选择到F盘右键,然后压缩,我弄出了大概40GB的空间给了LINUX.。弄完后就用那个u盘开始装。发现装完之后,这个版本的输入法非常的垃圾,不适用,就开始自己各种折腾。大概折腾了有3、4个小时还是没有把输入法折腾好。我估计是在我安装的时候没有联网的原因,最好可以联网。

2 怎么办呢,继续装呗。然后自己在网上找了个下ubuntu 12.04 32位版本

mirrors.163.com/ubuntu-releases/precise/ubuntu-12.04.5-desktop-i386.iso

安装完后,然后用ultaral iso软件把iso刻录到U盘里面,然后又重新装,电脑启动的时候 狂按del键,然后再按F12,然后选择USB,直接覆盖安装就OK了。这个版本就可以啊,。输入法是正常的。

再说一下,修改rm命令,让rm删除http://0x55aa.sinaapp.com/linux/1156.htmlhttp://www.cnblogs.com/jtf-china/archive/2011/05/27/2059872.html

1  Install trash-cli



 
 
 
sudo apt - get install tras
2. Set up the script

In Ubuntu enter this in a terminal:

 
 
1
sudo gedit / usr / local / bin / trash - rm
#!/bin/bash
 # command name: trash-rm
shopt -s extglob
recursive=1
declare -a cmd
((i = 0))
for f in "$@"
do
case "$f" in
(-*([fiIv])r*([fiIv])|-*([fiIv])R*([fiIv]))
tmp="${f//[rR]/}"
if [ -n "$tmp" ]
then
#echo "\$tmp == $tmp"
cmd[$i]="$tmp"
((i++))
fi
recursive=0 ;;
(--recursive) recursive=0 ;;
(*)
if [ $recursive != 0   -a  -d "$f" ]
then
echo "skipping directory: $f"
continue
else
cmd[$i]="$f"
((i++))
fi ;;
esac
done
trash "${cmd[@]}"



注意:12.04以上的版本,把最后一行的trash换成trash-put。

执行权限


 
 
1
sudo chmod + x / usr / local / bin / trash - rm
3. Create an alias for "rm" to use "trash-rm"

In Ubuntu, run this in a terminal:
 
 
1
gedit ~ / .bashrc
and enter this at the end of the file:
 
 
1
alias rm = "trash-rm"
and save it.

Then reload bashrc by running the following command in a terminal:
 
 
1
bash
That's it! Now try it out by deleting files the way you always do, using "rm" and "rm -r".

Final trash-cli tips

Since you've installed the trash-cli utility, now you can use the following commands for manipulating the trash from the command line (the names are self explanatory):
 
 
1
2
3
empty - trash
list - trash
restore - trash
Update: to get this to work for "sudo rm" as well, copy wilo108's sudo wrapper in your ~/.bashrc file. Without it, this will not work when "rm" is used with "sudo"!

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

Frank范

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值