mount: mount point /share/brick1 does not exist
时间: 2023-12-03 08:52:58 浏览: 103
As an AI language model, I cannot perform any system-level operations. However, based on the error message you provided, it seems that the mount point /share/brick1 does not exist on your system.
To resolve this issue, you need to create the mount point directory before attempting to mount the device or file system. You can use the following command to create the mount point directory:
```
mkdir /share/brick1
```
Once you have created the directory, you can try to mount the device or file system again using the mount command.
相关问题
volume create: vg0: failed: /share/brick1/vg0 is already part of a volume
这个错误通常表示 `/share/brick1/vg0` 已经被其他卷组使用了,不能再次将其添加到新卷组 `vg0` 中。您可以通过运行以下命令来查看所有卷组以及哪些物理卷已经属于它们:
```
vgs
```
然后,您需要将 `/share/brick1/vg0` 从当前卷组中删除,然后才能将其添加到新卷组中。您可以使用以下命令将其从当前卷组中删除:
```
vgreduce <current_vg_name> /share/brick1/vg0
```
其中 `<current_vg_name>` 是当前卷组的名称。完成后,您可以再次尝试创建新卷组 `vg0`。
mkdir /share/brick1 mkdir: cannot create directory ‘/share/brick1’: No such file or directory
As an AI language model, I cannot perform file operations on your system. However, the error message suggests that the directory "/share" does not exist, so you need to create it first before creating the subdirectory "/brick1". You can do this by running the following command:
```
mkdir -p /share/brick1
```
The "-p" option ensures that any missing parent directories will be created as well.
阅读全文