Difference between revisions of "RPiAIS"

From wiki.bastelbude.grade.de
Jump to: navigation, search
(install)
(install)
Line 49: Line 49:
 
* Blacklist the kernel module dvb_usb_rtl28xxu by adding the line <code>blacklist dvb_usb_rtl28xxu</code> to <b>/etc/modprobe.d/blacklist-dvb_usb_rtl28xxu.conf</b>
 
* Blacklist the kernel module dvb_usb_rtl28xxu by adding the line <code>blacklist dvb_usb_rtl28xxu</code> to <b>/etc/modprobe.d/blacklist-dvb_usb_rtl28xxu.conf</b>
 
* reboot
 
* reboot
 +
* Test the installation:
 +
** <code>rtl_test -t</code>
 +
 
[[category:Projekte]]
 
[[category:Projekte]]

Revision as of 13:12, 13 October 2018

stretch

setup

  • connect via ssh or scp as pi
sudo apt-get update
sudo apt-get upgrade
sudo su
mc
  • enable root login over SSH
    • add to /etc/ssh/sshd_config
      PermitRootLogin yes
    • restart service
      sudo /etc/init.d/ssh restart
    • set root password
      sudo passwd root
  • set up static IP at /etc/dhcpcd.conf
interface eth0
static ip_address=192.168.1.110/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1
  • reboot

install

  • connect via ssh or scp as pi
sudo su -
apt-get update
apt-get install git
git clone git://git.osmocom.org/rtl-sdr.git
apt-get install libusb-dev libusb-1.0 libtool cmake
apt-get install build-essential
 
cd rtl-sdr/
mkdir build
cd build
cmake ../
make
make install
ldconfig
 
cd ..
cp rtl-sdr.rules /etc/udev/rules.d/
  • Blacklist the kernel module dvb_usb_rtl28xxu by adding the line blacklist dvb_usb_rtl28xxu to /etc/modprobe.d/blacklist-dvb_usb_rtl28xxu.conf
  • reboot
  • Test the installation:
    • rtl_test -t