- Just open a terminal and start
sudo raspi-config
. - Select
Boot Options
and setWait for Network at Boot
toyes
. - Reboot to see
ifthat I am right.
Tag Archives: rpi
Basic rPi PADD on touchscreen install.
Install Pi-hole Ad Detection Display on your rPi.
- Get your touchscreen display working.
- Open
raspi-config
and setBoot Options -> DeskTop / CLI
toConsole Autologin
. - Download PADD and make executable:
cd ~
wget -N https://raw.githubusercontent.com/jpmck/PADD/master/padd.sh
sudo chmod +x padd.sh - Start PADD with
./padd.sh
- Exit with
CTRL-C
Links:
3,5 inch touchscreen on rPi.
Follow these steps to use a 3.5 inch touchscreen on your rPi.
- Update your system with
sudo apt-get update && sudo apt-get upgrade
- Start
raspi-config
and go toInterfacing Options
and enable the SPI interface. - Download LCD-show van Github:
cd ~
sudo rm -rf LCD-show
git clone https://github.com/goodtft/LCD-show.git
chmod -R 755 LCD-show - Enter the folder you just cloned with
cd LCD-show
Now all you have to do is start the script for your LCD type.
For a 3.5″ display you runsudo ./LCD35-show
The system will install/setup the LCD and reboot with the LCD as display.
To switch back to HDMI:
To use the HDMI port again, go to the LCD-show
folder and runsudo ./LCD-hdmi
to switch back to HDMI.
Links
raspberrytips.nl circuitdigest.com github.com/goodtft/LCD-show
Fix (delete) secondary dhcp address when setting static ip address.
After setting a static ip address in a debian based os, there is often a secondary ip address visible with ip addr show.
This is caused by the dhcpcd
service which keeps running after setting a static ip.
Stopping this service will remove the secondary ip address after a reboot or network restart.
update-rc.d dhcpcd disable service dhcpcd stop #and optionally the next line or a reboot ip addr del %YOURS-SECOND-IP% dev ethX
Replace %YOURS-SECOND-IP%
with the unwanted secondary ip address.
And replace ethx
with the interface name.
Restart the network.
Or just reboot and the secondary ip will be gone.
Works on a Volumio based Raspberry Pi and Ubuntu Server 18.04.2 LTS.