XRDPがインストールされているので、リモートデスクトップで接続することができます。
ユーザ名はvagrant、パスワードはvagrantでアクセスします。
Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/ubuntu-16.04"
config.vm.hostname = "ub1604xfce"
config.vm.network :public_network, ip:"192.168.1.113"
config.vm.provider :virtualbox do |vbox|
vbox.name = "ub1604xfce"
vbox.gui = true
vbox.cpus = 4
vbox.memory = 4096
end
config.vm.provision "shell", inline: <<-SHELL
localectl set-locale LANG=ja_JP.UTF-8
apt-get update
apt-get -y install xrdp fcitx-mozc fcitx-anthy xubuntu-desktop
im-config -n fcitx
init 5
SHELL
end
ログイン画面
ログイン後のデスクトップ画面
0 件のコメント:
コメントを投稿