Hi I am trying to receive FM using RTL2832u SDR in my Raspberry Pi,
The OS in my raspberry is RASPBIAN WHEEZY and I have used the following commands to install the necessary drivers to the system
sudo apt-get install git
sudo apt-get install cmake
sudo apt-get install libusb-1.0-0.dev
sudo apt-get install build-essential
after which I downloaded and installed rtl-sdr using the following commands
git clone git://git.osmocom.org/rtl-sdr.git
cd rtl-sdr/
mkdir build
cd build
cmake ../
make
sudo make install
sudo ldconfig
then I copied the rtl-sdr.rules to the directory /etc/udev/rules.d
when i tried to copy using cp command its not copying, hence i used sudo cp to copy the corresponding file
after this i tested using rtl_test -t
the device is not getting detected
but when i use the command lsusb
it is showing that a device of Realtek Semiconductor Corp. is connected
Can anyone help me to solve this problem???