Translations of this page:
- 日本語 (ja)
- English (en)
最近の更新
Tag Cloud
このページへのアクセス
今日: 2 / 昨日: 0
総計: 362
- Dokuwiki.fl8.jp(267)
- 13 CentOS6メール設定(15)
- 05 rsync(14)
- 34 UnboundでHA構成(13)
- FreeBSD カーネル再構築(12)
最近の更新
このページへのアクセス
今日: 2 / 昨日: 0
総計: 362
If an illegal file or similar is placed, there may be cases where the placed file cannot be deleted.
This is something that manipulates file attributes other than permissions in Linux's ext2 and ext3 file systems.
# rm -rf ttyload rm: cannot remove `ttyload': Operation not permitted
# lsattr ttyload s---ia------- ttyload
# chattr -ia ttyload # lsattr ttyload s------------ ttyload
# chattr +ia ttyload # lsattr ttyload s---ia------- ttyload
# rm -rf ttyload