I spent some time today adapting the Ubuntu local installer to work for Raspbian x86 desktop. This is the process that should work to install it.
- Install Raspbian x86 desktop
- run
sudo raspi-config
- set your locale and exit raspi-config
- run
sudo apt-get update
- run
sudo apt-get upgrade -y
- reboot
- download raspbian_x86_local_12_03_2019.zip
- extract the zip to /var/tmp
- open a terminal and run
cd /var/tmp/installer
- run
sudo python installer.py
- When the installation is done reboot
rachel is available locally at 127.0.0.1 or http://www.rachel.com and anyone on the same network can access it at the ip address assigned to it by the router.
I donāt think adding dhcp as part of an automated installer for PC is something thatās going to be easy. I have tried before without success. For rachel-pi you can try editing /etc/dnsmasq/dnsmasq.conf and adding a range at the end for the eth0 interface and see what happens. Currently it will look like this
interface=wlan0
dhcp-range=10.10.10.100,10.10.10.199,255.255.255.0,24h
You can try adding the following and see what happens
interface=eth0
dhcp-range=11.11.11.100,11.11.11.199,255.255.255.0,24h
you will have to reboot and you may have to run sudo systemctl daemon-reload
as well. I will be looking at this again soon. The IP address does show on this because the ethernet interface is named āeth0ā so the Ubuntu installation likely doesnāt show the IP address because the ethernet interface is not named āeth0ā on that installation so the code will have to be changed to match. Let me know how it goes and I can change things if thereās an issue. Hope it works.
James