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.

59 lines
1.5 KiB

7 years ago
vdfuse
===
VirtualBox软件挂载VDI分区文件工具
6 years ago
## 说明
7 years ago
5 years ago
**vdfuse命令** 是VirtualBox软件挂载VDI分区文件的一个工具VirtualBox是一款能创建虚拟机的开源软件vdi是它的默认磁盘格式
7 years ago
### 什么是VirtualBox
5 years ago
VirtualBox是一款功能强大的x86虚拟机软件它不仅具有丰富的特色而且性能也很优异。更可喜的是VirtualBox于数日前走向开源成为了一个发布在GPL许可之下的自由软件。VirtualBox可以在Linux和Windows主机中运行并支持在其中安装Windows (NT 4.0、2000、XP、Server 2003、Vista)、DOS/Windows 3.x、Linux (2.4 和 2.6)、OpenBSD等系列的客户操作系统
7 years ago
**在Ubuntu中安装vdfuse打开终端输入**
```
sudo apt-get install virtualbox-fuse
```
5 years ago
## 选项
7 years ago
```
vdfuse [options] -f image-file mountpoint
```
6 years ago
7 years ago
```
-h 帮助
-r 只读
-t 类型 (VDI, VMDK, VHD, or raw; default: auto)
-f 镜像文件
-a 允许所有用户读取
-w 允许所有用户都写
-g 前台运行
-v 输出反馈
-d debug模式
```
5 years ago
注意:必须编辑一下`/etc/fuse.confand`,去掉 "user_allow_other" 前面的注释符号(#),否则不能正确运行
7 years ago
5 years ago
## 实例
7 years ago
使用如下如下语句挂载.vdi文件
```
sudo vdfuse -f /path/to/file.vdi /path/to/mountpoint
```
`/path/to/mountpoint`应该包含如下文件EntireDisk、Partition1等如果只有一个文件你可能需要这样挂载
```
mount /path/to/mountpoint/Partition1 /path/to/someother/mountpoint
```
5 years ago
文件系统就挂载到`/path/to/someother/mountpoint`了
7 years ago