You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
676 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

vgremove
===
用于用户删除LVM卷组
## 补充说明
**vgremove命令** 用于用户删除LVM卷组。当要删除的卷组上已经创建了逻辑卷时vgremove命令需要进行确认删除防止误删除数据。
### 语法
```
vgremove(选项)(参数)
```
### 选项
```
-f强制删除。
```
### 参数
卷组:指定要删除的卷组名称。
### 实例
使用vgremove命令删除LVM卷组"vg1000"。在命令行中输入下面的命令:
```
[root@localhost ~]# vgremove vg1000 #删除卷组"vg1000"
Volume group "vg1000" successfully removed
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->