:: Re: [DNG] How to port Devuan to a d…
Top Page
Delete this message
Reply to this message
Author: Jeremy Ardley
Date:  
To: dng
Subject: Re: [DNG] How to port Devuan to a different ARM board?

On 9/4/22 8:17 am, Jeremy Ardley via Dng wrote:
>
> I'm going back to migrating the armbian image using
> https://www.devuan.org/os/documentation/dev1fanboy/en/buster-to-beowulf.html
> but this time I'll fully document the process.
>


It actually worked this time. But I made two changes to the documented
procedure

I changed the armbian repository to a mirror that wasn't broken

root@orangepi-r1:~# cat /etc/apt/sources.list.d/armbian.list
deb http://armbian.12z.eu/apt/ bullseye main bullseye-utils bullseye-desktop

And I edited the /etc/network/interfaces file to bring up the interfaces
in the absence of NetworkManager
(The hex string interface is unique to each system. So do an ip a at the
start and note what your one is)

root@orangepi-r1:~# cat /etc/network/interfaces
source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
   address 192.168.0.1/24

auto enxc0742bffdceb
iface enxc0742bffdceb inet dhcp


--
Jeremy