VMware Player
- VMware Player インストール [2014-12-07]
- 仮想環境の作成 [2014-12-07]
VMware インストール
インストールは以下のサイトから(無償の VMware Player をダウンロード)
Download VMware
仮想環境の作成と VMware Tools のインストール( CentOS 7 )
事前準備として、仮想環境上に作成する OS の媒体または ISO データを入手しておくこと。
CentOS などの VMware の「簡易インストール」が行われる OS は、「後で OS をインストール」を選ぶ。
OS のインストールが終わったら VMware Tools を忘れずにインストールする。
※仮想環境をより使いやすくする(ホストマシンを連携するため、例えばマシン時刻とか)の Tools のこと。
以下は CenOS 7 にインストールするための例。
# perl や net-tools がインストールされていない場合は、事前にインストールする yum install perl yum install net-tools # VMware Player のメニューから VMware Tools のインストールを選択した後 # 仮想CD-ROMからマウント mount /dev/cdrom/ /mnt/ # マウントした中から、tar.gz を tmp に展開 tar xvf /mnt/VMwareTools-9.9.0-2304977.tar.gz -C /tmp/ cd /tmp/vmware-tools-distrib # インストール実行 ./vmware-install.pl -default ################################################ # 以下エラーが出たら・・・ #「/etc/vmware-tools/locations」を消す rm -rf /etc/vmware-tools/locations ============================= Error: Unable to find the binary installation directory (answer BINDIR) in the installer database file "/etc/vmware-tools/locations". Uninstall failed. Please correct the failure and re run the install. Execution aborted. ============================= # ifconfig がないと失敗する ============================= Setup is unable to find the "ifconfig" program on your machine. Please make sure it is installed. Do you want to specify the location of this program by hand? [yes] no ==============================