创建两个用户,第一个用户名为:user1+姓名缩写+学号最后两位,第二个用户名为:user2+姓名缩写+学号最后两位,并且不属于同一用户组。将上一题创建的子目录的拥有者改为第一个用户,给file2文件写入内容“Iam姓名缩写+学号”,设置权限为:640。
时间: 2024-03-22 13:42:19 浏览: 68
假设姓名缩写为AB,学号为20210001,那么可以按照以下步骤创建两个用户:
1. 创建第一个用户:user1AB01
```shell
sudo useradd -m user1AB01
```
-m 参数会自动为该用户创建一个 home 目录。
2. 创建第二个用户:user2AB01
```shell
sudo useradd -m user2AB01
```
3. 修改子目录的拥有者为第一个用户
假设子目录的路径为 /home/your_username/testdir,执行以下命令:
```shell
sudo chown user1AB01:user1AB01 /home/your_username/testdir
```
4. 给 file2 文件写入内容
假设 file2 文件的路径为 /home/your_username/testdir/file2,执行以下命令:
```shell
echo "Iam AB01" | sudo tee /home/your_username/testdir/file2
```
5. 设置权限为 640
执行以下命令:
```shell
sudo chmod 640 /home/your_username/testdir/file2
```
这样就完成了创建两个用户并设置文件权限的任务。
阅读全文