Linux command
vboxmanage-extpack 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
Install an extension pack
vboxmanage extpack install [extension.vbox-extpack]
Install and replace an existing version
vboxmanage extpack install --replace [extension.vbox-extpack]
Uninstall an extension pack by name
vboxmanage extpack uninstall "[Oracle VM VirtualBox Extension Pack]"
Force uninstall an extension pack
vboxmanage extpack uninstall --force "[Oracle VM VirtualBox Extension Pack]"
List installed extension packs
vboxmanage list extpacks
Clean up temporary files from failed operations
vboxmanage extpack cleanup
说明
vboxmanage extpack manages VirtualBox extension packs. Extension packs add features like USB 2.0/3.0, VirtualBox RDP, and disk encryption. Installing or uninstalling extension packs typically requires administrator privileges.
参数
- install --replace _tarball_
- Install an extension pack from the specified file. Fails if an older version is already installed unless --replace is used.
- uninstall --force _name_
- Uninstall an extension pack by name. Succeeds even if the pack is not present.
- cleanup
- Remove temporary files and directories left behind by failed install or uninstall operations.
- --replace
- Used with install. Uninstall any existing version before installing the new one.
- --force
- Used with uninstall. Override most refusals to uninstall an extension pack.
FAQ
What is the vboxmanage-extpack command used for?
vboxmanage extpack manages VirtualBox extension packs. Extension packs add features like USB 2.0/3.0, VirtualBox RDP, and disk encryption. Installing or uninstalling extension packs typically requires administrator privileges.
How do I run a basic vboxmanage-extpack example?
Run `vboxmanage extpack install [extension.vbox-extpack]` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does install --replace _tarball_ do in vboxmanage-extpack?
Install an extension pack from the specified file. Fails if an older version is already installed unless --replace is used.