mkdir: cannot create directory ‘/opt/sks/vp1’: No such file or directory
时间: 2023-10-30 20:02:47 浏览: 95
Centos7 kickstart 配置
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.
阅读全文