Lubuntu Installation
インストーラの作成
- unetbootinを取得
- インストールイメージを取得
- USBメモリにインストーラを作成
- 起動ドライブをUSBに変更
インストール
- Wifi環境の設定をしてからインストール
-
- インストール後システムアップグレード・再起動
- 日本語環境の構築
- fcitx-Mozc
- IMEオンオフの設定
- キーボードとタッチパッド
- タップでクリック
- Caps を Ctrlに
- /etc/default/keyboard XKBOPTIONS=ctrl:nocaps
- grep -E "(ctrl|caps):" /usr/share/X11/xkb/rules/base.lst
- ソフトウェアのインストール
-
- Graphic -- Gimp, Krita, Inkscape, Blender
- Multimedia -- Musescore, dvdstyler(, vlc)
- Document -- pandoc, scribus(, libreoffice, vim)
- development -- curl, git, golang, tran, python3-tk
- etc -- 7zip, scangearmp2
- ソフトウェアの環境構築
- vim-dein, firefox, pygame
- Windowsネットワーク
- 匿名ログインでOK
# ディレクトリ名を日本語→英語に
sudo apt install xdg-user-dirs-gtk
LANG=C xdg-user-dirs-gtk-update
# 日本語環境
sudo apt install fcitx-mozc
im-config
# CapsをCtrlに変更
echo "setxkbmap -option ctrl:nocaps" >> ~/.profile
# Go Path設定
echo "export GOPATH=$HOME/go" >> ~/.profile
echo "export GOBIN=$GOPATH/bin" >> ~/.profile
echo "export PATH=$PATH:$GOBIN" >> ~/.profile
sudo add-apt-repository ppa:kritalime/ppa
sudo add-apt-repository ppa:scribus/ppa
sudo add-apt-repository ppa:ubuntuhandbook1/dvdstyler
sudo apt update
sudo apt install -y inkscape gimp libreoffice musescore krita blender #7zip
sudo apt install -y pandoc git curl translate-shell python3-tk golang
# vimにdeinをインストール
curl https://raw.githubusercontent.com/Shougo/dein.vim/master/bin/installer.sh > installer.sh
# For example, we just use `~/.cache/dein` as installation directory
sh ./installer.sh ~/.cache/dein
rm ./installer.sh
# python3 -m pip install pygame