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を新規インストールしたときによくやる設定

Last updated at Posted at 2021-05-21

Ubuntuを新規にインストールした際によく行う設定をまとめておく.

デュアルブート時の時刻ずれを直す

$ sudo timedatectl set-local-rtc true

フォルダ名を英語に変更

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

grubの初期選択項目を変更

(Windowsアップデートの為にデフォルトで選択される順番を変更したい時に)

$ sudo vim /etc/default/grub

GRUB_DEFAULT=0

の部分を変更.

最後に

$ sudo update-grub

ちなみに,順番は以下のコマンドで確認可能.

$ grep -e "^\(menuentry\)\|\(submenu\)" /boot/grub/grub.cfg

Mozcでキーボードの配置がおかしくなった場合

$ sudo gedit /usr/share/ibus/component/mozc.xml

<layout>default</layout>

<layout>jp</layout>

に変更.

参考リンク

https://qiita.com/yoshinyan/items/d56a56414f2d21814f88
https://qiita.com/OldS9l/items/dc84f8912fc3d86f646a
https://qiita.com/arai-wa/items/3123ecb350097f79c6ef

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?