Download Raspbian and check hash
Copy image to SD card with dd.
Boot Raspberry Pi with LAN access.
Try SSH to Raspberry Pi: ssh pi@raspberrypi password raspberry
If not successfull find IP with help of router interface or scan network for open SSH port: nmap -p22 192.168.1.0/24. Now SSH to Raspberry Pi: ssh pi@<ip address> password raspberry
For wi-fi edit /etc/wpa_supplicant/wpa_supplicant.conf:
network={
ssid="SSID"
psk="PASSPHRASE"
id_str="DESCRIPTION"
}Shutdown, disconnect LAN, insert Wi-Pi dongle, boot, try to SSH to pi@raspberrypi or find new IP.
Basic config: sudo raspi-config
Update: sudo apt-get update && sudo apt-get upgrade
Remote desktop: sudo apt-get install xrdp. Connect with rdesktop -u pi -g 1400x960 -k de raspberrypi &.