Changes between Version 37 and Version 38 of GENIRacksHome/OpenGENIRacks/RaspberryPIs


Ignore:
Timestamp:
04/28/16 11:22:18 (8 years ago)
Author:
rrhain@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIRacksHome/OpenGENIRacks/RaspberryPIs

    v37 v38  
    4444
    4545http://raspberrypi.stackexchange.com/questions/15250/how-to-get-remaining-memory-in-sd-card -
     46
     47==== Static IP Address Configuration for Raspbian Jesse version ====
     48
     49Despite lots of confusing information out there, it is actually pretty straightforward to set a static address in Raspbian.
     50
     51Being by editing the file (do not use /etc/network/interfaces anymore!)
     52
     53sudo vi /etc/dhcpcd.conf
     54
     55Then all you need to do is append this to the bottom of the file, substituting the correct IP address you want.
     56
     57interface eth0
     58static ip_address=192.168.1.141/24
     59static routers=192.168.1.1
     60static domain_name_servers=192.168.1.1
     61
     62
    4663
    4764==== Docker Image Installation ====