🔎 
  
Live Systems Handbuch

Über dieses Handbuch

Über dieses Handbuch

This manual serves as a single access point to all documentation related to the ${project} and in particular applies to the software produced by the project for the Debian 9.0 “${stable}” release. An up-to-date version can always be found at http://live-systems.org/

While live-manual is primarily focused on helping you build a live system and not on end-user topics, an end user may find some useful information in these sections: The Basics covers downloading prebuilt images and preparing images to be booted from media or the network, either using the web builder or running live-build directly on your system. Customizing run time behaviours describes some options that may be specified at the boot prompt, such as selecting a keyboard layout and locale, and using persistence.

Einige der erwähnten Befehle im Text müssen als Superuser ausgeführt werden. Dies kann entweder dadurch erreicht werden, indem zuerst auf den root Benutzer gewechselt wird mittels su oder durch die Benutzung von sudo. Um die Befehle welche als unprivilegierter Benutzer ausgeführt werden können und diesen welche Superuser Rechte benötigen, sind den Befehlen $ respektive # vorangestellt. Dieses Symbol ist nicht Teil des Befehls.

Für die Ungeduldigen

Obowhl wir denken dass alles in diesem Handbuch mehr oder weniger für die einen oder anderen Benutzer wichtig ist, sind wir uns bewusst, dass es sich um viel Material handelt. Für ein schnelles Erfolgserlebnis in der Anwendung dieser Software schlagen wir die folgende Reihenfolge vor, bevor sie sich mit den Details befassen:

First, read this chapter, About this manual, from the beginning and ending with the Terms section. Next, skip to the three tutorials at the front of the Examples section designed to teach you image building and customization basics. Read Using the examples first, followed by Tutorial 1: A default image, Tutorial 2: A web browser utility and finally Tutorial 3: A personalized image. By the end of these tutorials, you will have a taste of what can be done with live systems.

We encourage you to return to more in-depth study of the manual, perhaps next reading The basics, skimming or skipping Building a netboot image, and finishing by reading the Customization overview and the chapters that follow it. By this point, we hope you are thoroughly excited by what can be done with live systems and motivated to read the rest of the manual, cover-to-cover.

Begriffe

●  Live system: An operating system that can boot without installation to a hard drive. Live systems do not alter local operating system(s) or file(s) already installed on the computer hard drive unless instructed to do so. Live systems are typically booted from media such as CDs, DVDs or USB sticks. Some may also boot over the network (via netboot images, see Building a netboot image), and over the Internet (via the boot parameter fetch=URL, see Webbooting).

●  Live medium: As distinct from live system, the live medium refers to the CD, DVD or USB stick where the binary produced by live-build and used to boot the live system is written. More broadly, the term also refers to any place where this binary resides for the purposes of booting the live system, such as the location for the network boot files.

●  ${project}: The project which maintains, among others, the live-boot, live-build, live-config, live-tools and live-manual packages.

●  Host system: The environment used to create the live system.

●  Target system: The environment used to run the live system.

●  live-boot: A collection of scripts used to boot live systems.

●  live-build: A collection of scripts used to build customized live systems.

●  live-config: A collection of scripts used to configure a live system during the boot process.

●  live-tools: A collection of additional scripts used to perform useful tasks within a running live system.

●  live-manual: This document is maintained in a package called live-manual.

●  Debian Installer (d-i): The official installation system for the Debian distribution.

●  Boot parameters: Parameters that can be entered at the bootloader prompt to influence the kernel or live-config.

●  chroot: The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting.

●  Binary image: A file containing the live system, such as live-image-i386.hybrid.iso or live-image-i386.img.

●  Target distribution: The distribution upon which your live system will be based. This can differ from the distribution of your host system.

●  stable/testing/unstable: The stable distribution, currently codenamed ${stable}, contains the latest officially released distribution of Debian. The testing distribution, temporarily codenamed ${testing}, is the staging area for the next stable release. A major advantage of using this distribution is that it has more recent versions of software relative to the stable release. The unstable distribution, permanently codenamed sid, is where active development of Debian occurs. Generally, this distribution is run by developers and those who like to live on the edge. Throughout the manual, we tend to use codenames for the releases, such as ${testing} or sid, as that is what is supported by the tools themselves.

Autoren

Liste der Autoren (in alphabetischer Reihenfolge):

●  Ben Armstrong

●  Brendan Sleight

●  Carlos Zuferri

●  Chris Lamb

●  Daniel Baumann

●  Franklin Piat

●  Jonas Stein

●  Kai Hendry

●  Marco Amadori

●  Mathieu Geli

●  Matthias Kirschner

●  Richard Nelson

●  Trent W. Buck

Contributing to this document

This manual is intended as a community project and all proposals for improvements and contributions are extremely welcome. Please see the section Contributing to the project for detailed information on how to fetch the commit key and make good commits.

Applying changes

In order to make changes to the English manual you have to edit the right files in manual/en/ but prior to the submission of your contribution, please preview your work. To preview the live-manual, ensure the packages needed for building it are installed by executing:

 # apt-get install make po4a ruby ruby-nokogiri sisu-complete  

You may build the live-manual from the top level directory of your Git checkout by executing:

 $ make build  

Since it takes a while to build the manual in all supported languages, authors may find it convenient to use one of the fast proofing shortcuts when reviewing the new documentation they have added to the English manual. Using PROOF=1 builds live-manual in html format, but without the segmented html files, and using PROOF=2 builds live-manual in pdf format, but only the A4 and letter portraits. That is why using either of the PROOF= possibilities can save up a considerable amount of time, e.g:

 $ make build PROOF=1  

When proofing one of the translations it is possible to build only one language by executing, e.g:

 $ make build LANGUAGES=de  

It is also possible to build by document type, e.g:

 $ make build FORMATS=pdf  

Or combine both, e.g:

 $ make build LANGUAGES=de FORMATS=html  

After revising your work and making sure that everything is fine, do not use make commit unless you are updating translations in the commit, and in that case, do not mix changes to the English manual and translations in the same commit, but use separate commits for each. See the Translation section for more details.

Translation

In order to translate live-manual, follow these steps depending on whether you are starting a translation from scratch or continue working on an already existing one:

●  Start a new translation from scratch

●  Translate the about_manual.ssi.pot, about_project.ssi.pot and index.html.in.pot files in manual/pot/ to your language with your favourite editor (such as poedit) and send the translated .po files to the mailing list to check their integrity. live-manual's integrity check not only ensures that the .po files are 100% translated but it also detects possible errors.

●  Once checked, to enable a new language in the autobuild it is enough to add the initial translated files to manual/po/${LANGUAGE}/ and run make commit. And then, edit manual/_sisu/home/index.html adding the name of the language and its name in English between brackets.

●  Continue with an already started translation

●  If your target language has already been added, you can randomly continue translating the remaining .po files in manual/po/${LANGUAGE}/ using your favourite editor (such as poedit).

●  Do not forget that you need to run make commit to ensure that the translated manuals are updated from the .po files and then you can review your changes launching make build before git add ., git commit -m “Translating...” and git push. Remember that since make build can take a considerable amount of time, you can proofread languages individually as explained in Applying changes

After running make commit you will see some text scroll by. These are basically informative messages about the processing status and also some hints about what can be done in order to improve live-manual. Unless you see a fatal error, you usually can proceed and submit your contribution.

live-manual comes with two utilities that can greatly help translators to find untranslated and changed strings. The first one is “make translate”. It launches an script that tells you in detail how many untranslated strings there are in each .po file. The second one, the “make fixfuzzy” target, only acts upon changed strings but it helps you to find and fix them one by one.

Keep in mind that even though these utilities might be really helpful to do translation work on the command line, the use of an specialized tool like poedit is the recommended way to do the task. It is also a good idea to read the Debian localization (l10n) documentation and, specifically to live-manual, the Guidelines for translators.

Note: You can use make clean to clean your git tree before pushing. This step is not compulsory thanks to the .gitignore file but it is a good practice to avoid committing files involuntarily.



License: This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

The complete text of the GNU General Public License can be found in /usr/share/common-licenses/GPL-3 file.


≅ SiSU Spine ፨ (object numbering & object search)

(web 1993, object numbering 1997, object search 2002 ...) 2023