虚拟机常用命令 ubuntu
时间: 2023-08-12 20:04:21 浏览: 258
虚拟机 ubuntu常用指令
3星 · 编辑精心推荐
在 Ubuntu 中,常用的虚拟机命令包括:
1. 安装虚拟机软件(如 VirtualBox):
```
sudo apt update
sudo apt install virtualbox
```
2. 创建新的虚拟机:
```
vboxmanage createvm --name <虚拟机名称> --ostype <操作系统类型> --register
```
3. 配置虚拟机参数:
```
vboxmanage modifyvm <虚拟机名称> --memory <内存大小> --cpus <CPU 核心数>
```
4. 设置虚拟机硬盘:
```
vboxmanage createhd --filename <硬盘文件路径> --size <硬盘大小>
vboxmanage storagectl <虚拟机名称> --name "SATA Controller" --add sata --controller IntelAhci
vboxmanage storageattach <虚拟机名称> --storagectl "SATA Controller" --port 0 --device 0 --type hdd --medium <硬盘文件路径>
```
5. 安装操作系统:
```
vboxmanage storageattach <虚拟机名称> --storagectl "SATA Controller" --port 1 --device 0 --type dvddrive --medium <光盘镜像文件路径>
vboxmanage startvm <虚拟机名称>
```
6. 控制虚拟机:
```
vboxmanage startvm <虚拟机名称> # 启动虚拟机
vboxmanage controlvm <虚拟机名称> poweroff # 关闭虚拟机
vboxmanage controlvm <虚拟机名称> pause # 暂停虚拟机
vboxmanage controlvm <虚拟机名称> resume # 恢复虚拟机
```
这些是一些常用的虚拟机命令,你可以根据需要进行调整和使用。
阅读全文