Linux服务器中实现文件夹可写不可删除
给Hongkong那边Linux主机ftp给配置好了,突然想到应该得让用户能够上传,但是不能删除文件,在Windows下很容易实现,可是在Linux里面咋办呢?
使用samba倒是可以控制,难不成我为了这个还去专门配置一个samba
不行,得另外想办法才成
想到去年碰到一件事,一个目录死命都无法删除,后来使用chattr
是不是可以利用chattr来达到目的呢?
man了一下chattr命令,发现:
A file with the `a’ attribute set can only be open in append mode for
writing. Only the superuser or a process pessessing the
CAP_Linux_IMMUTABLE capability can set or clear this attribute.
好像可以达到目的呢
试验了一下chattr +a /tmp/aaa
lsattr
—–a——- ./aaa
然后登录ftp,果然不能删除了
大功告成。
相关推荐
bluecarrot 2020-11-23
Attend 2020-11-17
ZHAICAN 2020-11-16
codedecode 2020-11-14
zhangbingb 2020-11-12
ykmail 2020-11-11
futurezone 2020-11-06
rikeyone 2020-11-04
橄榄 2020-11-04
WenCoo 2020-10-31
liuyuchen 2020-10-27
ROES 2020-10-24
Gexrior 2020-10-22
ZHAICAN 2020-10-20
风语者 2020-10-16
zhongguomin 2020-10-16
净无邪 2020-10-15