Chan歪歪520 发表于 2020-1-18 17:27:36

怎么删除write-protected文件?

不知道怎么建立了这样一个文件,保存时保存不了。。。才发现是write-protected 文件
$ ls -ltr
total 4
-rw-r--r--. 1 root root 33 Jan 18 16:52 test1.c
$ rm test1.c
rm: remove write-protected regular file `test1.c'? y
rm: cannot remove `test1.c': Permission denied

尝试删除发现也没有权限。
对于Linux是初学,求大神讲解一下。

zltzlt 发表于 2020-1-18 17:28:52

用 root 权限试一下(su root)

人造人 发表于 2020-1-18 18:00:04

rm -f test1.c

howe.huang 发表于 2020-1-19 14:31:03

sudo chmod 777 test1.c
sudo rm -f test1.c
页: [1]
查看完整版本: 怎么删除write-protected文件?