Author Topic: Update of station / remote login  (Read 8149 times)

Admin

Re: Update of station / remote login
« Reply #15 on: January 28, 2018, 01:47:37 pm »
Hi Ben

This was probably introduced after your installation
Here are the contents of the script

Code: [Select]
#!/bin/bash

#
# http://pilotaware.lode.co.uk/downloads/OGN/README.update
#

#
# Stop service
#
echo "Stopping OGN Services"
sudo service rtlsdr-ogn stop

#
# Write Enable
#
echo "Mounting Disk RW"
sudo /root/mount_rw.bash

#
# instructions as per README.install
#
echo "Download Updates"
sudo wget http://pilotaware.lode.co.uk/downloads/OGN/OGN-PAW.latest.tgz \
    -O /tmp/OGN-PAW.latest.tgz
   
echo "Install Updates"
sudo tar --same-owner -Pxvf /tmp/OGN-PAW.latest.tgz

#
# Write Protect
#
echo "Mounting Disk RO"
sudo /root/mount_ro.bash

#
# Start service
#
echo "Start OGN Services"
sudo service rtlsdr-ogn start


Thx
Lee
« Last Edit: January 28, 2018, 04:50:55 pm by Admin »

Ben Smith

  • Engineering
  • Newbie
  • *
  • Posts: 39
  • Total likes: 1
  • Glider pilot, electronics engineer and Beekeeper.
    • View Profile
Re: Update of station / remote login
« Reply #16 on: January 29, 2018, 08:28:13 am »
Thanks Lee
I will create / run the script this evening
Ben.