Lazarus directory permissions on Linux and Unix

From Lazarus wiki
Revision as of 15:28, 14 July 2016 by Arent (talk | contribs)
Jump to navigationJump to search

English (en) magyar (hu)

Common misconceptions

When you install Lazarus on a *nix system (Linux/MacOS X), using your distro's package system, Lazarus binaries and source files are installed in a location where typically only root has write access.
Somehow this fact has lead to the misconception that a user without root privileges cannot rebuild Lazarus (which is done when you install new packages), and therefor one would need to change the Lazarus directory permissions.
This, however is definitely not true.

When you rebuild Lazarus in this scenario, Lazarus will detect that it does not have write access to the place where the Lazarus binary is installed. It will then build the new Lazarus in a subfolder of the primary config path. When the IDE has finished building the new Lazarus binary, it will launch startlazarus. The startlazarus application will detect that there is a more recent lazarus binary somewhere in your primary config path and it will launch that binary instead of the original one.
This is also the reason why it is better to start Lazarus by means of the startlazarus application.

Possible problems when trying to rebuild Lazarus in this scenario

When rebuiling the IDE, you should not select the "Clean all" options in the "Configure Build Lazarus" dialog, beacuse this option will try to delete (amongst others) all of Lazarus' .ppu files, to which you do not have write access.

If you want to modify the Lazarus source code

Users that want to be able to modify the Lazarus source code (e.g. for fixing bugs and helping us improving Lazarus) should install the Lazarus sources in a subfolder of their home directory and build Lazarus from source (see Getting_Lazarus#Getting_Lazarus_SVN_development_version and Getting_Lazarus#Compiling_and_installing_Lazarus).
This is a common *nix practice.