knowledge/docs/linux/删除.user.ini文件.md

13 lines
400 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 删除.user.ini文件
用宝塔创建站点后在站点根目录会有.user.ini文件等一系列的默认文件其他文件都可以正常被删除只有这个.user.ini文件无法用`rm -rf .user.ini`命令删除,原因是它被锁定了,需要先解锁再删除。
```sh
# 解除 user.ini 文件锁定
chattr -i .user.ini
# 删除 .user.ini 文件
rm -rf .user.ini
```
可以了。