Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
raspytime/README.md
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
42 lines (34 sloc)
1.23 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Installation | |
============ | |
Arbeitsrechner | |
-------------- | |
1. get raspbian lite: [-> official site](https://www.raspberrypi.org/downloads/raspbian/) | |
2. dump image to sdcard (via dd or other known methods) | |
3. customize BOOT partition (optional, but recommended): | |
- activate SSH: generate an empty file named `ssh` | |
- assign an IP Adress for the first start:\ | |
extend file `cmdline.txt`:\ | |
`ip=141.14.128.34::141.14.128.128:255.255.255.0:timet06:eth0:off`\ | |
schematic:\ | |
`IP:remote-boot-server:gateway:netmask:hostname:iface:autoconfig` | |
Raspberry Pi | |
------------ | |
1. setup network as usual in `/etc/network/interfaces` | |
``` | |
# static network configuration | |
auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet static | |
address 141.14.128.34 | |
gateway 141.14.128.128 | |
netmask 255.255.240.0 | |
dns-nameservers 141.14.128.1 | |
dns-search rz-berlin.mpg.de fhi-berlin.mpg.de | |
``` | |
2. setup hostname (`/etc/hostname`) | |
3. cleanup `/boot/cmdline.txt` (remove first-start network settings) | |
4. install git: `sudo apt update && sudo apt install git` | |
4. clone github repository: | |
`git clone https://github.molgen.mpg.de/kw/raspytime` | |
5. run `cd raspytime && sudo ./installscript.sh` |