Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pi-top/pi-top-offline-updates
https://github.com/pi-top/pi-top-offline-updates
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/pi-top/pi-top-offline-updates
- Owner: pi-top
- Created: 2023-06-02T18:56:20.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-13T21:36:50.000Z (4 months ago)
- Last Synced: 2024-09-15T04:03:04.929Z (4 months ago)
- Language: Python
- Size: 55.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
================
pi-top USB Setup
================-----
About
-----Application that configures a pi-top using an USB drive, installing offline updates
and setting up locales, language and wi-fi networks.When a USB drive is plugged to the system with a file called `pi-top-usb-setup.tar.gz`,
a udev rule starts a systemd service that extracts the tarball and runs the setup script.The setup script updates the system using a local apt repository with the files in the USB drive,
and the uses a JSON file to set the locales, language, keyboard layout and wi-fi network.--------
JSON
--------Sample JSON file to configure the device:
.. code-block:: json
{
"language": "en_GB",
"country": "GB",
"time_zone": "Europe/London",
"keyboard_layout": ["gb", null],
"email": "[email protected]",
"network": {
"ssid": "this-is-a-ssid",
"authentication": {
"type": "WPA_ENTERPRISE",
"data": {
"authentication": "PEAP",
"anonymous_identity": "this-is-an-anonymous-identity",
"username": "this-is-a-username",
"inner_authentication": "MSCHAPv2",
"password": "this-is-a-password",
},
},
},
}