VirtualBox : 仮想マシンを作成する2020/08/05 |
仮想マシンを作成します。
当例ではホスト OS と同じ Ubuntu 20.04 をインストールして仮想マシンを作成します。 |
|
[1] | 仮想マシンを作成します。 |
# 仮想マシン作成 root@dlp:~# VBoxManage createvm \ --name Ubuntu_2004 \ --ostype Ubuntu_64 \ --register \ --basefolder /var/vbox Virtual machine 'Ubuntu_2004' is created and registered. UUID: db472f90-be34-4b2b-b4bf-a09b8d9a18d5 Settings file: '/var/vbox/Ubuntu_2004/Ubuntu_2004.vbox' # 仮想マシンの設定変更 # [ens33] は自身の環境でのインターフェース名に置き換え root@dlp:~# VBoxManage modifyvm Ubuntu_2004 \
--cpus 4 \ --memory 4096 \ --nic1 bridged \ --bridgeadapter1 ens33 \ --boot1 dvd \ --vrde on \ --vrdeport 5001 # 仮想マシンのストレージ設定 root@dlp:~# VBoxManage storagectl Ubuntu_2004 --name "Ubuntu_2004_SATA" --add sata root@dlp:~# VBoxManage createhd \ --filename /var/vbox/Ubuntu_2004/Ubuntu_2004.vdi \ --size 20480 \ --format VDI \ --variant Standard 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100% Medium created. UUID: 1ffcb55f-22d3-46af-8f39-22b8c04b50b2 root@dlp:~# VBoxManage storageattach Ubuntu_2004 \
--storagectl Ubuntu_2004_SATA \ --port 1 \ --type hdd \ --medium /var/vbox/Ubuntu_2004/Ubuntu_2004.vdi # 仮想マシンの DVD ドライブ設定 # 下例は事前にダウンロードした ISO ファイルを指定している root@dlp:~# VBoxManage storageattach Ubuntu_2004 \
--storagectl Ubuntu_2004_SATA \ --port 0 \ --type dvddrive \ --medium /home/ubuntu-20.04-live-server-amd64.iso # 設定確認 root@dlp:~# VBoxManage showvminfo Ubuntu_2004 Name: Ubuntu_2004 Groups: / Guest OS: Ubuntu (64-bit) UUID: db472f90-be34-4b2b-b4bf-a09b8d9a18d5 Config file: /var/vbox/Ubuntu_2004/Ubuntu_2004.vbox Snapshot folder: /var/vbox/Ubuntu_2004/Snapshots Log folder: /var/vbox/Ubuntu_2004/Logs Hardware UUID: db472f90-be34-4b2b-b4bf-a09b8d9a18d5 Memory size 4096MB Page Fusion: disabled VRAM size: 8MB CPU exec cap: 100% HPET: disabled CPUProfile: host Chipset: piix3 Firmware: BIOS Number of CPUs: 4 PAE: enabled Long Mode: enabled Triple Fault Reset: disabled APIC: enabled X2APIC: enabled Nested VT-x/AMD-V: disabled CPUID Portability Level: 0 ..... ..... |
[2] | 仮想マシンを起動します。 |
root@dlp:~# VBoxManage startvm Ubuntu_2004 --type headless Waiting for VM "Ubuntu_2004" to power on... VM "Ubuntu_2004" has been successfully started. |
[3] | VirtualBox 拡張パックをインストールして VRDP が有効になっている状態の場合、リモートコンピューターから
RDP で仮想マシンに接続可能です。例として Windows 10 で接続します。 接続先は (VirtualBox 稼働サーバーのIPアドレス):(仮想マシンの設定で vrdeport に設定したポート) となります。 |
[4] | 接続できました。インストールは通常通りです。 |
[5] | インストールが完了し、仮想マシンが起動しました。 |
Sponsored Link |