首頁  >  文章  >  系統教程  >  介紹CentOS系統的回收站功能增強

介紹CentOS系統的回收站功能增強

PHPz
PHPz轉載
2024-01-03 19:22:29740瀏覽

linux rm刪除檔案之後,恢復就比較麻煩了,即使恢復了,檔案名稱格式都變成一串數字了。

修改root使用者的環境變數

vi ~/.bashrc

#註解第5行的別名

#alias rm='rm -i'

最後一行加入如下內容

mkdir -p ~/.trash

##alias rm=trash

alias r=trash

alias rl='ls ~/.trash'

alias ur=undelfile

undelfile()

{

  mv -i ~/.trash/$@ ./

}

trash()

{

  mv $@ ~/.trash/

}

cleartrash()

{

    read -p "clear sure?[n]" confirm

    [ $confirm == 'y' ] || [ $confirm == 'Y' ]  && /bin/rm -rf ~/.trash/*

}

重新載入環境變數

source ~/.bashrc

使用指令ll -a查看目錄,發現多了目錄.trash,這個目錄是用來存在刪除的檔案

drwxr-xr-x.  2 root root       4096 Jun  4 11:31 .trash

刪除一個檔案

[root@localhost ~]# rm percona-xtrabackup_2.2.3.orig.tar.gz

查看目錄,發現刪除的檔案在回收站目錄

[root@localhost ~]# ll .trash/

total 33780

-rw-r--r--. 1 root root 34584359 Jun  2 09:39 percona-xtrabackup_2.2.3.orig.tar.gz

如果需要清空回收站檔案

使用以下命令

[root@localhost ~]# cleartrash

clear sure?[n]y

再次查看,發現空了。

[root@localhost ~]# ll .trash/

total 0

雖然rm用別名定義了,但可以是用絕對路徑刪除檔案

例如/bin/rm 1.txt

它是不會儲存到.trash目錄的。

如果需要定義自動清理7天刪除的檔案

可以寫一個腳本

#!/bin/bash

find /root/.trash -ctime 7 -type f -name "*" -exec /bin/rm {} \;

#然後在任務計畫裡面呼叫一下就可以了。

如果Linux除了root用戶,還有其他用戶需要登陸伺服器,也想他們使用回收站機制

可以修改系統環境變數

vi /etc/profile

最後一行加上

mkdir -p ~/.trash

##alias rm=trash

alias r=trash

alias rl='ls ~/.trash'

alias ur=undelfile

undelfile()

{

  mv -i ~/.trash/$@ ./

}

trash()

{

  mv $@ ~/.trash/

}

 

cleartrash()

{

    read -p "clear sure?[n]" confirm

    [ $confirm == 'y' ] || [ $confirm == 'Y' ]  && /bin/rm -rf ~/.trash/*

}

重新載入環境變數

source /etc/profile

建立普通使用者測試

useradd a

設定密碼

passwd a

登陸Linux

查看目錄,發現會建立.trash目錄

[a@localhost ~]$ ll -a

total 24

drwx------. 3 a    a    4096 Jun  4 11:45 .

drwxr-xr-x. 5 root root 4096 Jun  4 11:44 ..

-rw-r--r--. 1 a    a      18 Oct 16  2014 .bash_logout

-rw-r--r--. 1 a    a     176 Oct 16  2014 .bash_profile

-rw-r--r--. 1 a    a     124 Oct 16  2014 .bashrc

drwxrwxr-x. 2 a    a    4096 Jun  4 11:45 .trash

建立一個空文件

[a@localhost ~]$ touch 1.txt

##刪除檔案

[a@localhost ~]$ rm 1.txt

查看回收站目錄,發現多了一個檔案

[a@localhost ~]$ ll .trash/

total 0

-rw-rw-r--. 1 a a 0 Jun  4 11:45 1.txt### ###如果對.trash目錄位置覺得不爽,可以修改環境變量,改成其他位置,注意保證目錄可寫。 ###

以上是介紹CentOS系統的回收站功能增強的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:jb51.net。如有侵權,請聯絡admin@php.cn刪除