vdfuse

VirtualBox軟件掛載VDI分區文件工具

補充說明

vdfuse命令 是VirtualBox軟件掛載VDI分區文件的一個工具,VirtualBox是一款能創建虛擬機的開源軟件,vdi是它的默認磁盤格式。

什麼是VirtualBox

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等系列的客戶操作系統。

在Ubuntu中安裝vdfuse,打開終端,輸入:

1sudo apt-get install virtualbox-fuse

語法

1vdfuse [options] -f image-file mountpoint

選項

1-h 幫助
2-r 只讀
3-t 類型 (VDI, VMDK, VHD, or raw; default: auto)
4-f 鏡像文件
5-a 允許所有用戶讀取
6-w 允許所有用戶都寫
7-g 前臺運行
8-v 輸出反饋
9-d debug模式

注意:必須編輯一下/etc/fuse.confand,去掉 "user_allow_other" 前面的註釋符號(#),否則不能正確運行。

實例

使用如下如下語句掛載.vdi文件:

1sudo vdfuse -f /path/to/file.vdi /path/to/mountpoint

/path/to/mountpoint應該包含如下文件EntireDisk、Partition1等,如果只有一個文件,你可能需要這樣掛載:

1mount /path/to/mountpoint/Partition1 /path/to/someother/mountpoint

文件系統就掛載到/path/to/someother/mountpoint了。

來源:https://github.com/jaywcjlove/linux-command

最後修改於: Wednesday, January 31, 2024

相關文章:

翻譯: