From 7785d449d30b6b8dbc4308347eb8e6ed79bde0f3 Mon Sep 17 00:00:00 2001 From: Frans Pop Date: Fri, 6 Jan 2006 14:58:31 +0000 Subject: Update of original English documents --- fi/appendix/chroot-install.xml | 19 +------ fi/appendix/preseed.xml | 126 ++++++++++++++--------------------------- fi/appendix/random-bits.xml | 3 +- 3 files changed, 47 insertions(+), 101 deletions(-) (limited to 'fi/appendix') diff --git a/fi/appendix/chroot-install.xml b/fi/appendix/chroot-install.xml index cdd173363..5fc7b3f8e 100644 --- a/fi/appendix/chroot-install.xml +++ b/fi/appendix/chroot-install.xml @@ -1,5 +1,5 @@ - + Installing &debian; from a Unix/Linux System @@ -334,20 +334,6 @@ driver modules in the /etc/modules file into the desired order. Then during boot, each card will be associated with the interface name (eth0, eth1, etc.) that you expect. - - - - - Configure Timezone, Users, and APT - - -Set your timezone, add a normal user, and choose your apt -sources by running - - -# /usr/sbin/base-config new - - @@ -363,7 +349,8 @@ English, install the locales support package and configure it: # dpkg-reconfigure locales -NOTE: Apt must be configured before, ie. during the base-config phase. +NOTE: Apt must be configured beforehand by creating a sources.list and +running apt-get update. Before using locales with character sets other than ASCII or latin1, please consult the appropriate localization HOWTO. diff --git a/fi/appendix/preseed.xml b/fi/appendix/preseed.xml index f576cfd26..8b6b520a9 100644 --- a/fi/appendix/preseed.xml +++ b/fi/appendix/preseed.xml @@ -1,5 +1,5 @@ - + - + Automating the installation using preseeding @@ -31,16 +31,11 @@ example preseed file from &urlset-example-preseed;. Introduction -Preseeding provides a way to set answers to questions without having to manually -enter the answers while the installation is running. This makes it possible to -fully automate most types of installation and even offers some features not -available during normal installations. - - - -Using preseeding it is possible to fill in answers to questions asked during -both the first stage of the installation (before the reboot into the new -system) and the second stage. +Preseeding provides a way to set answers to questions asked during the +installation process, without having to manually enter the answers while +the installation is running. This makes it possible to fully automate most +types of installation and even offers some features not available during +normal installations. @@ -225,16 +220,8 @@ See for details. preseed/late_command: is run just before the reboot - at the end of the first stage of the installation, but before the - /target filesystem has been unmounted - - - base-config/early_command: is run early in the second - stage of the installation when base-config is starting up - - - base-config/late_command: is run at the end of - base-config, just before the login prompt + at the end of the install, but before the /target + filesystem has been unmounted @@ -423,8 +410,8 @@ install, you can use the command debconf-set-selections -c - - Preseeding the first stage of the installation + + Contents of the preseed file The configuration fragments used in this appendix are also available as an @@ -670,7 +657,7 @@ d-i time/zone string US/Eastern Setup of the /etc/apt/sources.list and basic configuration options is fully automated based on your installation method and answers to -earlier questions. Only the two variables below are relevant for preseeding. +earlier questions. Only the three variables below are relevant for preseeding. @@ -678,6 +665,9 @@ earlier questions. Only the two variables below are relevant for preseeding. # You can choose to install non-free and contrib software. #d-i apt-setup/non-free boolean true #d-i apt-setup/contrib boolean true +# To avoid adding security sources, or to use a different server +# than security.debian.org. +#d-i apt-setup/security_host string @@ -767,47 +757,7 @@ d-i grub-installer/with_other_os boolean true - - Finishing up the first stage install - - -# Avoid that last message about the install being complete. -d-i prebaseconfig/reboot_in_progress note - -# This will prevent the installer from ejecting the CD during the reboot, -# which is useful in some situations. -#d-i cdrom-detect/eject boolean false - - - - - - - Preseeding the second stage of the installation - - - Base config - - -# Avoid the introductory message. -base-config base-config/intro note - -# Avoid the final message. -base-config base-config/login note - -# If you installed a display manager, but don't want to start it immediately -# after base-config finishes. -#base-config base-config/start-display-manager boolean false - -# Some versions of the installer can report back on what you've installed. -# The default is not to report back, but sending reports helps the project -# determine what software is most popular and include it on CDs. -#popularity-contest popularity-contest/participate boolean false - - - - - + Package selection @@ -844,22 +794,39 @@ Available tasks as of this writing include: Laptop - - manual package selection - -The last of these will run aptitude. You can also choose to install no tasks, -and force the installation of a set of packages in some other way. We recommend -always including the Standard system task. +You can also choose to install no tasks, and force the installation of a +set of packages in some other way. We recommend always including the +Standard system task. tasksel tasksel/first multiselect Standard system, Desktop environment #tasksel tasksel/first multiselect Standard system, Web server + +# Some versions of the installer can report back on what software you have +# installed, and what software you use. The default is not to report back, +# but sending reports helps the project determine what software is most +# popular and include it on CDs. +#popularity-contest popularity-contest/participate boolean false + + + + + + Finishing up the first stage install + + +# Avoid that last message about the install being complete. +d-i prebaseconfig/reboot_in_progress note + +# This will prevent the installer from ejecting the CD during the reboot, +# which is useful in some situations. +#d-i cdrom-detect/eject boolean false @@ -953,17 +920,10 @@ xserver-xfree86 xserver-xfree86/config/monitor/mode-list \ #d-i preseed/early_command string anna-install some-udeb # This command is run just before the install finishes, but when there is -# still a usable /target directory. -#d-i preseed/late_command string echo foo > /target/etc/bar - -# This command is run just as base-config is starting up. -#base-config base-config/early_command string echo hi mom - -# This command is run after base-config is done, just before the login: -# prompt. This is a good way to install a set of packages you want, or to -# tweak the configuration of the system. -#base-config base-config/late_command \ -# string apt-get install zsh; chsh -s /bin/zsh +# still a usable /target directory. You can chroot to /target and use it +# directly, or use the apt-install and in-target commands to easily install +# packages and run commands in the target system. +#d-i preseed/late_command string apt-install zsh; in-target chsh -s /bin/zsh diff --git a/fi/appendix/random-bits.xml b/fi/appendix/random-bits.xml index 4d39d21cd..4d3fff8f9 100644 --- a/fi/appendix/random-bits.xml +++ b/fi/appendix/random-bits.xml @@ -1,9 +1,8 @@ - + Random Bits -&example-preseed.xml; &files.xml; &chroot-install.xml; &plip.xml; -- cgit v1.2.3