Skip to content

Instantly share code, notes, and snippets.

@vinhjaxt
Last active May 29, 2022 14:19
Show Gist options
  • Save vinhjaxt/45e862827a4e4994bbb6a1d196444bd9 to your computer and use it in GitHub Desktop.
Save vinhjaxt/45e862827a4e4994bbb6a1d196444bd9 to your computer and use it in GitHub Desktop.
Manjaro X96Air (S905X3 / 4GB)

Manjaro X96Air (S905X3 / 4GB)

  1. Download manjaro arm (khadas-vim-3-minimal)

https://manjaro.org/download/#khadas-vim-3-minimal => https://manjaro.org/downloads/arm/khadas-vim-3/arm8-vim3-minimal/

or

https://github.com/manjaro-arm/vim3-images/releases/ => https://github.com/manjaro-arm/vim3-images/releases/download/21.03/Manjaro-ARM-minimal-vim3-21.03.img.xz

  1. Burn image

Use Etcher

  1. Change file: /extlinux/extlinux.conf
LABEL Manjaro
LINUX /Image
INITRD /initramfs-linux.img
FDT /dtbs/amlogic/meson-sm1-sei610.dtb
APPEND root=LABEL=ROOT_MNJRO rootflags=data=writeback rw console=ttyAML0,115200n8 console=tty0 no_console_suspend consoleblank=0 fsck.fix=yes fsck.repair=yes net.ifnames=0 quiet splash plymouth.ignore-serial-consoles

change

/mnt/ROOT_MNJRO/usr/share/manjaro-arm-oem-install/manjaro-arm-oem-install
  1. Boot

  2. Static IP

sudo nano /etc/dhcpcd.conf

interface eth0
static ip_address=192.168.1.252/24
static routers=192.168.1.1
static domain_name_servers=1.1.1.1 1.0.0.1

sudo systemctl restart dhcpcd.service
sudo reboot
  1. Install docker
sudo EDITOR=/usr/bin/nano visudo

vinh ALL=(ALL) NOPASSWD: ALL
## Read drop-in files from /etc/sudoers.d
@includedir /etc/sudoers.d
vinh ALL=(ALL) NOPASSWD: ALL

sudo pacman-mirrors -f5
sudo pacman -Sy
sudo pacman -Sy glibc
sudo pacman -S bash-completion

sudo pacman -S docker
sudo usermod -aG docker $USER
sudo systemctl start docker.service
sudo systemctl enable docker.service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment