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
Next revision Both sides next revision
raspberry_boards:duino-pi_modification [2016/01/20 21:41]
admin
raspberry_boards:duino-pi_modification [2016/07/10 17:51]
admin
Line 7: Line 7:
 ---- ----
  
-==== Change the user and the password ​====+==== Install Shutdown & Reset Button ​====
  
-[[http://​raspi.tv/2012/how-to-create-a-new-user-on-raspberry-pi|How to create a new user]]+1Make an folder 
 +  $ mkdir /home/pi/paper-duino-pi 
 +  $ cd /​home/​pi/​paper-duino-pi
  
-1Change the name+2Download and unzip that Python script 
-  $ sudo nano /etc/hostname +  <​del>​$ wget http://​www.dernulleffekt.de/​programme/​shutdownbutton.py.tar.gz</​del>​ 
-in "​duino-pi"​\\ +  $ wget http://www.dernulleffekt.de/​programme/​shutdownbutton_02.py.tar 
- +  $ tar xf shutdownbutton.py.tar.gz 
-2. Change ​the host file +   
-  $ sudo nano /​etc/​hosts +2. Change ​owner & rights 
-in+  $ sudo chown root:root shutdownbutton_02.py 
-    127.0.0.1       ​localhost +  $ sudo chmod 755 shutdownbutton_02.py 
-    ::​1 ​            ​localhost ip6-localhost ip6-loopback +   
-    fe00::0         ​ip6-localnet +3. Create the autostart
-    ​ff00::​0 ​        ​ip6-mcastprefix +    ​$ sudo nano /​etc/​rc.local 
-    ff02::1         ​ip6-allnodes +write before exit 0
-    ​ff02::​2 ​        ​ip6-allrouters +   # run reset and shutdown script 
-                               +   printf "​Starting shutdown aund reset button\n"​ 
-    ​127.0.1.1 ​      duino-pi+   /​home/​pi/​paper-duino-pi/​shutdownbutton_02.py & 
 +    
 +To save and leave press:​\\ ​   
 +CTRL+O, Enter, CTRL+X\\
  
-5. Change the password +4. Reboot
-  $ passwd +
- +
-The passwd command allows you to change your password, you will be prompted for your old password, then you new password twice. The password is "​dernulleffekt"​. +
- +
-4. Reboot:+
   $ sudo reboot   $ sudo reboot
  
 ---- ----
-==== Install ​Shutdown & Reset Button ​====+==== Install ​Blinking LED ====
  
-1. Make an folder+1. Make an folder ​(if not existing)
   $ mkdir /​home/​pi/​paper-duino-pi   $ mkdir /​home/​pi/​paper-duino-pi
   $ cd /​home/​pi/​paper-duino-pi   $ cd /​home/​pi/​paper-duino-pi
  
 2. Download and unzip that Python script 2. Download and unzip that Python script
-  $ wget http://​www.dernulleffekt.de/​programme/​shutdownbutton.py.tar.gz +  $ wget http://​www.dernulleffekt.de/​programme/​blink_22.py.tar.gz 
-  $ tar xf shutdownbutton.py.tar.gz+  $ tar xf blink_22.py.tar.gz
   ​   ​
 2. Change owner & rights 2. Change owner & rights
-  $ sudo chown root:​root ​shutdownbutton.py +  $ sudo chown root:​root ​blink_22.py 
-  $ sudo chmod 755 shutdownbutton.py+  $ sudo chmod 755 blink_22.py
   ​   ​
 3. Create the autostart: 3. Create the autostart:
Line 54: Line 54:
 write before exit 0: write before exit 0:
    # run reset and shutdown script    # run reset and shutdown script
-   ​printf "​Starting ​shutdown aund reset button\n+   ​printf "​Starting ​blinking LED on GPIO 22
-   /​home/​pi/​paper-duino-pi/​shutdownbutton.py &+   /​home/​pi/​paper-duino-pi/​blink_22.py &
        
 To save and leave press:​\\ ​   To save and leave press:​\\ ​  
Line 62: Line 62:
 4. Reboot 4. Reboot
   $ sudo reboot   $ sudo reboot
-\\ 
  
 ---- ----