planktoscope/docs/remote_access.rst

57 lines
1.4 KiB
ReStructuredText
Raw Normal View History

2019-12-05 01:04:27 +01:00
=============
Remote access
=============
.. warning::
Make sure your Raspberry Pi is connected to Internet either via WiFi or Ethernet.
2019-12-05 01:08:15 +01:00
Update your Pi
==============
2019-12-05 01:04:27 +01:00
Use the command lines to first update and upgrade your Raspbian ::
$ sudo apt-get update -y
$ sudo apt-get dist-upgrade -y
It's a good practice to reboot after that using ::
$ sudo reboot now
2019-12-05 01:08:15 +01:00
Packages installation
=====================
Install the packages for the standalone WiFi ::
$ sudo apt-get install dnsmasq hostapd -y
2019-12-05 01:04:27 +01:00
2019-12-05 01:08:15 +01:00
Install the packages for the standalone WiFi ::
2019-12-05 01:04:27 +01:00
$ sudo apt-get install dnsmasq hostapd -y
2019-12-05 01:08:15 +01:00
$ sudo apt-get install git -y
$ git clone https://github.com/silvanmelchior/RPi_Cam_Web_Interface.git
$ cd RPi_Cam_Web_Interface
$ ./install.sh
2019-12-05 01:04:27 +01:00
.. _test_suite:
Test suite
==========
If you wish to run the picamera test suite, follow the instructions in
:ref:`dev_install` above and then make the "test" target within the sandbox::
$ source sandbox/bin/activate
(sandbox) $ cd picamera
(sandbox) $ make test
.. warning::
The test suite takes a *very* long time to execute (at least 1 hour on an
overclocked Pi 3). Depending on configuration, it can also lockup the
camera requiring a reboot to reset, so ensure you are familiar with SSH or
using alternate TTYs to access a command line in the event you need to
reboot.