2018年8月16日 星期四

我在新 Ubuntu 電腦上會進行的初始設定

我在新 Ubuntu 電腦上會進行的初始設定

常用工具程式
vim, tmux, tree, htop, wget, git, GitKraken, GIMP, Sublime Text, Docker
vim, tmux, tree, htop, wget, git 安裝比較簡單
sudo apt update;
sudo apt install vim tmux tree htop wget git
sudo apt-get install p7zip-full


Git 初始化設定
git config --global user.name "yesseecity"
git config --global user.email “yesseecity@example.com”
git config --global core.editor vim


ibus 中文輸入法
sudo apt-get install ibus-zhuyin #注音輸入法
裝好後
ibus restart
之後再到System Settings > Text Entry 把注音加進來

GitKraken, Git 的GUI軟體
到官網下載點開就行了
會是用指令
wget https://release.gitkraken.com/linux/gitkraken-amd64.deb
sudo dpkg -i gitkraken-amd64.deb


GIMP繪圖軟體
用ubuntu 內建的軟體安裝精靈就可以安裝

Sublime Text 文字編輯器 我常和vim 混用
wget -qO - https://download.sublimetext.com/sublimehq-pub.gpg | sudo apt-key add -
sudo apt-get install sublime-text

Docker CE
sudo apt install apt-transport-https ca-certificates curl software-properties-common

curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

sudo add-apt-repository \
"deb [arch=ppc64el] https://download.docker.com/linux/ubuntu \
$(lsb_release -cs) \
stable"

sudo apt-get update
sudo apt-get install docker-ce

Bash prompt PS1 顯示樣式
有個網站可以做 http://xta.github.io/HalloweenBash/
我常用的是
https://gist.github.com/yesseecity/f31f9f50b22bd06ec6e85603f1595961


顯示中文
apt-get install -y locales
locale-gen zh_TW zh_TW.UTF-8 
還要在~/.bashrc加入下面兩行
export LANG=zh_TW.UTF-8
export LC_MESSAGES=zh_TW.UTF-8


隨身碟支援性
常見的隨身碟格式為 FAT32, exFAT, NFTS.
但Ubuntu 上不一定支援exFAT, NFTS這兩種, 所以就要另外安裝啦~~
sudo apt install exfat-utils exfat-fuse
sudo apt install ntfs-3g

1 則留言: