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?

DELL Inspiron 14 5400 に Alma Linux 8.10 をインストール

0
Last updated at Posted at 2025-12-14

DELL Inspiron 14 5400 に Alma Linux 8.10 をインストールしたときのメモ

DELL Inspiron 14 5400 2n1
Intel Core i7-1065G7
16GB RAM
KBG40ZNS512G NVMe KIOXIA 512GB

https://almalinux.org/get-almalinux/ から Alma Linux 8.10 の Minimal ISO イメージをDLしてRufusでUSBメモリに書き込んでおく。

インストーラの起動:USBメモリを挿入しておき、電源ON → F12 をポチポチ押してBIOS画面に。USBが認識されればそれを選択してUSBからの Alma Linux 8 インストーラが起動する。

デフォルト設定でインストーラを起動したときの問題:

  1. WiFiアダプタが認識しなかった。
    • BIOS設定の Boot Configuration の Secure Boot 無効化すると認識してくれた。
  2. ディスプレイのチラつき(Flickering)
    • インストール後に grub 設定ファイルでブート時の Linux kernel command line 引数をカスタマイズしてチラつきを解消できた。
  3. NVMe ストレージを認識しなかった。
    • BIOS設定の Storage を AHCI に変更すると認識してくれた。

BIOS設定変更

  • Boot Configuration
  • Storage
    • "SATA Operation" : RAID On → AHCI に変更 (Alma Linux 8.10 のインストーラがNVMMeを認識してくれなかったが、AHCIに変更すると認識してくれた)
  • Display
    • "Touchscreen" → OFF (flickering 治らず)
    • "EcoPower" → disable 試してみた。 (flickering 治らず)
  • Keyboard
    • "Fn Lock Options" → Lock Mode Stanadard に変更(個人の好み)
  • Virtualization
    • VT, VI for Direct I/O → ON (defaultでONになってた)
  • Perfomance
    • Turbo Boos Technology, Hyper-Threading Technology → ON (defaultでONになってた)
  • Pre-boot Behavior
    • Extend BIOS POST Time: 0 second から 5seconds に変更してみた。(F12でUEFIに入るための時間を長めにしたかった)

インストール時のメモ

  • NVMe のパーティションが複数あり、どれを Reclaim すれば良いのか?
    • 450GBほどの "BitLocker" partition ( nvme0n1p3 ) が Windows がインストールされた C: ドライブだった。
    • これを Reclaim して、そこに Alma Linux をインストールした。
  • キーボードは "Japanese" のみに調整。
  • この時点では画面のチラつきが発生していて、WiFiパスワードを設定するのが辛かったので、エレコムのUSB-LAN変換ケーブル(EDC-GUA3V3-B)を使って有線LANで接続してインストールを実施。(こちらは素直に認識してくれてた)

インストール後

  1. /etc/default/grubGRUB_CMDLINE_LINUXi915.enable_psr=0 を追加。
    • 参考: https://www.reddit.com/r/Fedora/comments/1icnla7/fedora_on_dell_inspiron_14_5400_2in1_screen/
    • 修正後の /etc/default/grub
      GRUB_TIMEOUT=5
      GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
      GRUB_DEFAULT=saved
      GRUB_DISABLE_SUBMENU=true
      GRUB_TERMINAL_OUTPUT="console"
      GRUB_CMDLINE_LINUX="crashkernel=auto resume=/dev/mapper/almalinux-swap rd.lvm.lv=almalinux/root rd.lvm.lv=almalinux/swap rhgb quiet i915.enable_psr=0"
      GRUB_DISABLE_RECOVERY="true"
      GRUB_ENABLE_BLSCFG=true
      
    • 修正したら grub2-mkconfig 実行:
      # grub2-mkconfig -o /boot/efi/EFI/almalinux/grub.cfg
      Generating grub configuration file ...
      Found Windows Boot Manager on /dev/nvme0n1p1@/EFI/Microsoft/Boot/bootmgfw.efi
      Adding boot menu entry for EFI firmware configuration
      done
      
    • → チラつきが治った!
  2. GUIを入れた。(参考)
    $ sudo dnf group install "Development Tools"
    $ sudo dnf group install "Server with GUI"
    $ sudo systemctl set-default graphical
    $ sudo reboot
    
  3. GNOME 環境で入り直して、WiFi をセットアップ
    • 素直に設定できた。

Linuxサーバのお勉強用を想定してましたので、GUIが動く最低限の環境としては使いやすい印象です。

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?