:-1: error: Failed to create remote directories: mkdir: cannot create directory '/opt/untitled1': Permission denied
时间: 2023-11-28 16:50:26 浏览: 295
这个错误提示是因为你没有权限在 `/opt` 目录下创建名为 `untitled1` 的文件夹。通常情况下,只有管理员用户才有权限在系统的根目录下创建文件夹。
你可以尝试在其他目录下创建文件夹,比如在你的用户目录下创建一个名为 `untitled1` 的文件夹:
```
mkdir ~/untitled1
```
或者你可以使用 `sudo` 命令以管理员权限创建文件夹:
```
sudo mkdir /opt/untitled1
```
需要输入管理员密码才能成功执行该命令。
相关问题
ERROR in ch.qos.logback.core.rolling.RollingFileAppender[rollingFile] - Failed to create parent directories for [/opt/module/applog/log/app.2023-06-05.log] ERROR in ch.qos.logback.core.rolling.RollingFileAppender[rollingFile] - openFile(null,true) call failed. java.io.FileNotFoundException: /opt/module/applog/log/app.2023-06-05.log (没有那个文件或目录)
这个错误信息的意思是无法创建指定日志文件的父目录或者无法打开指定日志文件。
可能的原因:
1. 指定的日志文件目录不存在,需要手动创建该目录。
2. 指定的日志文件所在的目录没有写入权限,需要给该目录添加写入权限。
3. 指定的日志文件已经被其他进程打开,无法再次打开,需要检查是否有其他进程在占用该文件。
解决方法:
1. 确认指定的日志文件目录是否存在,如果不存在则手动创建该目录。
2. 确认指定的日志文件所在的目录是否有写入权限,如果没有则给该目录添加写入权限。
3. 检查是否有其他进程在占用该日志文件,如果有则关闭占用该文件的进程。
4. 检查日志配置文件中指定的日志文件路径是否正确,如果不正确则需要修改配置文件中的路径。
mkdir: cannot create directory ‘/opt/sks/vp1’: No such file or directory
This error message suggests that the directory '/opt/sks/vp1' does not exist on your system. To create this directory, you can use the following command:
```
sudo mkdir -p /opt/sks/vp1
```
This will create the directory '/opt/sks/vp1' along with any necessary parent directories that may be missing. The 'sudo' command is used to gain administrative privileges, which may be required to create directories in certain locations on the system.
阅读全文