因為samba沒做資源回收筒的機制
所以現在來實作一下
vim /etc/samba/smb.conf
改成下面:
----------------------------------------------------------------
[共用區]
comment = Share files
public = yes
browseable = yes
locking = no
writable = yes
path=/var/samba
force create mode = 0775
force directory mode = 6775
# 載入 資源回收筒 模組
vfs object =recycle
# 在將檔案移入 資源回收筒 時,要建立相對應的目錄結構
recycle:keeptree = yes
# 若有相同檔案名稱時,則加以編號識別
recycle:versions = yes
# 資源回收筒 之相對路徑。後面的 %u 則為使用者帳號。
recycle:repository=../Garbage/%u
# 不進行 資源回收 的檔案類型
recycle: exclude = .tmp|.temp|.o|.obj
----------------------------------------------------------------
在/var下建立Garbage目錄
chmod 770 Garbage
chmod 777 samba
chmod o+t samba
之後刪除的東西都會到Garbage下
留言列表