Translations of this page:
- 日本語 (ja)
- English (en)
最近の更新
- 03 Zed editor 設定 [Windowsでビルド]
Tag Cloud
このページへのアクセス
今日: 1 / 昨日: 2
総計: 889
最近の更新
このページへのアクセス
今日: 1 / 昨日: 2
総計: 889
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