You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to add these Fedora directions to the main pages?
I finally got airspyhf to install on Fedora and update airspyone_host from 1.0.9 (from Fedora repos) to 1.0.11. I was able to clean up what I was doing and simplify it thanks to https://wiki.polaire.nl/doku.php?id=airspy_mini_fedora so here is how to do it:
Prerequisites for Linux (Fedora):
sudo groupadd plugdev
sudo usermod -a -G plugdev $USER
wget https://github.com/airspy/airspyhf/archive/master.zip
unzip master.zip
cd airspyhf-master
mkdir build
cd build
cmake ../ -DINSTALL_UDEV_RULES=ON
make
sudo make install
sudo bash -c 'echo /usr/local/lib >>/etc/ld.so.conf.d/local.conf'
sudo bash -c 'echo /usr/local/lib64 >>/etc/ld.so.conf.d/local.conf'
sudo ldconfig
sudo udevadm control --reload-rules
sudo udevadm trigger
These also work for airspyone_host. Uninstall the Fedora version if installed with sudo dnf remove airspyone_host then continue. This might also remove Gqrx so you will have to reinstall it with sudo dnf install gqrx if that happens.
Build host software on Linux (Fedora):
wget https://github.com/airspy/airspyone_host/archive/master.zip
unzip master.zip
cd airspyone_host-master
mkdir build
cd build
cmake ../ -DINSTALL_UDEV_RULES=ON
make
sudo make install
sudo bash -c 'echo /usr/local/lib >>/etc/ld.so.conf.d/local.conf'
sudo bash -c 'echo /usr/local/lib64 >>/etc/ld.so.conf.d/local.conf'
sudo ldconfig
sudo udevadm control --reload-rules
sudo udevadm trigger
The text was updated successfully, but these errors were encountered:
https://copr.fedorainfracloud.org/coprs/rezso/SDR/ has RPM builds for this library, but the udev rules as packaged in that copr still require some changes (I just locally edited the rules to use uaccess).
I've also submitted that change in #43 with another unrelated build change that seems to be needed when linking to the built library in some cases.
If you are looking to get this library to work with gnuradio in Fedora you will save yourself a massive crapload of time by NOT installing the repository versions of gr-osmosdr, libosmodsp, gr-iqbal, or even gqrx for that matter. You will end up pulling your hair out, as it will only see airspyone_host and ignores this library completely. They are all linked as dependencies in the repository, so if you try to erase/uninstall one, you end up erasing/unstalling them all.
Best to clone them from their respective git repositories and build them in the following order:
airspyhf (this library) - include the steps posted by @BT-Justice.
Would it be possible to add these Fedora directions to the main pages?
I finally got airspyhf to install on Fedora and update airspyone_host from 1.0.9 (from Fedora repos) to 1.0.11. I was able to clean up what I was doing and simplify it thanks to https://wiki.polaire.nl/doku.php?id=airspy_mini_fedora so here is how to do it:
Prerequisites for Linux (Fedora):
Reboot Fedora.
Build host software on Linux (Fedora):
These also work for airspyone_host. Uninstall the Fedora version if installed with sudo dnf remove airspyone_host then continue. This might also remove Gqrx so you will have to reinstall it with sudo dnf install gqrx if that happens.
Build host software on Linux (Fedora):
The text was updated successfully, but these errors were encountered: