From 31236221b32cfff1ebb75954411b12fd6f9ea11e Mon Sep 17 00:00:00 2001 From: Matt Date: Sun, 24 Dec 2023 14:47:00 -0800 Subject: [PATCH] Don't install dhcpcd --- install_pi.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/install_pi.sh b/install_pi.sh index fc99134..ecf976e 100755 --- a/install_pi.sh +++ b/install_pi.sh @@ -1,16 +1,17 @@ # Run normal photon instarller -pushd . -cd /tmp wget https://git.io/JJrEP -O install.sh chmod +x install.sh # ./install.sh +# rm install.sh +echo "Installing additional things" sudo apt-get update -apt-get install -y pigpiod pigpio device-tree-compiler dhcpcd5 network-manager net-tools +apt-get install -y pigpiod pigpio device-tree-compiler +apt-get install -y network-manager +apt-get install -y net-tools # and edit boot partition -popd install -m 644 config.txt /boot/ install -m 644 userconf.txt /boot/ @@ -23,7 +24,7 @@ systemctl enable ssh # Remove extra packages too -# apt-get purge -y python3 gdb gcc g++ linux-headers* libgcc*-dev *qt* +# apt-get purge -y python3 gdb gcc g++ linux-headers* libgcc*-dev device-tree-compiler # apt-get autoremove -y # rm -rf /var/lib/apt/lists/*