artarch
Works Posts Make Category Tags About

ubuntu noble note

Published Jun 8, 2024 by Ato Araki in Computer, 備忘録 at https://blog.artarch.net/notes/linux/ubuntu-noble/

Table of Contents

  • USB installer image
  • 設定
    • Caps Lock as Ctrl
    • wayland を無効化する
    • mozc (日本語入力)を使えるようにする
    • Chrome
    • Tailscale

Ubuntu 24.04 (Noble Numbat) を導入します!

以下、最初しかやらない、忘れやすい設定の備忘録。

USB installer image

checksum:

$ cat SHA256SUMS
81fae9cc21e2b1e3a9a4526c7dad3131b668e346c580702235ad4d02645d9455 *ubuntu-24.04-desktop-amd64.iso
$ sha256sum -c SHA256SUMS
ubuntu-24.04-desktop-amd64.iso: OK

Create USB:

$ sudo dd bs=32MB if=ubuntu-24.04-desktop-amd64.iso of=/dev/sda

設定

Caps Lock as Ctrl

$ sudo apt-get install gnome-tweak-tool
$ gnome-tweak

Check Caps Lock as Ctrl

wayland を無効化する

ubuntu 22.04 同様に wayland を無効化しました。

  1. /etc/gdm3/custom.conf に以下を追記し、 wayland を無効化します:

    WaylandEnable=false
    

再起動

mozc (日本語入力)を使えるようにする

  1. mozc を入れる:

    $ sudo apt install fcitx-mozc
    
  2. Settings / Reagion & Language から Manage Installed Languages を選択し、 Language Support で Keyboard input method system を Fxitx 4 にする:

    set fcitx 4

  3. ibus を削除:

    $ sudo apt purge ibus
    

    再起動すると fcitx が動くようになる。

  4. Fcitx Configuration を起動し、 mozc を追加する:

    add mozc

  5. キーバンドを、 Alt+Space にする:

    set-alt-space

  6. Settings / Keyboard / View and Customize Shortcuts で Alt+Space を Disable にする:

    disable-alt-space disable-alt-space

Chrome

$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && sudo apt install ./google-chrome-stable_current_amd64.deb

Tailscale

$ curl -fsSL https://tailscale.com/install.sh | sh

See Also

  • ubuntu jammy note
  • ubuntu focal note
  • Thinkpad X220
  • 証明書関連tips
  • exif 編集 tips
  • debian stretch GDM (gnome) 設定メモ

LastModified: 2024-06-08T09:00:00Z

© 2025 Ato Araki