Skip to content

Instantly share code, notes, and snippets.

@yoggy
Created April 23, 2015 12:30
Show Gist options
  • Select an option

  • Save yoggy/a2f0ff6c4eb401038a1f to your computer and use it in GitHub Desktop.

Select an option

Save yoggy/a2f0ff6c4eb401038a1f to your computer and use it in GitHub Desktop.
chattr +iって、たまに設定されてると忘れていて焦るよね…
$ touch hoge
$ ls -al hoge
-rw-rw-r-- 1 yoggy yoggy 0 Apr 23 21:27 hoge
$ lsattr hoge
-------------e-- hoge
$ sudo chattr +i hoge
$ lsattr hoge
----i--------e-- hoge
$ rm -rf hoge
rm: cannot remove 'hoge': Operation not permitted
$ sudo rm -rf hoge
rm: cannot remove 'hoge': Operation not permitted
$ sudo chattr -i hoge
$ lsattr hoge
-------------e-- hoge
$ rm hoge
$ ls -al hoge
ls: cannot access hoge: No such file or directory
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment