Skip to content

Instantly share code, notes, and snippets.

@robotamer
Forked from hofmannsven/README.md
Last active April 15, 2019 17:28
Show Gist options
  • Save robotamer/2c246d511e6d59c7bd55d6948db5a6ef to your computer and use it in GitHub Desktop.
Save robotamer/2c246d511e6d59c7bd55d6948db5a6ef to your computer and use it in GitHub Desktop.

Revisions

  1. robotamer renamed this gist Apr 15, 2019. 1 changed file with 1 addition and 2 deletions.
    3 changes: 1 addition & 2 deletions README.md → Raspberry_Pi.md
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,5 @@
    # Raspberry Pi
    - Related tutorial: [http://raspberrypiguide.de/](http://raspberrypiguide.de/)
    - Command Line Cheatsheet: [https://gist.github.com/hofmannsven/8392477](https://gist.github.com/hofmannsven/8392477)


    ## Setup
    Find all available devices `arp -a`
  2. @hofmannsven hofmannsven revised this gist Mar 21, 2019. 1 changed file with 12 additions and 48 deletions.
    60 changes: 12 additions & 48 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -1,36 +1,22 @@
    Raspberry Pi
    ===============

    # Raspberry Pi
    - Related tutorial: [http://raspberrypiguide.de/](http://raspberrypiguide.de/)
    - Command Line Cheatsheet: [https://gist.github.com/hofmannsven/8392477](https://gist.github.com/hofmannsven/8392477)


    Setup
    -----------

    ## Setup
    Find all available devices `arp -a`

    Locate Raspberry (b8:27:eb) in Network: [Pi Finder](http://ivanx.com/raspberrypi/)


    SSH
    -----------

    ## SSH
    - Connect to device via SSH + Name: `ssh pi@rasperrypi`
    - Connect to device via SSH + IP: `ssh [email protected]`


    Users
    -----------

    ## Users
    Add new user with home dir: `sudo useradd -m sven -G sudo` (see `/etc/passwd`)

    Set password for user: `sudo passwd sven` (see `/etc/shadow`)


    System
    -----------

    ## System
    Get system info (e.g. IP): `ifconfig`

    Get network info: `iwconfig`
    @@ -51,10 +37,7 @@ Shutdown: `sudo shutdown -h now`

    Start SSH while booting: `sudo update-rc.d ssh defaults`


    Web Server
    -----------

    ## Web Server
    - [Related tutorial](http://www.raspberry-projects.com/pi/software_utilities/web-servers/phpapache)

    Update system: `sudo apt-get update` & `sudo apt-get upgrade`
    @@ -71,18 +54,12 @@ Install Avahi for `.local` domain: `sudo apt-get install avahi-daemon` (see [tut

    Note: Also update vhosts to `AllowOverride All`!


    Audio
    -----------

    ## Audio
    Play: `omxplayer audio.mp3`

    Volume: `+` & `-`


    GUI Keyboard Shortcuts
    -----------

    ## GUI Keyboard Shortcuts
    System menu: `ctrl + esc`

    Open programm menu: `alt + space`
    @@ -95,10 +72,7 @@ Close window: `ctrl + q`

    Back to CLI: `ctrl + alt + backspace`


    Remote Control
    -----------

    ## Remote Control
    Install XRDP: `apt-get install xrdp`

    Connect via Remote Desktop app
    @@ -115,38 +89,28 @@ Connect via Remote Desktop app
    - [Real VNC for OS X](http://www.realvnc.com/)
    - [Mocha VNC Lite for iOS](https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448)


    File Sharing
    -----------

    ## File Sharing
    - [Related tutorial](http://gettingstartedwithraspberrypi.tumblr.com/post/24398167109/file-sharing-with-afp-and-auto-discovery-with)

    Install file sharing: `sudo apt-get install netatalk`

    Connect to Server (via ⌘K): `afp://192.168.64.xxx`


    Wifi
    -----------
    ## Wifi

    ### Setup

    - [Via interface](http://youtu.be/sXDqMapgU_M)
    - [Via terminal](http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/)

    ### Disable Power Management

    - [Tutorial](http://www.raspberrypi-spy.co.uk/2015/06/how-to-disable-wifi-power-saving-on-the-raspberry-pi/)

    - Check the power management flag using: `cat /sys/module/8192cu/parameters/rtw_power_mgnt` (this will report a value of 1)
    - To set it to zero you can use: `sudo touch /etc/modprobe.d/8192cu.conf`
    - Add this line to the created file: `options 8192cu rtw_power_mgnt=0 rtw_enusbss=0`
    - Reboot: `sudo reboot`


    Midnight Commander
    -----------

    ## Midnight Commander
    Install: `sudo apt-get install mc`

    Start: `sudo mc`
  3. @hofmannsven hofmannsven revised this gist Mar 14, 2019. No changes.
  4. @hofmannsven hofmannsven revised this gist Jul 5, 2017. 1 changed file with 2 additions and 2 deletions.
    4 changes: 2 additions & 2 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -55,7 +55,7 @@ Start SSH while booting: `sudo update-rc.d ssh defaults`
    Web Server
    -----------

    Related tutorial: [http://cd64.de/apache](http://cd64.de/apache)
    - [Related tutorial](http://www.raspberry-projects.com/pi/software_utilities/web-servers/phpapache)

    Update system: `sudo apt-get update` & `sudo apt-get upgrade`

    @@ -119,7 +119,7 @@ Connect via Remote Desktop app
    File Sharing
    -----------

    Related tutorial: [http://cd64.de/filesharing](http://cd64.de/filesharing)
    - [Related tutorial](http://gettingstartedwithraspberrypi.tumblr.com/post/24398167109/file-sharing-with-afp-and-auto-discovery-with)

    Install file sharing: `sudo apt-get install netatalk`

  5. @hofmannsven hofmannsven revised this gist Mar 12, 2016. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -20,6 +20,14 @@ SSH
    - Connect to device via SSH + IP: `ssh [email protected]`


    Users
    -----------

    Add new user with home dir: `sudo useradd -m sven -G sudo` (see `/etc/passwd`)

    Set password for user: `sudo passwd sven` (see `/etc/shadow`)


    System
    -----------

  6. @hofmannsven hofmannsven revised this gist Feb 22, 2016. 1 changed file with 10 additions and 15 deletions.
    25 changes: 10 additions & 15 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,8 @@
    Raspberry Pi
    ===============

    Related tutorial: [http://raspberrypiguide.de/](http://raspberrypiguide.de/)

    Command Line Cheatsheet: [https://gist.github.com/hofmannsven/8392477](https://gist.github.com/hofmannsven/8392477)
    - Related tutorial: [http://raspberrypiguide.de/](http://raspberrypiguide.de/)
    - Command Line Cheatsheet: [https://gist.github.com/hofmannsven/8392477](https://gist.github.com/hofmannsven/8392477)


    Setup
    @@ -17,9 +16,8 @@ Locate Raspberry (b8:27:eb) in Network: [Pi Finder](http://ivanx.com/raspberrypi
    SSH
    -----------

    Connect to device via SSH + Name: `ssh pi@rasperrypi`

    Connect to device via SSH + IP: `ssh [email protected]`
    - Connect to device via SSH + Name: `ssh pi@rasperrypi`
    - Connect to device via SSH + IP: `ssh [email protected]`


    System
    @@ -99,15 +97,12 @@ Connect via Remote Desktop app

    ---

    Related tutorial: [http://cd64.de/vnc](http://cd64.de/vnc)

    Install VNC: `sudo apt-get install tightvncserver`

    Start VNC: `tightvncserver`

    Ethernet Port: `5900`
    - [Related tutorial](http://gettingstartedwithraspberrypi.tumblr.com/post/24142374137/setting-up-a-vnc-server)

    WLAN Port: `5901`
    - Install VNC: `sudo apt-get install tightvncserver`
    - Start VNC: `tightvncserver`
    - Ethernet Port: `5900`
    - WLAN Port: `5901`

    - [Real VNC for OS X](http://www.realvnc.com/)
    - [Mocha VNC Lite for iOS](https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448)
    @@ -123,7 +118,7 @@ Install file sharing: `sudo apt-get install netatalk`
    Connect to Server (via ⌘K): `afp://192.168.64.xxx`


    WLAN
    Wifi
    -----------

    ### Setup
  7. @hofmannsven hofmannsven revised this gist Feb 22, 2016. 1 changed file with 5 additions and 6 deletions.
    11 changes: 5 additions & 6 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -128,17 +128,16 @@ WLAN

    ### Setup

    - Via interface: [http://youtu.be/sXDqMapgU_M](http://youtu.be/sXDqMapgU_M)
    - Via terminal: [http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/](http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/)
    - [Via interface](http://youtu.be/sXDqMapgU_M)
    - [Via terminal](http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/)

    ### Disable Power Management

    - Tutorial: http://www.raspberrypi-spy.co.uk/2015/06/how-to-disable-wifi-power-saving-on-the-raspberry-pi/
    - [Tutorial](http://www.raspberrypi-spy.co.uk/2015/06/how-to-disable-wifi-power-saving-on-the-raspberry-pi/)

    - Check the power management flag using: `cat /sys/module/8192cu/parameters/rtw_power_mgnt`
    - » this will report a value of `1`.
    - Check the power management flag using: `cat /sys/module/8192cu/parameters/rtw_power_mgnt` (this will report a value of 1)
    - To set it to zero you can use: `sudo touch /etc/modprobe.d/8192cu.conf`
    - Add this line to the `8192cu.conf` file: `options 8192cu rtw_power_mgnt=0 rtw_enusbss=0`
    - Add this line to the created file: `options 8192cu rtw_power_mgnt=0 rtw_enusbss=0`
    - Reboot: `sudo reboot`


  8. @hofmannsven hofmannsven revised this gist Feb 22, 2016. 1 changed file with 12 additions and 3 deletions.
    15 changes: 12 additions & 3 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -126,11 +126,20 @@ Connect to Server (via ⌘K): `afp://192.168.64.xxx`
    WLAN
    -----------

    Via interface: [http://youtu.be/sXDqMapgU_M](http://youtu.be/sXDqMapgU_M)
    ### Setup

    Via terminal: [http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/](http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/)
    - Via interface: [http://youtu.be/sXDqMapgU_M](http://youtu.be/sXDqMapgU_M)
    - Via terminal: [http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/](http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/)

    Disable energy saving: [http://himbeerrot.blogspot.de/2014/06/wlan-konfiguration-raspbian-raspberry-pi-edimax-ew-7811un.html](http://himbeerrot.blogspot.de/2014/06/wlan-konfiguration-raspbian-raspberry-pi-edimax-ew-7811un.html)
    ### Disable Power Management

    - Tutorial: http://www.raspberrypi-spy.co.uk/2015/06/how-to-disable-wifi-power-saving-on-the-raspberry-pi/

    - Check the power management flag using: `cat /sys/module/8192cu/parameters/rtw_power_mgnt`
    - » this will report a value of `1`.
    - To set it to zero you can use: `sudo touch /etc/modprobe.d/8192cu.conf`
    - Add this line to the `8192cu.conf` file: `options 8192cu rtw_power_mgnt=0 rtw_enusbss=0`
    - Reboot: `sudo reboot`


    Midnight Commander
  9. @hofmannsven hofmannsven revised this gist Dec 28, 2015. 1 changed file with 6 additions and 0 deletions.
    6 changes: 6 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -93,6 +93,12 @@ Back to CLI: `ctrl + alt + backspace`
    Remote Control
    -----------

    Install XRDP: `apt-get install xrdp`

    Connect via Remote Desktop app

    ---

    Related tutorial: [http://cd64.de/vnc](http://cd64.de/vnc)

    Install VNC: `sudo apt-get install tightvncserver`
  10. @hofmannsven hofmannsven revised this gist Aug 14, 2015. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -55,12 +55,16 @@ Update system: `sudo apt-get update` & `sudo apt-get upgrade`

    Install Web Server: `sudo apt-get install apache2 php5`

    Laravel will also need `mcrypt` and `GD` extension.

    Install MySQL: `sudo apt-get install mysql-server mysql-client php5-mysql`

    Restart: `sudo service apache2 restart`

    Install Avahi for `.local` domain: `sudo apt-get install avahi-daemon` (see [tutorial](http://www.ryukent.com/2013/09/a-local-url-instead-of-an-ip-address-for-your-raspberry-pi/))

    Note: Also update vhosts to `AllowOverride All`!


    Audio
    -----------
  11. @hofmannsven hofmannsven revised this gist Aug 14, 2015. 1 changed file with 5 additions and 14 deletions.
    19 changes: 5 additions & 14 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -46,29 +46,20 @@ Shutdown: `sudo shutdown -h now`
    Start SSH while booting: `sudo update-rc.d ssh defaults`


    Apache/PHP/MySQL
    Web Server
    -----------

    Related tutorial: [http://cd64.de/apache](http://cd64.de/apache)

    Update system: `sudo apt-get update` & `sudo apt-get upgrade`

    Install Apache: `sudo apt-get install apache2 php5`
    Install Web Server: `sudo apt-get install apache2 php5`

    Setup rewrite and overriding: `sudo a2enmod rewrite` » `sudo nano /etc/apache2/sites-enabled/000-default`
    Install MySQL: `sudo apt-get install mysql-server mysql-client php5-mysql`

    Change `AllowOverride None` to `AllowOverride All` within `<Directory /var/www/>`
    Restart: `sudo service apache2 restart`

    Add Apache user via `sudo visudo` and add `www-data ALL=(ALL) NOPASSWD: ALL` to the end of the file

    Restart Apache: `sudo /etc/init.d/apache2 restart` or `sudo service apache2 restart`

    Files are stored within `/var/www` (changing will require root access)


    Install MySQL: `sudo apt-get install mysql-server`

    Install PHP with MySQl libs: `sudo apt-get install php5` + `sudo apt-get install php5-mysql`
    Install Avahi for `.local` domain: `sudo apt-get install avahi-daemon` (see [tutorial](http://www.ryukent.com/2013/09/a-local-url-instead-of-an-ip-address-for-your-raspberry-pi/))


    Audio
  12. @hofmannsven hofmannsven revised this gist Feb 17, 2015. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -129,6 +129,8 @@ Via interface: [http://youtu.be/sXDqMapgU_M](http://youtu.be/sXDqMapgU_M)

    Via terminal: [http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/](http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/)

    Disable energy saving: [http://himbeerrot.blogspot.de/2014/06/wlan-konfiguration-raspbian-raspberry-pi-edimax-ew-7811un.html](http://himbeerrot.blogspot.de/2014/06/wlan-konfiguration-raspbian-raspberry-pi-edimax-ew-7811un.html)


    Midnight Commander
    -----------
  13. @hofmannsven hofmannsven revised this gist Jan 6, 2015. 1 changed file with 6 additions and 2 deletions.
    8 changes: 6 additions & 2 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -25,7 +25,9 @@ Connect to device via SSH + IP: `ssh [email protected]`
    System
    -----------

    Check system info (e.g. IP): `ifconfig`
    Get system info (e.g. IP): `ifconfig`

    Get network info: `iwconfig`

    Get hostname: `hostname`

    @@ -123,7 +125,9 @@ Connect to Server (via ⌘K): `afp://192.168.64.xxx`
    WLAN
    -----------

    Related tutorial: [http://cd64.de/wlan](http://cd64.de/wlan)
    Via interface: [http://youtu.be/sXDqMapgU_M](http://youtu.be/sXDqMapgU_M)

    Via terminal: [http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/](http://www.maketecheasier.com/setup-wifi-on-raspberry-pi/)


    Midnight Commander
  14. @hofmannsven hofmannsven revised this gist Dec 5, 2014. 1 changed file with 14 additions and 9 deletions.
    23 changes: 14 additions & 9 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -1,16 +1,18 @@
    Raspberry Pi
    ===============

    Related tutorial: http://raspberrypiguide.de/
    Related tutorial: [http://raspberrypiguide.de/](http://raspberrypiguide.de/)

    Command Line Cheatsheet: https://gist.github.com/hofmannsven/8392477
    Command Line Cheatsheet: [https://gist.github.com/hofmannsven/8392477](https://gist.github.com/hofmannsven/8392477)


    Setup
    -----------

    Find all available devices `arp -a`

    Locate Raspberry (b8:27:eb) in Network: [Pi Finder](http://ivanx.com/raspberrypi/)


    SSH
    -----------
    @@ -25,6 +27,10 @@ System

    Check system info (e.g. IP): `ifconfig`

    Get hostname: `hostname`

    Get hostname IP: `hostname -I`

    Check for all connected USB devices: `lsusb`

    Switch to config: `sudo raspi-config`
    @@ -41,7 +47,7 @@ Start SSH while booting: `sudo update-rc.d ssh defaults`
    Apache/PHP/MySQL
    -----------

    Related tutorial: http://cd64.de/apache
    Related tutorial: [http://cd64.de/apache](http://cd64.de/apache)

    Update system: `sudo apt-get update` & `sudo apt-get upgrade`

    @@ -90,7 +96,7 @@ Back to CLI: `ctrl + alt + backspace`
    Remote Control
    -----------

    Related tutorial: http://cd64.de/vnc
    Related tutorial: [http://cd64.de/vnc](http://cd64.de/vnc)

    Install VNC: `sudo apt-get install tightvncserver`

    @@ -100,15 +106,14 @@ Ethernet Port: `5900`

    WLAN Port: `5901`

    Real VNC App for OS X: http://www.realvnc.com/

    VNC App for iOS: https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448
    - [Real VNC for OS X](http://www.realvnc.com/)
    - [Mocha VNC Lite for iOS](https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448)


    File Sharing
    -----------

    Related tutorial: http://cd64.de/filesharing
    Related tutorial: [http://cd64.de/filesharing](http://cd64.de/filesharing)

    Install file sharing: `sudo apt-get install netatalk`

    @@ -118,7 +123,7 @@ Connect to Server (via ⌘K): `afp://192.168.64.xxx`
    WLAN
    -----------

    Related tutorial: http://cd64.de/wlan
    Related tutorial: [http://cd64.de/wlan](http://cd64.de/wlan)


    Midnight Commander
  15. @hofmannsven hofmannsven revised this gist Mar 7, 2014. 1 changed file with 3 additions and 1 deletion.
    4 changes: 3 additions & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -124,4 +124,6 @@ Related tutorial: http://cd64.de/wlan
    Midnight Commander
    -----------

    Install: `sudo apt-get install mc`
    Install: `sudo apt-get install mc`

    Start: `sudo mc`
  16. @hofmannsven hofmannsven revised this gist Mar 7, 2014. 1 changed file with 7 additions and 1 deletion.
    8 changes: 7 additions & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -118,4 +118,10 @@ Connect to Server (via ⌘K): `afp://192.168.64.xxx`
    WLAN
    -----------

    Related tutorial: http://cd64.de/wlan
    Related tutorial: http://cd64.de/wlan


    Midnight Commander
    -----------

    Install: `sudo apt-get install mc`
  17. @hofmannsven hofmannsven revised this gist Mar 3, 2014. 1 changed file with 25 additions and 0 deletions.
    25 changes: 25 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -38,6 +38,31 @@ Shutdown: `sudo shutdown -h now`
    Start SSH while booting: `sudo update-rc.d ssh defaults`


    Apache/PHP/MySQL
    -----------

    Related tutorial: http://cd64.de/apache

    Update system: `sudo apt-get update` & `sudo apt-get upgrade`

    Install Apache: `sudo apt-get install apache2 php5`

    Setup rewrite and overriding: `sudo a2enmod rewrite` » `sudo nano /etc/apache2/sites-enabled/000-default`

    Change `AllowOverride None` to `AllowOverride All` within `<Directory /var/www/>`

    Add Apache user via `sudo visudo` and add `www-data ALL=(ALL) NOPASSWD: ALL` to the end of the file

    Restart Apache: `sudo /etc/init.d/apache2 restart` or `sudo service apache2 restart`

    Files are stored within `/var/www` (changing will require root access)


    Install MySQL: `sudo apt-get install mysql-server`

    Install PHP with MySQl libs: `sudo apt-get install php5` + `sudo apt-get install php5-mysql`


    Audio
    -----------

  18. @hofmannsven hofmannsven revised this gist Feb 24, 2014. 1 changed file with 8 additions and 0 deletions.
    8 changes: 8 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -38,6 +38,14 @@ Shutdown: `sudo shutdown -h now`
    Start SSH while booting: `sudo update-rc.d ssh defaults`


    Audio
    -----------

    Play: `omxplayer audio.mp3`

    Volume: `+` & `-`


    GUI Keyboard Shortcuts
    -----------

  19. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -35,6 +35,8 @@ Reboot system: `reboot` / `sudo reboot`

    Shutdown: `sudo shutdown -h now`

    Start SSH while booting: `sudo update-rc.d ssh defaults`


    GUI Keyboard Shortcuts
    -----------
  20. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -61,6 +61,10 @@ Install VNC: `sudo apt-get install tightvncserver`

    Start VNC: `tightvncserver`

    Ethernet Port: `5900`

    WLAN Port: `5901`

    Real VNC App for OS X: http://www.realvnc.com/

    VNC App for iOS: https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448
  21. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 7 additions and 1 deletion.
    8 changes: 7 additions & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -73,4 +73,10 @@ Related tutorial: http://cd64.de/filesharing

    Install file sharing: `sudo apt-get install netatalk`

    Connect to Server (via ⌘K): `afp://192.168.64.xxx`
    Connect to Server (via ⌘K): `afp://192.168.64.xxx`


    WLAN
    -----------

    Related tutorial: http://cd64.de/wlan
  22. @hofmannsven hofmannsven revised this gist Feb 21, 2014. No changes.
  23. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 5 additions and 1 deletion.
    6 changes: 5 additions & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -15,7 +15,9 @@ Find all available devices `arp -a`
    SSH
    -----------

    Connect to device via SSH: `ssh [email protected]`
    Connect to device via SSH + Name: `ssh pi@rasperrypi`

    Connect to device via SSH + IP: `ssh [email protected]`


    System
    @@ -31,6 +33,8 @@ Switch to GUI: `startx`

    Reboot system: `reboot` / `sudo reboot`

    Shutdown: `sudo shutdown -h now`


    GUI Keyboard Shortcuts
    -----------
  24. @hofmannsven hofmannsven revised this gist Feb 21, 2014. No changes.
  25. @hofmannsven hofmannsven revised this gist Feb 21, 2014. No changes.
  26. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 18 additions and 2 deletions.
    20 changes: 18 additions & 2 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -51,6 +51,22 @@ Back to CLI: `ctrl + alt + backspace`
    Remote Control
    -----------

    Real VNC for OS X: http://www.realvnc.com/
    Related tutorial: http://cd64.de/vnc

    VNC for iOS: https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448
    Install VNC: `sudo apt-get install tightvncserver`

    Start VNC: `tightvncserver`

    Real VNC App for OS X: http://www.realvnc.com/

    VNC App for iOS: https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448


    File Sharing
    -----------

    Related tutorial: http://cd64.de/filesharing

    Install file sharing: `sudo apt-get install netatalk`

    Connect to Server (via ⌘K): `afp://192.168.64.xxx`
  27. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -1,4 +1,4 @@
    Rasberry Pi
    Raspberry Pi
    ===============

    Related tutorial: http://raspberrypiguide.de/
  28. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions README.md
    Original file line number Diff line number Diff line change
    @@ -3,6 +3,8 @@ Rasberry Pi

    Related tutorial: http://raspberrypiguide.de/

    Command Line Cheatsheet: https://gist.github.com/hofmannsven/8392477


    Setup
    -----------
  29. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -39,7 +39,7 @@ Open programm menu: `alt + space`

    Switch programms: `alt + tab`

    Access dropdown: `alt + [letter-with-underline]`
    Access dropdown: `alt + [letter-with-underline]` e.g. `alt + f`

    Close window: `ctrl + q`

  30. @hofmannsven hofmannsven revised this gist Feb 21, 2014. 1 changed file with 1 addition and 1 deletion.
    2 changes: 1 addition & 1 deletion README.md
    Original file line number Diff line number Diff line change
    @@ -49,6 +49,6 @@ Back to CLI: `ctrl + alt + backspace`
    Remote Control
    -----------

    Real VNC for OS X: http://www.realvnc.com/download/
    Real VNC for OS X: http://www.realvnc.com/

    VNC for iOS: https://itunes.apple.com/gb/app/mocha-vnc-lite/id284984448