2018年1月17日水曜日

VagrantでGhost WriterとXfce Desktop環境をインストールした仮想マシン(Ubuntu16.04)を構築する

Ghost WriterはMarkdownエディターです。
以下のVagrantfileで、Ghost WriterとXfce Desktop環境がインストールされた仮想マシン(Ubuntu16.04)を構築できます。

Vagrantfile
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
  config.vm.box = "bento/ubuntu-16.04"
  config.vm.hostname = "ub1604xfceghostwriter"
  config.vm.network :public_network, ip:"192.168.1.114"
  config.vm.provider :virtualbox do |vbox|
     vbox.name = "ub1604xfceghostwriter"
     vbox.gui = true
     vbox.cpus = 4
     vbox.memory = 4096
  end
  config.vm.provision "shell", inline: <<-SHELL
sed -i.bak -e "s#http://archive.ubuntu.com/ubuntu/#http://ftp.riken.jp/pub/Linux/ubuntu/#g"; /etc/apt/sources.list
localectl set-locale LANG=ja_JP.UTF-8
localectl set-keymap jp106
apt-get update
apt-get -y install  xrdp fcitx-mozc xubuntu-desktop language-pack-ja
im-config -n fcitx
apt-get -y install software-properties-common
# install Spice-up
add-apt-repository ppa:wereturtle/ppa
apt-get update
apt-get -y install ghostwriter
init 5
SHELL
end

〇Ghost Writerの画面


0 件のコメント:

コメントを投稿