Translations of this page:
- 日本語 (ja)
- English (en)
最近の更新
- 03 Zed editor 設定 [Windowsでビルド]
- 09 ↷ 50_dialy:2025:09:09 から 50_dialy:2025:09:08 へページを名称変更しました。
- 06 ↷ 50_dialy:2025:06 から 50_dialy:2025:09:06 へページを移動しました。
最近の更新
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