forked from dj0abr/QO100_Transceiver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall
More file actions
executable file
·24 lines (24 loc) · 789 Bytes
/
install
File metadata and controls
executable file
·24 lines (24 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
echo "==== complete install QO100 Transceiver ===="
echo "full update, upgrade and installation"
set -e
cd ~
echo "update system by running apt-get update"
sudo apt-get update
echo "install git"
sudo apt-get install git -y
if [ ! -d "QO100_Transceiver" ] ; then
git clone https://github.com/dj0abr/QO100_Transceiver
cd QO100_Transceiver
else
cd QO100_Transceiver
git pull https://github.com/dj0abr/QO100_Transceiver
fi
cd ~/QO100_Transceiver/scripts
./prepare_ubuntu_pluto
cd ~/QO100_Transceiver/scripts
./makeall
echo "==== Installation: OK ===="
cd ~/QO100_Transceiver/Release
echo "==== Start the Transceiver in the folder QO100_Transceiver/Release ===="
echo "==== by entering ./startQO100trx ===="