Build and install rtl-sdr:
sudo apt-get install git cmake socat libusb-1.0-0-dev
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr/
mkdir build
cd build
cmake ../ -DINSTALL_UDEV_RULES=ON -DDETACH_KERNEL_DRIVER=ON
make
sudo make install
sudo ldconfig
sudo service udev restart / Re-boot! (Please un-plug USB TV and re-plug in ESXI / VM environment )
How to test:
rtl_test -t
Error message:
*Kernel driver is active, or device is claimed by second instance of librtlsdr.
In the first case, please either detach or blacklist the kernel module (dvb_usb_rtl28xxu), or enable automatic detaching at compile time.
As the message suggests, there are two solutions. The quickest is to
simply unload the driver:
sudo rmmod dvb_usb_rtl28xxu rtl2832
–——————–
RTL_FM
rtl_fm -M wbfm -f 94M:104M:25k -s 170k -g 48 -l 280
rtl_fm -M wbfm -f 94M:104M:25k -s 170k -g 48 -l 280 | sox -traw -r24k -es -b16 -c1 -V1 – -tmp3 – | socat -u – TCP-LISTEN:7355
–——————–
sudo apt-get install sox libsox-fmt-mp3
multimonNG:
install qt5 and others
sudo apt-get install qt-sdk libpulse-dev g++
git clone https://github.com/EliasOenal/multimonNG.git
mkdir build
cd build
qmake ../multimon-ng.pro
make
sudo make install
Install QGRX:
$sudo apt-add-repository ppa:gqrx/snapshots
$sudo apt-get update
$sudo apt-get install gqrx
gqrx set your ip address,
windows:
vlc –demux=rawaud –rawaud-channels=1 –rawaud-samplerate=48000 udp://@:7355
=========================
SDR# @ ubuntu
sudo apt-get install mono-complete monodevelop
sudo apt-get install libportaudio2
sudo apt-get install libusb-1.0-0-dev
svn co https://subversion.assembla.com/svn/sdrsharp/trunk sdrsharp
cd sdrsharp
nano SDRSharp.sln
Change the version to 11.00 and Visual Studio 2010 (if you have monodevelop 3.x or 2.8.x)
xbuild /t:Rebuild /p:Configuration=Release SDRSharp.sln
[Build…..]
cd Release
ln -s /usr/local/lib/librtlsdr.so librtlsdr.dll
ln -s /usr/lib/x86_64-linux-gnu/libportaudio.so.2 libportaudio.so
nano SDRSharp.exe.config
remove .net comments of so that it looks like
to
References:
http://blogs.bu.edu/mhirsch/2013/11/sdr-ubuntu/comment-page-1/
http://rtlsdr.org/softwarelinux