From cd144f882b494226a591abb7da2b225a95ca27cb Mon Sep 17 00:00:00 2001 From: Patrick McDonagh Date: Tue, 8 Dec 2015 20:56:55 -0600 Subject: [PATCH] Added README and updated initialSetup.sh --- README | 30 ++++++++++++++++++++++++++++++ initialSetup.sh | 7 +------ 2 files changed, 31 insertions(+), 6 deletions(-) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..2772d9c --- /dev/null +++ b/README @@ -0,0 +1,30 @@ +HENRY PUMP POCONSOLE MODULE +=========================== +Author: Patrick McDonagh, Henry Pump +Date: 12.08.2015 + +Building +-------- + +- First, run + + sudo raspi-config + +- Expand the filesystem and set the localization options + + cd setup + chmod +x initialSetup.sh + ./initialSetup.sh + +- When prompted, set the poconsole user password. +- Logout and log back in as poconsole + + cd setup + chmod +x setup.sh + ./setup.sh + +- Grab a cup of coffee, relax, and let me handle the rest. + + + + diff --git a/initialSetup.sh b/initialSetup.sh index 93410fc..cbf4492 100644 --- a/initialSetup.sh +++ b/initialSetup.sh @@ -1,8 +1,3 @@ -echo "default password: raspberry" -ssh pi@raspberrypi "sudo adduser poconsole" -ssh pi@raspberrypi "sudo sed -i '$a poconsole ALL=(ALL) NOPASSWD: ALL' /etc/sudoers" - -OR - +echo "Creating the POConsole user and giving it sudo privileges" sudo adduser poconsole sudo sed -i '$a poconsole ALL=(ALL) NOPASSWD: ALL' /etc/sudoers \ No newline at end of file