Script de instalare SDRPlay

De la YO3ITI
Sari la navigare Sari la căutare

Script pentru instalarea tuturor pachetelor necesare pentru utilizarea SDRPlay pe Raspberry Pi. Acest script se găsește și pe github la adresa https://github.com/yo3iti/Dual-SDR-install.git

Este foarte important să se instaleze înainte driverele oficiale pentru SDRPlay.

#!/bin/bash
# install_sdr_fixed.sh - Fixed installation script for Raspberry Pi

set -e

echo "===== SDR Interface Installation (Fixed) ====="

# Check if running as root
if [ "$EUID" -eq 0 ]; then 
    echo "WARNING: Don't run as root during build. Run specific commands with sudo."
    echo "Usage: ./install_sdr_fixed.sh"
    exit 1
fi
.....

(restul pe github)