Ubuntuを構築した後にやること
毎回ググるのはダルいので、デスクトップ版のUbuntu構築後、僕がいつもやっている一連の初期設定をまとめておく。
スリープしないようにする
Settings → Power → Blank Screen → Never
キーボードレイアウトを日本語配列にする
Ctrl + Alt + Tでターミナルが開く。
sudo dpkg-reconfigure keyboard-configuration
- Generic 105-key PC (Intl)(一回めはここで終了するのでもう一度やる)
- Japanese
- Japanese
- The default for the keyboard layout
- No compose key
- Yes
SSH接続できるようにする
sudo apt update
sudo apt-get update
# Open a port
sudo ufw enable
sudo ufw allow 22
sudo ufw reload
# Install openssh-server
sudo apt install -y openssh-server
# Find your IP address
ip addr # 192.168.x.xx (within the same LAN)
これでMacBookのターミナルなどから接続できるようになる。
# With another machine
ssh <user_name>@192.168.x.xx
.bashrc
の設定など
いつもこれを追加している:
# --------- PS1 output setting ---------
COLOR_RESET="\[\e[0m\]"
LIME="\[\033[01;32m\]"
export PS1="\W ${LIME}\$${COLOR_RESET} "
# --------- My aliases ---------
# Add a blank line below the output
add_line(){
if [[ -z "${PS1_NEWLINE_LOGIN}" ]]; then
PS1_NEWLINE_LOGIN=true
else
printf '\n'
fi
}
PROMPT_COMMAND='add_line'
# cd then pwd
cdpwd (){
\cd "$@" && pwd
}
alias cd="cdpwd"
alias ls='ls -AltrhF'
不要なアプリを消す
数独とかメールアプリとか、使わなければ容量を圧迫するだけなのでアンインストールしておく。
また必要になったらアプリセンターからインストールすればいい。
(ホストOSとしてインストールする場合、Minimal Installationを選んでインストールすればこの作業はいらない。)