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