0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

雪豹にRTLSDR Scannerをインストール

Last updated at Posted at 2017-07-08

Mac OS Xの10.6にRTLSDR Scannerをインストールしてみた。

platofomioでpython2.7はインストール済みだったので、とりあえず本体をインストール。

$ pip install rtlsdr-scanner

依存でいろいろ入ります。

後はwxpythonのパッケージをwxPython3.0-osx-3.0.2.0-cocoa-py2.7.dmgからインストール。

これだけだとlibrtlsdrとlibusbが無いので、librtlsdrを手動で作ります。portsは使わない主義です。FreeBSDでconfigure作って通したファイルをコピーして、libusb.hをincludeにコピーするとsrc/.libs/の下に.oができてlibのリンクでこけます。

$ sudo cp /hoge/hoge/libusb.dylib /usr/local/lib/
$ sudo install_name_tool -id /usr/local/lib/libusb.dylib /usr/local/lib/libusb.dylib
$ cd src/.libs
$ gcc -L/usr/local/lib -lusb -dynamiclib -o  librtlsdr.dylib *.o
$ sudo cp librtlsdr.dylib /usr/local/lib/

RTLなドングルにつないで以下を実行。

$ python -m rtlsdr_scanner

ウインドウが表示されます。SSGを接続して90MHzにして、ScanメニューからStartを実行。

スクリーンショット(2017-07-08 10.02.32).png

昔スペアは数百万とかしてたと思うのですが、ハードオフで315円のドングルで実現できてしまうって、ほんとすごい時代ですよね。

あまり無線関係詳しくないので勉強します。

Back to Snow Leopard.

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?