Skip to content

kw/raspytime

master
Switch branches/tags

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?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Installation

Arbeitsrechner

  1. get raspbian lite: -> official site
  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

  5. clone github repository: git clone https://github.molgen.mpg.de/kw/raspytime

  6. run cd raspytime && sudo ./installscript.sh