- 论坛徽章:
- 0
|
1、我用sudo将test.cpp的拥有者和用户组改成root的:
star@CJW:~$ ls -l test.cpp
-rw-rw-r-- 1 star star 102 2月 2 20:03 test.cpp
star@CJW:~$ sudo chown root:root test.cpp
[sudo] password for star:
star@CJW:~$ ls -l test.cpp
-rw-rw-r-- 1 root root 102 2月 2 20:03 test.cpp
star@CJW:~$
2、用打开test.cpp并修改内容:
#include <iostream>
using namespace std;
int main()
{
cout << "hello!" << endl; //我加上去的
cout << "Hello!World!" << endl;
return 0;
}
E45: 已设定选项 'readonly' (请加 ! 强制执行)
3、我强制执行:
#include <iostream>
using namespace std;
int main()
{
cout << "hello!" << endl;
cout << "Hello!World!" << endl;
return 0;
}
~
"test.cpp" 11L, 130C 已写入
4、修改之后:
star@CJW:~$ ls -l test.cpp
-rw-rw-r-- 1 star star 102 2月 2 20:03 test.cpp
star@CJW:~$ sudo chown root:root test.cpp
[sudo] password for star:
star@CJW:~$ ls -l test.cpp
-rw-rw-r-- 1 root root 102 2月 2 20:03 test.cpp
star@CJW:~$ vim test.cpp
star@CJW:~$ ls -l test.cpp
-rw-rw-r-- 1 star star 130 2月 2 20:09 test.cpp
star@CJW:~$
不但可以保存修改,文件所有者还从root变成star,请问怎么理解?这样怎么能保证文件安全性? |
|