Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
raspberry_boards:duino-pi_modification [2016/07/10 17:51]
admin
raspberry_boards:duino-pi_modification [2017/06/27 21:22]
admin [Install Shutdown & Reset Button]
Line 14: Line 14:
  
 2. Download and unzip that Python script 2. Download and unzip that Python script
-  <​del>​$ wget http://​www.dernulleffekt.de/​programme/​shutdownbutton.py.tar.gz</​del>​ 
   $ wget http://​www.dernulleffekt.de/​programme/​shutdownbutton_02.py.tar   $ wget http://​www.dernulleffekt.de/​programme/​shutdownbutton_02.py.tar
-  $ tar xf shutdownbutton.py.tar.gz+  $ tar xf shutdownbutton_02.py.tar
   ​   ​
 2. Change owner & rights 2. Change owner & rights
Line 53: Line 52:
     $ sudo nano /​etc/​rc.local     $ sudo nano /​etc/​rc.local
 write before exit 0: write before exit 0:
-   # ​run reset and shutdown script+   # ​blink an LED
    ​printf "​Starting blinking LED on GPIO 22"    ​printf "​Starting blinking LED on GPIO 22"
    /​home/​pi/​paper-duino-pi/​blink_22.py &    /​home/​pi/​paper-duino-pi/​blink_22.py &
Line 138: Line 137:
  
 ---- ----
-==== Set the SSH connection ==== 
-  
-1. For activating the SSH connection open 
-  $ sudo raspi-config 
-In 8. Advanced Options you can activate SSH 
- 
-2. Give the Raspberry Pi an IP address. Open the interfaces file: 
-  $ sudo nano /​etc/​network/​interfaces 
-Change the DHCP in static and add these lines: 
- 
-     iface eth0 inet static 
-        address 192.168.0.111 
-        netmask 255.255.255.0 
-        gateway 192.168.0.100 
- 
-To save and leave press:\\ 
-CTRL+O, Enter, CTRL+X 
- 
-3. Restart ethernet 
-  $ sudo ifdown eth0 
-  $ sudo ifup eth0 
- 
-3. Now you can login on your computer with: 
-  $ ssh duino-pi@192.168.0.111 
-or with XWindows ​ support: 
-  $ ssh -XY pi@192.168.0.111 
-PW: raspberry\\ 
- 
----- 
-