XRDPがインストールされているので、Windowsのリモートデスクトップで接続することができます。ユーザ名はVagrant、パスワードもVagrantでログオンできます。
Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/ubuntu-16.04"
config.vm.hostname = "ub1604xfcestacer"
config.vm.network :public_network, ip:"192.168.1.114"
config.vm.provider :virtualbox do |vbox|
vbox.name = "ub1604xfcestacer"
vbox.gui = true
vbox.cpus = 4
vbox.memory = 4096
end
config.vm.provision "shell", inline: <<-SHELL
sed -i.bak -e "s#http://archive.ubuntu.com/ubuntu/#http://ftp.riken.jp/pub/Linux/ubuntu/#g";; /etc/apt/sources.list
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
apt-get update
apt-get -y install xrdp fcitx-mozc xubuntu-desktop language-pack-ja
im-config -n fcitx
# install stacer
wget https://github.com/oguzhaninan/Stacer/releases/download/v1.0.8/stacer_1.0.8_amd64.deb
dpkg -i stacer_1.0.8_amd64.deb
init 5
SHELL
end
〇Stacerの画面
〇関連情報
・Stacerに関する他の情報はこちらを参照してください。
・StacerのGithubリポジトリ
https://github.com/oguzhaninan/Stacer
0 件のコメント:
コメントを投稿