LoginSignup
0
4

More than 5 years have passed since last update.

Ubuntu 設定メモ

Last updated at Posted at 2018-05-16

ホームディレクトリ直下のディレクトリ名を英語にする

$ LANG=C xdg-user-dirs-gtk-update

apt のリポジトリを国内のミラーサーバに変更

$ sudo sed -i'.bak' -E "s@http://(..\.)?(archive|security)\.ubuntu\.com/ubuntu@http://ftp.jaist.ac.jp/pub/Linux/u    buntu@g" /etc/apt/sources.list

CapsLock を Ctrl にする

$ sudo vi /etc/default/keyboard

XKBOPTIONS を変更。

- XKBOPTIONS=""
+ XKBOPTIONS="ctrl:nocaps" 

再起動。

タイムゾーン確認/変更

  • 現在のタイムゾーンの確認
$ sudo timedatectl
  • タイムゾーンを Asia/Tokyo に変更
$ sudo timedatectl set-timezone Asia/Tokyo

Vim 8 のインストール (Ubuntu 16.04)

$ sudo add-apt-repository ppa:jonathonf/vim
$ sudo apt update
$ sudo apt install vim
0
4
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
4