2020年4月11日土曜日

VagrantでyEd、Gnome Desktop環境、XRDPがインストールされた仮想マシン(CentOS 8.1)を構築する

yEdはVisioのような図を描画できるアプリケーションです。

〇yEdの画面
XRDPがインストールされているので、Windowsのリモートデスクトップで接続することができます。ユーザ名はvagrant、パスワードもvagrantでログオンできます。

〇構築方法
以下のVagrantfileを使用して、yEd、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 = "co81gnomeyed"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "co81gnomeyed"
     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

# download yed and extract it
apt-get install unzip
wget https://www.yworks.com/resources/yed/demo/yEd-3.19.1.1.zip
unzip yEd-3.19.1.1.zip
mv yed-3.19.1.1 /opt/yed

# create a shortcut for yEd
cat << EOF > /usr/share/applications/yed.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/usr/bin/java -jar /opt/yed/yed.jar
Name=yEd
Categories=Utility;Development;
EOF


telinit 5
SHELL
end

0 件のコメント:

コメントを投稿