〇Freeplaneの画面
XRDPがインストールされているので、Windowsのリモートデスクトップで接続することができます。ユーザ名はvagrant、パスワードもvagrantでログオンできます。
仮想マシン構築方法
以下のVagrantfileを使用して、Freeplane1.8.0とOpenJDK11、Gnome Desktop環境、XRDPをインストールした仮想マシン(CentOS 8.1)を構築できます。Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "bento/centos-8.1"
config.vm.hostname = "co81gnomefreeplane"
config.vm.provider :virtualbox do |vbox|
vbox.name = "co81gnomefreeplane"
vbox.gui = true
vbox.cpus = 2
vbox.memory = 4096
vbox.customize ["modifyvm", :id, "--nicpromisc2","allow-all"]
end
config.vm.network "public_network", ip: "192.168.1.107", :netmask => "255.255.255.0"
config.vm.provision "shell", inline: <<-SHELL
#localedef -i /usr/share/i18n/locales/ja_JP -f UTF-8 /usr/lib/locale/ja_JP.UTF-8
dnf -y install langpacks-ja
localectl set-locale LANG=ja_JP.UTF-8
dnf install -y epel-release
dnf check-update
dnf -y update
timedatectl set-timezone Asia/Tokyo
dnf -y groupinstall "Server with GUI" "Input Methods"
dnf -y install xrdp ibus-mozc
# hide dialogs
sudo sh -c "echo 'X-GNOME-Autostart-enabled=false' >> /etc/xdg/autostart/gnome-welcome-tour.desktop"
systemctl set-default graphical.target
systemctl enable xrdp.service
systemctl start xrdp.service
# install openjdk
dnf install -y java-11-openjdk
# install Freeplane
cd /opt
wget 'https://sourceforge.net/projects/freeplane/files/freeplane%20stable/freeplane_bin-1.8.0.zip'
unzip freeplane_bin-1.8.0.zip
mv /opt/freeplane-1.8.0 /opt/freeplane
cat << EOF > /usr/share/applications/freeplane.desktop
#!/usr/bin/env xdg-open
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/freeplane/freeplane.sh
Name=Freeplane
Icon=/opt/freeplane/freeplane.png
EOF
telinit 5
SHELL
end
0 件のコメント:
コメントを投稿