I have started using Raspberry Pi today, and I can’t control myself from saying that it is AWESOME!

RPi has got a ARM1176JZF-S 700 MHz processor with 512MB RAM. I have attached a 8GB class 10 SD card to it.

Setting up RPi in Windows 7

  1. Preparing SD Card:

  2. Download OS:

  3. Burn OS image to SD card:

    • Download and install Win32DiskImager
    • Select Raspbian image file and write it to SD Card
  4. Setting up connections:

    • Inserd SD card to RPi
    • Power up board using micro USB cable
    • Connect it to a monitor using HDMI cable
    • Connect keyboard and mouse via USB
  5. Boot from RPi You can customize different options on booting process such as ‘Change Password’, ‘Enable SSH’, etc. Note that the default user/password is pi/raspberry.

Thats all! Raspbian has booted up running on RPi!

RPi_connection_to_monitor

RPi_Raspbian_os

SSHing to RPi:

I have connected a ethernet cable from laptop to RPi. Laptop have WiFi access, which has to be shared to LAN. So, on start button, search for ‘View network connections’, from the opened window right click on ‘Wireless Network Connection’ and choose ‘properties’. Goto ‘sharing’ tab and check ‘Allow other network users to connect through this computer’s internet connection’ along with selecting Home networking connection as ‘Local Area Connection’. Now the RPi has got LAN Access.

To get IP address of RPi, you can either get LAN IP from

ipconfig

and run a ping scan with command

FOR /L %i IN (i,i,254) DO ping -n 1 192.168.1.%i `<br>`| FIND /i "Reply">> c:\lanipaddresses.txt

where 192.168.1.%i is replaced with LAN’s IP;

or try command

arp -a

Once the IP of RPi is known, you can SSH using Putty.

RPi_ssh_with_LAN_cable

RPi_putty_ssh

Troubleshooting

If the monitor shows ‘No Signal’ even after its connected to RPi with bootable SD card, then the problem may be because RPi deliver weak HDMI signals than it required to function. Using a short HDMI cable can solve problem. Also, making the following changes to config.txt in SD card can help:

hdmi_force_hotplug=1

–> makes sure the Pi believes the monitor/TV is really there

config_hdmi_boost=4

–> or even higher (up to 9) if your display needs a stronger signal

hdmi_group=1

–> if the display is a computer monitor,

hdmi_group=2

–> if it is a TV