Difference between revisions of "Raspbian"

From Free Pascal wiki
Jump to navigationJump to search
Line 37: Line 37:
 
<gallery>
 
<gallery>
 
File:Lazarus on Raspberry Pi Raspian Wheezy version 2012-10-28.png|Lazarus on Raspbian Wheezy
 
File:Lazarus on Raspberry Pi Raspian Wheezy version 2012-10-28.png|Lazarus on Raspbian Wheezy
 +
File:fp raspian.png|Free Pascal text mode IDE on Raspbian Wheezy
 
</gallery>
 
</gallery>
  

Revision as of 21:28, 8 December 2013

Raspbian (aka Wheezy) is a free operating system based on the Debian Linux distribution optimized for the Raspberry Pi hardware. Current versions of Raspbian support both Free Pascal and Lazarus.

Installing Free Pascal

Free Pascal is easily installed with the following shell commands:

  sudo apt-get update
  sudo apt-get upgrade
  sudo apt-get install fpc

There are three modes to use Free Pascal on Raspbian:

  • via the shell command fpc. This requires to enter a number of options along with the fpc command.
  • via the shell command fp. This command starts a text-based IDE.
  • via Lazarus, see below

Installing Lazarus

The steps to install Lazarus are very similar to those required for installing Free Pascal:

  sudo apt-get update
  sudo apt-get upgrade
  sudo apt-get install fpc
  sudo apt-get install lazarus

This installs a ready-to-use precompiled version of Lazarus, however not necessarily the newest one.

Compiling from sources

The newest versions of Lazarus are distributed as source code. In order to compile Lazarus from subversion sources see Michell Computing: Lazarus on the Raspberry Pi for details.

Screenshots

Hardware access

See Lazarus on Raspberry Pi for details.

External Links