Difference between revisions of "Linux Desktop"

From SatNOGS Wiki
(linbpng ~= libpng)
(categories)
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Warning|This page provides deprecated or unsupported information, please consider using [[SatNOGS Client Ansible]] instructions for installing SatNOGS client on a linux machine}}
 +
 +
== Introduction ==
 +
 
Here you will find instructions on installing SatNOGS to a Linux Desktop running Ubuntu 16.04 LTS.
 
Here you will find instructions on installing SatNOGS to a Linux Desktop running Ubuntu 16.04 LTS.
 
  
 
== Prep Work ==
 
== Prep Work ==
Line 25: Line 28:
 
Grab the latest gr-satnogs debian package, unpack it, and install the appropriate deb file:
 
Grab the latest gr-satnogs debian package, unpack it, and install the appropriate deb file:
 
<pre>
 
<pre>
wget -O archive.zip https://gitlab.com/librespacefoundation/satnogs/gr-satnogs-package/-/jobs/35403119/artifacts/download
+
wget -O archive.zip https://gitlab.com/librespacefoundation/satnogs/gr-satnogs-package/-/jobs/35403119/artifacts/download (broken link here)
 
unzip archive.zip -d gr-satnogs
 
unzip archive.zip -d gr-satnogs
 
</pre>
 
</pre>
  
 
== Install satnogs client ==
 
== Install satnogs client ==
 +
<pre>
 +
pip install satnogsclient
 +
</pre>
 +
 +
[[Category:Build]]
 +
[[Category:Software]]

Revision as of 22:22, 19 January 2020

Important.png
This page provides deprecated or unsupported information, please consider using SatNOGS Client Ansible instructions for installing SatNOGS client on a linux machine

Introduction

Here you will find instructions on installing SatNOGS to a Linux Desktop running Ubuntu 16.04 LTS.

Prep Work

Install dependencies

sudo apt-get update
sudo apt-get install -y python-pip python-dev supervisor cmake libusb-1.0-0-dev libhamlib-utils vorbis-tools software-properties-common unzip  

Install gnuradio libs from myriadrf since we need a newer version than Ubuntu provides for 16.04

sudo apt-get purge --auto-remove libgnuradio*
sudo add-apt-repository -y ppa:myriadrf/drivers
sudo add-apt-repository -y ppa:myriadrf/gnuradio
sudo apt-get update
sudo apt-get install -y gnuradio-dev libboost-dev libnova-dev libpng-dev

Install gr-satnogs

Grab the latest gr-satnogs debian package, unpack it, and install the appropriate deb file:

wget -O archive.zip https://gitlab.com/librespacefoundation/satnogs/gr-satnogs-package/-/jobs/35403119/artifacts/download  (broken link here)
unzip archive.zip -d gr-satnogs

Install satnogs client

pip install satnogsclient