From d9db52468fd282811512e445101cae7d99cd8efb Mon Sep 17 00:00:00 2001 From: then Date: Thu, 20 Aug 2020 23:19:17 +0200 Subject: [PATCH] made a start to include debian instructions --- README.md | 32 +++++++++++++++++++++++++++++++- 1 file changed, 31 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 95691f4..6c67014 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,38 @@ How to fool your GPS enabled devices using Software Defined Radio, in this case using the HackRF One. This guide is written for Arch linux. But should be relatively consistent with other platforms. +## Installing on Debian -## installing + +### HackRF Support +``` +$ sudo apt-update +$ sudo apt install gnuradio libhackrf0 hackrf libhackrf-dev +``` +Hook up your HackRF and see if its recognized: + +``` +$ hackrf_info +``` +You should see something like: + +``` +Found HackRF board. +Board ID Number: 2 (HackRF One) +Firmware Version: 2015.07.2 +Part ID Number: 0xa000cw898 0x09898908 (redacted) +Serial Number: 000000000 0000 00 00000000 (redacted +``` + +### GPS sim (Download + compile) (via https://slowmin.com/fake-gps-with-a-hackrf-one/) +``` +$ git clone https://github.com/osqzss/gps-sdr-sim.git +$ cd gps-sdr-sim +$ make + +``` + +## Installing on Arch you could build gps-sdr-sim from scratch, but I choose to use the binary provided by the 'blackarch' distro's repository. ### Prerequisits