ブログ内検索
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ファイル属性を変更してみました。
変更対象ファイルを確認。
----------------------------------------
debian:~#
debian:~# ls -ld /pub/sticky
drwxrwsrwt 2 root root 4096 2008-10-12 19:55 /pub/sticky
debian:~#
debian:~# ls -l /pub/sticky/file
-rw-rw-rwt 1 user00 root 0 2008-10-12 03:26 /pub/sticky/file
debian:~#
----------------------------------------
ファイルの属性を確認後、削除不可、
dump非対称に属性変更です。
chattr:change file attributes
lsattr:list file attributes
i:immutable
----------------------------------------
debian:~#
debian:~# lsattr /pub/sticky/file
------------------ /pub/sticky/file
debian:~# chattr +id /pub/sticky/file
debian:~#
debian:~# lsattr /pub/sticky/file
----i-d----------- /pub/sticky/file
debian:~#
----------------------------------------
備忘録
http://linux.die.net/man/1/chattr
備忘録
http://linux.die.net/man/1/chattr
user00がファイルを削除しようとすると・・・
できません。
----------------------------------------
user00@debian:~$
user00@debian:~$ rm -f /pub/sticky/file
rm: cannot remove `/pub/sticky/file': 許可されていない操作です
user00@debian:~$
user00@debian:~$ ls -l /pub/sticky/file
-rw-rw-rwt 1 user00 root 0 2008-10-12 03:26 /pub/sticky/file
user00@debian:~$
user00@debian:~$ lsattr /pub/sticky/file
----i-d----------- /pub/sticky/file
user00@debian:~$
----------------------------------------
当然、他のユーザでも削除できません。
----------------------------------------
user01@debian:~$
user01@debian:~$ rm -f /pub/sticky/file
rm: cannot remove `/pub/sticky/file': 許可されていない操作です
user01@debian:~$
----------------------------------------
独り言
このコマンドも使った事がありませんでした・・・
PR
この記事にコメントする