mkdir: cannot create directory ‘/home/lighthouse/ffmpg’: No such file or directory
时间: 2024-01-15 21:03:28 浏览: 136
这是一个错误提示,意思是在`/home/lighthouse/`路径下没有`ffmpg`目录,所以无法创建该目录。你需要先确认该路径是否存在,如果不存在需要先创建该路径,然后再尝试创建`ffmpg`目录。你可以使用以下命令创建该路径和目录:
```
mkdir -p /home/lighthouse/ffmpg
```
这将会创建一个`/home/lighthouse/ffmpg`路径和目录。
相关问题
mkdir: cannot create directory ‘/var/ftp/userdir’: No such file or directory
This error message indicates that the "mkdir" command is attempting to create a directory named "userdir" within the "/var/ftp" directory, but the "/var/ftp" directory does not exist.
To resolve this issue, you need to create the "/var/ftp" directory first, then create the "userdir" directory within it. You can do this by running the following commands:
```
sudo mkdir /var/ftp
sudo mkdir /var/ftp/userdir
```
The "sudo" command is used to run these commands with administrative privileges, which may be necessary depending on your system configuration.
解释 mkdir: cannot create directory ‘/tmp/hadoopfile/hadoop-hauser’: No such file or directory
这个错误通常表示你在创建目录时指定的路径上的一个或多个目录不存在。你需要检查一下指定的路径是否正确,以确保所有的父级目录都已经存在。如果不存在,你需要先创建它们。例如,执行以下命令可以创建/tmp/hadoopfile/hadoop-hauser目录及其所有父级目录:
```
mkdir -p /tmp/hadoopfile/hadoop-hauser
```
这里的 `-p` 参数表示如果父级目录不存在则创建。
阅读全文