2017年12月10日日曜日

VagrantでFreeplane、Xfce Desktop環境、XRDPがインストールされた仮想マシン(Debian Stretch/9.2)を構築する

Freeplaneはオープンソースのマインドマップ描画ソフトウェアです。

〇Freeplaneの画面


仮想マシンの構築方法

以下のVagrantfileを使用して、Freeplane、Xfce Desktop環境、XRDPをインストールした仮想マシンを構築できます。
XRDPがインストールされているので、Windowsのリモートデスクトップで接続することができます。ユーザ名はVagrant、パスワードもVagrantでログオンできます。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/debian-9.2"
  config.vm.hostname = "db92xfcefreeplane"
  config.vm.network "public_network", ip:"192.168.1.113", :netmask => "255.255.255.0"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "db92xfcefreeplane"
     vbox.gui = true
     vbox.cpus = 4
     vbox.memory = 4096
  end
  config.vm.provision "shell", inline: <<-shell -e="" -i="" -o="" -y="" apt-get="" cat="" dpkg::options::="--force-confold" eof="" etc="" install="" ja_jp.utf-8="" jp106="" lang="" locale-gen="" locale.gen="" localectl="" noninteractive="" s="" sed="" set-keymap="" set-locale="" task-japanese="" update-locale="" update="" upgrade="" utf-8=""> /etc/default/keyboard
XKBMODEL="pc106"
XKBLAYOUT="jp"
XKBVARIANT=""
XKBOPTIONS=""
BACKSPACE="guess"
EOF

cat << EOF > /home/vagrant/.xsessionrc
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS="@im=fcitx"
sed -i -e "s/^EnabledIMList.*$/EnabledIMList=fcitx-keyboard-jp:True,mozc:True,fcitx-keyboard-us:False/" /home/vagrant/.config/fcitx/profile
fcitx-remote -r
fcitx -r -d
#startxfce4 &
EOF
chown vagrant:vagrant .xsessionrc

apt-get -y install  xrdp fcitx-mozc task-xfce-desktop tigervnc-standalone-server
im-config -n fcitx
sudo -u vagrant bash -i -c "export DISPLAY=:0.0 && fcitx -r"

cp /etc/xrdp/xrdp.ini /etc/xrdp/xrdp.ini.org
cat /etc/xrdp/xrdp.ini.org | gawk '/\\[Globals\\]/,/\\[Xorg\\]/' | sed -e 's/\\[Xorg\\]//' > /etc/xrdp/xrdp.ini
cat << EOF >> /etc/xrdp/xrdp.ini
[Xvnc]
name=Xvnc
lib=libvnc.so
username=ask
password=ask
ip=127.0.0.1
port=-1
EOF

systemctl restart xrdp
systemctl enable xrdp

# install java
apt-get -y install openjdk-8-jdk

# Freeplaneのダウンロード
wget -O freeplane.deb 'https://sourceforge.net/projects/freeplane/files/freeplane%20stable/freeplane_1.6.10%7Eupstream-1_all.deb';;
dpkg -i freeplane.deb

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

[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/usr/bin/freeplane
Name=Freeplane
Icon=/usr/share/freeplane/freeplane.png
EOF
chmod +x /home/vagrant/デスクトップ/freeplane.desktop
chown vagrant:vagrant /home/vagrant/デスクトップ/freeplane.desktop

init 5
SHELL
end

関連情報

・Freeplaneに関する他の情報はこちらを参照してください。

・プロジェクトWebサイト
https://www.freeplane.org/wiki/index.php/Home

0 件のコメント:

コメントを投稿