First, the preparatory work
1:wheezy System Mirroring
2:win32diskimager-0.9.5-install
3:sdformatter
4:SD card, I'm using 8G.
Second, installation system
Process: Sdformatter format installation disk->win32diskimager-0.9.5-install write system image to SD card (approximately 3min required)
Third, configure the network
The network configuration of the Wheezy system defaults to DHCP automatically assigning IP addresses.
Here, if you want to configure static routing, you need to configure
(1) The original/etc/network/interfaces content is:
Auto Lo
Iface Lo inet Loopback
Iface eth0 inet DHCP
Allow-hotplug Wlan0
Iface Wlan0 inet Manual
Wpa-roam/etc/wpa_supplicant/wpa_supplicant.conf
Iface Default inet DHCP
Modify the following:
Auto Lo
Iface Lo inet Loopback
Iface eth0 inet Static
Address xxxxx Configure IP addresses here
netmask 255.255.255.0 Subnet Mask
Gateway xxxxxxx Gateways
Allow-hotplug Wlan0
Iface Wlan0 inet Manual
Wpa-roam/etc/wpa_supplicant/wpa_supplicant.conf
(2) DNS configuration file modification
/etc/resolv.conf
NameServer xx.xx.xx.xx modified to the corresponding DNS server address
(3) Restart the Network service networking restart or restart the Raspberry Pi
Test networking after reboot can be sudo apt-get update or open browser test via graphical interface
Iv. Possible problems
If you set the default to enter the Raspberry Pi GUI, may enter a user login interface, but do not know the password, ctrl+alt+f1 command line mode.
Raspberry Pi Configuration command:raspi-config
V. Remote Client Login
PC-side required: Vncviews Client
Raspberrypi:sudo Apt-get Install Tightvncserver
sudo tightvncserver a password is set here for authentication for remote login.
Open Vncviewer Enter the password for the RASPBERRPIIP address input setting to log in.
Six, set the Tightvncserver boot from the boot
Refer to: http://www.douban.com/note/317673056/
Copyright notice: This blog for the original article reproduced please indicate the source
Reference:
http://blog.csdn.net/liang890319/article/details/8646125
Raspberry Pi wheezy installation and Telnet configuration