UNPKG

1.64 kBMarkdownView Raw
1vdfuse
2===
3
4VirtualBox软件挂载VDI分区文件工具
5
6## 补充说明
7
8**vdfuse命令** 是VirtualBox软件挂载VDI分区文件的一个工具,VirtualBox是一款能创建虚拟机的开源软件,vdi是它的默认磁盘格式。
9
10### 什么是VirtualBox
11
12VirtualBox是一款功能强大的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等系列的客户操作系统。
13
14 **在Ubuntu中安装vdfuse,打开终端,输入:**
15
16```shell
17sudo apt-get install virtualbox-fuse
18```
19
20### 语法
21
22```shell
23vdfuse [options] -f image-file mountpoint
24```
25
26### 选项
27
28```shell
29-h 帮助
30-r 只读
31-t 类型 (VDI, VMDK, VHD, or raw; default: auto)
32-f 镜像文件
33-a 允许所有用户读取
34-w 允许所有用户都写
35-g 前台运行
36-v 输出反馈
37-d debug模式
38```
39
40注意:必须编辑一下`/etc/fuse.confand`,去掉 "user_allow_other" 前面的注释符号(#),否则不能正确运行。
41
42### 实例
43
44使用如下如下语句挂载.vdi文件:
45
46```shell
47sudo vdfuse -f /path/to/file.vdi /path/to/mountpoint
48```
49
50`/path/to/mountpoint`应该包含如下文件EntireDisk、Partition1等,如果只有一个文件,你可能需要这样挂载:
51
52```shell
53mount /path/to/mountpoint/Partition1 /path/to/someother/mountpoint
54```
55
56文件系统就挂载到`/path/to/someother/mountpoint`了。
57
58