-
Notifications
You must be signed in to change notification settings - Fork 75
/
rpi-install.sh
executable file
·109 lines (96 loc) · 2.65 KB
/
rpi-install.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/bash
echo "This is the qtcsdr install script for Raspbian Jessie."
read -r -p "It will install qtcsdr along with all of its dependencies. Are you sure? [y/n] " response
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
then
echo "Installing deps..."
else
echo "Aborted."
exit 0
fi
REBOOT_LATER=0
git checkout c95ad4778e5b99144ac3fe20c36d6ca1a4793d9d #RPi support is broken on master, which now uses latest csdr
mkdir deps
cd deps
echo
echo "Installing packages..."
sudo apt-get update
sudo apt-get install nmap qt5-default qt5-qmake git libfftw3-dev cmake libusb-1.0-0-dev
if [ $? -ne 0 ]; then
echo "Installing package dependencies failed, please resolve it manually."
exit 1
fi
echo
echo "Installing pgroup..."
git clone https://github.com/ha7ilm/pgroup
cd pgroup
make && sudo make install
cd ..
echo
read -r -p "Can I install rpitx? (Enter N to skip.) [y/n] " response
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
then
git clone https://github.com/ha7ilm/rpitx.git
cd rpitx
bash install.sh
if [ $? -ne 0 ]; then
echo "Installing rpitx failed, please resolve it manually."
exit 1
fi
cd ..
fi
echo
read -r -p "Can I install the latest dev branch of csdr? (Enter N to skip.) [y/n] " response
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
then
echo "Installing the dev branch of csdr..."
git clone https://github.com/simonyiszk/csdr.git
cd csdr
git fetch
git checkout dev
make && sudo make install
if [ $? -ne 0 ]; then
echo "Installing csdr failed, please resolve it manually."
exit 1
fi
cd ..
fi
echo
read -r -p "Can I install rtl-sdr from keenerd's repo? (Enter N to skip.) [y/n] " response
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
then
git clone https://github.com/keenerd/rtl-sdr
cd rtl-sdr/ && mkdir build && cd build
cmake ../ -DINSTALL_UDEV_RULES=ON
make && sudo make install && sudo ldconfig
if [ $? -ne 0 ]; then
echo "Installing rtl-sdr failed, please resolve it manually."
exit 1
fi
cd ../..
echo
read -r -p "Should I blacklist the dvb_usb_rtl28xxu kernel module in order to be able to use rtl-sdr? (Enter N to skip.) [y/n] " response
if [[ $response =~ ^([yY][eE][sS]|[yY])$ ]]
then
sudo bash -c 'echo -e "\n# for RTL-SDR:\nblacklist dvb_usb_rtl28xxu\n" >> /etc/modprobe.d/blacklist.conf'
echo
REBOOT_LATER=1
echo "Note: You will have to reboot before running qtcsdr!"
echo
fi
fi
echo
echo "Now I'm building qtcsdr..."
cd ..
mkdir build
cd build
qmake ..
make -j4
sudo install -m 0755 qtcsdr /usr/bin
echo
echo "We're ready."
if [ $REBOOT_LATER -eq 1 ]; then
echo "You should reboot your Pi, then run \"rpi-test.sh\" in the qtcsdr directory."
else
echo "If there were no errors, you can now proceed to running \"rpi-test.sh\"."
fi