- Related tutorial: http://raspberrypiguide.de/
- Command Line Cheatsheet: https://gist.github.com/hofmannsven/8392477
Find all available devices arp -a
Locate Raspberry (b8:27:eb) in Network: Pi Finder
- Connect to device via SSH + Name:
ssh pi@rasperrypi
- Connect to device via SSH + IP:
ssh [email protected]
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
)
Get system info (e.g. IP): ifconfig
Get network info: iwconfig
Get hostname: hostname
Get hostname IP: hostname -I
Check for all connected USB devices: lsusb
Switch to config: sudo raspi-config
Switch to GUI: startx
Reboot system: reboot
/ sudo reboot
Shutdown: sudo shutdown -h now
Start SSH while booting: sudo update-rc.d ssh defaults
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)
Note: Also update vhosts to AllowOverride All
!
Play: omxplayer audio.mp3
Volume: +
& -
System menu: ctrl + esc
Open programm menu: alt + space
Switch programms: alt + tab
Access dropdown: alt + [letter-with-underline]
e.g. alt + f
Close window: ctrl + q
Back to CLI: ctrl + alt + backspace
Install XRDP: apt-get install xrdp
Connect via Remote Desktop app
-
Install VNC:
sudo apt-get install tightvncserver
-
Start VNC:
tightvncserver
-
Ethernet Port:
5900
-
WLAN Port:
5901
Install file sharing: sudo apt-get install netatalk
Connect to Server (via ⌘K): afp://192.168.64.xxx
-
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
Install: sudo apt-get install mc
Start: sudo mc
This is perfect! Thank you