Manjaro 64bit - RPi4
Created|Updated

https://forum.manjaro.org/t/manjaro-arm-preview2-for-raspberry-pi-4/96694
- aarch64 カーネル
- メモリ3GB 弱まで利用可能
- 4K 表示可能
起動
- マウスを接続していると起動しない/画面表示しないかも?
- Alt - F2 からターミナルを起動
- ウィンドウ操作はAlt - Space 等で
日本語フォント
$ sudo pacman -S otf-ipafont |
Related Articles

2019-07-31
Raspbian Buster 64bit
https://www.raspberrypi.org/forums/viewtopic.php?t=246766 aarch64 カーネル メモリ1GB まで利用可能 起動 マウス、キーボードを接続していると起動しないみたいなので、起動してから接続する

2018-11-25
Upgrade to Ubuntu 18.04 on Raspberry Pi
https://linuxconfig.org/how-to-upgrade-to-ubuntu-18-04-lts-bionic-beaver Raspberry Pi 2 のOS をUbuntu 16.04 LTS から18.04 LTS にアップグレードします。SSH 接続で。 Ubuntu のLTS サポート期間が10年になるらしいですし。 リモート接続私はWindows 10 上のConEmu でRaspberry Pi にSSH 接続してます。念のため、2セッションを横並びに表示しておきました。 16.04 LTS のパッケージの更新$ sudo apt update$ sudo apt dist-upgrade$ sudo apt autoremove 18.04 LTS へのアップグレード$ sudo ufw allow 1022$ sudo apt install update-manager-core$ sudo do-release-upgrade しばらく待ちます。リスタート後にSSH接続で問題なければufw の設定を戻します。 $ sudo uf...

2019-08-07
RPi4 - Ubuntu Server 19.10 64bit
Raspberry Pi 4B でUbuntu Server 64bit が起動するようになったので環境設定をします。 起動モードの切り替え方法 メモリ4GB 起動(USB 不可)の場合/boot/firmware/config.txt#total_mem=3072 メモリ3GB 起動(USB 可能)の場合/boot/firmware/config.txttotal_mem=3072 Update: 2019/8/15 版で3GB の制限はなくなりました。 ホストネームの設定$ sudo hostnamectl set-hostname pi4 Alias 等の設定 Alias~/.bash_aliases# Update installed packagesalias upd='sudo apt update -y && sudo apt dist-upgrade && sudo apt autoremove -y'# Change localealias en='export LC_AL...

2019-12-21
Visual Studio Code Remote - SSH / aarch64
https://code.visualstudio.com/docs/remote/sshVisual Studio Code のRemote SSH でaarch64 がサポートされていたので、Rasperry Pi 4 のUbuntu focal aarch64 に接続してみました。 環境クライアント Windows 10 Pro Insider Preview WSL 2 (Ubuntu 18.04.3 x86_64) Visual Studio Code 1.41.1 Remote Development 0.19.0 Remote SSH 0.48.0 サーバ Raspberry Pi 4B Ubuntu Focal(20.04) aarch64 構築SSH 接続の設定 WSL2 から鍵登録 $ ssh-copy-id -i /mnt/c/Users/hoge/.ssh/id_rsa.pub ubuntu@192.168.11.26 接続情報 C:\Users\hoge\.ssh\ssh_config# Read more about SSH confi...

2019-07-01
Raspberry Pi 4
Raspberry Pi 4 が発売されたので移行を検討してみます。 Raspberry Pi 2 Model B (2015/2/1 発売)からRaspberry Pi 4 Model B (2019/6/24 発売)への移行になりますので、4年間の大きな機能向上、性能向上が期待できそうです。反面、消費電力が大きくなってそうですが、Wi-Fi やBluetooth をオフにしておけば抑えることができるのかな。 ともかく、やっと32bit から抜け出せそうです! スペック比較 Model Raspberry Pi 2 Model B Raspberry Pi 4 Model B 発売日 2015年2月1日 2019年6月24日 SoC Broadcom BCM2836 Broadcom BCM2711 CPU ARM Cortex-A7 ARM Cortex-A72 900 MHz 1.5GHz ARMv7(32bit) ARMv8(64bit) メモリ 1GB 4GB USB USB 2 x4 U...

2019-09-16
RPi4 - Ubuntu Server 18.04.3 64bit
https://github.com/TheRemote/Ubuntu-Server-raspi4-unofficialRaspberry Pi 4B にUbuntu Server 18.04.3 LTS aarch64 環境を構築しました。Xfce デスクトップ環境もインストールしてみました。 環境 Raspberry Pi 4B Ubuntu Server 18.04.3 aarch64 Xfce 4.12 構築Hostname$ sudo hostnamectl set-hostname pi4 Aliases$HOME/.bash_aliasesalias upd='sudo apt update && sudo apt dist-upgrade && sudo apt autoremove -y'alias en='export LC_ALL=en_US.UTF8'alias ja='export LC_ALL=ja_JP.UTF8'function sshu() ...
Comments