2017年12月10日日曜日

VagrantでGo For It!、LXDE Desktop環境、XRDPがインストールされた仮想マシン(Ubuntu16.04)を構築する

以下のVagrantfileを使用して、Go For It!、LXDE Desktop環境、XRDPをインストールした仮想マシンを構築できます。
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 = "ub1604lxdegoforit"
  config.vm.network :public_network, ip:"192.168.1.119"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1604lxdegoforit"
     vbox.gui = true
     vbox.cpus = 4
     vbox.memory = 4096
  end
  config.vm.provision "shell", inline: <<-SHELL
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
apt-get update
apt-get -y install xrdp fcitx-mozc lubuntu-desktop language-pack-ja
im-config -n fcitx

# install go for it
apt-get -y install apt-file unzip
apt-get update
apt-get -y install software-properties-common

add-apt-repository ppa:go-for-it-team/go-for-it-daily
apt-get update
apt-get install go-for-it

# go for itのショートカットを作成
mkdir -p /home/vagrant/デスクトップ/
chown vagrant:vagrant /home/vagrant/デスクトップ/
cat << EOF > /home/vagrant/デスクトップ/go-for-it.desktop
#!/usr/bin/env xdg-open

[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/usr/bin/go-for-it
Name=Go for it!
EOF
chmod +x /home/vagrant/デスクトップ/go-for-it.desktop
chown vagrant:vagrant /home/vagrant/デスクトップ/go-for-it.desktop

init 5
SHELL
end

〇Gor For ItのTo Do画面


〇Gor For Itのタイマー画面


〇Gor For Itの完了タスク画面


0 件のコメント:

コメントを投稿