I'm trying to install Arch ARM onto Ras Pi 2 Model B. I followed this guide, and got these problems:
[url]https://archlinuxarm.org/platforms/armv7/broadcom/raspberry-pi-2[/url]
* Host: Linux Mint 21.3 x86-64
- Inserted MicroUSB card into computer, (Linux) "ejected" (to be able to format).
sudo fdisk /dev/sdb1 [DEVICE HARDWARE NAME]
o
p
n
p
1
(enter)
+200M
t
L [LIST ALL TYPES]
0c ["W95 FAT32 (LBA)"]
n
p
2
(enter)
(enter)
w
sudo mkfs.vfat /dev/sdb1
sudo mkdir boot
sudo mount /dev/sdb1 boot
sudo mkfs.ext4 /dev/sdb1
sudo mkdir root
sudo mount /dev/sdb1 root
sudo apt install libarchive-tools [TO INSTALL "bsdtar"]
wget [url]http://os.archlinuxarm.org/os/ArchLinuxARM-rpi-armv7-latest.tar.gz[/url] [ADDRESS COPIED DIRECTLY FROM "Downloads" PAGE]
bsdtar -xpf ArchLinuxARM-rpi-armv7-latest.tar.gz -C root
sync
* After "bsdtar" command, the following errors appeared:
Cannot restore extended attributes: security.SMACK64 security.SMACK64: Operation not permitted
mv: cannot stat 'root/boot/*': No such file or directory
* I tried a variation of these, with no change:
mv root/boot/* boot
mv root/boot/* boot /home/batman/Desktop/Ras Pi 2
mv root/boot/* boot "/home/batman/Desktop/Ras Pi 2"
mv root/boot/* boot:"/home/batman/Desktop/Ras Pi 2"
mv root/boot/* boot:/home/batman/Desktop/Ras Pi 2