-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.sh
28 lines (28 loc) · 863 Bytes
/
init.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
sudo su
aptitude update
rm /var/lib/dpkg/lock
dpkg --configure -a
apt-get update -y
apt-get dist-upgrade -y
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
apt-get install -y nodejs
git clone https://github.com/vladikoms/WiringOP-Zero.git
cd WiringOP-Zero
chmod +x ./build
bash ./build
cd ../
rm -rf ./WiringOP-Zero
echo "##### Test GPIO #######"
gpio readall
echo "exit root"
exit
echo "Change npm's Default Directory"
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.profile
source ~/.profile
echo "###################################################"
echo "###################################################"
echo "################ Success ##########################"
echo "###################################################"
echo "###################################################"