0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Ubuntuを構築した後にやること

Posted at

Ubuntuを構築した後にやること

毎回ググるのはダルいので、デスクトップ版のUbuntu構築後、僕がいつもやっている一連の初期設定をまとめておく。

スリープしないようにする

Settings → Power → Blank Screen → Never

キーボードレイアウトを日本語配列にする

Ctrl + Alt + Tでターミナルが開く。

sudo dpkg-reconfigure keyboard-configuration
  1. Generic 105-key PC (Intl)(一回めはここで終了するのでもう一度やる)
  2. Japanese
  3. Japanese
  4. The default for the keyboard layout
  5. No compose key
  6. 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を選んでインストールすればこの作業はいらない。)

VNC接続

VNC接続(macOS→Ubuntu)まとめ

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?