Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

booterizer pi image #36

Closed
paranoid64 opened this issue Nov 1, 2021 · 1 comment
Closed

booterizer pi image #36

paranoid64 opened this issue Nov 1, 2021 · 1 comment

Comments

@paranoid64
Copy link

Hi,

i have download the booterizer_6.5.30_1.1.071321.xz and works fine on Rasp Pi B.

Only the instructions would have to be adapted somewhat. E.g. it is no longer called eth0 with Buster, but e.g. with me enxb827eb33a83c:

root@booterizer:/home/pi# ifconfig

**enxb827eb33a83c**: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
        inet 192.168.1.1 netmask 255.255.255.0 broadcast 192.168.1.255
        inet6 2003:ee:719:f500:e788:62a7:9d32:3b91 prefixlen 64 scopeid 0x0<global>

I had to reconfigure a few things:

/etc/dhcp/dhcpd.conf

INTERFACES="enxb827eb33a83c";
allow booting;
allow bootp;

subnet 192.168.1.0 netmask 255.255.255.0 {
#       ignore unknown-clients;
        range 192.168.1.80 192.168.1.200; # **you need now this line, Service will not start otherwise**

        host sgi {
                hardware ethernet xx:xx:xx:xx:xx:xx; # you mac
                fixed-address 192.168.1.82 ;
                option domain-name-servers 192.168.1.1;
                option domain-name "iris.local";
        }
}

nano /etc/default/isc-dhcp-server
INTERFACES="enxb827eb33a83c"

nano /etc/dhcpcd.conf:

interface enxb827eb33a83c
static ip_address=192.168.1.1/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1
@unxmaal
Copy link
Owner

unxmaal commented Nov 15, 2021

I've fixed this on the latest Booterizer image.

If you want to fix it the easy way on an existing install, run 'sudo raspi-config', choose "2 Network Options" from the main menu then "N3 Network interface names" from the sub-menu and that will enable predictable names on the next reboot.

@unxmaal unxmaal closed this as completed Nov 15, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants