So as the title says “What to do after getting a RasPi” the post will lead you to many ways of starting a RasPi (^).

Raspberry Pi is a small computer, but with lesser processing power so we cannot boot a Windows or Other Biggies (:-P directly). So which OSes are supported?

There are most OSes which are working on a normal PC can be ported to Raspi, but with some predefined constraints in terms of speed and performance. But still the question remains unanswered .. Which OSes does Raspi support? The following Linux Distros which have been officially ported to Raspi’s hardware profile namely.

  • Debian (Raspbian)
  • Fedora (Pidora)
  • XBMC (RaspBMC, OpenELEC)
  • Arch Linux
  • RISC OS (Faster and Compact)
  • NOOBS (New Out Of the Box Software)

So first task would be to select the OS. Now its depending on the function or application. You can define your application as if what is your purpose of the using Raspi. Now all have their pros and cons as discussed below. But before that let me brief you with the steps.

  1. Selecting and Getting the Prerequisites like the hardware components as said earlier.
  2. SD card with Burned Image on it of desired distribution.
  3. That’s It, Boot it Up.

Following are the steps in detail..

Selecting and Getting the Prerequisites:

I have also said in previous post and also repeating the list. It requires following things

  • Raspberry Pi, can be bought from element14.
  • Power Supply or a simple smartphone charger with current rating greater than 700mA (for model B).
  • SDcard, here its SDHC normal digital camera memory cards. for checking if your sdcard works with Raspi visit elinux.org(minimum of 4GB is recommended).
  • Ethernet Cable or WiFi USB module (for internet connection).
  • A TV or Monitor with HDMI or RCA input (for Display).
  • A CASE for protection.

After getting above things you need to connect all of them and configure it.

This is the main task of whole setup process, well it does come only after buying a Raspi *.

But the question is which OS to select. We can find it easy of we cross the SD card images available for download from raspberrypi.org/downloads. So defining the goal is important. If the purpose is to convert TV into a smart TV or want to watch some movies and listen to music we can just use RaspBMC or OpenELEC. Which makes Raspi into a Media Center.

The next is the normal computer Which is a Linux computer functioning normally and can program or run some applications that can be ran on any computer OS such as Debian or Arch Linux or Fedora. so the choice is yours if you are new you recommended is Raspbian the Debian variant with LXDE installed on it.

SD CARD setup:

So as selection is done we need to format it and flash the image downloaded from Raspberry Pi’s website. The steps will be …

  • Format the sd card.

  • Download and flash the .img file on the formatted sd card. This can be done by many ways so for ..

    • Windows users they should download the SD Formatter for formatting the card or a normal formatting tool can also work and Win32DiskImager for flashing the image.
    • Linux users can directly use command line dd if=/path/to/image.img of=/dev/sdX . Beware of this sdX X is the name of SD card. So to know which one is the SD card you can run commands such as lsblk or fdisk -l then depending upon the output select the SD card and run the command dd. There’s also one application named Image Writer that can also help. But before flashing do format the SD card.

So we now have the SD card with image flashed in it. All we need is to boot it up.

  1. Plug the SD card in to the slot
  2. Connect the charger or power supply into that mini USB connector.
  3. Ethernet Cable if necessary
  4. Connect RCA or HDMI cable to TV for display.
  5. Insert the USB keyboard and mouse in to the slot.

If everything goes well after starting up you will be asked for username and password. they are given in description of downloads. Here I have used Raspbian so its pi/raspberry.

Then it should show pi@raspberrypi ~ $ if you’re connected to internet you can just try to type in these commands for making up to date softwares and applications.

sudo apt-get update && sudo apt-get upgrade for Raspbian

pacman -Syu for Arch

End of Post