linux系統下是沒有**站的,刪除的檔案或者目錄預設是永遠也找不回來的,因此,我們需要自己建立乙個'**站',來暫時存放刪除的檔案
#編輯檔案
[root@hass-11 ~]# vim /etc/profile.d/trash.sh
#!/bin/bash
movetotrash()
recoveryfile()
#建立目錄
mkdir /.trash
#命令列執行
bash /etc/profile.sh/trash.sh
#在家目錄下的.bashrc目錄下新增以下內容
[root@hass-11 ~]# vim ~/.bashrc
...alias rm=movetotrash
alias re=recoveryfile
alias rl="ls /.trash"
#命令列執行
[root@hass-11 ~]# source ~/.bashrc
#驗證[root@hass-11 ~]# ll
total 100
-rw-r--r-- 1 root root 48 sep 2 14:00 c.txt
-rw-r--r-- 1 root root 48 sep 2 14:53 d.txt
[root@hass-11 ~]# rm c.txt d.txt
[root@hass-11 ~]# rl
c.txt d.txt
[root@hass-11 ~]# re c.txt d.txt
[root@hass-11 ~]# ll
total 100
-rw-r--r-- 1 root root 48 sep 2 14:00 c.txt
-rw-r--r-- 1 root root 48 sep 2 14:53 d.txt
linux下修改rm命令防止誤刪除
前言 相信很多朋友都遇到過在linux下用rm命令誤刪除檔案的時候,此刻的心中彷彿有無數的羊駝在奔騰。那麼怎麼防止這種情況發生呢?當然是有方法的,我們可以寫乙個shell指令碼,改變一下rm命令的作用。第一步 先在home目錄下建立乙個叫username名字的目錄 當然名字可以自定義 具體命令為 s...
Linux下恢復誤刪除的檔案
jpeg等檔案或html pdf zip txt 辦公文書等檔案被誤刪除的情況下,可以使用叫做 photorec 的軟體來進行恢復。下面就介紹一下photorec的使用方法。注 使用工具photorec進行檔案恢復實際上 要對恢復前後磁碟的差異進行比較。比如,如果要恢復只安裝了linux的硬碟內的檔...
Linux下恢復誤刪除的檔案
jpeg等檔案或html pdf zip txt 辦公文書等檔案被誤刪除的情況下,可以使用叫做 photorec 的軟體來進行恢復。下面就介紹一下photorec的使用方法。注 使用工具photorec進行檔案恢復實際上 要對恢復前後磁碟的差異進行比較。比如,如果要恢復只安裝了linux的硬碟內的檔...