-
Notifications
You must be signed in to change notification settings - Fork 8
How to install Debian on your RG 350
This short guide shows how to install a full debian system on your RG350 (uses still to know).
First you need:
- A working linux system
- Debootstrap
- Your RG350 sdcard
Mount your sdcard and execute:
sudo debootstrap --foreign --arch mipsel stable /path/to/sdcard/debian http://deb.debian.org/debian/
For example if your sdcard is mounted in /mnt/sdcard/:
sudo debootstrap --foreign --arch mipsel stable /mnt/sdcard/debian http://deb.debian.org/debian/
This will download the base installation of debian into your sdcard debian folder. --foreign is used as we are installing the architecture for the RG350 (mipsel) and will continue the installation on the device.
- Plug the sdcard back in your RG350 and start the console
- Access the console via ssh
cd /media/sdcard/chroot ./debian /debootstrap/debootstrap --second-stage
This will finish setting up the debian installation, no internet connection is needed (though you'd need it to install extra packages).
Note: This process will take a long time to complete due to the slow CPU in the RG350, don't unplug or power off the console until it says Base system installed successfully and returns a shell.
- To access your new debian system simply execute:
chroot /media/sdcard/debian /bin/bash - ???
- Have fun
[ Join us over at the RGhandhelds Discord ]--- [ Check out our blog ]--- [ Check out our forum ]