linux 如何在指定的目录下新建用固话
时间: 2024-05-13 19:20:49 浏览: 33
在 Linux 中,可以使用 mkdir 命令来新建目录。要在指定的目录下新建一个名为 "test" 的目录,可以执行以下命令:
```
mkdir /path/to/directory/test
```
其中,/path/to/directory 是指定的目录路径,test 是新建的目录名。
要使用固定权限创建新目录,可以使用 chmod 命令。例如,要创建一个名为 "test" 的目录,其权限设置为 755,可以执行以下命令:
```
mkdir /path/to/directory/test
chmod 755 /path/to/directory/test
```
其中,/path/to/directory 是指定的目录路径,test 是新建的目录名。chmod 命令将设置目录的权限为 755,其中 7 表示 owner 有读、写、执行权限,5 表示 group 和 others 有读、执行权限。
阅读全文