Last active
December 16, 2018 03:08
-
-
Save antonfisher/b0aa1bc774041de20caaed241d295ba7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------------------ | |
# --- PRE-CONFIGURATION -------------------------------- | |
# ------------------------------------------------------ | |
#enable shh | |
touch ./boot/ssh | |
#preconfigure wifi | |
vim ./boot/wpa_supplicant.conf | |
# --- file conrent ------------------------------------- | |
country=US | |
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev | |
update_config=1 | |
network={ | |
ssid="NETWORK-NAME" | |
psk="NETWORK-PASSWORD" | |
} | |
network={ | |
ssid="NETWORK-NAME-SPARE" | |
psk="NETWORK-PASSWORD-SPARE" | |
} | |
#--- /file-content ------------------------------------- | |
#find rpi in the network | |
sudo nmap -sV -p 22 10.0.0.0/24 | |
# ------------------------------------------------------ | |
# --- AFTER-INSTALL ------------------------------------ | |
# ------------------------------------------------------ | |
sudo apt update | |
sudo apt upgrade | |
sudo apt install -y vim git htop | |
sudo dpkg-reconfigure locales | |
sudo vim /etc/default/locale | |
#LANG=en_US.UTF-8 | |
#LANGUAGE=en_US:en | |
#LC_ALL=en_US.UTF-8 | |
#sudo locale-gen en_US.UTF-8 #? | |
sudo update-locale en_US.UTF-8 | |
# Advanced! disable ext4 journal | |
sudo -i | |
echo u > /proc/sysrq-trigger | |
echo s > /proc/sysrq-trigger | |
tune2fs -O ^has_journal /dev/mmcblk0p2 | |
e2fsck -fy /dev/mmcblk0p2 | |
echo s > /proc/sysrq-trigger | |
echo b > /proc/sysrq-trigger | |
# read-only: https://learn.adafruit.com/read-only-raspberry-pi/overview | |
# | |
# aliases to temporary grand write access to system: | |
# alias rw='sudo mount -o remount,rw / ; sudo mount -o remount,rw /boot' | |
# alias ro='sudo mount -o remount,ro / ; sudo mount -o remount,ro /boot' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment