Difference between revisions of "RPi Chromium"

From eLinux.org
Jump to: navigation, search
(Removed GUI instructions)
(Changed to ping command)
Line 38: Line 38:
  
 
To check if your internet connection is working, enter the following command and press enter at the end.
 
To check if your internet connection is working, enter the following command and press enter at the end.
  host www.raspberrypi.org
+
  ping -c 1 www.raspberrypi.org
  
If your internet connection is working, you should see a response like the following
+
If your internet connection is working, you should see a statistics report which contains the following
  www.raspberrypi.org has address xxx.xxx.xxx.xxx
+
  1 packets transmitted, 1 received, 0% packet loss
  
If you get an error message instead, you have a problem with your internet connection. You must ask somebody to help fix this problem before you can proceed.
+
If you get an error message instead, or a report of 100% packet loss, you have a problem with your internet connection. You must ask somebody to help fix this problem before you can proceed.
  
 
Enter the following command and press enter at the end.
 
Enter the following command and press enter at the end.

Revision as of 09:48, 8 May 2012

Back to RPi Guides.


Adding Chromium web browser to a Raspberry Pi

What does it do?

This guide shows you how to install a Chromium web browser, which should be faster than the standard Debian web browser.

These instructions will show you how to install a software from the command line. This is a very important skill if you wish to progress further with Linux.

What do you need?

  • A Raspberry Pi, model B.
  • A Debian SD card for the Raspberry Pi.
  • A network connection (Ethernet or WiFi).

What skill level is required?

Suitable for absolute beginners. No Linux knowledge is needed.

It is assumed that you have used a computer before, for example a Windows PC.

Overview of this project

You need to

  • Install Chromium software on the Raspberry Pi
  • Start the Chromium web browser

Optionally, you might wish to remove the Chromium browser from your Raspberry Pi.

Installing the software

Insert a Debian SD card in the Raspberry Pi.

Connect the Ethernet cable from your Raspberry Pi to a modem or other internet service. You may also use a WiFi device, but you may need help to get this working.

Connect the power cable. Log in with your username and password.

To check if your internet connection is working, enter the following command and press enter at the end.

ping -c 1 www.raspberrypi.org

If your internet connection is working, you should see a statistics report which contains the following

1 packets transmitted, 1 received, 0% packet loss

If you get an error message instead, or a report of 100% packet loss, you have a problem with your internet connection. You must ask somebody to help fix this problem before you can proceed.

Enter the following command and press enter at the end.

sudo apt-get install chromium-browser

You will be asked for your password. Enter your password and press enter. Note that you will not be able to see your password.

You will be asked for permission (yes/no) to install new software. Press the 'y' key and enter to continue.

Wait for the installation to complete.

Opening the Chromium web browser

Enter the following command and press enter at the end.

startx

Wait for the desktop to finish loading.

Click on the LXDE icon (the strange X) in the bottom-left corner of the screen.

Move your mouse to point to "Internet".

Click on "Chromium Web Browser".

The Chromium web browser will open.

RPiChromiumMenu.jpg

Removing the software

Use these instructions if you wish to remove the software.

Follow the instructions above to install the software, but use this command instead.

sudo apt-get remove chromium-browser