1
1

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 1 year has passed since last update.

Orange Pi 5 を買って ArchLinuxをインストールしてみました その4

Posted at

「その3」の続きです

# 時刻の設定
rm /etc/localtime ; ln -s /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
timedatectl set-ntp true

# Pacman repo 追加
sudo pacman-key --recv-keys BA27F219383BB875
sudo pacman-key --lsign BA27F219383BB875

# add the following session in your /etc/pacman.conf
[7Ji]
Server = https://github.com/7Ji/archrepo/releases/download/$arch

# kernel update
sudo pacman -Syu 7Ji/linux-aarch64-orangepi5{,-headers}

# overlays ファイル名修正
# /boot/extlinux/extlinux.conf の FDTOVERLAYS 修正
FDTOVERLAYS /dtbs/linux-aarch64-orangepi5/rockchip/overlay/rk3588-ssd-sata0.dtbo

reboot

これで最新の状態になったので、次はGUIの環境設定です
私は lxqt が好みなのですが、お好みでセットアップしてください

sudo pacman -S --need xorg
sudo pacman -S --need lxqt xdg-utils ttf-freefont sddm
sudo pacman -S --need oxygen-icons breeze-icons noto-fonts-cjk
sudo pacman -S --need firefox-i18n-ja thunderbird-i18n-ja vlc leafpad archlinux-wallpaper
sudo systemctl enable sddm

#GPU / 3D Acceleration の設定をします
sudo pacman -Syu mesa-panfork-git
sudo pacman -S wget
wget https://github.com/JeffyCN/mirrors/raw/libmali/firmware/g610/mali_csffw.bin -O /tmp/mali_csffw.bin
sudo cp /tmp/mali_csffw.bin /usr/lib/firmware/

#Hardware-based video encoding/decoding の設定をします
sudo pacman -Syu ffmpeg-mpp

locale の設定をします
/etc/locale.gen をお好みのエディターで編集します
ja_JP.UTF-8の行の先頭の#を削除します
sudo locale-gen
/etc/locale.conf をお好みのエディターで編集します
LANG=ja_JP.UTF-8

再起動してGUI環境で起動できたらOKです

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?