〇Freeplaneの画面
仮想マシンの構築方法
以下のVagrantfileを使用して、Freeplane、Gnome 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 = "db92gnomefreeplane"
config.vm.network "public_network", ip:"192.168.1.114", :netmask => "255.255.255.0"
config.vm.provider :virtualbox do |vbox|
vbox.name = "db92gnomefreeplane"
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/.xprofile
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
EOF
chown vagrant:vagrant .xprofile
apt-get -y install xrdp fcitx-mozc task-gnome-desktop tigervnc-standalone-server
export DISPLAY=:0.0
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のショートカットを作成
cat << EOF > /usr/share/applications/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 /usr/share/applications/freeplane.desktop
chown vagrant:vagrant /usr/share/applications/freeplane.desktop
init 5
SHELL
end
-shell>
関連情報
・Freeplaneに関する他の情報はこちらを参照してください。・プロジェクトWebサイト
https://www.freeplane.org/wiki/index.php/Home
0 件のコメント:
コメントを投稿