0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Ubuntu20.04にVMWare Playerをインストールする

Last updated at Posted at 2022-06-27

はじめに

Ubuntu 20.04にVMWare Playerをインストールした際の手順。

環境

動作環境は以下の通り。

Ubuntu
$ cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.4 LTS (Focal Fossa)"
ID=ubuntu
ID_LIKE=debian
PRETTY_NAME="Ubuntu 20.04.4 LTS"
VERSION_ID="20.04"
HOME_URL="https://www.ubuntu.com/"
SUPPORT_URL="https://help.ubuntu.com/"
BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/"
PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy"
VERSION_CODENAME=focal
UBUNTU_CODENAME=focal

インストール手順

インストーラのダウンロード

公式サイト からインストーラをダウンロードする。

右下にLinux用のVMare Playerのダウンロードリンクがあるのでこれをクリックする。

image.png

インストーラ実行

ダウンロードしたインストーラ(*.bundle)に実行権限を与えて、

実行権限付与
$ ll *.bundle
-rw-rw-r-- 1 kannkyo kannkyo 509M  6月 27 16:39 VMware-Player-Full-16.2.3-19376536.x86_64.bundle
$ chmod a+x *.bundle
$ ll *.bundle
-rwxrwxr-x 1 kannkyo kannkyo 509M  6月 27 16:39 VMware-Player-Full-16.2.3-19376536.x86_64.bundle*

インストーラを実行する。

実行
$ sudo ./VMware-Player-Full-16.2.3-19376536.x86_64.bundle 
[sudo] kannkyo のパスワード: 
Extracting VMware Installer...done.
Installing VMware Player 16.2.3
    Configuring...
[######################################################################] 100%
Installation was successful.

初期設定

VMWare Player のライセンス許諾画面が表示されるので、
"I accept..."を選択して【Nextボタン】を押下。

Screenshot from 2022-06-27 16-49-17.png

更にのライセンス許諾画面が表示されるので、
"I accept..."を選択して【Nextボタン】を押下。

Screenshot from 2022-06-27 16-50-04.png

起動時に更新確認するかどうかを問われるので、
Yes/Noを選択して、【Nextボタン】を押下。

Screenshot from 2022-06-27 16-51-13.png

カスタマーエクスペリエンス工場プログラムに参加するかどうか問われるので、
Noを選択して、【Nextボタン】を押下。

Screenshot from 2022-06-27 16-52-19.png

ライセンスを問われるので、
商用利用時は"Enter a license..."を選択してライセンスキーを入力し、
非商用利用時は"Use VMWare Player..."を選択して、
【Finishボタン】を押下。

Screenshot from 2022-06-27 16-53-09.png

Open VM tools

ホストとゲスト間でファイルのコピー&ペーストをするためにはOpen VM toolsが必要。
Ubuntuの公式レポジトリで配布されているので、インストールする。

sudo apt install open-vm-tools-desktop open-vm-tools

スワップ設定

VMWareの推奨環境は、SWAP >= 1G 。
SWAP未設定の場合はまず設定する。

# SWAP設定確認
sudo swapon --show

# SWAPファイル作成
sudo fallocate -l 1G /swapfile
ls -lh /swapfile

# アクセス権限設定
sudo chmod 600 /swapfile
ls -lh /swapfile

# SWAP設定
sudo mkswap /swapfile
sudo swapon /swapfile

# SWAP設定確認
sudo swapon --show

参考サイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?