Diverse items gevonden op internet

Complete SD kaart backup maken

Start up Win32DiskImager, a program that you probably have from when you first set up your Pi. (If you're on OS X or Linux, you'll have to use the dd command as described here instead of these steps).
In the "Image File" box, enter the path of your soon-to-be image file. For example, I put mine in C:\Users\Whitson\images\myraspbmc.img
Under the "Device" box, select your SD card.
Click the "Read" button to create the image file from your card.
When it's done creating the image file, you can eject your SD card and put it back in your Raspberry Pi. Keep that IMG file in a safe place.

USB Stick

Een USB stick is te vinden in de map: /media

Raspberry Pi automatisch uitschakelen

cronjob om de raspberry pi automatisch uit te schakelen om 22:16:
sudo nano /etc/crontab
16 22 * * * root shutdown -h now

Remote desktop installeren (VNC)

sudo apt-get install xrdp
Met Windows 8 verbinding maken met de RPI gebruik: "Verbinding met extern bureaublad". Op een engelse Windows 8: "Remote desktop connection".

FTP Webserver

sudo apt-get install vsftpd

Now type in "sudo nano /etc/vsftpd.conf" and hit Return / Enter
Search through the file and change the following lines:
anonymous_enable=YES Change To anonymous_enable=NO
#local_enable=YES Change To local_enable=YES
#write_enable=YES Change To write_enable=YES

Also, add a line to the bottom of the file: force_dot_files=YES
Then hold the Ctrl key and press "x", then "y", then the Return / Enter key.
Now restart the FTP server with "sudo servce vsftpd restart"

Vast ip adres instellen voor Raspbian Jessie:

cd /etc
sudo nano dhcpcp.conf

Aan het eind van het bestand deze regels toevoegen (static ip address = IP adres RPI, de rest is het IP adres van je router):

Voor een vaste ethernet koppeling:
interface eth0
static ip_address=192.168.1.101/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

Voor een wifi koppeling:
interface wlan0
static ip_address=192.168.1.101/24
static routers=192.168.1.1
static domain_name_servers=192.168.1.1

Vast ip adres instellen voor Raspbian Wheezy (oude methode):

cd /etc/network
sudo nano interfaces

vervang de regel “iface eth0 inet dhcp” door:
iface eth0 inet static

address 192.168.2.201
netmask 255.255.255.0
network 192.168.2.1
broadcast 192.168.2.255
gateway 192.168.2.254