0

First of all, I know how to setup a slient install given a list of instructions provided in another question: (Installing Raspbian from NOOBS without display)

However, I need this thing to setup its wifi connection, install a package during the installation, and change its keyboard setting to US. Is there a way to tell the NOOBs installer to do this during installation?

user3346931
  • 287
  • 2
  • 6
  • 14

1 Answers1

0

Looks like you're looking for something like https://github.com/debian-pi/raspbian-ua-netinst

This is a silent netinstall that will do everything automatically and only requires a network connection.

You can modify setup files before running it on the Raspberry Pi and add packages you want to be additionally installed and so on. Read through the git page and Wiki.

I use for my Raspberry Pi. To be honest it's 100x better than the bloated Raspbian image from raspberrypi.org.

  • this sounds like something I might be able to use, but there is a custom program I need in there isn't available in the repository. How would I do that with this? – user3346931 Jul 15 '15 at 13:19
  • You need to modify https://github.com/debian-pi/raspbian-ua-netinst/blob/master/update.sh and add the reposity for the application you need. Then write a routine to install it via that update.sh when it's running and updating the packages. – Nevil Verdoold Jul 15 '15 at 13:23