Merge remote-tracking branch 'upstream/master'
authorMichael Prokop <mika@grml.org>
Wed, 27 May 2020 11:59:06 +0000 (13:59 +0200)
committerMichael Prokop <mika@grml.org>
Wed, 27 May 2020 11:59:06 +0000 (13:59 +0200)
34 files changed:
.gitignore [new file with mode: 0644]
Makefile
backend/initramfs-tools/live.hook
components/9990-cmdline-old
components/9990-main.sh
components/9990-misc-helpers.sh
components/9990-networking.sh
components/9990-overlay.sh
debian/changelog
debian/compat [deleted file]
debian/control
debian/copyright
debian/gitlab-ci.yml [new file with mode: 0644]
debian/live-boot-grml.bug-presubj
debian/rules
manpages/Makefile
manpages/bin/update-version.sh
manpages/en/live-boot.7
manpages/en/persistence.conf.5
manpages/es/live-boot.es.7 [deleted file]
manpages/es/persistence.conf.es.5 [deleted file]
manpages/fr/live-boot.fr.7 [deleted file]
manpages/fr/persistence.conf.fr.5 [deleted file]
manpages/ja/live-boot.ja.7 [deleted file]
manpages/ja/persistence.conf.ja.5 [deleted file]
manpages/po/es/live-boot.7.po
manpages/po/es/persistence.conf.5.po
manpages/po/fr/live-boot.7.po
manpages/po/fr/persistence.conf.5.po
manpages/po/ja/live-boot.7.po
manpages/po/ja/persistence.conf.5.po
manpages/po4a.cfg [deleted file]
manpages/pot/live-boot.7.pot
manpages/pot/persistence.conf.5.pot

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..56fb421
--- /dev/null
@@ -0,0 +1,4 @@
+manpages/po4a.cfg
+manpages/es
+manpages/fr
+manpages/ja
index 7be7e68..c64c8c3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -32,13 +32,13 @@ test:
        else \
                echo "W: checkbashisms - command not found"; \
                echo "I: checkbashisms can be obtained from: "; \
-               echo "I:   http://git.debian.org/?p=devscripts/devscripts.git"; \
+               echo "I:   https://salsa.debian.org/debian/devscripts.git"; \
                echo "I: On Debian based systems, checkbashisms can be installed with:"; \
                echo "I:   apt-get install devscripts"; \
        fi
 
 build:
-       @echo "Nothing to build."
+       $(MAKE) -C $(CURDIR)/manpages
 
 install:
        # Installing components
index ff5fa70..1efa687 100755 (executable)
@@ -242,11 +242,11 @@ fi
 
 [ "${QUIET}" ] || echo -n " dns"
 
-# /lib/libnss_dns.so.*:a   DNS
-# /lib/libnss_files.so.*:  /etc/hosts and /etc/passwd
-# /lib/libnss_compat.so.*: /etc/passwd
+# libnss_dns.so.*:    DNS
+# libnss_files.so.*:  /etc/hosts and /etc/passwd
+# libnss_compat.so.*: /etc/passwd
 
-for _SHLIB in $(find /lib/ -name 'libnss_dns.so.*' -o -name 'libnss_files.so.*')
+for _SHLIB in $(find /lib /usr/lib -name 'libnss_dns.so.*' -o -name 'libnss_files.so.*')
 do
        copy_exec "${_SHLIB}"
 done
index 6ac6eb5..1504e1e 100755 (executable)
@@ -216,7 +216,7 @@ Cmdline_old ()
                                ;;
 
                        persistence-label=*)
-                               custom_overlay_label="${_PARAMETER#persistence-label=*}"
+                               custom_overlay_label=$(echo ${_PARAMETER#persistence-label=*} | sed -e 's/,/ /g')
                                ;;
 
                        nopersistence)
index b9bd71b..b0e2a7b 100755 (executable)
@@ -33,11 +33,11 @@ Live ()
        # Needed here too because some things (*cough* udev *cough*)
        # changes the timeout
 
-       if [ ! -z "${NETBOOT}" ] || [ ! -z "${FETCH}" ] || [ ! -z "${HTTPFS}" ] || [ ! -z "${FTPFS}" ]
+       if [ -n "${NETBOOT}" ] || [ -n "${FETCH}" ] || [ -n "${HTTPFS}" ] || [ -n "${FTPFS}" ]
        then
                if do_netmount
                then
-                       livefs_root="${mountpoint}"
+                       livefs_root="${mountpoint?}"
                else
                        panic "Unable to find a live file system on the network"
                fi
@@ -52,13 +52,22 @@ Live ()
                else
                        if [ -x /usr/bin/memdiskfind ]
                        then
-                               MEMDISK=$(/usr/bin/memdiskfind)
-
-                               if [ $? -eq 0 ]
+                               if MEMDISK=$(/usr/bin/memdiskfind)
                                then
                                        # We found a memdisk, set up phram
-                                       modprobe phram phram=memdisk,${MEMDISK}
-                                       modprobe phram phram=memdisk,${MEMDISK}
+                                       # Sometimes "modprobe phram" can not successfully create /dev/mtd0.
+                                       # Have to try several times.
+                                       max_try=20
+                                       while [ ! -c /dev/mtd0 ] && [ "$max_try" -gt 0 ]; do
+                                         modprobe phram "phram=memdisk,${MEMDISK}"
+                                         sleep 0.2
+                                         if [ -c /dev/mtd0 ]; then
+                                               break
+                                         else
+                                               rmmod phram
+                                         fi
+                                         max_try=$((max_try - 1))
+                                       done
 
                                        # Load mtdblock, the memdisk will be /dev/mtdblock0
                                        modprobe mtdblock
@@ -77,7 +86,7 @@ Live ()
                                fi
 
                                sleep 1
-                               i="$(($i + 1))"
+                               i=$((i + 1))
                        done
                fi
        fi
@@ -121,10 +130,10 @@ Live ()
 
        if [ -n "${MODULETORAMFILE}" ] || [ -n "${PLAIN_ROOT}" ]
        then
-               setup_unionfs "${livefs_root}" "${rootmnt}"
+               setup_unionfs "${livefs_root}" "${rootmnt?}"
        else
                mac="$(get_mac)"
-               mac="$(echo ${mac} | sed 's/-//g')"
+               mac="$(echo "${mac}" | sed 's/-//g')"
                mount_images_in_directory "${livefs_root}" "${rootmnt}" "${mac}"
        fi
 
@@ -156,16 +165,30 @@ Live ()
                fi
        fi
 
+       if [ -f /etc/hostname ] && ! grep -E -q -v '^[[:space:]]*(#|$)' "${rootmnt}/etc/hostname"
+       then
+               log_begin_msg "Copying /etc/hostname to ${rootmnt}/etc/hostname"
+               cp -v /etc/hostname "${rootmnt}/etc/hostname"
+               log_end_msg
+       fi
+
+       if [ -f /etc/hosts ] && ! grep -E -q -v '^[[:space:]]*(#|$|(127.0.0.1|::1|ff02::[12])[[:space:]])' "${rootmnt}/etc/hosts"
+       then
+               log_begin_msg "Copying /etc/hosts to ${rootmnt}/etc/hosts"
+               cp -v /etc/hosts "${rootmnt}/etc/hosts"
+               log_end_msg
+       fi
+
        if [ -L /root/etc/resolv.conf ] ; then
                # assume we have resolvconf
                DNSFILE="${rootmnt}/etc/resolvconf/resolv.conf.d/base"
        else
                DNSFILE="${rootmnt}/etc/resolv.conf"
        fi
-       if [ -f /etc/resolv.conf ] && ! grep -E -q -v '^[[:space:]]*#|^[[:space:]]*$' ${DNSFILE}
+       if [ -f /etc/resolv.conf ] && ! grep -E -q -v '^[[:space:]]*(#|$)' "${DNSFILE}"
        then
                log_begin_msg "Copying /etc/resolv.conf to ${DNSFILE}"
-               cp -v /etc/resolv.conf ${DNSFILE}
+               cp -v /etc/resolv.conf "${DNSFILE}"
                log_end_msg
        fi
 
@@ -178,8 +201,8 @@ Live ()
        # this includes code that checks what is mounted on /lib/live/mount/*
        # (eg: grep /lib/live /proc/mount)
        # XXX: to be removed before the bullseye release
-       mkdir -p ${rootmnt}/lib/live/mount
-       mount --rbind /run/live ${rootmnt}/lib/live/mount
+       mkdir -p "${rootmnt}/lib/live/mount"
+       mount --rbind /run/live "${rootmnt}/lib/live/mount"
 
        Fstab
 
index ef3688e..c7a82fb 100755 (executable)
@@ -495,6 +495,14 @@ is_supported_fs ()
        fi
 
        # Try to look if it is already supported by the kernel
+       # For ntfs, since user space program ntfs-3g will be used. Check ntfs-3g instead of kernel module.
+       if [ "${fstype}" = "ntfs" ]; then
+               if type ntfs-3g >/dev/null 2>&1; then
+                       return 0
+               else
+                       return 1
+               fi
+       fi
        if grep -q ${fstype} /proc/filesystems
        then
                return 0
@@ -795,7 +803,7 @@ mount_persistence_media ()
                then
                        mount_opts="ro,noatime"
                fi
-               if mount -t "${fstype}" -o "${mount_opts}" "${device}" "${backing}" >/dev/null
+               if mount -t "${fstype}" -o "${mount_opts}" "${device}" "${backing}" >/dev/null 2>&1
                then
                        echo ${backing}
                        return 0
@@ -1398,8 +1406,8 @@ do_union ()
                        # + a workdir to become mounted
                        # + workdir and upperdir to reside under the same mount
                        # + workdir and upperdir to be in separate directories
-                       mkdir "${unionrw}/rw"
-                       mkdir "${unionrw}/work"
+                       mkdir -p "${unionrw}/rw"
+                       mkdir -p "${unionrw}/work"
                        unionmountopts="-o noatime,lowerdir=${unionro},upperdir=${unionrw}/rw,workdir=${unionrw}/work"
                        ;;
        esac
index 9cc3674..92c66ee 100755 (executable)
@@ -128,9 +128,17 @@ do_netsetup ()
 
                if [ -n "${interface}" ]
                then
+                       # HWADDR used by do_iscsi from 9990-mount-iscsi.sh
+                       # shellcheck disable=SC2034
                        HWADDR="$(cat "/sys/class/net/${interface}/address")"
                fi
 
+               if [ ! -e "/etc/hostname" ] && [ -n "${HOSTNAME}" ]
+               then
+                       echo "Creating /etc/hostname"
+                       echo "${HOSTNAME}" > /etc/hostname
+               fi
+
                # Only create /etc/hosts if FQDN is known (to let 'hostname -f' query
                # this file). Otherwise DNS will be queried to determine the FQDN.
                if [ ! -e "/etc/hosts" ] && [ -n "${DNSDOMAIN}" ]
@@ -154,7 +162,6 @@ EOF
                        if [ -n "${DNSDOMAIN}" ]
                        then
                                echo "domain ${DNSDOMAIN}" > /etc/resolv.conf
-                               echo "search ${DNSDOMAIN}" >> /etc/resolv.conf
                        fi
 
                        for i in ${IPV4DNS0} ${IPV4DNS1} ${IPV4DNS1} ${DNSSERVERS}
@@ -164,6 +171,14 @@ EOF
                                        echo "nameserver $i" >> /etc/resolv.conf
                                fi
                        done
+
+                       if [ -n "${DOMAINSEARCH}" ]
+                       then
+                               echo "search ${DOMAINSEARCH}" >> /etc/resolv.conf
+                       elif [ -n "${DNSDOMAIN}" ]
+                       then
+                               echo "search ${DNSDOMAIN}" >> /etc/resolv.conf
+                       fi
                fi
 
                # Check if we have a network device at all
index 61b1f26..8350502 100755 (executable)
@@ -195,12 +195,15 @@ setup_unionfs ()
                        do
                                media="$(echo ${media} | tr ":" " ")"
 
-                               case ${media} in
-                                       ${custom_overlay_label}=*)
-                                               device="${media#*=}"
-                                               overlay_devices="${overlay_devices} ${device}"
-                                               ;;
-                                esac
+                               for overlay_label in ${custom_overlay_label}
+                               do
+                                       case ${media} in
+                                               ${overlay_label}=*)
+                                                       device="${media#*=}"
+                                                       overlay_devices="${overlay_devices} ${device}"
+                                                       ;;
+                                       esac
+                               done
                        done
                fi
        elif [ -n "${NFS_COW}" ] && [ -z "${NOPERSISTENCE}" ]
@@ -307,6 +310,12 @@ setup_unionfs ()
                chmod 1777 "${rootmnt}"/tmp
        fi
 
+       # Correct the permission of /var/tmp:
+       if [ -d "${rootmnt}/var/tmp" ]
+       then
+               chmod 1777 "${rootmnt}"/var/tmp
+       fi
+
        # Adding custom persistence
        if [ -n "${PERSISTENCE}" ] && [ -z "${NOPERSISTENCE}" ]
        then
index 7055ec1..8f9b668 100644 (file)
@@ -1,3 +1,25 @@
+live-boot (1:20190614) unstable; urgency=medium
+
+  [ Roland Clobus ]
+  * The homepage is https://wiki.debian.org/DebianLive
+  * Used the same text for po4a as in live-manual.
+  * Updated URL to the homepage and manual.
+  * Fixed Lintian warning: manpage-section-mismatch
+  * Always rebuild po4a.cfg This is needed to ensure that new languages
+    will automatically be found
+  * New Build-Depends: po4a for the translation files
+  * Updated the translation files. The translators can now update their
+    translations.
+
+  [ Benjamin Drung ]
+  * Also search for libnss_*.so files in /usr/lib (Closes: #930419)
+
+  [ Luca Boccassi ]
+  * Set Rules-Requires-Root: no
+  * Set Standards-Version to 4.3.0
+
+ -- Luca Boccassi <bluca@debian.org>  Fri, 14 Jun 2019 10:55:07 +0100
+
 live-boot (1:20180603+grml.3) unstable; urgency=medium
 
   * [d189b07] Ensure locating libnss* files doesn't fail on merged-usr
diff --git a/debian/compat b/debian/compat
deleted file mode 100644 (file)
index f599e28..0000000
+++ /dev/null
@@ -1 +0,0 @@
-10
index 6a54689..e20fe5e 100644 (file)
@@ -2,11 +2,15 @@ Source: live-boot
 Section: misc
 Priority: optional
 Maintainer: Grml Team <team@grml.org>
+Uploaders: Michael Prokop <mika@grml.org>
 Build-Depends:
- debhelper (>= 10),
-Standards-Version: 4.1.3
+ debhelper-compat (= 12),
+ po4a,
+Standards-Version: 4.4.1
+Rules-Requires-Root: no
+Homepage: https://wiki.debian.org/DebianLive
 Homepage: http://live.debian.net/devel/live-boot/
-Vcs-Browser: http://git.grml.org/?p=live-boot-grml.git
+Vcs-Browser: https://git.grml.org/?p=live-boot-grml.git
 Vcs-Git: git://git.grml.org/live-boot-grml.git
 Origin: Grml
 Bugs: mailto:bugs@grml.org
@@ -48,7 +52,7 @@ Multi-Arch: foreign
 Depends:
  ${misc:Depends},
 Description: Live System Boot Components (documentation)
- The Live Systems project maintains the components to build Debian based Live
+ The Debian Live project maintains the components to build Debian based Live
  systems and the official Debian Live images themselves.
  .
  live-boot contains the components to configure a live system during the boot
@@ -74,7 +78,7 @@ Replaces:
 Provides:
  live-boot-backend,
 Description: Live System Boot Components (initramfs-tools backend)
- The Live Systems project maintains the components to build Debian based Live
+ The Debian Live project maintains the components to build Debian based Live
  systems and the official Debian Live images themselves.
  .
  live-boot contains the components to configure a live system during the boot
index 68dae48..01335b0 100644 (file)
@@ -1,9 +1,10 @@
 Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: live-boot
-Upstream-Contact: Live Systems Project <debian-live@lists.debian.org>
+Upstream-Contact: Debian Live Project <debian-live@lists.debian.org>
 
 Files: *
-Copyright: 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
+Copyright: 2016-2020 The Debian Live team
+           2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
            2005-2008 Canonical Ltd. <http://www.cannonical.com/>
            2008 Chris Lamb <chris@debian.org>
            2006-2007 Marco Amadori <marco.amadori@gmail.com>
diff --git a/debian/gitlab-ci.yml b/debian/gitlab-ci.yml
new file mode 100644 (file)
index 0000000..5f4bbdc
--- /dev/null
@@ -0,0 +1,12 @@
+image: registry.salsa.debian.org/salsa-ci-team/ci-image-git-buildpackage:latest
+
+pages:
+  stage: deploy
+  artifacts:
+    paths:
+      - public
+  only:
+    - master
+  script:
+    - gitlab-ci-git-buildpackage-all
+    - gitlab-ci-aptly
index d0690ee..b870142 100644 (file)
@@ -1,7 +1,7 @@
 Before submitting a bug report against live-boot, please make sure
 that you have read our guidelines for live systems bug reports:
 
-  http://live-systems.org/manual/
+  https://live-team.pages.debian.net/live-manual/html/live-manual/bugs.en.html
 
 By providing the required information as outlined in the guidelines makes
 sure that we can optimally reproduce and fix bugs, not doing so wastes a
index a5df4d6..e19aca4 100755 (executable)
@@ -13,5 +13,5 @@ override_dh_auto_install:
        mkdir -p debian/live-boot-grml-initramfs-tools/usr/share
        mv debian/tmp/usr/share/initramfs-tools debian/live-boot-grml-initramfs-tools/usr/share
 
-override_dh_install:
-       dh_install --fail-missing
+override_dh_missing:
+       dh_missing --fail-missing
index d6c9e3a..ea22216 100644 (file)
@@ -23,14 +23,12 @@ build: check po4a.cfg
        @if [ ! -x "$$(which po4a 2>/dev/null)" ]; \
        then \
                echo "E: po4a - command not found"; \
-               echo "I: po4a can be obtained from:"; \
-               echo "I:   http://po4a.alioth.debian.org/"; \
-               echo "I: On Debian based systems, po4a can be installed with:"; \
-               echo "I:   apt-get install po4a"; \
+               echo "I: po4a can be obtained from https://po4a.org"; \
+               echo "I: On Debian based systems, po4a can be installed with 'apt-get install po4a'."; \
                exit 1; \
        fi
 
-       po4a --copyright-holder "Live Systems Project" --keep 0 --package-name live-boot --package-version $(shell dpkg-parsechangelog -S Version) po4a.cfg
+       po4a --copyright-holder "Debian Live Project" --keep 0 --package-name live-boot --package-version $(shell cd ..;dpkg-parsechangelog -S Version) po4a.cfg
 
 clean:
        rm -rf $(LANGUAGES)
@@ -55,3 +53,5 @@ check:
        fi
        
        @echo " done!"
+
+.PHONY: po4a.cfg
index c549429..0935d39 100755 (executable)
@@ -1,6 +1,7 @@
 #!/bin/sh
 
 ## live-boot(7) - System Boot Components
+## Copyright (C) 2016-2020 The Debian Live team
 ## Copyright (C) 2006-2015 Daniel Baumann <mail@daniel-baumann.ch>
 ##
 ## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
@@ -25,7 +26,7 @@ for MANPAGE in en/*
 do
        SECTION="$(basename ${MANPAGE} | awk -F. '{ print $2 }')"
 
-       sed -i -e "s|^.TH.*$|.TH ${PROGRAM} ${SECTION} ${DATE} ${VERSION} \"Live Systems Project\"|" ${MANPAGE}
+       sed -i -e "s|^.TH.*$|.TH ${PROGRAM} ${SECTION} ${DATE} ${VERSION} \"Debian Live Project\"|" ${MANPAGE}
 done
 
 # European date format
index 3a8c1a9..788e351 100644 (file)
@@ -1,4 +1,4 @@
-.TH LIVE\-BOOT 7 2015\-09\-22 5.0~a5-1 "Live Systems Project"
+.TH LIVE\-BOOT 7 2015\-09\-22 5.0~a5-1 "Debian Live Project"
 
 .SH NAME
 \fBlive\-boot\fR \- System Boot Components
@@ -28,27 +28,27 @@ These environment variables can only be set in the configuration files:
 
 .TP
 \fBDISABLE_CDROM\fR=[\fItrue\fR|\fIfalse\fR]
-Disable support for booting from CD-ROMs.  If set to '\fIy\fR' mkinitramfs will build an initramfs without the kernel modules for reading CD-ROMs.
+Disable support for booting from CD-ROMs.  If set to '\fItrue\fR' mkinitramfs will build an initramfs without the kernel modules for reading CD-ROMs.
 
 .TP
 \fBDISABLE_FAT\fR=[\fItrue\fR|\fIfalse\fR]
-Disable support for booting from FAT file systems.  If set to '\fIy\fR' mkinitramfs will build an initramfs without the kernel module vfat and some nls_* modules.
+Disable support for booting from FAT file systems.  If set to '\fItrue\fR' mkinitramfs will build an initramfs without the kernel module vfat and some nls_* modules.
 
 .TP
 \fBDISABLE_FUSE\fR=[\fItrue\fR|\fIfalse\fR]
-Disable support for booting from FUSE-based file systems.  If set to '\fIy\fR' mkinitramfs will build an initramfs without the kernel module fuse and file systems that depend on it (like curlftpfs and httpfs2).
+Disable support for booting from FUSE-based file systems.  If set to '\fItrue\fR' mkinitramfs will build an initramfs without the kernel module fuse and file systems that depend on it (like curlftpfs and httpfs2).
 
 .TP
 \fBDISABLE_NTFS\fR=[\fItrue\fR|\fIfalse\fR]
-Disable support for booting from NTFS file systems.  If set to '\fIy\fR' mkinitramfs will build an initramfs without the kernel module ntfs.
+Disable support for booting from NTFS file systems.  If set to '\fItrue\fR' mkinitramfs will build an initramfs without the kernel module ntfs.
 
 .TP
 \fBDISABLE_USB\fR=[\fItrue\fR|\fIfalse\fR]
-Disable support for booting from USB devices.  If set to '\fIy\fR' mkinitramfs will build an initramfs without the kernel module sd_mod.
+Disable support for booting from USB devices.  If set to '\fItrue\fR' mkinitramfs will build an initramfs without the kernel module sd_mod.
 
 .TP
 \fBMINIMAL\fR=[\fItrue\fR|\fIfalse\fR]
-Build a minimal initramfs.  If set to '\fIy\fR' mkinitramfs will build an initramfs without some udev scripts and without rsync.
+Build a minimal initramfs.  If set to '\fItrue\fR' mkinitramfs will build an initramfs without some udev scripts and without rsync.
 
 .TP
 \fBPERSISTENCE_FSCK\fR=[\fItrue\fR|\fIfalse\fR]
@@ -159,8 +159,8 @@ live\-boot will look for persistency files in the root directory of a partition,
 Filesystem changes are not saved back to persistence media. In particular, overlays and netboot NFS mounts are mounted read-only.
 .IP "\fBpersistence\-storage\fR=\fITYPE1\fR,\fITYPE2\fR ... \fITYPEn\fR" 4
 This option determines which types of persistence storage to consider when probing for persistence media. If "filesystem" is in the list, filesystems with matching labels will be used; if "file" is in the list, all filesystems will be probed for archives and image files with matching filenames. The default is "file,filesystem".
-.IP "\fBpersistence\-label\fR=\fILABEL\fR" 4
-live-boot will use the name "LABEL" instead of "persistence" when searching for persistent storage. LABEL can be any valid filename, partition label, or GPT name.
+.IP "\fBpersistence\-label\fR=\fILABEL1\fR,\fILABEL2\fR ... \fILABELn\fR" 4
+live-boot will use the names in this list (instead of "persistence") when searching for persistent storage. Each LABEL can be a valid filename, partition label, or GPT name. The default is "persistence".
 .IP "\fBnoeject\fR" 4
 This option causes live\-boot to reboot without attempting to eject the media and without asking the user to remove the boot media.
 .IP "\fBshowmounts\fR" 4
@@ -200,10 +200,10 @@ This optional file (inside the live media) contains a list of white\-space or ca
 \fIlive\-tools\fR(7)
 
 .SH HOMEPAGE
-More information about live\-boot and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>.
+More information about live\-boot and the Debian Live project can be found on the homepage at <\fIhttps://wiki.debian.org/DebianLive\fR> and in the manual at <\fIhttps://live-team.pages.debian.net/live-manual/\fR>.
 
 .SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-boot package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>.
+Bugs can be reported by submitting a bugreport for the live\-boot package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@lists.debian.org\fR>.
 
 .SH AUTHOR
-live\-boot was written by Daniel Baumann <\fImail@daniel-baumann.ch\fR>.
+live\-boot was originally written by Daniel Baumann <\fImail@daniel-baumann.ch\fR>. Since 2016 development has been continued by the Debian Live team.
index 834cb29..3cf80a7 100644 (file)
@@ -1,4 +1,4 @@
-.TH LIVE\-BOOT conf 2015\-09\-22 5.0~a5-1 "Live Systems Project"
+.TH LIVE\-BOOT 5 2015\-09\-22 5.0~a5-1 "Debian Live Project"
 
 .SH NAME
 \fBpersistence.conf\fR \- Configuration file for persistence media in
@@ -166,7 +166,7 @@ Link:
 /home/user2/.bashrc -> \fIVOL\fR/config-files/user2/.bashrc (from b)
 .TP
 Dir:
-/homea/user2/.ssh (from c)
+/home/user2/.ssh (from c)
 .TP
 Link:
 /home/user2/.ssh/config -> \fIVOL\fR/config-files/user2/.ssh/config
@@ -197,10 +197,10 @@ copied into \fIVOL\fR/usr during the initial bootstrap.
 \fIlive\-tools\fR(7)
 
 .SH HOMEPAGE
-More information about live\-boot and the Live Systems project can be found on the homepage at <\fIhttp://live-systems.org/\fR> and in the manual at <\fIhttp://live-systems.org/manual/\fR>.
+More information about live\-boot and the Debian Live project can be found on the homepage at <\fIhttps://wiki.debian.org/DebianLive\fR> and in the manual at <\fIhttps://live-team.pages.debian.net/live-manual/\fR>.
 
 .SH BUGS
-Bugs can be reported by submitting a bugreport for the live\-boot package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Live Systems mailing list at <\fIdebian-live@lists.debian.org\fR>.
+Bugs can be reported by submitting a bugreport for the live\-boot package in the Bug Tracking System at <\fIhttp://bugs.debian.org/\fR> or by writing a mail to the Debian Live mailing list at <\fIdebian-live@lists.debian.org\fR>.
 
 .SH AUTHOR
-live\-boot was written by Daniel Baumann <\fImail@daniel-baumann.ch\fR>.
+live\-boot was originally written by Daniel Baumann <\fImail@daniel-baumann.ch\fR>. Since 2016 development has been continued by the Debian Live team.
diff --git a/manpages/es/live-boot.es.7 b/manpages/es/live-boot.es.7
deleted file mode 100644 (file)
index 61a1b9a..0000000
+++ /dev/null
@@ -1,303 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT 7 2015\-09\-22 5.0~a5\-1 "Proyecto Live Systems"
-
-.SH NOMBRE
-\fBlive\-boot\fP \- Componentes de Arranque del Sistema
-
-.SH DESCRIPCIÓN
-\fBlive\-boot\fP contiene los componentes que configuran un sistema en vivo
-durante el proceso de arranque (early userspace).
-.PP
-.\" FIXME
-live\-boot es un hook para initramfs\-tools, usado para generar un initramfs
-capaz de arrancar sistemas en vivo, tales como los creados por
-\fIlive\-helper\fP(7). Esto incluye las ISOs de Live Systems, netboot tarballs y
-las imágenes para llaves usb.
-.PP
-.\" FIXME
-En el momento del arranque se buscará un dispositivo de sólo lectura que
-contenga un directorio "/live" dónde se almacena un sistema de ficheros raíz
-(a menudo se trata de una imagen comprimida de un sistema de ficheros como
-squashfs). Si live\-boot lo encuentra, creará un entorno de escritura, usando
-aufs, a partir del cual pueda arrancar un sistema.
-
-.SH CONFIGURACIÓN
-\fBlive\-boot\fP se puede configurar mediante un parámetro de arranque o un
-fichero de configuración.
-.PP
-Para configurar los parámetros de live\-boot utilizados por defecto en una
-imagen en vivo, ver la opción \-\-bootappend\-live en la página de manual
-\fIlb_config\fP(1)
-
-.SS "Parámetros del kernel"
-\fBlive\-boot\fP sólo se activa si se usa 'boot=live' como parámetro del kernel
-.PP
-Además, hay algunos otros parámetros de arranque que influyen en su
-comportamiento, ver más abajo.
-
-.SS "Ficheros de configuración"
-\fBlive\-boot\fP se puede configurar (pero no activar) mediante ficheros de
-configuración. Estos ficheros se pueden colocar en el sistema de ficheros
-raíz (/etc/live/boot.conf, /etc/live/boot/*), o en el medio en vivo
-(live/boot.conf, live/boot/*).
-
-.SH OPCIONES
-.\" FIXME
-\fBlive\-boot\fP incluye los siguientes parámetros.
-.IP \fBaccess\fP=\fIACCESS\fP 4
-Establece el nivel de accesibilidad para usuarios con minusvalías físicas o
-con discapacidad visual. ACCESS debe ser uno de los siguientes, v1, v2, v3,
-m1 o m2. v1=menor deterioro visual, v2=discapacidad visual moderada,
-v3=ceguera, m1=dificultades motoras menores, m2=dificultades motoras
-moderadas.
-.IP \fBconsole\fP=\fITTY,SPEED\fP 4
-Establece la consola que se utilizará por defecto con la opción
-"live\-getty". Ejemplo: "console=ttyS0,115200"
-.IP \fBdebug\fP 4
-Hace que el proceso de arranque de initramfs sea más detallado.
-.br
-Uso: debug=1
-.br
-Si no se asigna un valor a debug, puede que no se muestren los mensajes.
-.IP \fBfetch\fP=\fIURL\fP 4
-.IP \fBhttpfs\fP=\fIURL\fP 4
-Otra forma de arranque en red mediante la descarga de una imagen squashfs a
-partir de una URL determinada. El método «fetch» copia la imagen en la
-memoria RAM y el método httpfs utiliza FUSE y httpfs2 para montar la imagen
-en su lugar. Copiar en la memoria RAM requiere más memoria y puede tardar
-mucho tiempo con imágenes de gran tamaño. Sin embargo, es más probable que
-funcione correctamente, ya que no requiere el uso de la red después y el
-sistema funciona más rápido una vez iniciado, debido a que ya no necesita
-ponerse más en contacto con el servidor.
-.br
-Debido a las limitaciones actuales de busybox, wget y la resolución de DNS,
-una dirección URL no puede contener un nombre de anfitrión, sino sólo una
-dirección IP.
-.br
-No funciona: http://ejemplo.com/ruta/al/sistema_de_ficheros.squashfs
-.br
-Funciona: http://ejemplo.com/ruta/al/sistema_de_ficheros.squashfs
-.br
-Tener en cuenta también que, por lo tanto, no es posible en la actualidad ir
-a buscar una imagen en un host virtual basado en nombre de un httpd si está
-compartiendo la IP con la instancia principal httpd.
-.br
-También se puede utilizar la imagen ISO en vivo en lugar de la imagen
-squashfs.
-.IP \fBiscsi\fP=\fIserver\-ip[,server\-port];target\-name\fP 4
-Arranca desde un iSCSI que tiene una ISO una imagen de disco en vivo como
-uno de sus LUNs. Se busca en el objetivo especificado un LUN que sea similar
-a un medio en vivo. Si se utiliza el software de iSCSI \fBiscsitarget\fP el
-ietd.conf podría ser similar al siguiente:
-.br
-# El nombre de destino se especifica en el parámetro iscsi=
-.br
-Target <target\-name>
-  Lun 0 Path=<path\-to\-your\-live\-image.iso>,Type=fileio,IOMode=ro
-  # Si se desea arrancar varias máquinas, es posible que se desee afinar algunos parámetros como
-  # Wthreads o MaxConnections
-.IP \fBfindiso\fP=\fI/PATH/TO/IMAGE\fP 4
-Busca el fichero ISO especificado en todos los discos en los que por lo
-general se busca el fichero .squashfs (por lo que no se tiene que saber el
-nombre del dispositivo como en fromiso=....).
-.IP \fBfromiso\fP=\fI/PATH/TO/IMAGE\fP 4
-Permite utilizar un sistema de ficheros desde dentro de una imagen ISO que
-está disponible en los medios en vivo.
-.IP \fBignore_uuid\fP 4
-No comprobar que cualquier UUID integrado en el initramfs coincida con el
-medio encontrado. Se puede especificar a live\-boot que genere un UUID
-configurando LIVE_GENERATE_UUID=1 en el momento de crear el initramfs.
-.IP \fBverify\-checksums\fP 4
-Si se especifica, se calcula una suma MD5 sobre los medios en vivo durante
-el arranque y se compara con el valor md5sum.txt que se encuentra en el
-directorio raíz de los medios en vivo.
-.IP "\fBip\fP=[\fIDEVICE\fP]:[\fICLIENT_IP\fP]:[\fINETMASK\fP]:[\fIGATEWAY_IP\fP]:[\fINAMESERVER\fP] [,[\fIDEVICE\fP]:[\fICLIENT_IP\fP]:[\fINETMASK\fP]:[\fIGATEWAY_IP\fP]:[\fINAMESERVER\fP]]" 4
-Permite especificar el nombre(s) y las opciones de la interfaz(ces) que se
-debe configurar en el arranque. No especificar esta opción si se desea
-utilizar DHCP (opción por defecto). Esto cambiará en una futura versión para
-utilizar la misma especificación de los parámetros de arranque que el kernel
-oficial (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp).
-.IP \fBip\fP=[\fIfrommedia\fP] 4
-Si se establece esta variable, no se configura la red ni por dhcp ni usando
-una dirección estática y se debe añadir un fichero preconfigurado
-/etc/network/interfaces que el sistema utilizará en su lugar.
-.IP {\fBlive\-media\fP|\fBbootfrom\fP}=\fIDEVICE\fP 4
-Si se especifica una de estas dos formas equivalentes, live\-boot en primer
-lugar tratará de encontrar este dispositivo buscando el directorio "/live"
-dónde debe estar la raíz del sistema de ficheros de sólo lectura. Si no
-encuentra nada que pueda utilizar, live\-boot escaneará los dispositivos
-restantes.
-.br
-En lugar de especificar el nombre de un dispositivo real, se puede utilizar
-la palabra clave 'removable'  para limitar la búsqueda solo en los medios en
-vivo de tipo extraíble. Tener en cuenta que si se desea restringir aún más
-los medios a sistemas de almacenamiento masivo USB se puede utilizar la
-palabra clave 'removable\-usb'
-.IP {\fBlive\-media\-encryption\fP|\fBencryption\fP}=\fITYPE\fP 4
-live\-boot montará el TYPE rotfs cifrado, pidiendo la contraseña. Es útil
-para crear sistemas en vivo paranoicos :\-) Hasta el momento el TYPE
-soportado es "aes" para cifrado loop\-aes.
-.IP \fBlive\-media\-offset\fP=\fIBYTES\fP 4
-De esta manera se puede especificar a live\-boot que la imagen comienza en
-BYTES en el dispositivo anteriormente especificado, o auto\-descubierto, esto
-podría ser útil para esconder la ISO o la imagen dentro de otra ISO o
-imagen, para crear imágenes "limpias".
-.IP \fBlive\-media\-path\fP=\fIPATH\fP 4
-Establece la ruta de acceso al sistema de ficheros en vivo en el medio. De
-forma predeterminada está en '/live' y no se debe cambiar a menos que se
-haya personalizado los medios de forma adecuada.
-.IP \fBlive\-media\-timeout\fP=\fISECONDS\fP 4
-Establece el tiempo de espera en segundos para que el dispositivo
-especificado por "live\-media=" esté preparado antes de desistir.
-.IP \fBmodule\fP=\fINAME\fP 4
-En lugar de utilizar el fichero opcional por defecto "filesystem.module"
-(ver más abajo) se podría especificar otro fichero sin la extensión
-".module"; se debe colocar en el directorio "/live" del medio en vivo.
-.IP \fBnetboot\fP[=nfs|cifs] 4
-Indica a live\-boot que debe hacer un montaje en red. El parámetro
-"nfsroot=" (con "nfsopts=" opcional), debe especificar dónde se encuentra el
-sistema de ficheros raíz. Sin argumentos, probará primero cifs, y entonces,
-si falla, nfs.
-.IP \fBnfsopts\fP= 4
-Permite especificar opciones nfs personalizadas.
-.IP \fBnofastboot\fP 4
-Este parámetro deshabilita la desactivación por defecto de la comprobación
-del sistema de ficheros en /etc/fstab. Si hay sistemas de ficheros estáticos
-en el disco duro y se desea comprobarlos en el momento del arranque,
-utilizar este parámetro, de lo contrario, se omite.
-.IP \fBnopersistence\fP 4
-desactiva la "persistencia", es útil si el gestor de arranque (como
-syslinux) se ha instalado con persistencia habilitada.
-.IP \fBnoeject\fP 4
-No pedir que se extraiga el dispositivo en vivo.
-.IP \fBramdisk\-size\fP 4
-Este parámetro permite establecer un tamaño de disco RAM personalizado (que
-es la opción '\-o size' del montaje tmpfs). No hay un tamaño de ramdisk
-predeterminado, por lo que se aplica el valor por defecto (actualmente el
-50% de la RAM disponible). Tener en cuenta que esta opción no tiene
-actualmente ningún efecto cuando se arranca con toram.
-.IP \fBswap=true\fP 4
-Este parámetro permite el uso de particiones swap locales.
-.IP \fBpersistence\fP 4
-live\-boot buscará dispositivos con "persistence". Estos pueden ser
-particiones (con el nombre GPT correcto), sistemas de ficheros (con la
-etiqueta correcta) o ficheros imagen (con el nombre de fichero
-correcto). Los overlays tienen la etiqueta/nombre "persistence" (ver
-\fIpersistence.conf\fP(5)). Los ficheros imagen overlay tienen, como nombre,
-"persistence".
-.IP "\fBpersistence\-encryption\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
-Esta opción determina qué tipo de cifrado se usa cuando se prueban los
-dispositivos de los medios con persistencia. Si se especifica "none" en la
-lista, no se permite cifrar el medio; si se especifica "luks" en la lista,
-se puede usar cifrado LUKS en los medios. Cada vez que se encuentra un
-dispositivo que contiene medios cifrados se pregunta al usuario una frase de
-contraseña. Por defecto es "none".
-.IP \fBpersistence\-media\fP={\fIremovable\fP|\fIremovable\-usb\fP} 4
-Si se especifica la palabra clave 'removable', live\-boot intentará encontrar
-particiones con persistencia únicamente en los medios extraíbles. Tener en
-cuenta que si se desea restringir aún más los medios a sistemas de
-almacenamiento masivo USB se puede utilizar la palabra clave 'removable\-usb'
-.IP "\fBpersistence\-method\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
-Esta opción determina qué tipos de medios se permiten para la
-persistencia. Si se especifica "overlay" en la lista, se considera overlays
-(es decir "live\-rw" y "home\-rw"). Por defecto es "overlay".
-.IP \fBpersistence\-path\fP=\fIPATH\fP 4
-live\-boot buscará ficheros con persistencia en el directorio raíz de una
-partición, con este parámetro, la ruta se puede configurar de modo que se
-pueda tener varios directorios en la misma partición para almacenar ficheros
-con persistencia.
-.IP \fBpersistence\-read\-only\fP 4
-Los cambios en el sistema de ficheros no se guardan de nuevo en los medios
-con persistencia. En particular, los overlays y los montajes NFS de red son
-montados en sólo lectura.
-.IP "\fBpersistence\-storage\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
-Esta opción determina qué tipos de almacenamiento persistente hay que tener
-en cuenta cuando se comprueban los medios con persistencia. Si "filesystem"
-está en la lista, se usarán los sistemas de ficheros que tengan su etiqueta
-correspondiente; si "file" está en la lista, todos los sistemas de ficheros
-se probarán buscando ficheros y ficheros imagen con sus etiquetas
-correspondientes. Por defecto es "file,filesystem".
-.IP \fBpersistence\-label\fP=\fILABEL\fP 4
-live\-boot utilizará el nombre "LABEL" en lugar de "persistence" cuando
-busque medios de almacenamiento persistente. LABEL puede ser cualquier
-nombre de fichero, etiqueta de una partición or nombre GPT.
-.IP \fBnoeject\fP 4
-Esta opción hace que live\-boot reinicie sin tratar de expulsar los medios y
-sin pedirle al usuario que extraiga el dispositivo usado para arrancar.
-.IP \fBshowmounts\fP 4
-Este parámetro hará que live\-boot muestre en "/" los sistemas de ficheros ro
-(en su mayoría comprimidos) en "/lib/live". Esto no está activado por
-defecto, porque podría dar lugar a problemas con aplicaciones como "mono"
-que almacenan rutas binarias durante su instalación.
-.IP \fBsilent\fP 4
-Si arranca con el parámetro normal quiet, live\-boot esconde la mayoría de
-sus propios mensajes. Cuando se utiliza silent, los esconde todos.
-.IP \fBtodisk\fP=\fIDEVICE\fP 4
-Al añadir este parámetro, live\-boot tratará de copiar la totalidad de medios
-de sólo lectura en el dispositivo especificado antes de montar el sistema de
-ficheros raíz. Probablemente hace falta una gran cantidad de espacio
-libre. Los arranques posteriores deben saltar este paso y basta con
-especificar el parámetro de arranque "live\-media=DEVICE" con el mismo DEVICE
-que se ha utilizado esta vez.
-.IP \fBtoram\fP 4
-Al añadir este parámetro, live\-boot trata de copiar los medios de sólo
-lectura enteros en la memoria RAM del ordenador antes de montar el sistema
-de ficheros raíz. Para esto puede ser necesaria mucha memoria RAM, según el
-espacio utilizado por los medios de sólo lectura.
-.IP \fBunion\fP=overlay|aufs 4
-.\" FIXME
-Por defecto, live\-boot usa overlay. Con este parámetro, se puede cambiar a
-aufs.
-
-.\" FIXME
-.SH "FICHEROS (antiguos)"
-.IP \fB/etc/live.conf\fP 4
-Algunas variables pueden ser configuradas a través de este fichero de
-configuración (dentro del sistema en vivo).
-.IP \fBlive/filesystem.module\fP 4
-.\" FIXME
-Este fichero opcional (dentro del medio en vivo) contiene una lista de
-nombres de ficheros separados por espacios en blanco o retornos de carro que
-corresponden a imágenes de disco en el directorio "/live". Si este fichero
-existe, sólo las imágenes que figuran en esta lista se fusionarán en la raíz
-aufs, y se cargarán en el orden en que aparecen aquí. La primera entrada en
-este fichero será el punto "más bajo" en el aufs y el último fichero de esta
-lista estará en el punto "más alto" del aufs, justo debajo de /overlay. Sin
-este fichero, las imágenes en el directorio  "/live" se cargan en orden
-alfanumérico.
-
-.SH FICHEROS
-.IP \fB/etc/live/boot.conf\fP 4
-.IP \fB/etc/live/boot/*\fP 4
-.IP \fBlive/boot.conf\fP 4
-.IP \fBlive/boot.d/*\fP 4
-.IP \fBpersistence.conf\fP 4
-
-.SH "VER ADEMÁS"
-\fIpersistence.conf\fP(5)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH "PÁGINA WEB"
-Se puede encontrar más información acerca de live\-boot y el proyecto Live
-Systems en la página web <\fIhttp://live\-systems.org/\fP> y en el
-manual en <\fIhttp://live\-systems.org/manual/\fP>.
-
-.SH ERRORES
-Se puede notificar los fallos enviando un informe de errores sobre el
-paquete live\-boot al Sistema de Seguimiento de Errores en
-<\fIhttp://bugs.debian.org/\fP> o escribiendo un mensaje a la lista de
-correo de Live Systems a la dirección
-<\fIdebian\-live@lists.debian.org\fP>.
-
-.SH AUTOR
-live\-boot fue escrito por Daniel Baumann
-<\fImail@daniel\-baumann.ch\fP>.
diff --git a/manpages/es/persistence.conf.es.5 b/manpages/es/persistence.conf.es.5
deleted file mode 100644 (file)
index 1803cec..0000000
+++ /dev/null
@@ -1,224 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT conf 2015\-09\-22 5.0~a5\-1 "Proyecto Live Systems"
-
-.SH NOMBRE
-\fBpersistence.conf\fP \- Fichero para configurar medios de almacenamiento con
-persistencia en live\-boot
-
-.SH DESCRIPCIÓN
-Si live\-boot prueba un volumen persistente con la etiqueta (o nombre GPT, o
-nombre de fichero, aunque a partir de este momento nos referiremos a él como
-simplemente "etiqueta") "persistence", la persistencia de ese volumen es
-completamente personalizable a través del fichero \fBpersistence.conf\fP
-almacenado en la raíz de su sistema de ficheros. Cualquier volumen esa
-etiqueta debe tener uno de esos ficheros, o si no será ignorado.
-.PP
-El formato de \fBpersistence.conf\fP permite añadir líneas vacias o líneas que
-comiencen por "#" (usado para los comentarios), ambos serán ignorados. Un
-"montaje personalizado" tiene el formato:
-.PP
-.RS
-\fIDIR\fP [\fIOPTION\fP]...
-.RE
-.PP
-lo que se traduce como "hacer \fIDIR\fP persistente en la forma descrita en la
-lista de \fIOPTION\fPs".
-.PP
-Para cada uno de los montajes personalizados \fIDIR\fP debe ser una ruta
-absoluta que no puede contener espacios en blanco ni los componentes
-especiales . y .. además no puede ser /live (o ninguno de sus
-sub\-directorios) ni /. Una vez activados, todos los cambios (creación,
-modificación y borrado de ficheros) en \fIDIR\fP en el sistema de ficheros en
-vivo, son guardados de forma persistente en una ruta equivalente a \fIDIR\fP en
-el medio persistente, llamado el directorio de origen. La manera de
-conseguir la persistencia por defecto es simplemente hacer un montaje
-enlazado (bind\-mount N.del T.) del directorio de origen al \fIDIR\fP, aunque
-esto se puede cambiar utilizando las opciones \fIOPTION\fPs.
-.PP
-Todos los montajes personalizados serán montados en orden de tal manera que
-dos montajes personalizados no se "escondan" uno al otro. Por ejemplo, si
-tenemos los dos \fIDIR\fP:s /a y /a/b siempre /a será montado en primer lugar,
-después /a/b. Esto siempre es así sin importar el orden en que aparezcan las
-líneas en \fBpersistence.conf\fP o incluso si se usan varios ficheros
-\fBpersistence.conf\fP en medios persistentes distintos al mismo tiempo. Sin
-embargo, no está permitido que un montaje personalizado tenga su directorio
-de origen en el interior del directorio de origen de otro montaje
-personalizado, ya que los directorios de origen que live\-boot crea
-automáticamente no tienen soporte para montajes "anidados" como /a y /a/b en
-el mismo medio. En este caso se debe usar la opción \fBsource\fP (ver debajo)
-para asegurarse de que se almacenan en directorios de origen diferentes.
-.PP
-Cuando un directorio de origen no existe en los medios con persistencia para
-un montaje personalizado en particular, se creará automáticamente, y los
-permisos y sus propietarios se establecen de forma óptima de acuerdo a
-\fIDIR\fP. También se realiza una preinstalación (bootstrap N. del T.) copiando
-los contenidos de \fIDIR\fP en su directorio de origen en el medio con
-persistencia. La preinstalación no se realiza cuando se utilizan las
-opciones \fBlink\fP o \fBunion\fP (ver debajo).
-
-.SH OPCIONES
-Los montajes personalizados definidos en \fBpersistence.conf\fP aceptan las
-siguientes opciones en una lista separada por comas:
-.IP \fBsource\fP=\fIPATH\fP 4
-Cuando se especifica, se guardan los cambios persistentes en \fIPATH\fP en los
-medios con persistencia. \fIPATH\fP debe ser una ruta relativa (respecto a la
-raíz del medio persistente) que no puede contener espacios en blanco o los
-componentes especiales . o .. con la excepción de que puede ser simplemente
-\&. lo que significa la raíz del medio persistente. Esta opción es relevante
-si se desea anidar montajes personalizados, lo que de otro modo produciría
-errores, o si se desea hacer que toda la raíz del medio esté disponible (de
-forma similar al ahora obsoleto tipo de persistencia \fBhome\-rw\fP)
-.PP
-Las siguientes opciones son mutuamente exclusivas (únicamente la última
-tendrá efecto):
-.IP \fBbind\fP 4
-Montar de forma enlazada el directorio de origen a \fIDIR\fP. Esto es así por
-defecto.
-.IP \fBlink\fP 4
-Crea la estructura de directorios del directorio de origen en el medio
-persistente en \fIDIR\fP y crea los enlaces simbólicos desde el lugar
-correspondiente en \fIDIR\fP a cada fichero en el directorio de origen. Si los
-directorios o ficheros contienen el mismo nombre, al igual que cualquier
-otro enlace, serán sobrescritos. Tener en cuenta que los enlaces en \fIDIR\fP
-sólo eliminan el enlace, no el fichero correspondiente en el directorio; los
-enlaces eliminados reaparecerán tras reiniciar. Para añadir o eliminar un
-fichero de forma permanente se debe hacer directamente en el directorio de
-origen.
-.IP
-\fBlink\fP tan sólo hará persistentes los ficheros que ya se encuentran en el
-directorio de origen, y no cualquier otro fichero en \fIDIR\fP. Estos ficheros
-deben ser añadidos manualmente en el directorio de origen pare utilizar esta
-opción y ellos aparecerán en \fIDIR\fP además de los ficheros que ya se
-encuentran allí. Esta opción es útil cuando sólo es necesario hacer
-persistentes ciertos ficheros y no todo el directorio en el que se
-encuentran, por ejemplo, algunos ficheros de configuración en el directorio
-home de un usuario.
-.IP \fBunion\fP 4
-Guardar la rama rw de una unión en un medio persistente, de modo que los
-cambios son guardados de forma persistente. Potencialmente esto puede
-reducir el uso del disco comparado con los montajes enlazados, y no
-esconderá los ficheros añadidos a los medios de sólo lectura. Un buen truco
-es que la unión utilizará el \fIDIR\fP del sistema de ficheros de sólo lectura
-de la imagen y no de la raíz del sistema de ficheros real, por eso los
-ficheros que se crean después del arranque (por ejemplo live\-config) no
-aparecerán en la unión. Esta opción utilizará el sistema de ficheros unión
-especificado por el parámetro de arranque \fBunion\fP de live\-boot.
-
-.SH DIRECTORIOS
-.IP \fB/live/persistence\fP 4
-Aquí se montarán todos los volumenes persistentes (en un directorio que
-corresponda con el nombre del dispositivo). El fichero \fBpersistence.conf\fP
-se puede editar fácilmente a través de este montaje, así como cualquier
-directorio de origen (esto resulta especialmente práctico para los montajes
-personalizados usando la opción \fBlink\fP).
-
-.SH EJEMPLOS
-
-Si tenemos un volumen con persistencia \fIVOL\fP con un fichero
-\fBpersistence.conf\fPque contiene las cuatro lineas siguientes (numeradas para
-una mejor referencia):
-.TP  7
-1.
-/home/user1 link,source=config\-files/user1
-.TP 
-2.
-/home/user2 link,source=config\-files/user2
-.TP 
-3.
-/home
-.TP 
-4.
-/usr union
-.PP
-Los directorios de origen correspondientes son:
-.TP  7
-1.
-\fIVOL\fP/config\-files/user1 (pero sería \fIVOL\fP/home/user1 sin la opción
-\fBsource\fP)
-.TP 
-2.
-\fIVOL\fP/config\-files/user2 (pero sería \fIVOL\fP/home/user2 sin la opción
-\fBsource\fP)
-.TP 
-3.
-\fIVOL\fP/home
-.TP 
-4.
-\fIVOL\fP/usr
-.PP
-Era necesario establecer las opciones \fBsource\fP para 1 y 2, ya que de otro
-modo resultarían anidados con el origen de 3, lo cual no es válido.
-.PP
-La línea 3 será tenida en cuenta antes que las líneas 1 y 3 para evitar que
-los montajes personalizados 1 y 2 resulten escondidos por 3. Cuando se
-procesa la línea 3, \fIVOL\fP/home es simplemente montado en unión a
-/home. Para ilustrar lo que sucede con las líneas 1 y 2, digamos que los
-siguientes ficheros existen:
-.TP  7
-a.
-\fIVOL\fP/config\-files/user1/.emacs
-.TP 
-b.
-\fIVOL\fP/config\-files/user2/.bashrc
-.TP 
-c.
-\fIVOL\fP/config\-files/user2/.ssh/config
-.PP
-Entonces se crearán los siguientes enlaces y directorios:
-.TP  7
-Enlace:
-/home/user1/.emacs \-> \fIVOL\fP/config\-files/user1/.emacs (de a)
-.TP 
-Enlace:
-/home/user2/.bashrc \-> \fIVOL\fP/config\-files/user2/.bashrc (de b)
-.TP 
-Directorio:
-/homea/user2/.ssh (de c)
-.TP 
-Enlace:
-/home/user2/.ssh/config \-> \fIVOL\fP/config\-files/user2/.ssh/config (de c)
-.PP
-Se podría decir, sin embargo, que las líneas 1 y 2 en el fichero de ejemplo
-\fBpersistence.conf\fP anterior son innecesarias ya que la línea 3 ya crearía
-el directorio /home persistente. La opción  \fBlink\fP se utiliza en
-situaciones en las que no se desea guardar de forma persistente un
-directorio completo, sino únicamente algunos ficheros o subdirectorios
-incluidos en él.
-.PP
-La línea 4 se puede montar en cualquier momento ya que su \fIDIR\fP (y su
-directorio de origen) es completamente independiente de todos los otros
-montajes personalizados. Cuando se monta, \fIVOL\fP/usr será la rama rw debido
-a la opción \fBunion\fP y tan sólo contendrá la diferencia en comparación con
-el sistema de ficheros subyacente de sólo lectura. Por eso los paquetes
-pueden ser instalados en /usr con gran eficiencia de espacio comparado con
-los montajes enlazados, ya que en este último caso el contenido de /usr
-tendría que ser copiado en \fIVOL\fP/usr durante la preinstalación inicial.
-
-.SH "VER ADEMÁS"
-\fIlive\-boot\fP(7)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH "PÁGINA WEB"
-Se puede encontrar más información acerca de live\-boot y el proyecto Live
-Systems en la página web <\fIhttp://live\-systems.org/\fP> y en el
-manual en <\fIhttp://live\-systems.org/manual/\fP>.
-
-.SH ERRORES
-Se puede notificar los fallos enviando un informe de errores sobre el
-paquete live\-boot al Sistema de Seguimiento de Errores en
-<\fIhttp://bugs.debian.org/\fP> o escribiendo un mensaje a la lista de
-correo de Live Systems a la dirección
-<\fIdebian\-live@lists.debian.org\fP>.
-
-.SH AUTOR
-live\-boot fue escrito por Daniel Baumann
-<\fImail@daniel\-baumann.ch\fP>.
diff --git a/manpages/fr/live-boot.fr.7 b/manpages/fr/live-boot.fr.7
deleted file mode 100644 (file)
index 3f4540e..0000000
+++ /dev/null
@@ -1,306 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT 7 22.09.2015 5.0~a5\-1 "Projet Live Systems"
-
-.SH NOM
-\fBlive\-boot\fP \- Composants de démarrage du système
-
-.SH DESCRIPTION
-\fBlive\-boot\fP comprend les composants qui configure un système live pendant
-le processus de démarrage (espace utilisateur primitif).
-.PP
-.\" FIXME
-live\-boot est un hameçon (hook) pour initramfs\-tools, utilisé pour générer
-un initramfs capable de démarrer les systèmes live, comme ceux créés par
-\fIlive\-helper\fP(7). Ceci comprends les ISOs Live Systems, les paquets tar de
-démarrage par le net (netboot), et les images de clef USB.
-.PP
-.\" FIXME
-Au moment du démarrage, il recherchera un médium (en lecture seule)
-contenant un répertoire "/live" où est placé un système de fichier racine
-(souvent une image d'un système de fichier compressé comme squashfs). Si
-ceci est trouvé, il créera un environnement enregistrable en utilisant aufs,
-pour démarrer le système à partir de lui.
-
-.SH CONFIGURATION
-\fBlive\-boot\fP peut être configuré à travers un paramètre de démarrage ou un
-fichier de configuration.
-.PP
-Pour configurer les paramètres de live\-boot utilisés par défaut dans l'image
-live, voir l'option \-\-bootappend\-live dans la page de manuel
-\fIlb_config\fP(1).
-
-.SS "Paramètres du noyau"
-\fBlive\-boot\fP est activé uniquement si 'boot=live' a été utilisé en tant que
-paramètre du noyau.
-.PP
-De plus, il y a plusieurs autres paramètres de démarrage pour influencer le
-comportement, voir ci\-dessous.
-
-.SS "Fichiers de configurations"
-\fBlive\-boot\fP peut être configuré (mais pas activé) à travers des fichiers de
-configuration. Ces fichiers peuvent être placés soit dans le système de
-fichier racine lui\-même (/etc/live/boot.conf, /etc/live/boot/*), ou sur le
-média live (live/boot.conf, live/boot/*).
-
-.SH OPTIONS
-.\" FIXME
-\fBlive\-boot\fP fourni actuellement les paramètres suivants.
-.IP \fBaccess\fP=\fIACCESS\fP 4
-Met en place le niveau d'accessibilité pour les utilisateurs physiquement ou
-visuellement handicapés. ACCESS doit être un des v1, v2, v3, m1, or
-m2. v1=handicap visuel faible, v2=handicap visuel modéré, v3=cessité
-visuelle, m1=difficultés moteur faibles m2=difficultés moteur modérées.
-.IP \fBconsole\fP=\fITTY,SPEED\fP 4
-Paramètre la console par défaut étant utilisée avec l'option
-"live\-getty". Exemple : "console=ttyS0,115200".
-.IP \fBdebug\fP 4
-Rend le processus de démarrage initramfs plus verbeux.
-.br
-Utiliser : debug=1
-.br
-Si debug n'est pas paramétré à une valeur, les messages pourraient ne pas
-être affichés.
-.IP \fBfetch\fP=\fIURL\fP 4
-.IP \fBhttpfs\fP=\fIURL\fP 4
-Une autre forme de démarrage par le net en téléchargeant une image squashfs
-depuis une URL donnée. La méthode fetch copie l'image dans la RAM et la
-méthode httpfs utilise FUSE et httpfs2 pour monter l'image en place. La
-copier dans la RAM nécessite davantage de mémoire et pourrait prendre du
-temps pour des images volumineuses. Ceci dit, ça devrait mieux fonctionner
-correctement car cela ne nécessite pas de réseau ensuite et le système
-fonctionne plus vite une fois démarré car il n'a plus besoin de contacter un
-serveur.
-.br
-À cause des limitations actuelles de la version wget de busybox et de sa
-résolution DNS, une URL ne peut pas contenir un hostname mais uniquement une
-adresse IP.
-.br
-Ne fonctionne pas : http://example.com/path/to/your_filesystem.squashfs
-.br
-Fonctionne : http://1.2.3.4/path/to/your_filesystem.squashfs
-.br
-Notez également que par conséquent, il n'est actuellement pas possible
-d'attraper une image depuis un virtualhost basé\-sur\-un\-nom d'un httpd s'il
-partage l'adresse IP avec l'instance httpd principale.
-.br
-Vous voudrez également utiliser l'image ISO live à la place de l'image
-squashfs.
-.IP \fBiscsi\fP=\fIserver\-ip[,server\-port];target\-name\fP 4
-Démarrer depuis une cible iSCSI qui a une image ISO ou disque en tant que
-l'un de ces LUNs. La cible spécifiée est recherchée pour un LUN qui
-ressemble à un medium live medium. Si vous utilisez la solution cible iSCSI
-logiciel \fBiscsitarget\fP , votre ietd.conf devrait ressembler à ça :
-.br
-# Le nom\-cible que vous spécifiez dans le paramètre iscsi=
-.br
-Cible <target\-name>
-  Lun 0 Path=<chemin\-vers\-votre\-image\-live.iso>,Type=fileio,IOMode=ro
-  # Si vous voulez démarrez de multiples machines, vous pourriez vouloir   jeter un oeil aux réglages de certains paramètres comme
-  # Wthreads ou MaxConnections
-.IP \fBfindiso\fP=\fI/PATH/TO/IMAGE\fP 4
-Regarder pour le fichier ISO spécifié sur tous les disques quandil regarde
-habituellement pour le fichier squashfs (donc vous n'avez pas besoin de
-connaître le nom de périphérique comme dans fromiso=....).
-.IP \fBfromiso\fP=\fI/PATH/TO/IMAGE\fP 4
-Permet d'utiliser un système de fichier venant de l'intérieur d'une image
-ISO qui est disponible sur live\-media.
-.IP \fBignore_uuid\fP 4
-Ne pas vérifierque chaque UUID embarqué dans le initramfs correspond au
-medium découvert. On peut dire à live\-boot de générer un UUID en paramétrant
-LIVE_GENERATE_UUID=1 lors de la construction de l'initramfs.
-.IP \fBverify\-checksums\fP 4
-Si spécifié, une somme MD5 est calculée sur le média live pendant le
-démarragea et est comparée à une valeur présente dans md5sum.txt dans le
-répertoire racine du média live.
-.IP "\fBip\fP=[\fIDEVICE\fP]:[\fICLIENT_IP\fP]:[\fINETMASK\fP]:[\fIGATEWAY_IP\fP]:[\fINAMESERVER\fP] [,[\fIDEVICE\fP]:[\fICLIENT_IP\fP]:[\fINETMASK\fP]:[\fIGATEWAY_IP\fP]:[\fINAMESERVER\fP]]" 4
-Vous laisse spécifier le(s) nom(s) et les options de l'(les) interface(s)
-qui devraient être configurées au moment du démarrage. Ne pas spécifier ceci
-si vous voulez utiliser dhcp (défaut). Ceci sera modifié dans une version
-future pour refléter la spécification des paramètres de démarrage du noyau
-officiel (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp).
-.IP \fBip\fP=[\fIfrommedia\fP] 4
-Si cette variable est paramétrée, dhcp et la configuration statique sont
-simplement sautées et le système utilisera à la place les interfaces (qui
-doivent être) préconfigurées /etc/network/.
-.IP {\fBlive\-media\fP|\fBbootfrom\fP}=\fIDEVICE\fP 4
-Si vous spécifiez une des ces deux formes équivalentes, live\-boot essaiera
-en premier de trouver ce périphérique le répertoire "/live" où le système de
-fichier racine en lecture seule devrait être. Si il ne trouve pas quelque
-chose d'utilisable, le scan normal pour les périphériques blocks est
-effectué.
-.br
-Plutôt que de spécifié un nom de périphérique actuel, le mot\-clef
-\&'removable' peut être utilisé pour limiter la recherche des médias live
-acceptables au type removable uniquement. Notez que si vous voulez
-restreindre d'avantage les médias aux seuls périphériques de stockage USB,
-vous pouvez utiliser le mot\-clef 'removable\-usb'.
-.IP {\fBlive\-media\-encryption\fP|\fBencryption\fP}=\fITYPE\fP 4
-live\-boot montera le TYPE rootfs encrypté, en demandant une
-phrase\-mot\-de\-passe, utile pour construire des systèmes live paranoïaques
-:\-).Le TYPE supporté pour l'instant est "aes" pour un type d'encryptage
-loop\-aes.
-.IP \fBlive\-media\-offset\fP=\fIBYTES\fP 4
-De cette façon, vous pouvez dire à live\-boot que votre image démarre à
-l'offset BYTES dans le périphérique spécifié ci\-dessus ou auto\-découvert,
-qui pourra être utile pour cacher l'ISO du système live ou l'image à
-l'intérieur d'une autr ISO ou image, pour créer des image "propre".
-.IP \fBlive\-media\-path\fP=\fIPATH\fP 4
-Paramètre le chemin vers le système de fichier live sur le médium. Par
-défaut, il est paramétré sur '/live' et vous ne devriez pas changer ceci
-sauf si vous avez personnalisé votre média en conséquence.
-.IP \fBlive\-media\-timeout\fP=\fISECONDS\fP 4
-Paramètre le temps d'expiration en secondes pour le périphérique spécifié
-par "live\-media=" à être prêt avant de laisser tomber.
-.IP \fBmodule\fP=\fINAME\fP 4
-Plutôt que d'utiliser le fichier optionnel par défaut "filesystem.module"
-(voir ci\-dessous), un autre fichier peut être spécifié sans l'extension
-".module"; il devra être placé dans le répertoire "/live" du médium live.
-.IP \fBnetboot\fP[=nfs|cifs] 4
-Ceci dit à live\-boot d'effectuer un montage réseau. Le paramètre
-"nfsroot="(avec l'optionnel "nfsopts="), devrait spécifier où est
-l'emplacement du système de fichier racine. En l'absence d'arguments, il
-essaiera cifs en premier puis, s'il échoue, nfs.
-.IP \fBnfsopts\fP= 4
-Ceci vous permet de spécifier des options nfs personnalisées.
-.IP \fBnofastboot\fP 4
-Ce paramètre désactive la désactivation par défaut du système de fichier
-dans /etc/fstab. Si vous avez des système de fichier statiques sur votre
-disque dur et vous voulez qu'ils soient vérifiés au moment du démarrage,
-utilisez ce paramètre, sinon ils sont sautés.
-.IP \fBnopersistence\fP 4
-désactive la fonctionnalité "persistance", utile si le bootloader (comme
-syslinux) a été installé avec la persistance activée.
-.IP \fBnoeject\fP 4
-Ne pas demander pour l'éjection du médium live.
-.IP \fBramdisk\-size\fP 4
-Ce paramètre permet de paramétrer un taille de ramdisk personnalisée (c'est
-l'option '\-o size' du montage tmpfs). Par défaut, il n'y a pas de taille de
-ramdisk paramétrée, donc le montage par défaut s'applique (en fait : 50% de
-la RAM disponible). Notez que cette option n'a actuellement aucun effet lors
-d'un démarrage avec toram.
-.IP \fBswap=true\fP 4
-Ce paramètre active l'utilisation de partition swap locales.
-.IP \fBpersistence\fP 4
-live\-boot sondera les périphériques pour les média de persistance. Ceux\-ci
-pourront être des partitions (avec un nom GPT correct), des systèmes de
-fichier (avec une étiquette correcte) ou des fichiers image (avec un nom de
-fichier correct). Les récouvrements sont étiquettés/nommés "persistence"
-(voir \fIpersistence.conf\fP(5)). Les fichiers images de recouvrement sont
-nommés "persistence".
-.IP "\fBpersistence\-encryption\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
-Cette option détermine quels sont les types d'encryptage que nous autorisons
-à être utilisés lors du sondage des périphérique pour les médias de
-persistance. Si "none" (aucun) n'est dans la liste, nous autorisons les
-médias non\-cryptés; si "luks" est dans la liste, nous autorisons les médias
-encryptés\-LUKS. À chaque fois qu'un périphérique contenant un média encrypté
-est sondé, il sera demandé la phrase\-mot\-de\-passe à l'utilisateur. La valeur
-par défaut est "none".
-.IP \fBpersistence\-media\fP={\fIremovable\fP|\fIremovable\-usb\fP} 4
-Si vous spécifiez le mot\-clef 'removable', live\-boot essaiera de trouver les
-partitions de persistance sur les périphériques enlevables uniquement. Notez
-que si vous voulez davantage restreindre les médias à des périphériques de
-stockage de masse USB uniquement, vous pouvez utiliser le mot\-clef
-\&'removable\-usb'.
-.IP "\fBpersistence\-method\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
-Cette option détermine quels types de média de persistance nous autorisons
-If "overlay" est dans la liste, nous considérons les récouvrements
-(i.e. "live\-rw" et "home\-rw"). Le défaut est "overlay".
-.IP \fBpersistence\-path\fP=\fIPATH\fP 4
-live\-boot recherchera pour des fichiers de persistance dans le répertoire
-racine d'une partition, avec ce paramètre, le chemin pourra être configuré
-de manière à ce que vous puissiez avoir des répertoires multiples sur la
-même partition pour emmagasiner des fichiers de persistance.
-.IP \fBpersistence\-read\-only\fP 4
-Les modifications de système de fichier ne sont pas sauvegardés dans le
-média de persistance. En particulier, les montages NFS netboot et overlays
-sont montés en lecture\-seule.
-.IP "\fBpersistence\-storage\fP=\fITYPE1\fP,\fITYPE2\fP ... \fITYPEn\fP" 4
-Cette option détermine quels sont les types de stockage de persistance à
-considérer lors d'un sondage pour le média de persistance. Si "filesystem"
-est dans la liste, les systèmes de fichier avec des étiquettes
-correspondantes seront utilisés; si "file" est dans la liste, tous les
-systèmes de fichier seront sondés pour archives et fichiers image avec des
-noms de fichier correspondant. Le défaut est "file,filesystem".
-.IP \fBpersistence\-label\fP=\fILABEL\fP 4
-live\-boot utilisera le nom "LABEL" à la place de "persistence" lorsqu'il
-cherchera pour un stockage persistant. LABEL peut être tout nom de fichier
-valide, étiquette de partition ou nom GPT.
-.IP \fBnoeject\fP 4
-Cette option fait en sorte que live\-boot redémarre sans essayer d'éjecter le
-média et sans demander à l'utilisateur de retirer le média de démarrage.
-.IP \fBshowmounts\fP 4
-Avec ce paramètre, live\-boot montrera sur "/" les systèmes de fichier ro
-(essentiellement compressés) sur "/lib/live". Ceci n'est pas activé par
-défaut car ça pourrait conduire à des problèmes avec des applications comme
-"mono" qui stocke des chemins binaires lors de l'installation.
-.IP \fBsilent\fP 4
-Si vous démarrez avec le paramètre quiet normal, live\-boot caches la plupart
-de ses messages. Lorsque de l'ajout de silent, il cache tout.
-.IP \fBtodisk\fP=\fIDEVICE\fP 4
-À l'ajout de ce paramètre, live\-boot essaiera de copier le média en
-lecture\-seule entièrement vers le périphérique spécifié avant de monter le
-système de fichier racine. Il nécessite probablement un bon paquet d'espace
-libre. Les démarrages suivant devraient alors sauter cette étape et
-simplement spécifier le paramètre de démarrage "live\-media=DEVICE" avec le
-même DEVICE utilisé cette fois.
-.IP \fBtoram\fP 4
-À l'ajout de ce paramètre, live\-boot essaiera de copier l'entiereté du média
-en lecture\-seule vers la RAM de l'ordinateur avant de monter le système de
-fichier racine. Ceci pourrait nécessiter beaucoup de RAM, en fonction de
-l'espace utilisé par le média en lecture\-seule.
-.IP \fBunion\fP=aufs|overlay 4
-.\" FIXME
-Par défaut, live\-boot utilise aufs. Avec ce paramètre, vous pouvez changer
-ceci pour overlay.
-
-.\" FIXME
-.SH "FICHIERS (ancien)"
-.IP \fB/etc/live.conf\fP 4
-Certaines variables peuvent être configurées à l'aide de ce fichier de
-configuration (à l'intérieur du système live).
-.IP \fBlive/filesystem.module\fP 4
-.\" FIXME
-Ce fichier optionnel (à l'intérieur du média live) contient une liste de
-noms de fichier séparés\-par\-un\-caractère\-de\-retour ou une espace\-blanc
-correspondants aux images disque dans le répertoire "/live". Si ce fichier
-existe, uniquement les images listées ici seront fusionnées dans le aufs
-racine, et elles seront chargées dans l'ordre de cette liste. La première
-entrée dans ce fichier sera le point "le plus bas" dans le aufs, et le
-dernier fichier dans cette liste sera en "haut" du aufs, directement en
-dessous de /overlay. Sans ce fichier, toute image dans le répertoire "/live"
-sont chargées par ordre alphanumérique.
-
-.SH FICHIERS
-.IP \fB/etc/live/boot.conf\fP 4
-.IP \fB/etc/live/boot/*\fP 4
-.IP \fBlive/boot.conf\fP 4
-.IP \fBlive/boot/*\fP 4
-.IP \fBpersistence.conf\fP 4
-
-.SH "VOIR AUSSI"
-\fIpersistence.conf\fP(5)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH "PAGE D'ACCUEIL"
-Davantage d'informations à propos de live\-boot et du projet Live Systems
-peuvent être trouvées sur la page <\fIhttp://live\-systems.org/\fP> et
-dans le manuel sur <\fIhttp://live\-systems.org/manual/\fP>.
-
-.SH BOGUES
-Les bogues peuvent être signalés en soumettant un rapport de bogue pour le
-paquet live\-boot dans le BTS à <\fIhttp://bugs.debian.org/\fP> ou par
-l'écriture d'un courriel à la liste de diffusion Live Systems à
-<\fIdebian\-live@lists.debian.org\fP>.
-
-.SH AUTEUR
-live\-images a été écrit par Daniel Baumann
-<\fImail@daniel\-baumann.ch\fP>.
diff --git a/manpages/fr/persistence.conf.fr.5 b/manpages/fr/persistence.conf.fr.5
deleted file mode 100644 (file)
index 9a26ad6..0000000
+++ /dev/null
@@ -1,224 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT conf 22.09.2015 5.0~a5\-1 "Projet Live Systems"
-
-.SH NOM
-\fBpersistence.conf\fP \- Fichier de configuration pour le media de persistance
-dans live\-boot
-
-.SH DESCRIPTION
-Si live\-boot sondes un volume de persistance avec l'étiquette (ou le nom GPT
-ou le nom de fichier, mais à partir de maintenant nous dirons juste
-"étiquette") "persistence", ce volume de persistance est complètement
-personnalisable à travers le fichier  \fBpersistence.conf\fP stockée à la
-racine de son système de fichier. Tout volume ainsi étiquetté doit avoir un
-fichier comme ceci, ou il sera ignoré.
-.PP
-Le format de \fBpersistence.conf\fP permet les lignes vides et les lignes
-commençant avec un "#" (utilisé pour les commentaires), les deux seront
-ignorés. Un "montage personnalisé" a le format :
-.PP
-.RS
-\fIDIR\fP [\fIOPTION\fP]...
-.RE
-.PP
-qui se traduit grossièrement par "fabrique \fIDIR\fP la persistance selon le
-chemin décrit par la liste d'\fIOPTION\fPs".
-.PP
-Pour chaque montage personnalisé \fIDIR\fP doit être un chemin absolu qui ne
-peut pas contenir d'espaces blanc ou les composants de chemins . et .. , et
-ne peut pas être /live (ou un de ses sous\-répertoires). Une fois activé,
-toutes les modifications (effacement de fichier, création et modification)
-dans \fIDIR\fP sur le système de fichier live sont emmagasinées de façon
-persistante dans un chemin équivalent à \fIDIR\fP sur le média de persitance,
-appelé le répertoire source. Le moyen par défaut pour accomplir la
-persistance est simplement de bind\-monter le répertoire source correspondant
-à \fIDIR\fP, mais ceci peut être modifié à travers l'utilisation d'\fIOPTION\fPs.
-.PP
-Tous les montages personnalisés seront réalisés dans un ordre qui ne
-permettent pas à deux montages personnalisés de se "cacher" l'un
-l'autre. Par exemple, si nous avons les deux \fIDIR\fP:s /a et /a/b , /a sera
-toujours monté en premier, puis /a/b. Ceci sera toujours vrai quelque soit
-l'ordre des lignes dans \fBpersistence.conf\fP, ou si plusieurs fichiers
-\fBpersistence.conf\fP sur différents média de persistance sont utilisés au
-même moment. Néanmoins, il est interdit aux montages personnalisés d'avoir
-leurs répertoires source à l'intérieur du répertoire source d'un autre
-montage personnalisé, ainsi les répertoires source qui sont auto\-créés par
-live\-boot ne prennent pas en charge les montages "emboîtés" comme /a et /a/b
-sur le même média. Dans ce cas, vous devez utiliser l'option \fBsource\fP (voir
-ci\-dessous) pour être certains qu'ils ne sont pas emmagasinés dans
-différents répertoires source.
-.PP
-Lorsqu'un répertoire source n'existe pas sur le média de persistance pour un
-montage personnalisé donné, il sera créé automatiquement, et les permissions
-et la propriété seront paramétrées avec optimisme en accord avec \fIDIR\fP. Il
-sera également amorcé en copiant le contenu du \fIDIR\fP dans son répertoire
-source sur le média de persistance. L'amorçage ne se passera pas lorsque les
-options \fBlink\fP ou \fBunion\fP sont utilisées (voir ci\-dessous).
-
-.SH OPTIONS
-Les montages personnalisés défini dans  \fBpersistence.conf\fP acceptent les
-options suivantes dans une liste séparée par des commas :
-.IP \fBsource\fP=\fIPATH\fP 4
-Lorsqu'indiqué, emmagasine les modifications persistantes dans \fIPATH\fP sur
-le média de persistance. \fIPATH\fP doit être un chemin relatif (au regard de
-la racine du média de persistance) qui ne peut pas contenit d'espaces blancs
-ou de composants de chemins spéciaux comme . ou .. , avec l'exception qu'il
-peut simplement s'agir de . qui signifie : la racine du média de
-persistance.Cette option est principalement utile si vous voulez imbriquer
-des montages personnalisés qui, autrement, causeraient des erreurs, ou si
-vous voulez rendre disponible la racine du média en entier (équivalent à au
-\- maintenant déprécié \- type de persistance \fBhome\-rw\fP).
-.PP
-Les options suivantes sont mutuellement exclusives (uniquement la dernière
-donnée sera effective) :
-.IP \fBbind\fP 4
-Bind\-monte le répertoire source dans \fIDIR\fP. Ceci est le défaut.
-.IP \fBlink\fP 4
-Crée la structure de répertoire du répertoire source sur le média de
-persistance dans \fIDIR\fP et crée des liens symboliques depuis l'emplacement
-correspondant dans \fIDIR\fP pour chaque fichier dans le répertoire source. Les
-fichiers ou répertoire existants avec le même nom aussi bien que tout lien
-seront écrasés. Notez que l'effacement des liens dans \fIDIR\fP supprimera
-uniquement le lien, pas le fichier correspondant dans la source; les liens
-supprimés réapparaîtront après un redémarrage. Pour ajouter ou supprimer un
-fichier de façon permanente, on doit le faire directement dans le répertoire
-source.
-.IP
-En réalité, \fBlink\fP rendra persistants uniquement les fichiers déjà présents
-dans le répertoire source, aucun autre fichier dans \fIDIR\fP. Ces fichiers
-doivent être ajoutés manuellement au répertoire source pour pouvoir utiliser
-cette option, et ils apparaîtront dans \fIDIR\fP en addition des fichiers déjà
-présents. Cette option est utile lorsque seulement certain fichiers doivent
-être persistants, et pas l'ensemble du répertoire dans lequel ils se
-trouvent, par exemple certains fichiers de configuration dans le répertoire
-de l'utilisateur.
-.IP \fBunion\fP 4
-Sauvegarde la branche rw d'un union sur le média de persistance, ainsi,
-seuls les modifications sont emmagasinnées de façon persistante. Ceci peut
-potentiellement réduire l'utilisation du disque comparé aux montages\-bind,
-et ne cachera pas les fichiers ajoutés au média en lecture seule. Un
-avertissement est que l'union utilisera \fIDIR\fP depuis le système de fichier
-en lecture seule de l'image, pas le système de fichier racine réel, et donc
-les fichiers créés après le démarrage (par exemple par live\-config)
-n'apparaîtront pas dans l'union. Cette option utilisera le système de
-fichier union spécifié par le paramètre de démarrage \fBunion\fP de live\-boot.
-
-.SH RÉPERTOIRES
-.IP \fB/live/persistence\fP 4
-Tous les volumes de persistance seront montés ici (dans le répertoire
-correspondant au nom de périphérique). Le fichier \fBpersistence.conf\fP peut
-être facilement édité à travers ce montage, de la même façon que tout
-répertoire source (ce qui est spécialement pratique pour les montages
-personnalisés utilisant l'option \fBlink\fP).
-
-.SH EXEMPLES
-
-Disons que nous avons un volume persistant \fIVOL\fP avec un fichier
-\fBpersistence.conf\fP contenantles quatre lignes suivantes (numérotée pour
-faciliter leur référencement) :
-.TP  7
-1.
-/home/user1 link,source=config\-files/user1
-.TP 
-2.
-/home/user2 link,source=config\-files/user2
-.TP 
-3.
-/home
-.TP 
-4.
-/usr union
-.PP
-Les répertoires source correspondant sont :
-.TP  7
-1.
-\fIVOL\fP/config\-files/user1 (mais ce serait \fIVOL\fP/home/user1 sans l'option
-\fBsource\fP)
-.TP 
-2.
-\fIVOL\fP/config\-files/user2 (mais ce serait \fIVOL\fP/home/user2 sans l'option
-\fBsource\fP)
-.TP 
-3.
-\fIVOL\fP/home
-.TP 
-4.
-\fIVOL\fP/usr
-.PP
-Il était nécessaire de paramétrer les options \fBsource\fP pour 1 et 2,
-puisqu'autrement ils seraient devenus imbriqués avec la source du 3, ce qui
-est invalide.
-.PP
-La ligne 3 sera prise en compte avant les lignes 1 et 2 afin d'éviter que
-les montages personnalisés 1 et 2 ne soient cachés par 3. Lorsque la ligne 3
-est prise en charge, \fIVOL\fP/home est simplement bind\-monté sur /home. Pour
-illustrer ce qu'il se passe pour les lignes 1 et 2, disons que les fichiers
-suivants existent :
-.TP  7
-a.
-\fIVOL\fP/config\-files/user1/.emacs
-.TP 
-b.
-\fIVOL\fP/config\-files/user2/.bashrc
-.TP 
-c.
-\fIVOL\fP/config\-files/user2/.ssh/config
-.PP
-Puis que les liens et les répertoires suivant seront créés :
-.TP  7
-Liens :
-/home/user1/.emacs \-> \fIVOL\fP/config\-files/user1/.emacs (depuis a)
-.TP 
-Liens :
-/home/user2/.bashrc \-> \fIVOL\fP/config\-files/user2/.bashrc (depuis b)
-.TP 
-Rép :
-/homea/user2/.ssh (depuis c)
-.TP 
-Liens :
-/home/user2/.ssh/config \-> \fIVOL\fP/config\-files/user2/.ssh/config (depuis
-c)
-.PP
-On pourrait dire que les lignes 1 et 2 dans l'exemple de fichier
-\fBpersistence.conf\fP ci\-dessus sont non\-nécessaires puisque la ligne 3
-rendrait déjà presistant l'entierté de /home. L'option \fBlink\fP est pensée
-pour les situations où vous ne voulez pas que tout le répertoire soit
-persistant, mais seulement certains de fichiers y étant présents ou ses
-sous\-répertoires.
-.PP
-La ligne 4 peut être montée n'importe quand puisque son \fIDIR\fP (et
-répertoire source) est complètement disjoint de tous les autres montages
-personnalisés. Lorsque monté, \fIVOL\fP/usr sera la branche rw à cause de
-l'option \fBunion\fP, et contiendra seulement la différence comparée au système
-de fichier en lecture seule sous\-jascent. En conséquence, les paquets
-pourront être installés dans /usr avec une grande efficacité d'empreinte
-d'espace comparé aux montages\-bind, puisque dans ce dernier cas, tout le
-contenu de /usr devra être copié dans \fIVOL\fP/usr pendant l'amorçage inital.
-
-.SH "VOIR AUSSI"
-\fIlive\-boot\fP(7)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH "PAGE D'ACCUEIL"
-Davantage d'informations à propos de live\-boot et du projet Live Systems
-peuvent être trouvées sur la page <\fIhttp://live\-systems.org/\fP> et
-dans le manuel sur <\fIhttp://live\-systems.org/manual/\fP>.
-
-.SH BOGUES
-Les bogues peuvent être signalés en soumettant un rapport de bogue pour le
-paquet live\-boot dans le BTS à <\fIhttp://bugs.debian.org/\fP> ou par
-l'écriture d'un courriel à la liste de diffusion Live Systems à
-<\fIdebian\-live@lists.debian.org\fP>.
-
-.SH AUTEUR
-live\-images a été écrit par Daniel Baumann
-<\fImail@daniel\-baumann.ch\fP>.
diff --git a/manpages/ja/live-boot.ja.7 b/manpages/ja/live-boot.ja.7
deleted file mode 100644 (file)
index ec0a519..0000000
+++ /dev/null
@@ -1,229 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT 7 2015\-09\-22 5.0~a5\-1 "Live システムプロジェクト"
-
-.SH 名前
-\fBlive\-boot\fP \- システム起動構成要素
-
-.SH 説明
-\fBlive\-boot\fP はブートプロセス中 (早期ユーザ空間) に Live システムを設定する構成要素を収録しています。
-.PP
-.\" FIXME
-live\-boot は initramfs\-tools 用のフックで、例えば \fIlive\-helper\fP(7) で作成した Live
-システムをブートできる initramfs を生成するのに利用します。これには Live システムの ISO やネットワーク経由でブートするための
-tar アーカイブ、USB メモリ用のイメージ等があります。
-.PP
-.\" FIXME
-これはブート時に root ファイルシステム (squashfs 等圧縮ファイルシステムのイメージであることが多い)
-が置かれている「/live」ディレクトリを収録する (読み取り専用の) メディアを検索します。見つけた場合は aufs
-を使って書き込み可能な環境を作成してシステムを起動します。
-
-.SH 設定
-\fBlive\-boot\fP はブートパラメータまたは設定ファイル経由で設定できます。
-.PP
-Live イメージで利用されるデフォルトの live\-boot パラメータを設定する場合は \fIlb_config\fP(1) マニュアルページの
-\-\-bootappend\-live オプションを見てください。
-
-.SS カーネルパラメータ
-\fBlive\-boot\fP はカーネルパラメータとして「boot=live」が利用された場合にのみ有効になります。
-.PP
-さらに、挙動に影響するブートパラメータが他にもいくつかあります。下記を見てください。
-
-.SS 設定ファイル
-\fBlive\-boot\fP は設定ファイルを利用して設定 (但し有効化しない) できます。この設定ファイルは root ファイルシステム自体
-(/etc/live/boot.conf、 /etc/live/boot/*)、または Live メディア (live/boot.conf、
-live/boot/*) に配置できます。
-
-.SH オプション
-.\" FIXME
-\fBlive\-boot\fP では以下のパラメータが現在有効です。
-.IP \fBaccess\fP=\fIアクセス\fP 4
-物理的または視覚的に障害のあるユーザ向けのアクセシビリティレベルをセットします。\fIアクセス\fPに入るのは v1、v2、v3、m1、m2
-のどれかでないといけません。v1=軽度の視覚障害、 v2=中程度の視覚障害、 v3=盲目、 m1=運動神経に些細な難あり、
-m2=運動神経に中程度の難あり。
-.IP \fBconsole\fP=\fITTY,速度\fP 4
-「live\-getty」オプションで利用するデフォルトのコンソールをセットします。例: 「console=ttyS0,115200」
-.IP \fBdebug\fP 4
-initramfs ブートプロセスの出力をもっと冗長にします。
-.br
-debug=1 としてください
-.br
-debug に値をセットしないとメッセージは表示されないかもしれません。
-.IP \fBfetch\fP=\fIURL\fP 4
-.IP \fBhttpfs\fP=\fIURL\fP 4
-指定した URL から squashfs イメージをダウンロードしてネットワーク経由でブートする別のやり方で、この取得方法ではイメージを RAM
-にコピーし、httpfs を使う方法では FUSE と httpfs2 を使ってイメージを適切な位置にマウントします。RAM
-へのコピーにはさらに多くのメモリが必要で、大きなイメージでは多少時間がかかるかもしれません。しかしその後はネットワークを必要としないため正常に動作する可能性が高くなり、それ以上サーバとやりとりする必要がないためブート後はそのシステムは高速に動作します。
-.br
-busybox の現在の wget 及び DNS 解決の制限のために URL にはホスト名を使えず、IPアドレスにしか対応していません。
-.br
-機能しない: http://example.com/path/to/your_filesystem.squashfs
-.br
-機能する: http://1.2.3.4/path/to/your_filesystem.squashfs
-.br
-また、そのため httpd の名前ベースのバーチャルホストからイメージを取得することは、httpd
-のそのホストの設定で同一のIPアドレスを共有している場合は現在不可能であることにも注意してください。
-.br
-また、squashfs イメージの適切な位置にある Live ISO イメージも利用できます。
-.IP \fBiscsi\fP=\fIサーバのIPアドレス[,サーバのポート];対象の名前\fP 4
-LUN (Logical Unit Number、論理ユニット番号) が iso またはディスクの Live イメージを指している iSCSI
-ターゲットからのブートで、指定されたターゲットは LUN のうち Live メディアらしきものから検索されます。\fBiscsitarget\fP
-ソフトウェアを使って iSCSI ターゲットを判定している場合の ietd.conf はこのようになります:
-.br
-# iscsi= パラメータで指定したターゲットの名前
-.br
-Target <ターゲットの名前>
-  Lun 0 Path=<live\-image.iso のパス>,Type=fileio,IOMode=ro
-  # 複数のマシンのブートに使いたい場合は
-  # Wthreads や MaxConnections のような一部の
-  # パラメータを調整してみるのもいいかもしれません。
-.IP \fBfindiso\fP=\fI/イメージ/への/パス\fP 4
-\&.squashfs ファイルを通常検索する位置にある全ディスクから、指定した ISO ファイルを検索します (そのため
-fromiso=... で指定するデバイス名を知っている必要はありません)。
-.IP \fBfromiso\fP=\fI/イメージ/への/パス\fP 4
-Live メディア上で利用可能な ISO イメージ内からファイルシステムを利用できるようにします。
-.IP \fBignore_uuid\fP 4
-検出したメディアに合う initramfs に埋め込まれた UUID の確認を一切行いません。initramfs のビルド時に
-LIVE_GENERATE_UUID=1 を設定して UUID を生成するように live\-boot に指示しているかもしれません。
-.IP \fBverify\-checksums\fP 4
-指定するとブート中に Live メディアの MD5 サムを計算し、その Live メディアのルートディレクトリにある md5sum.txt
-中の値と比較します。
-.IP "\fBip\fP=[\fIデバイス\fP]:[\fIクライアントのIPアドレス\fP]:[\fIネットマスク\fP]:[\fIゲートウェイのIPアドレス\fP]:[\fIネームサーバ\fP] [,[\fIデバイス\fP]:[\fIクライアントのIPアドレス\fP]:[\fIネットマスク\fP]:[\fIゲートウェイのIPアドレス\fP]:[\fIネームサーバ\fP]]" 4
-ブート時に設定するインターフェイスの名前とオプションを指定できます。dhcp (デフォルト)
-を使いたい場合は指定しないでください。将来のリリースでは公式のカーネルブートパラメータの仕様に倣って変更される (例えば
-ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp) かもしれません。
-.IP \fBip\fP=[\fI読み込み元メディア\fP] 4
-この変数をセットすると dhcp 及び固定のネットワーク設定は単に飛ばされ、システムはメディアで事前に設定されている (設定されていないといけません)
-/etc/network/interfaces を代わりに利用します。
-.IP {\fBlive\-media\fP|\fBbootfrom\fP}=\fIデバイス\fP 4
-この2つは等価で、どちらかを指定すると live\-boot
-はまずこのデバイスについて読み取り専用のルートファイルシステムが存在するであろう「/live」ディレクトリを検索します。それで使えそうなものが見つからない場合は通常のブロックデバイスの走査が行われます。
-.br
-実際のデバイス名を指定する代わりに「removable」というキーワードを使って、検索対象とする Live
-メディアを脱着可能なものだけに限定することができます。メディアを USB
-大容量記憶装置だけにさらに限定したい場合は「removable\-usb」というキーワードを使えることに注目してください。
-.IP {\fBlive\-media\-encryption\fP|\fBencryption\fP}=\fI暗号化の種類\fP 4
-live\-boot はパスフレーズを質問することで暗号化する種類の rootfs をマウントできます。凝った Live システムをビルドするのに有用です
-:\-)。これまでのところサポートしているのは loop\-aes 暗号化を指示する「aes」です。
-.IP \fBlive\-media\-offset\fP=\fIバイト数\fP 4
-このようにして、上記で指定したまたは自動検出したデバイスの、指定バイト数だけずれた位置からイメージが開始することを live\-boot
-に指示できます。他の ISO やイメージの中にある Live システムの ISO
-やイメージを見えないようにして「クリーン」なイメージを作成するのに有用かもしれません。
-.IP \fBlive\-media\-path\fP=\fIパス\fP 4
-メディア上の Live
-ファイルシステムへのパスをセットします。このデフォルト値は「/live」で、合わせてメディアを独自化していない限りこの値を変更すべきではありません。
-.IP \fBlive\-media\-timeout\fP=\fI秒数\fP 4
-「live\-media=」により指定したデバイスがその処理をあきらめるまでの制限時間を秒数で指示します。
-.IP \fBmodule\fP=\fI名前\fP 4
-デフォルトとなっているオプションのファイル「filesystem.module」(以下参照)
-を使う代わりに別のファイルを拡張子「.module」を外して指定することができます。これは Live
-メディアの「/live」ディレクトリに配置すべきです。
-.IP \fBnetboot\fP[=nfs|cifs] 4
-ネットワークマウントを行うことを live\-boot に指示します。(オプションの「nfsopts=」で)
-パラメータ「nfsroot=」によりルートファイルシステムが置かれている場所を指定します。引数を付けない場合はまず cifs
-を試し、それが失敗した場合は nfs を試します。
-.IP \fBnfsopts\fP= 4
-これを使って nfs オプションを指定できます。
-.IP \fBnofastboot\fP 4
-このパラメータは /etc/fstab
-にあるファイルシステムのチェックがデフォルトで無効化されているのを無効にします。ハードディスクに静的ファイルシステムがあり、ブート時にそれをチェックさせたい場合はこのパラメータを使ってください。使わない場合はファイルシステムのチェックは飛ばされます。
-.IP \fBnopersistence\fP 4
-「保持 (persistence)」機能を無効化します。ブートローダ (syslinux のようなもの)
-が保持機能を有効にしてインストールされている場合に有用です。
-.IP \fBnoeject\fP 4
-Live メディアを取り出すかどうか確認しません。
-.IP \fBramdisk\-size\fP 4
-このパラメータにより独自の RAM ディスクサイズ (tmpfs マウント時の「\-o サイズ」オプション) をセットできます。デフォルトでは RAM
-ディスクサイズはセットされていないため、マウント時のデフォルト値が適用されます (現在は利用可能な RAM の 50%)。toram
-を指定してブートした場合、このオプションは現在のところ効果がないことに注意してください
-.IP \fBswap=true\fP 4
-このパラメータはローカルのスワップパーティションの利用を有効にします。
-.IP \fBpersistence\fP 4
-live\-boot は保持用メディアのデバイスを調査します。このデバイスにはパーティション (GPT (GUID Partition
-Table、GUIDパーティションテーブル) の名前を正しく指定) やファイルシステム (ラベルの名前を正しく指定)、イメージファイル
-(ファイル名を正しく指定) を使えます。保存先は「persistence」(\fIpersistence.conf\fP(5) 参照)
-という名前/ラベルになります。保存先のイメージファイルは「persistence」という名前になります。
-.IP "\fBpersistence\-encryption\fP=\fI種類1\fP,\fI種類2\fP ... \fI種類n\fP" 4
-このオプションは保持用メディアのデバイス調査時に利用を許可する暗号化の種類を決定します。「none」が一覧にある場合は暗号化されていないメディアを許可します。「luks」が一覧にある場合は
-LUKS
-により暗号化されているメディアを許可します。暗号化されているメディアがデバイスにある場合はそのメディアの調査時にパスフレーズをユーザに質問します。デフォルト値は「none」です。
-.IP \fBpersistence\-media\fP={\fIremovable\fP|\fIremovable\-usb\fP} 4
-「removable」というキーワードを指定すると、live\-boot は保持用パーティションを脱着可能なメディアからのみ検索します。メディアを USB
-大容量記憶装置だけにさらに限定したい場合は「removable\-usb」というキーワードを使えることに注目してください。
-.IP "\fBpersistence\-method\fP=\fI種類1\fP,\fI種類2\fP ... \fI種類n\fP" 4
-このオプションは許可する保持用メディアの種類を決定します。「overlay」が一覧にある場合はオーバーレイと見なします
-(つまり「live\-rw」と「home\-rw」)。デフォルト値は「overlay」です。
-.IP \fBpersistence\-path\fP=\fIパス\fP 4
-live\-boot
-は保持用ファイルをパーティションのルートディレクトリから検索します。このパラメータを使ってパスを設定すると同一のパーティションの複数のディレクトリを保持用ファイルの保管先にできます。
-.IP \fBpersistence\-read\-only\fP 4
-ファイルシステムの変更は保持用メディアには残されません。特にオーバーレイとネットワーク経由のブート用の NFS
-マウントは読み取り専用でマウントされます。
-.IP "\fBpersistence\-storage\fP=\fI種類1\fP,\fI種類2\fP ... \fI種類n\fP" 4
-このオプションは保持用メディアの調査時に対象とする保持用記憶装置の種類を決定します。「filesystem」が一覧にある場合はラベルが該当するファイルシステムを利用します。「file」が一覧にある場合は全ファイルシステムについてファイル名が該当するアーカイブやイメージファイルを調査します。デフォルト値は「file,filesystem」です。
-.IP \fBpersistence\-label\fP=\fIラベル\fP 4
-live\-boot
-は保持用記憶装置の検索時に「persistence」の代わりにここで指定した「ラベル」を使います。「ラベル」はファイル名やパーティションのラベル、GPT
-の名前として有効な任意のものを使えます。
-.IP \fBnoeject\fP 4
-このオプションを使うと live\-boot はメディアを取り出さず、ブート用メディアを削除するかユーザに質問することもなくリブートします。
-.IP \fBshowmounts\fP 4
-このパラメータを使うと live\-boot は「/」で「/lib/live」上の (ほとんどの場合圧縮されている) ro
-ファイルシステムを提示します。これはインストール時にバイナリのパスを記憶する「mono」のようなアプリケーションで問題を起こす可能性があるためデフォルトでは有効にされていません。
-.IP \fBsilent\fP 4
-通常の quiet パラメータを付けてブートすると live\-boot
-が出すほとんどのメッセージを非表示にします。「silent」を付けると全て非表示にします。
-.IP \fBtodisk\fP=\fIデバイス\fP 4
-このパラメータを追加すると、live\-boot
-はルートファイルシステムをマウントする前に読み取り専用メディア全体を指定したデバイスにコピーしようとします。これには恐らく多くの RAM
-が必要となります。以後のブートではこの段階を飛ばして、今回そのデバイスで使ったのと同一の「live\-media=デバイス」ブートパラメータを単に指定するようにしてください。
-.IP \fBtoram\fP 4
-このパラメータを追加すると、live\-boot はルートファイルシステムをマウントする前に読み取り専用メディア全体をそのコンピュータの RAM
-にコピーしようとします。その読み取り専用メディアで利用している容量により、これには多くの RAM が必要となるかもしれません。
-.IP \fBunion\fP=overlay|aufs 4
-.\" FIXME
-デフォルトで live\-boot は overlay を利用します。このパラメータにより aufs に切り替えることができます。
-
-.\" FIXME
-.SH "ファイル (古い情報)"
-.IP \fB/etc/live.conf\fP 4
-一部の変数はこの (Live システム中の) 設定ファイルにより設定できます。
-.IP \fBlive/filesystem.module\fP 4
-.\" FIXME
-この (Live メディア内の)
-オプションのファイルは「/live」ディレクトリ中のディスクイメージに対応するファイル名を空白文字または復帰文字で区切った一覧を収録します。このファイルが存在する場合はその中の一覧にあるイメージだけがルート
-aufs に統合され、その一覧の順に読み込まれます。このファイルの最初の項目が /overlay 直下で aufs
-の「最下位の」マウントポイント、この一覧の最後のファイルが /overlay 直下で aufs
-の「最上位の」マウントポイントとなります。このファイルがない場合は「/live」ディレクトリにあるイメージを英数字順に読み込みます。
-
-.SH ファイル
-.IP \fB/etc/live/boot.conf\fP 4
-.IP \fB/etc/live/boot/*\fP 4
-.IP \fBlive/boot.conf\fP 4
-.IP \fBlive/boot/*\fP 4
-.IP \fBpersistence.conf\fP 4
-
-.SH 関連項目
-\fIpersistence.conf\fP(5)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH ホームページ
-live\-boot 及び Live
-システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや
-<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。
-
-.SH バグ
-バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-boot
-パッケージのバグ報告として提出するか、<\fIdebian\-live@lists.debian.org\fP> にある Live
-システムのメーリングリスト宛てにメールを書くことにより報告できます。
-
-.SH 作者
-live\-boot は Daniel Baumann さん <\fImail@daniel\-baumann.ch\fP> により書かれました。
diff --git a/manpages/ja/persistence.conf.ja.5 b/manpages/ja/persistence.conf.ja.5
deleted file mode 100644 (file)
index 4a4fde9..0000000
+++ /dev/null
@@ -1,155 +0,0 @@
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.TH LIVE\-BOOT conf 2015\-09\-22 5.0~a5\-1 "Live システムプロジェクト"
-
-.SH 名前
-\fBpersistence.conf\fP \- live\-boot 状態保持用メディアの設定ファイル
-
-.SH 説明
-live\-boot が「persistence」というラベル (GPT の名前やファイル名も含みますがここからは「ラベル」と呼びます)
-を付けられた保持用ボリュームを調査するとき、そのボリュームの保持方法はそのファイルシステムの最上部に置かれた \fBpersistence.conf\fP
-ファイルにより全面的に独自化できます。こういったラベルを付けられたボリュームにはそういったファイルがないといけません。ない場合は無視します。
-.PP
-\fBpersistence.conf\fP の形式では空行や「#」で始まる行 (コメント用)
-を両方とも利用でき、そういった行は解釈されず無視されます。いわゆる「独自マウント」は
-.PP
-.RS
-\fIディレクトリ\fP [\fIオプション\fP]...
-.RE
-.PP
-の形式で、大まかに言い換えると「\fIオプション\fP一覧により指示した方法で\fIディレクトリ\fPを保持する」ということになります。
-.PP
-独自マウントそれぞれについて\fIディレクトリ\fPには絶対パスを使う必要があり、空白文字や特別なパスである「.」や「..」を含めること、/live
-(やそのサブディレクトリ) を使うことはできません。Live ファイルシステムの\fIディレクトリ\fPに対するあらゆる変更 (ファイルの削除や作成、変更)
-はそれを有効にした段階でソースディレクトリと呼ばれる保持用メディアの\fIディレクトリ\fPに相当するパスに持続的に保管されます。保持を実現するデフォルトの方法は対応するソースディレクトリを\fIディレクトリ\fPに対して単純にバインドマウントする方法ですが、これは\fIオプション\fPを使うことで変更できます。
-.PP
-独自マウントは全て順番に行われるため、2つの独自マウントで互いに「隠す」ようなことはできません。例えば2つの\fIディレクトリ\fP /a と /a/b
-があるとすると、この場合は常にまず /a がマウントされ、それから /a/b がマウントされます。これは \fBpersistence.conf\fP
-の他の行の順を問わず成り立ち、異なる保持用メディアにある複数の \fBpersistence.conf\fP
-ファイルを同時に使う場合でも同様です。しかし、独自マウントではソースディレクトリを別の独自マウントのソースディレクトリ内にすることは禁止されているため、live\-boot
-により自動生成されたソースディレクトリは同一のメディアでの /a と /a/b のような「入り組んだ」マウントをサポートしません。この場合は
-\fBsource\fP オプション (以下参照) を使い、対象ディレクトリが必ず異なるソースディレクトリにあるようにしないといけません。
-.PP
-特定の独自マウントのソースディレクトリが保持用メディアに存在しない場合は自動的に作成され、その\fIディレクトリ\fPにふさわしい権限と所有がセットされます。\fIディレクトリ\fPの内容を保持用メディアのソースディレクトリにコピーすることでもこの自動処理は行われます。\fBlink\fP
-や \fBunion\fP オプション (以下参照) を使った場合はこの自動処理は行われません。
-
-.SH オプション
-\fBpersistence.conf\fP で定義する独自マウントでは以下のオプションをコンマで区切った一覧の形で受け付けます:
-.IP \fBsource\fP=\fIパス\fP 4
-指定した場合は保持用メディアの\fIパス\fPに保持内容の変更を保管します。\fIパス\fPは (その保持用メディアのルートからの)
-相対パスを使う必要があり、空白文字や特別なパスである「.」や「..」については、「.」だけが単体で使われたときにはその保持用メディアのルートを指しますが、その例外を除いて含めることができません。このオプションが関連するのはほとんどが、これ以外ではエラーを引き起こす入り組んだ独自マウントにしたい場合、またはメディア全体のルートを利用できるようにしたい場合です
-(現在では非推奨となっている \fBhome\-rw\fP という種類の保持に似ています)。
-.PP
-以下のオプションは相互に排他です (効果があるのは最後に指定したものだけです):
-.IP \fBbind\fP 4
-ソースディレクトリを\fIディレクトリ\fPにバインドマウントします。これはデフォルトです。
-.IP \fBlink\fP 4
-ソースディレクトリのディレクトリ構造を保持用メディアの\fIディレクトリ\fPに作成し、\fIディレクトリ\fPの対応する位置からソースディレクトリの各ファイルに向けてシンボリックリンクを作成します。リンクと同一名の既存のファイルやディレクトリは全て上書きされます。\fIディレクトリ\fP内にあるリンクの削除はリンクを削除するだけで、ソースの対応するファイルは削除しないことに注意してください。削除したリンクは再起動後には再び現れます。ファイルを恒久的に追加、削除するにはソースディレクトリで直接その作業を行わないといけません。
-.IP
-事実上、\fBlink\fP
-は既にソースディレクトリにあるファイルだけを保持し、\fIディレクトリ\fPにあるそれ以外のファイルは保持しません。保持するファイルをこのオプションの対象とするには手作業によりソースディレクトリに追加する必要があり、そうすることで\fIディレクトリ\fPに、既にそこにあるファイルに加えて現れるようになります。このオプションは特定のファイルだけを保持する必要があり、それがあるディレクトリ全体が必要ではない場合、例えばユーザのホームディレクトリにある設定ファイルの一部を保持する場合に有用です。
-.IP \fBunion\fP 4
-結合ファイルシステムの rw
-ブランチを保持用メディアに保存するため、変更点だけを持続的に保管します。バインドマウントと比較するとこの方法は潜在的にディスク使用量を減らせる可能性があり、また読み取り専用メディアに追加したファイルを隠しません。1つ注意があり、結合後に実際のファイルシステムのルートではなくイメージの読み取り専用ファイルシステムから\fIディレクトリ\fPを使うため、(例えば
-live\-config により) ブート後に作成されたファイルは結合後には見えなくなります。このオプションは live\-boot の \fBunion\fP
-ブートパラメータにより指定された結合ファイルシステムを使います。
-
-.SH ディレクトリ
-.IP \fB/live/persistence\fP 4
-保持用ボリュームは全てここで (デバイス名に対応するディレクトリで) マウントされます。\fBpersistence.conf\fP
-ファイルはこのマウントや任意のソースディレクトリから (\fBlink\fP オプションを使った独自マウントではこちらが特に実用的) 簡単に編集できます。
-
-.SH 例
-
-保持用ボリューム \fIVOL\fP があり、その \fBpersistence.conf\fP ファイルに以下の4行を収録しているものとしましょう
-(番号は参照しやすいように付加しています):
-.TP  7
-1.
-/home/user1 link,source=config\-files/user1
-.TP 
-2.
-/home/user2 link,source=config\-files/user2
-.TP 
-3.
-/home
-.TP 
-4.
-/usr union
-.PP
-それぞれに対応するディレクトリ:
-.TP  7
-1.
-\fIVOL\fP/config\-files/user1 (ただし \fBsource\fP オプションを指定しない場合は \fIVOL\fP/home/user1)
-.TP 
-2.
-\fIVOL\fP/config\-files/user2 (ただし \fBsource\fP オプションを指定しない場合は \fIVOL\fP/home/user2)
-.TP 
-3.
-\fIVOL\fP/home
-.TP 
-4.
-\fIVOL\fP/usr
-.PP
-1と2の例では \fBsource\fP オプションをセットする必要があります。そうしないと3のソースと入り組んでしまい不正となるためです。
-.PP
-1行目と2行目の独自マウントが3行目によって隠されるのを回避するため3行目は1行目と2行目よりも先に処理されます。3行目が処理された時点で
-\fIVOL\fP/home は単純に /home
-に対してバインドマウントした状態になります。1行目と2行目で起きたことを説明するため、以下のファイルが存在するとしましょう:
-.TP  7
-a.
-\fIVOL\fP/config\-files/user1/.emacs
-.TP 
-b.
-\fIVOL\fP/config\-files/user2/.bashrc
-.TP 
-c.
-\fIVOL\fP/config\-files/user2/.ssh/config
-.PP
-それにより作成されるリンクやディレクトリ:
-.TP  7
-リンク:
-/home/user1/.emacs \-> \fIVOL\fP/config\-files/user1/.emacs (a の場合)
-.TP 
-リンク:
-/home/user2/.bashrc \-> \fIVOL\fP/config\-files/user2/.bashrc (b の場合)
-.TP 
-ディレクトリ:
-/homea/user2/.ssh (c の場合)
-.TP 
-リンク:
-/home/user2/.ssh/config \-> \fIVOL\fP/config\-files/user2/.ssh/config (c の場合)
-.PP
-別の主張があるかもしれませんが、上記の \fBpersistence.conf\fP ファイルの例では3行目が既に /home
-の全てを保持対象としているため1行目と2行目は不要です。\fBlink\fP
-オプションはディレクトリ全体を保持したいのではなく、そのディレクトリ中やサブディレクトリにある特定のファイルを保持したいという状況を対象としています。
-.PP
-4行目はその\fIディレクトリ\fP (とソースディレクトリ)
-が他のどの独自マウントとも完全に分離しているためいつでもマウントできます。マウントすると、\fIVOL\fP/usr は \fBunion\fP
-オプションが指定されているため rw
-ブランチになり、元の読み取り専用ファイルシステムと比較した差分だけが収録されます。そのため、バインドマウントと比較すると容量の面で非常に効率良くパッケージを
-/usr にインストールできます。これは後者では初期の自動処理で /usr 全体を \fIVOL\fP/usr にコピーする必要があるためです。
-
-.SH 関連項目
-\fIlive\-boot\fP(7)
-.PP
-\fIlive\-build\fP(7)
-.PP
-\fIlive\-config\fP(7)
-.PP
-\fIlive\-tools\fP(7)
-
-.SH ホームページ
-live\-boot 及び Live
-システムプロジェクトについてのさらなる情報は、<\fIhttp://live\-systems.org/\fP> のホームページや
-<\fIhttp://live\-systems.org/manual/\fP> のマニュアルにあります。
-
-.SH バグ
-バグは <\fIhttp://bugs.debian.org/\fP> にあるバグ追跡システムに live\-boot
-パッケージのバグ報告として提出するか、<\fIdebian\-live@lists.debian.org\fP> にある Live
-システムのメーリングリスト宛てにメールを書くことにより報告できます。
-
-.SH 作者
-live\-boot は Daniel Baumann さん <\fImail@daniel\-baumann.ch\fP> により書かれました。
index d2c8682..28f916c 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: 2013-11-10 20:10+0900\n"
 "Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
 "Language-Team: none\n"
@@ -148,38 +148,151 @@ msgid "Configuration Files"
 msgstr "Ficheros de configuración"
 
 #. type: Plain text
-#: en/live-boot.7:27
+#: en/live-boot.7:28
+#, fuzzy
+#| msgid ""
+#| "B<live-boot> can be configured (but not activated) through configuration "
+#| "files. Those files can be placed either in the root filesystem itself (/"
+#| "etc/live/boot.conf, /etc/live/boot/*), or on the live media (live/boot."
+#| "conf, live/boot/*)."
 msgid ""
 "B<live-boot> can be configured (but not activated) through configuration "
 "files. Those files can be placed either in the root filesystem itself (/etc/"
 "live/boot.conf, /etc/live/boot/*), or on the live media (live/boot.conf, "
-"live/boot/*)."
+"live/boot/*).  These environment variables can only be set in the "
+"configuration files:"
 msgstr ""
 "B<live-boot> se puede configurar (pero no activar) mediante ficheros de "
 "configuración. Estos ficheros se pueden colocar en el sistema de ficheros "
 "raíz (/etc/live/boot.conf, /etc/live/boot/*), o en el medio en vivo (live/"
 "boot.conf, live/boot/*)."
 
+#. type: TP
+#: en/live-boot.7:29
+#, no-wrap
+msgid "B<DISABLE_CDROM>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:32
+msgid ""
+"Disable support for booting from CD-ROMs.  If set to 'I<true>' mkinitramfs "
+"will build an initramfs without the kernel modules for reading CD-ROMs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:33
+#, no-wrap
+msgid "B<DISABLE_FAT>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:36
+msgid ""
+"Disable support for booting from FAT file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module vfat and some "
+"nls_* modules."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:37
+#, no-wrap
+msgid "B<DISABLE_FUSE>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:40
+msgid ""
+"Disable support for booting from FUSE-based file systems.  If set to "
+"'I<true>' mkinitramfs will build an initramfs without the kernel module fuse "
+"and file systems that depend on it (like curlftpfs and httpfs2)."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:41
+#, no-wrap
+msgid "B<DISABLE_NTFS>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:44
+msgid ""
+"Disable support for booting from NTFS file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module ntfs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:45
+#, no-wrap
+msgid "B<DISABLE_USB>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:48
+msgid ""
+"Disable support for booting from USB devices.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module sd_mod."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:49
+#, no-wrap
+msgid "B<MINIMAL>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:52
+msgid ""
+"Build a minimal initramfs.  If set to 'I<true>' mkinitramfs will build an "
+"initramfs without some udev scripts and without rsync."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:53
+#, no-wrap
+msgid "B<PERSISTENCE_FSCK>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:56 en/live-boot.7:106
+msgid ""
+"Run fsck on persistence filesystem on boot. Will attempt to repair errors. "
+"The execution log will be saved in /var/log/live/fsck.log."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:57
+#, no-wrap
+msgid "B<FSCKFIX>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:60
+msgid ""
+"If PERSISTENCE_FSCK or forcefsck are set, will pass -y to fsck to stop it "
+"from asking questions interactively and assume yes to all queries."
+msgstr ""
+
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPCIONES"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 msgid "B<live-boot> currently features the following parameters."
 msgstr "B<live-boot> incluye los siguientes parámetros."
 
 #. type: IP
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 #, no-wrap
 msgid "B<access>=I<ACCESS>"
 msgstr "B<access>=I<ACCESS>"
 
 #. type: Plain text
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 msgid ""
 "Set the accessibility level for physically or visually impaired users. "
 "ACCESS must be one of v1, v2, v3, m1, or m2. v1=lesser visual impairment, "
@@ -193,13 +306,13 @@ msgstr ""
 "moderadas."
 
 #. type: IP
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 #, no-wrap
 msgid "B<console>=I<TTY,SPEED>"
 msgstr "B<console>=I<TTY,SPEED>"
 
 #. type: Plain text
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 msgid ""
 "Set the default console to be used with the \"live-getty\" option. Example: "
 "\"console=ttyS0,115200\""
@@ -208,41 +321,41 @@ msgstr ""
 "\". Ejemplo: \"console=ttyS0,115200\""
 
 #. type: IP
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 #, no-wrap
 msgid "B<debug>"
 msgstr "B<debug>"
 
 #. type: Plain text
-#: en/live-boot.7:37
+#: en/live-boot.7:70
 msgid "Makes initramfs boot process more verbose."
 msgstr "Hace que el proceso de arranque de initramfs sea más detallado."
 
 #. type: Plain text
-#: en/live-boot.7:39
+#: en/live-boot.7:72
 msgid "Use: debug=1"
 msgstr "Uso: debug=1"
 
 #. type: Plain text
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 msgid "Without setting debug to a value the messages may not be shown."
 msgstr ""
 "Si no se asigna un valor a debug, puede que no se muestren los mensajes. "
 
 #. type: IP
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 #, no-wrap
 msgid "B<fetch>=I<URL>"
 msgstr "B<fetch>=I<URL>"
 
 #. type: IP
-#: en/live-boot.7:42
+#: en/live-boot.7:75
 #, no-wrap
 msgid "B<httpfs>=I<URL>"
 msgstr "B<httpfs>=I<URL>"
 
 #. type: Plain text
-#: en/live-boot.7:50
+#: en/live-boot.7:83
 msgid ""
 "Another form of netboot by downloading a squashfs image from a given URL.  "
 "The fetch method copies the image to RAM and the httpfs method uses FUSE and "
@@ -262,7 +375,7 @@ msgstr ""
 "ponerse más en contacto con el servidor."
 
 #. type: Plain text
-#: en/live-boot.7:52
+#: en/live-boot.7:85
 msgid ""
 "Due to current limitations in busybox's wget and DNS resolution, an URL can "
 "not contain a hostname but an IP address only."
@@ -272,17 +385,17 @@ msgstr ""
 "dirección IP."
 
 #. type: Plain text
-#: en/live-boot.7:54
+#: en/live-boot.7:87
 msgid "Not working: http://example.com/path/to/your_filesystem.squashfs"
 msgstr "No funciona: http://ejemplo.com/ruta/al/sistema_de_ficheros.squashfs"
 
 #. type: Plain text
-#: en/live-boot.7:56
+#: en/live-boot.7:89
 msgid "Working: http://1.2.3.4/path/to/your_filesystem.squashfs"
 msgstr "Funciona: http://ejemplo.com/ruta/al/sistema_de_ficheros.squashfs"
 
 #. type: Plain text
-#: en/live-boot.7:58
+#: en/live-boot.7:91
 msgid ""
 "Also note that therefore it's currently not possible to fetch an image from "
 "a name-based virtualhost of an httpd if it is sharing the IP address with "
@@ -293,20 +406,20 @@ msgstr ""
 "compartiendo la IP con la instancia principal httpd."
 
 #. type: Plain text
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 msgid "You may also use the live ISO image in place of the squashfs image."
 msgstr ""
 "También se puede utilizar la imagen ISO en vivo en lugar de la imagen "
 "squashfs."
 
 #. type: IP
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 #, no-wrap
 msgid "B<iscsi>=I<server-ip[,server-port];target-name>"
 msgstr "B<iscsi>=I<server-ip[,server-port];target-name>"
 
 #. type: Plain text
-#: en/live-boot.7:62
+#: en/live-boot.7:95
 msgid ""
 "Boot from an iSCSI target that has an ISO or disk live image as one of its "
 "LUNs. The specified target is searched for a LUN which looks like a live "
@@ -319,12 +432,12 @@ msgstr ""
 "ietd.conf podría ser similar al siguiente: "
 
 #. type: Plain text
-#: en/live-boot.7:64
+#: en/live-boot.7:97
 msgid "# The target-name you specify in the iscsi= parameter"
 msgstr "# El nombre de destino se especifica en el parámetro iscsi= "
 
 #. type: Plain text
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid ""
 "Target E<lt>target-nameE<gt>\n"
@@ -338,13 +451,13 @@ msgstr ""
 "  # Wthreads o MaxConnections\n"
 
 #. type: IP
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid "B<findiso>=I</PATH/TO/IMAGE>"
 msgstr "B<findiso>=I</PATH/TO/IMAGE>"
 
 #. type: Plain text
-#: en/live-boot.7:71
+#: en/live-boot.7:104
 msgid ""
 "Look for the specified ISO file on all disks where it usually looks for the ."
 "squashfs file (so you don't have to know the device name as in fromiso=....)."
@@ -354,28 +467,41 @@ msgstr ""
 "nombre del dispositivo como en fromiso=....)."
 
 #. type: IP
-#: en/live-boot.7:71
+#: en/live-boot.7:104
+#, no-wrap
+msgid "B<forcefsck>"
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:106
 #, no-wrap
 msgid "B<fromiso>=I</PATH/TO/IMAGE>"
 msgstr "B<fromiso>=I</PATH/TO/IMAGE>"
 
 #. type: Plain text
-#: en/live-boot.7:73
+#: en/live-boot.7:108
+msgid ""
+"Use a filesystem from within an ISO image that's available on live-media. "
+"The first part of the argument should be the block device where the image is "
+"stored, followed by the path and filename (e.g. fromiso=/dev/sda1/live/image."
+"iso)."
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:110
 msgid ""
-"Allows to use a filesystem from within an ISO image that's available on live-"
-"media."
+"Alternatively, it can be used to boot from an ISO embedded into an initrd (e."
+"g. fromiso=/live/image.iso)."
 msgstr ""
-"Permite utilizar un sistema de ficheros desde dentro de una imagen ISO que "
-"está disponible en los medios en vivo."
 
 #. type: IP
-#: en/live-boot.7:73
+#: en/live-boot.7:110
 #, no-wrap
 msgid "B<ignore_uuid>"
 msgstr "B<ignore_uuid>"
 
 #. type: Plain text
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 msgid ""
 "Do not check that any UUID embedded in the initramfs matches the discovered "
 "medium. live-boot may be told to generate a UUID by setting "
@@ -386,13 +512,13 @@ msgstr ""
 "configurando LIVE_GENERATE_UUID=1 en el momento de crear el initramfs."
 
 #. type: IP
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 #, no-wrap
 msgid "B<verify-checksums>"
 msgstr "B<verify-checksums>"
 
 #. type: Plain text
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 msgid ""
 "If specified, an MD5 sum is calculated on the live media during boot and "
 "compared to the value found in md5sum.txt found in the root directory of the "
@@ -403,17 +529,24 @@ msgstr ""
 "directorio raíz de los medios en vivo."
 
 #. type: IP
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 #, no-wrap
 msgid "B<ip>=[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>] [,[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>]]"
 msgstr "B<ip>=[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>] [,[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>]]"
 
 #. type: Plain text
-#: en/live-boot.7:79
+#: en/live-boot.7:116
+#, fuzzy
+#| msgid ""
+#| "Let you specify the name(s) and the options of the interface(s) that "
+#| "should be configured at boot time. Do not specify this if you want to use "
+#| "dhcp (default). It will be changed in a future release to mimick official "
+#| "kernel boot param specification (e.g. "
+#| "ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp)."
 msgid ""
 "Let you specify the name(s) and the options of the interface(s) that should "
 "be configured at boot time. Do not specify this if you want to use dhcp "
-"(default). It will be changed in a future release to mimick official kernel "
+"(default). It will be changed in a future release to mimic official kernel "
 "boot param specification (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::"
 "eth0,:::::eth1:dhcp)."
 msgstr ""
@@ -424,13 +557,13 @@ msgstr ""
 "oficial (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp)."
 
 #. type: IP
-#: en/live-boot.7:79
+#: en/live-boot.7:116
 #, no-wrap
 msgid "B<ip>=[I<frommedia>]"
 msgstr "B<ip>=[I<frommedia>]"
 
 #. type: Plain text
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 msgid ""
 "If this variable is set, dhcp and static configuration are just skipped and "
 "the system will use the (must be) media-preconfigured /etc/network/"
@@ -441,13 +574,13 @@ msgstr ""
 "network/interfaces que el sistema utilizará en su lugar."
 
 #. type: IP
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 #, no-wrap
 msgid "{B<live-media>|B<bootfrom>}=I<DEVICE>"
 msgstr "{B<live-media>|B<bootfrom>}=I<DEVICE>"
 
 #. type: Plain text
-#: en/live-boot.7:83
+#: en/live-boot.7:120
 msgid ""
 "If you specify one of this two equivalent forms, live-boot will first try to "
 "find this device for the \"/live\" directory where the read-only root "
@@ -461,9 +594,15 @@ msgstr ""
 "restantes."
 
 #. type: Plain text
-#: en/live-boot.7:85
+#: en/live-boot.7:122
+#, fuzzy
+#| msgid ""
+#| "Instead of specifing an actual device name, the keyword 'removable' can "
+#| "be used to limit the search of acceptable live media to removable type "
+#| "only. Note that if you want to further restrict the media to usb mass "
+#| "storage only, you can use the 'removable-usb' keyword."
 msgid ""
-"Instead of specifing an actual device name, the keyword 'removable' can be "
+"Instead of specifying an actual device name, the keyword 'removable' can be "
 "used to limit the search of acceptable live media to removable type only. "
 "Note that if you want to further restrict the media to usb mass storage "
 "only, you can use the 'removable-usb' keyword."
@@ -475,13 +614,13 @@ msgstr ""
 "palabra clave 'removable-usb'"
 
 #. type: IP
-#: en/live-boot.7:85
+#: en/live-boot.7:122
 #, no-wrap
 msgid "{B<live-media-encryption>|B<encryption>}=I<TYPE>"
 msgstr "{B<live-media-encryption>|B<encryption>}=I<TYPE>"
 
 #. type: Plain text
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 msgid ""
 "live-boot will mount the encrypted rootfs TYPE, asking the passphrase, "
 "useful to build paranoid live systems :-). TYPE supported so far is \"aes\" "
@@ -492,13 +631,13 @@ msgstr ""
 "soportado es \"aes\" para cifrado loop-aes."
 
 #. type: IP
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 #, no-wrap
 msgid "B<live-media-offset>=I<BYTES>"
 msgstr "B<live-media-offset>=I<BYTES>"
 
 #. type: Plain text
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 msgid ""
 "This way you could tell live-boot that your image starts at offset BYTES in "
 "the above specified or autodiscovered device, this could be useful to hide "
@@ -511,13 +650,13 @@ msgstr ""
 "imagen, para crear imágenes \"limpias\"."
 
 #. type: IP
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 #, no-wrap
 msgid "B<live-media-path>=I<PATH>"
 msgstr "B<live-media-path>=I<PATH>"
 
 #. type: Plain text
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 msgid ""
 "Sets the path to the live filesystem on the medium. By default, it is set to "
 "'/live' and you should not change that unless you have customized your media "
@@ -528,13 +667,13 @@ msgstr ""
 "haya personalizado los medios de forma adecuada."
 
 #. type: IP
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 #, no-wrap
 msgid "B<live-media-timeout>=I<SECONDS>"
 msgstr "B<live-media-timeout>=I<SECONDS>"
 
 #. type: Plain text
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 msgid ""
 "Set the timeout in seconds for the device specified by \"live-media=\" to "
 "become ready before giving up."
@@ -543,13 +682,13 @@ msgstr ""
 "especificado por \"live-media=\" esté preparado antes de desistir."
 
 #. type: IP
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 #, no-wrap
 msgid "B<module>=I<NAME>"
 msgstr "B<module>=I<NAME>"
 
 #. type: Plain text
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 msgid ""
 "Instead of using the default optional file \"filesystem.module\" (see below) "
 "another file could be specified without the extension \".module\"; it should "
@@ -560,13 +699,13 @@ msgstr ""
 "module\"; se debe colocar en el directorio \"/live\" del medio en vivo."
 
 #. type: IP
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 #, no-wrap
 msgid "B<netboot>[=nfs|cifs]"
 msgstr "B<netboot>[=nfs|cifs]"
 
 #. type: Plain text
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 msgid ""
 "This tells live-boot to perform a network mount. The parameter \"nfsroot="
 "\" (with optional \"nfsopts=\"), should specify where is the location of the "
@@ -578,24 +717,24 @@ msgstr ""
 "si falla, nfs."
 
 #. type: IP
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 #, no-wrap
 msgid "B<nfsopts>="
 msgstr "B<nfsopts>="
 
 #. type: Plain text
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 msgid "This lets you specify custom nfs options."
 msgstr "Permite especificar opciones nfs personalizadas."
 
 #. type: IP
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 #, no-wrap
 msgid "B<nofastboot>"
 msgstr "B<nofastboot>"
 
 #. type: Plain text
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 msgid ""
 "This parameter disables the default disabling of filesystem checks in /etc/"
 "fstab. If you have static filesystems on your harddisk and you want them to "
@@ -607,13 +746,13 @@ msgstr ""
 "utilizar este parámetro, de lo contrario, se omite."
 
 #. type: IP
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 #, no-wrap
 msgid "B<nopersistence>"
 msgstr "B<nopersistence>"
 
 #. type: Plain text
-#: en/live-boot.7:103
+#: en/live-boot.7:140
 msgid ""
 "disables the \"persistence\" feature, useful if the bootloader (like "
 "syslinux) has been installed with persistence enabled."
@@ -622,29 +761,35 @@ msgstr ""
 "syslinux) se ha instalado con persistencia habilitada."
 
 #. type: IP
-#: en/live-boot.7:103 en/live-boot.7:125
+#: en/live-boot.7:140 en/live-boot.7:164
 #, no-wrap
 msgid "B<noeject>"
 msgstr "B<noeject>"
 
 #. type: Plain text
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 msgid "Do not prompt to eject the live medium."
 msgstr "No pedir que se extraiga el dispositivo en vivo."
 
 #. type: IP
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 #, no-wrap
 msgid "B<ramdisk-size>"
 msgstr "B<ramdisk-size>"
 
 #. type: Plain text
-#: en/live-boot.7:107
+#: en/live-boot.7:144
+#, fuzzy
+#| msgid ""
+#| "This parameter allows to set a custom ramdisk size (it's the '-o size' "
+#| "option of tmpfs mount). By default, there is no ramdisk size set, so the "
+#| "default of mount applies (currently 50% of available RAM). Note that this "
+#| "option has currently no effect when booting with toram."
 msgid ""
-"This parameter allows to set a custom ramdisk size (it's the '-o size' "
-"option of tmpfs mount). By default, there is no ramdisk size set, so the "
-"default of mount applies (currently 50% of available RAM). Note that this "
-"option has currently no effect when booting with toram."
+"This parameter defines a custom ramdisk size (it's the '-o size' option of "
+"tmpfs mount). By default, there is no ramdisk size set, so the default of "
+"mount applies (currently 50% of available RAM). Note that this option has "
+"currently no effect when booting with toram."
 msgstr ""
 "Este parámetro permite establecer un tamaño de disco RAM personalizado (que "
 "es la opción '-o size' del montaje tmpfs). No hay un tamaño de ramdisk "
@@ -653,24 +798,40 @@ msgstr ""
 "actualmente ningún efecto cuando se arranca con toram."
 
 #. type: IP
-#: en/live-boot.7:107
+#: en/live-boot.7:144
+#, no-wrap
+msgid "B<overlay-size>=I<SIZE>"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:146
+msgid ""
+"The size of the tmpfs mount (used for the upperdir union root mount) in "
+"bytes, and rounded up to entire pages. This option accepts a suffix % to "
+"limit the instance to that percentage of your physical RAM or a suffix k, m "
+"or g for Ki, Mi, Gi (binary kilo (kibi), binary mega (mebi) and binary giga "
+"(gibi)). By default, 50% of available RAM will be used."
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:146
 #, no-wrap
 msgid "B<swap=true>"
 msgstr "B<swap=true>"
 
 #. type: Plain text
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 msgid "This parameter enables usage of local swap partitions."
 msgstr "Este parámetro permite el uso de particiones swap locales."
 
 #. type: IP
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 #, no-wrap
 msgid "B<persistence>"
 msgstr "B<persistence>"
 
 #. type: Plain text
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 msgid ""
 "live-boot will probe devices for persistence media. These can be partitions "
 "(with the correct GPT name), filesystems (with the correct label) or image "
@@ -685,15 +846,23 @@ msgstr ""
 "conf>(5)). Los ficheros imagen overlay tienen, como nombre, \"persistence\"."
 
 #. type: IP
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 #, no-wrap
 msgid "B<persistence-encryption>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-encryption>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 
 #. type: Plain text
-#: en/live-boot.7:113
+#: en/live-boot.7:152
+#, fuzzy
+#| msgid ""
+#| "This option determines which types of encryption that we allow to be used "
+#| "when probing devices for persistence media. If \"none\" is in the list, "
+#| "we allow unencrypted media; if \"luks\" is in the list, we allow LUKS-"
+#| "encrypted media. Whenever a device containing encrypted media is probed "
+#| "the user will be prompted for the passphrase. The default value is \"none"
+#| "\"."
 msgid ""
-"This option determines which types of encryption that we allow to be used "
+"This option determines which types of encryption that are allowed to be used "
 "when probing devices for persistence media. If \"none\" is in the list, we "
 "allow unencrypted media; if \"luks\" is in the list, we allow LUKS-encrypted "
 "media. Whenever a device containing encrypted media is probed the user will "
@@ -707,13 +876,13 @@ msgstr ""
 "contraseña. Por defecto es \"none\"."
 
 #. type: IP
-#: en/live-boot.7:113
+#: en/live-boot.7:152
 #, no-wrap
 msgid "B<persistence-media>={I<removable>|I<removable-usb>}"
 msgstr "B<persistence-media>={I<removable>|I<removable-usb>}"
 
 #. type: Plain text
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 msgid ""
 "If you specify the keyword 'removable', live-boot will try to find "
 "persistence partitions on removable media only. Note that if you want to "
@@ -726,13 +895,13 @@ msgstr ""
 "almacenamiento masivo USB se puede utilizar la palabra clave 'removable-usb'"
 
 #. type: IP
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 #, no-wrap
 msgid "B<persistence-method>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-method>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 
 #. type: Plain text
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 msgid ""
 "This option determines which types of persistence media we allow. If "
 "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
@@ -743,13 +912,13 @@ msgstr ""
 "\"live-rw\" y \"home-rw\"). Por defecto es \"overlay\"."
 
 #. type: IP
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 #, no-wrap
 msgid "B<persistence-path>=I<PATH>"
 msgstr "B<persistence-path>=I<PATH>"
 
 #. type: Plain text
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 msgid ""
 "live-boot will look for persistency files in the root directory of a "
 "partition, with this parameter, the path can be configured so that you can "
@@ -761,13 +930,13 @@ msgstr ""
 "con persistencia."
 
 #. type: IP
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 #, no-wrap
 msgid "B<persistence-read-only>"
 msgstr "B<persistence-read-only>"
 
 #. type: Plain text
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 msgid ""
 "Filesystem changes are not saved back to persistence media. In particular, "
 "overlays and netboot NFS mounts are mounted read-only."
@@ -777,13 +946,13 @@ msgstr ""
 "montados en sólo lectura."
 
 #. type: IP
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 #, no-wrap
 msgid "B<persistence-storage>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-storage>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 
 #. type: Plain text
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 msgid ""
 "This option determines which types of persistence storage to consider when "
 "probing for persistence media. If \"filesystem\" is in the list, filesystems "
@@ -799,13 +968,13 @@ msgstr ""
 "etiquetas correspondientes. Por defecto es \"file,filesystem\". "
 
 #. type: IP
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 #, no-wrap
 msgid "B<persistence-label>=I<LABEL>"
 msgstr "B<persistence-label>=I<LABEL>"
 
 #. type: Plain text
-#: en/live-boot.7:125
+#: en/live-boot.7:164
 msgid ""
 "live-boot will use the name \"LABEL\" instead of \"persistence\" when "
 "searching for persistent storage. LABEL can be any valid filename, partition "
@@ -816,7 +985,7 @@ msgstr ""
 "nombre de fichero, etiqueta de una partición or nombre GPT."
 
 #. type: Plain text
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 msgid ""
 "This option causes live-boot to reboot without attempting to eject the media "
 "and without asking the user to remove the boot media."
@@ -825,13 +994,13 @@ msgstr ""
 "sin pedirle al usuario que extraiga el dispositivo usado para arrancar."
 
 #. type: IP
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 #, no-wrap
 msgid "B<showmounts>"
 msgstr "B<showmounts>"
 
 #. type: Plain text
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 msgid ""
 "This parameter will make live-boot to show on \"/\" the ro filesystems "
 "(mostly compressed) on \"/lib/live\". This is not enabled by default because "
@@ -844,13 +1013,13 @@ msgstr ""
 "que almacenan rutas binarias durante su instalación."
 
 #. type: IP
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 #, no-wrap
 msgid "B<silent>"
 msgstr "B<silent>"
 
 #. type: Plain text
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 msgid ""
 "If you boot with the normal quiet parameter, live-boot hides most messages "
 "of its own. When adding silent, it hides all."
@@ -859,13 +1028,13 @@ msgstr ""
 "sus propios mensajes. Cuando se utiliza silent, los esconde todos."
 
 #. type: IP
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 #, no-wrap
 msgid "B<todisk>=I<DEVICE>"
 msgstr "B<todisk>=I<DEVICE>"
 
 #. type: Plain text
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 msgid ""
 "Adding this parameter, live-boot will try to copy the entire read-only media "
 "to the specified device before mounting the root filesystem. It probably "
@@ -881,13 +1050,13 @@ msgstr ""
 "utilizado esta vez."
 
 #. type: IP
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 #, no-wrap
 msgid "B<toram>"
 msgstr "B<toram>"
 
 #. type: Plain text
-#: en/live-boot.7:135
+#: en/live-boot.7:174
 msgid ""
 "Adding this parameter, live-boot will try to copy the whole read-only media "
 "to the computer's RAM before mounting the root filesystem. This could need a "
@@ -899,14 +1068,14 @@ msgstr ""
 "espacio utilizado por los medios de sólo lectura."
 
 #. type: IP
-#: en/live-boot.7:135
+#: en/live-boot.7:174
 #, no-wrap
 msgid "B<union>=overlay|aufs"
 msgstr "B<union>=overlay|aufs"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:138
+#: en/live-boot.7:177
 msgid ""
 "By default, live-boot uses overlay. With this parameter, you can switch to "
 "aufs."
@@ -916,19 +1085,19 @@ msgstr ""
 
 #.  FIXME
 #. type: SH
-#: en/live-boot.7:140
+#: en/live-boot.7:179
 #, no-wrap
 msgid "FILES (old)"
 msgstr "FICHEROS (antiguos)"
 
 #. type: IP
-#: en/live-boot.7:141
+#: en/live-boot.7:180
 #, no-wrap
 msgid "B</etc/live.conf>"
 msgstr "B</etc/live.conf>"
 
 #. type: Plain text
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 msgid ""
 "Some variables can be configured via this config file (inside the live "
 "system)."
@@ -937,14 +1106,14 @@ msgstr ""
 "configuración (dentro del sistema en vivo)."
 
 #. type: IP
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 #, no-wrap
 msgid "B<live/filesystem.module>"
 msgstr "B<live/filesystem.module>"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:146
+#: en/live-boot.7:185
 msgid ""
 "This optional file (inside the live media) contains a list of white-space or "
 "carriage-return-separated file names corresponding to disk images in the \"/"
@@ -966,92 +1135,97 @@ msgstr ""
 "cargan en orden alfanumérico."
 
 #. type: SH
-#: en/live-boot.7:147
+#: en/live-boot.7:186
 #, no-wrap
 msgid "FILES"
 msgstr "FICHEROS"
 
 #. type: IP
-#: en/live-boot.7:148
+#: en/live-boot.7:187
 #, no-wrap
 msgid "B</etc/live/boot.conf>"
 msgstr "B</etc/live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:149
+#: en/live-boot.7:188
 #, no-wrap
 msgid "B</etc/live/boot/*>"
 msgstr "B</etc/live/boot/*>"
 
 #. type: IP
-#: en/live-boot.7:150
+#: en/live-boot.7:189
 #, no-wrap
 msgid "B<live/boot.conf>"
 msgstr "B<live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:151
+#: en/live-boot.7:190
 #, no-wrap
 msgid "B<live/boot/*>"
 msgstr "B<live/boot.d/*>"
 
 #. type: IP
-#: en/live-boot.7:152
+#: en/live-boot.7:191
 #, no-wrap
 msgid "B<persistence.conf>"
 msgstr "B<persistence.conf>"
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "VER ADEMÁS"
 
 #. type: Plain text
-#: en/live-boot.7:156
+#: en/live-boot.7:195
 msgid "I<persistence.conf>(5)"
 msgstr "I<persistence.conf>(5)"
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "PÁGINA WEB"
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
+#, fuzzy
+#| msgid ""
+#| "More information about live-boot and the Live Systems project can be "
+#| "found on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the "
+#| "manual at E<lt>I<http://live-systems.org/manual/>E<gt>."
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 "Se puede encontrar más información acerca de live-boot y el proyecto Live "
 "Systems en la página web E<lt>I<http://live-systems.org/>E<gt> y en el "
 "manual en E<lt>I<http://live-systems.org/manual/>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr "ERRORES"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -1064,13 +1238,13 @@ msgstr ""
 "Systems a la dirección E<lt>I<debian-live@lists.debian.org>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTOR"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
index 34626ae..06c4221 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: 2013-11-10 20:10+0900\n"
 "Last-Translator: Carlos Zuferri <chals@altorricon.com>\n"
 "Language-Team: none\n"
@@ -51,57 +51,62 @@ msgid "DESCRIPTION"
 msgstr "DESCRIPCIÓN"
 
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPCIONES"
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "VER ADEMÁS"
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "PÁGINA WEB"
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
+#, fuzzy
+#| msgid ""
+#| "More information about live-boot and the Live Systems project can be "
+#| "found on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the "
+#| "manual at E<lt>I<http://live-systems.org/manual/>E<gt>."
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 "Se puede encontrar más información acerca de live-boot y el proyecto Live "
 "Systems en la página web E<lt>I<http://live-systems.org/>E<gt> y en el "
 "manual en E<lt>I<http://live-systems.org/manual/>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr "ERRORES"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -114,13 +119,13 @@ msgstr ""
 "Systems a la dirección E<lt>I<debian-live@lists.debian.org>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTOR"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
@@ -582,7 +587,9 @@ msgstr "Directorio:"
 
 #. type: Plain text
 #: en/persistence.conf.5:170
-msgid "/homea/user2/.ssh (from c)"
+#, fuzzy
+#| msgid "/homea/user2/.ssh (from c)"
+msgid "/home/user2/.ssh (from c)"
 msgstr "/homea/user2/.ssh (de c)"
 
 #. type: Plain text
index f2c6e66..2f51f42 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot 5.0~a5-1\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: 2015-09-21 14:10+0200\n"
 "Last-Translator: Olivier Humbert <trebmuh@tuxfamily.org>\n"
 "Language-Team: none\n"
@@ -146,38 +146,151 @@ msgid "Configuration Files"
 msgstr "Fichiers de configurations"
 
 #. type: Plain text
-#: en/live-boot.7:27
+#: en/live-boot.7:28
+#, fuzzy
+#| msgid ""
+#| "B<live-boot> can be configured (but not activated) through configuration "
+#| "files. Those files can be placed either in the root filesystem itself (/"
+#| "etc/live/boot.conf, /etc/live/boot/*), or on the live media (live/boot."
+#| "conf, live/boot/*)."
 msgid ""
 "B<live-boot> can be configured (but not activated) through configuration "
 "files. Those files can be placed either in the root filesystem itself (/etc/"
 "live/boot.conf, /etc/live/boot/*), or on the live media (live/boot.conf, "
-"live/boot/*)."
+"live/boot/*).  These environment variables can only be set in the "
+"configuration files:"
 msgstr ""
 "B<live-boot> peut être configuré (mais pas activé) à travers des fichiers de "
 "configuration. Ces fichiers peuvent être placés soit dans le système de "
 "fichier racine lui-même (/etc/live/boot.conf, /etc/live/boot/*), ou sur le "
 "média live (live/boot.conf, live/boot/*)."
 
+#. type: TP
+#: en/live-boot.7:29
+#, no-wrap
+msgid "B<DISABLE_CDROM>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:32
+msgid ""
+"Disable support for booting from CD-ROMs.  If set to 'I<true>' mkinitramfs "
+"will build an initramfs without the kernel modules for reading CD-ROMs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:33
+#, no-wrap
+msgid "B<DISABLE_FAT>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:36
+msgid ""
+"Disable support for booting from FAT file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module vfat and some "
+"nls_* modules."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:37
+#, no-wrap
+msgid "B<DISABLE_FUSE>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:40
+msgid ""
+"Disable support for booting from FUSE-based file systems.  If set to "
+"'I<true>' mkinitramfs will build an initramfs without the kernel module fuse "
+"and file systems that depend on it (like curlftpfs and httpfs2)."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:41
+#, no-wrap
+msgid "B<DISABLE_NTFS>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:44
+msgid ""
+"Disable support for booting from NTFS file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module ntfs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:45
+#, no-wrap
+msgid "B<DISABLE_USB>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:48
+msgid ""
+"Disable support for booting from USB devices.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module sd_mod."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:49
+#, no-wrap
+msgid "B<MINIMAL>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:52
+msgid ""
+"Build a minimal initramfs.  If set to 'I<true>' mkinitramfs will build an "
+"initramfs without some udev scripts and without rsync."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:53
+#, no-wrap
+msgid "B<PERSISTENCE_FSCK>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:56 en/live-boot.7:106
+msgid ""
+"Run fsck on persistence filesystem on boot. Will attempt to repair errors. "
+"The execution log will be saved in /var/log/live/fsck.log."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:57
+#, no-wrap
+msgid "B<FSCKFIX>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:60
+msgid ""
+"If PERSISTENCE_FSCK or forcefsck are set, will pass -y to fsck to stop it "
+"from asking questions interactively and assume yes to all queries."
+msgstr ""
+
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPTIONS"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 msgid "B<live-boot> currently features the following parameters."
 msgstr "B<live-boot> fourni actuellement les paramètres suivants."
 
 #. type: IP
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 #, no-wrap
 msgid "B<access>=I<ACCESS>"
 msgstr "B<access>=I<ACCESS>"
 
 #. type: Plain text
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 msgid ""
 "Set the accessibility level for physically or visually impaired users. "
 "ACCESS must be one of v1, v2, v3, m1, or m2. v1=lesser visual impairment, "
@@ -190,13 +303,13 @@ msgstr ""
 "m1=difficultés moteur faibles m2=difficultés moteur modérées."
 
 #. type: IP
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 #, no-wrap
 msgid "B<console>=I<TTY,SPEED>"
 msgstr "B<console>=I<TTY,SPEED>"
 
 #. type: Plain text
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 msgid ""
 "Set the default console to be used with the \"live-getty\" option. Example: "
 "\"console=ttyS0,115200\""
@@ -205,42 +318,42 @@ msgstr ""
 "Exemple : \"console=ttyS0,115200\"."
 
 #. type: IP
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 #, no-wrap
 msgid "B<debug>"
 msgstr "B<debug>"
 
 #. type: Plain text
-#: en/live-boot.7:37
+#: en/live-boot.7:70
 msgid "Makes initramfs boot process more verbose."
 msgstr "Rend le processus de démarrage initramfs plus verbeux."
 
 #. type: Plain text
-#: en/live-boot.7:39
+#: en/live-boot.7:72
 msgid "Use: debug=1"
 msgstr "Utiliser : debug=1"
 
 #. type: Plain text
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 msgid "Without setting debug to a value the messages may not be shown."
 msgstr ""
 "Si debug n'est pas paramétré à une valeur, les messages pourraient ne pas "
 "être affichés. "
 
 #. type: IP
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 #, no-wrap
 msgid "B<fetch>=I<URL>"
 msgstr "B<fetch>=I<URL>"
 
 #. type: IP
-#: en/live-boot.7:42
+#: en/live-boot.7:75
 #, no-wrap
 msgid "B<httpfs>=I<URL>"
 msgstr "B<httpfs>=I<URL>"
 
 #. type: Plain text
-#: en/live-boot.7:50
+#: en/live-boot.7:83
 msgid ""
 "Another form of netboot by downloading a squashfs image from a given URL.  "
 "The fetch method copies the image to RAM and the httpfs method uses FUSE and "
@@ -260,7 +373,7 @@ msgstr ""
 "serveur."
 
 #. type: Plain text
-#: en/live-boot.7:52
+#: en/live-boot.7:85
 msgid ""
 "Due to current limitations in busybox's wget and DNS resolution, an URL can "
 "not contain a hostname but an IP address only."
@@ -270,18 +383,18 @@ msgstr ""
 "adresse IP."
 
 #. type: Plain text
-#: en/live-boot.7:54
+#: en/live-boot.7:87
 msgid "Not working: http://example.com/path/to/your_filesystem.squashfs"
 msgstr ""
 "Ne fonctionne pas : http://example.com/path/to/your_filesystem.squashfs"
 
 #. type: Plain text
-#: en/live-boot.7:56
+#: en/live-boot.7:89
 msgid "Working: http://1.2.3.4/path/to/your_filesystem.squashfs"
 msgstr "Fonctionne : http://1.2.3.4/path/to/your_filesystem.squashfs"
 
 #. type: Plain text
-#: en/live-boot.7:58
+#: en/live-boot.7:91
 msgid ""
 "Also note that therefore it's currently not possible to fetch an image from "
 "a name-based virtualhost of an httpd if it is sharing the IP address with "
@@ -292,20 +405,20 @@ msgstr ""
 "partage l'adresse IP avec l'instance httpd principale."
 
 #. type: Plain text
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 msgid "You may also use the live ISO image in place of the squashfs image."
 msgstr ""
 "Vous voudrez également utiliser l'image ISO live à la place de l'image "
 "squashfs."
 
 #. type: IP
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 #, no-wrap
 msgid "B<iscsi>=I<server-ip[,server-port];target-name>"
 msgstr "B<iscsi>=I<server-ip[,server-port];target-name>"
 
 #. type: Plain text
-#: en/live-boot.7:62
+#: en/live-boot.7:95
 msgid ""
 "Boot from an iSCSI target that has an ISO or disk live image as one of its "
 "LUNs. The specified target is searched for a LUN which looks like a live "
@@ -318,12 +431,12 @@ msgstr ""
 "logiciel B<iscsitarget> , votre ietd.conf devrait ressembler à ça :"
 
 #. type: Plain text
-#: en/live-boot.7:64
+#: en/live-boot.7:97
 msgid "# The target-name you specify in the iscsi= parameter"
 msgstr "# Le nom-cible que vous spécifiez dans le paramètre iscsi="
 
 #. type: Plain text
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid ""
 "Target E<lt>target-nameE<gt>\n"
@@ -337,13 +450,13 @@ msgstr ""
 "  # Wthreads ou MaxConnections\n"
 
 #. type: IP
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid "B<findiso>=I</PATH/TO/IMAGE>"
 msgstr "B<findiso>=I</PATH/TO/IMAGE>"
 
 #. type: Plain text
-#: en/live-boot.7:71
+#: en/live-boot.7:104
 msgid ""
 "Look for the specified ISO file on all disks where it usually looks for the ."
 "squashfs file (so you don't have to know the device name as in fromiso=....)."
@@ -353,28 +466,41 @@ msgstr ""
 "connaître le nom de périphérique comme dans fromiso=....)."
 
 #. type: IP
-#: en/live-boot.7:71
+#: en/live-boot.7:104
+#, no-wrap
+msgid "B<forcefsck>"
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:106
 #, no-wrap
 msgid "B<fromiso>=I</PATH/TO/IMAGE>"
 msgstr "B<fromiso>=I</PATH/TO/IMAGE>"
 
 #. type: Plain text
-#: en/live-boot.7:73
+#: en/live-boot.7:108
+msgid ""
+"Use a filesystem from within an ISO image that's available on live-media. "
+"The first part of the argument should be the block device where the image is "
+"stored, followed by the path and filename (e.g. fromiso=/dev/sda1/live/image."
+"iso)."
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:110
 msgid ""
-"Allows to use a filesystem from within an ISO image that's available on live-"
-"media."
+"Alternatively, it can be used to boot from an ISO embedded into an initrd (e."
+"g. fromiso=/live/image.iso)."
 msgstr ""
-"Permet d'utiliser un système de fichier venant de l'intérieur d'une image "
-"ISO qui est disponible sur live-media."
 
 #. type: IP
-#: en/live-boot.7:73
+#: en/live-boot.7:110
 #, no-wrap
 msgid "B<ignore_uuid>"
 msgstr "B<ignore_uuid>"
 
 #. type: Plain text
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 msgid ""
 "Do not check that any UUID embedded in the initramfs matches the discovered "
 "medium. live-boot may be told to generate a UUID by setting "
@@ -385,13 +511,13 @@ msgstr ""
 "LIVE_GENERATE_UUID=1 lors de la construction de l'initramfs."
 
 #. type: IP
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 #, no-wrap
 msgid "B<verify-checksums>"
 msgstr "B<verify-checksums>"
 
 #. type: Plain text
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 msgid ""
 "If specified, an MD5 sum is calculated on the live media during boot and "
 "compared to the value found in md5sum.txt found in the root directory of the "
@@ -402,17 +528,24 @@ msgstr ""
 "répertoire racine du média live."
 
 #. type: IP
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 #, no-wrap
 msgid "B<ip>=[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>] [,[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>]]"
 msgstr "B<ip>=[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>] [,[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>]]"
 
 #. type: Plain text
-#: en/live-boot.7:79
+#: en/live-boot.7:116
+#, fuzzy
+#| msgid ""
+#| "Let you specify the name(s) and the options of the interface(s) that "
+#| "should be configured at boot time. Do not specify this if you want to use "
+#| "dhcp (default). It will be changed in a future release to mimick official "
+#| "kernel boot param specification (e.g. "
+#| "ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp)."
 msgid ""
 "Let you specify the name(s) and the options of the interface(s) that should "
 "be configured at boot time. Do not specify this if you want to use dhcp "
-"(default). It will be changed in a future release to mimick official kernel "
+"(default). It will be changed in a future release to mimic official kernel "
 "boot param specification (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::"
 "eth0,:::::eth1:dhcp)."
 msgstr ""
@@ -423,13 +556,13 @@ msgstr ""
 "officiel (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp)."
 
 #. type: IP
-#: en/live-boot.7:79
+#: en/live-boot.7:116
 #, no-wrap
 msgid "B<ip>=[I<frommedia>]"
 msgstr "B<ip>=[I<frommedia>]"
 
 #. type: Plain text
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 msgid ""
 "If this variable is set, dhcp and static configuration are just skipped and "
 "the system will use the (must be) media-preconfigured /etc/network/"
@@ -440,13 +573,13 @@ msgstr ""
 "doivent être) préconfigurées /etc/network/."
 
 #. type: IP
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 #, no-wrap
 msgid "{B<live-media>|B<bootfrom>}=I<DEVICE>"
 msgstr "{B<live-media>|B<bootfrom>}=I<DEVICE>"
 
 #. type: Plain text
-#: en/live-boot.7:83
+#: en/live-boot.7:120
 msgid ""
 "If you specify one of this two equivalent forms, live-boot will first try to "
 "find this device for the \"/live\" directory where the read-only root "
@@ -460,9 +593,15 @@ msgstr ""
 "effectué."
 
 #. type: Plain text
-#: en/live-boot.7:85
+#: en/live-boot.7:122
+#, fuzzy
+#| msgid ""
+#| "Instead of specifing an actual device name, the keyword 'removable' can "
+#| "be used to limit the search of acceptable live media to removable type "
+#| "only. Note that if you want to further restrict the media to usb mass "
+#| "storage only, you can use the 'removable-usb' keyword."
 msgid ""
-"Instead of specifing an actual device name, the keyword 'removable' can be "
+"Instead of specifying an actual device name, the keyword 'removable' can be "
 "used to limit the search of acceptable live media to removable type only. "
 "Note that if you want to further restrict the media to usb mass storage "
 "only, you can use the 'removable-usb' keyword."
@@ -474,13 +613,13 @@ msgstr ""
 "vous pouvez utiliser le mot-clef 'removable-usb'."
 
 #. type: IP
-#: en/live-boot.7:85
+#: en/live-boot.7:122
 #, no-wrap
 msgid "{B<live-media-encryption>|B<encryption>}=I<TYPE>"
 msgstr "{B<live-media-encryption>|B<encryption>}=I<TYPE>"
 
 #. type: Plain text
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 msgid ""
 "live-boot will mount the encrypted rootfs TYPE, asking the passphrase, "
 "useful to build paranoid live systems :-). TYPE supported so far is \"aes\" "
@@ -491,13 +630,13 @@ msgstr ""
 "supporté pour l'instant est \"aes\" pour un type d'encryptage loop-aes. "
 
 #. type: IP
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 #, no-wrap
 msgid "B<live-media-offset>=I<BYTES>"
 msgstr "B<live-media-offset>=I<BYTES>"
 
 #. type: Plain text
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 msgid ""
 "This way you could tell live-boot that your image starts at offset BYTES in "
 "the above specified or autodiscovered device, this could be useful to hide "
@@ -510,13 +649,13 @@ msgstr ""
 "l'intérieur d'une autr ISO ou image, pour créer des image \"propre\"."
 
 #. type: IP
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 #, no-wrap
 msgid "B<live-media-path>=I<PATH>"
 msgstr "B<live-media-path>=I<PATH>"
 
 #. type: Plain text
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 msgid ""
 "Sets the path to the live filesystem on the medium. By default, it is set to "
 "'/live' and you should not change that unless you have customized your media "
@@ -527,13 +666,13 @@ msgstr ""
 "sauf si vous avez personnalisé votre média en conséquence."
 
 #. type: IP
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 #, no-wrap
 msgid "B<live-media-timeout>=I<SECONDS>"
 msgstr "B<live-media-timeout>=I<SECONDS>"
 
 #. type: Plain text
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 msgid ""
 "Set the timeout in seconds for the device specified by \"live-media=\" to "
 "become ready before giving up."
@@ -542,13 +681,13 @@ msgstr ""
 "par \"live-media=\" à être prêt avant de laisser tomber."
 
 #. type: IP
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 #, no-wrap
 msgid "B<module>=I<NAME>"
 msgstr "B<module>=I<NAME>"
 
 #. type: Plain text
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 msgid ""
 "Instead of using the default optional file \"filesystem.module\" (see below) "
 "another file could be specified without the extension \".module\"; it should "
@@ -559,13 +698,13 @@ msgstr ""
 "\".module\"; il devra être placé dans le répertoire \"/live\" du médium live."
 
 #. type: IP
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 #, no-wrap
 msgid "B<netboot>[=nfs|cifs]"
 msgstr "B<netboot>[=nfs|cifs]"
 
 #. type: Plain text
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 msgid ""
 "This tells live-boot to perform a network mount. The parameter \"nfsroot="
 "\" (with optional \"nfsopts=\"), should specify where is the location of the "
@@ -577,24 +716,24 @@ msgstr ""
 "premier puis, s'il échoue, nfs."
 
 #. type: IP
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 #, no-wrap
 msgid "B<nfsopts>="
 msgstr "B<nfsopts>="
 
 #. type: Plain text
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 msgid "This lets you specify custom nfs options."
 msgstr "Ceci vous permet de spécifier des options nfs personnalisées."
 
 #. type: IP
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 #, no-wrap
 msgid "B<nofastboot>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 msgid ""
 "This parameter disables the default disabling of filesystem checks in /etc/"
 "fstab. If you have static filesystems on your harddisk and you want them to "
@@ -606,13 +745,13 @@ msgstr ""
 "utilisez ce paramètre, sinon ils sont sautés."
 
 #. type: IP
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 #, no-wrap
 msgid "B<nopersistence>"
 msgstr "B<nopersistence>"
 
 #. type: Plain text
-#: en/live-boot.7:103
+#: en/live-boot.7:140
 msgid ""
 "disables the \"persistence\" feature, useful if the bootloader (like "
 "syslinux) has been installed with persistence enabled."
@@ -621,29 +760,35 @@ msgstr ""
 "syslinux) a été installé avec la persistance activée."
 
 #. type: IP
-#: en/live-boot.7:103 en/live-boot.7:125
+#: en/live-boot.7:140 en/live-boot.7:164
 #, no-wrap
 msgid "B<noeject>"
 msgstr "B<noeject>"
 
 #. type: Plain text
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 msgid "Do not prompt to eject the live medium."
 msgstr "Ne pas demander pour l'éjection du médium live."
 
 #. type: IP
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 #, no-wrap
 msgid "B<ramdisk-size>"
 msgstr "B<ramdisk-size>"
 
 #. type: Plain text
-#: en/live-boot.7:107
+#: en/live-boot.7:144
+#, fuzzy
+#| msgid ""
+#| "This parameter allows to set a custom ramdisk size (it's the '-o size' "
+#| "option of tmpfs mount). By default, there is no ramdisk size set, so the "
+#| "default of mount applies (currently 50% of available RAM). Note that this "
+#| "option has currently no effect when booting with toram."
 msgid ""
-"This parameter allows to set a custom ramdisk size (it's the '-o size' "
-"option of tmpfs mount). By default, there is no ramdisk size set, so the "
-"default of mount applies (currently 50% of available RAM). Note that this "
-"option has currently no effect when booting with toram."
+"This parameter defines a custom ramdisk size (it's the '-o size' option of "
+"tmpfs mount). By default, there is no ramdisk size set, so the default of "
+"mount applies (currently 50% of available RAM). Note that this option has "
+"currently no effect when booting with toram."
 msgstr ""
 "Ce paramètre permet de paramétrer un taille de ramdisk personnalisée (c'est "
 "l'option '-o size' du montage tmpfs). Par défaut, il n'y a pas de taille de "
@@ -652,24 +797,40 @@ msgstr ""
 "d'un démarrage avec toram."
 
 #. type: IP
-#: en/live-boot.7:107
+#: en/live-boot.7:144
+#, no-wrap
+msgid "B<overlay-size>=I<SIZE>"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:146
+msgid ""
+"The size of the tmpfs mount (used for the upperdir union root mount) in "
+"bytes, and rounded up to entire pages. This option accepts a suffix % to "
+"limit the instance to that percentage of your physical RAM or a suffix k, m "
+"or g for Ki, Mi, Gi (binary kilo (kibi), binary mega (mebi) and binary giga "
+"(gibi)). By default, 50% of available RAM will be used."
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:146
 #, no-wrap
 msgid "B<swap=true>"
 msgstr "B<swap=true>"
 
 #. type: Plain text
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 msgid "This parameter enables usage of local swap partitions."
 msgstr "Ce paramètre active l'utilisation de partition swap locales."
 
 #. type: IP
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 #, no-wrap
 msgid "B<persistence>"
 msgstr "B<persistence>"
 
 #. type: Plain text
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 msgid ""
 "live-boot will probe devices for persistence media. These can be partitions "
 "(with the correct GPT name), filesystems (with the correct label) or image "
@@ -685,15 +846,23 @@ msgstr ""
 "nommés \"persistence\"."
 
 #. type: IP
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 #, no-wrap
 msgid "B<persistence-encryption>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-encryption>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 
 #. type: Plain text
-#: en/live-boot.7:113
+#: en/live-boot.7:152
+#, fuzzy
+#| msgid ""
+#| "This option determines which types of encryption that we allow to be used "
+#| "when probing devices for persistence media. If \"none\" is in the list, "
+#| "we allow unencrypted media; if \"luks\" is in the list, we allow LUKS-"
+#| "encrypted media. Whenever a device containing encrypted media is probed "
+#| "the user will be prompted for the passphrase. The default value is \"none"
+#| "\"."
 msgid ""
-"This option determines which types of encryption that we allow to be used "
+"This option determines which types of encryption that are allowed to be used "
 "when probing devices for persistence media. If \"none\" is in the list, we "
 "allow unencrypted media; if \"luks\" is in the list, we allow LUKS-encrypted "
 "media. Whenever a device containing encrypted media is probed the user will "
@@ -708,13 +877,13 @@ msgstr ""
 "La valeur par défaut est \"none\"."
 
 #. type: IP
-#: en/live-boot.7:113
+#: en/live-boot.7:152
 #, no-wrap
 msgid "B<persistence-media>={I<removable>|I<removable-usb>}"
 msgstr "B<persistence-media>={I<removable>|I<removable-usb>}"
 
 #. type: Plain text
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 msgid ""
 "If you specify the keyword 'removable', live-boot will try to find "
 "persistence partitions on removable media only. Note that if you want to "
@@ -728,13 +897,13 @@ msgstr ""
 "'removable-usb'."
 
 #. type: IP
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 #, no-wrap
 msgid "B<persistence-method>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-method>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 
 #. type: Plain text
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 msgid ""
 "This option determines which types of persistence media we allow. If "
 "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
@@ -745,13 +914,13 @@ msgstr ""
 "\"live-rw\" et \"home-rw\"). Le défaut est \"overlay\"."
 
 #. type: IP
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 #, no-wrap
 msgid "B<persistence-path>=I<PATH>"
 msgstr "B<persistence-path>=I<PATH>"
 
 #. type: Plain text
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 msgid ""
 "live-boot will look for persistency files in the root directory of a "
 "partition, with this parameter, the path can be configured so that you can "
@@ -763,13 +932,13 @@ msgstr ""
 "même partition pour emmagasiner des fichiers de persistance."
 
 #. type: IP
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 #, no-wrap
 msgid "B<persistence-read-only>"
 msgstr "B<persistence-read-only>"
 
 #. type: Plain text
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 msgid ""
 "Filesystem changes are not saved back to persistence media. In particular, "
 "overlays and netboot NFS mounts are mounted read-only."
@@ -779,13 +948,13 @@ msgstr ""
 "sont montés en lecture-seule. "
 
 #. type: IP
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 #, no-wrap
 msgid "B<persistence-storage>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-storage>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 
 #. type: Plain text
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 msgid ""
 "This option determines which types of persistence storage to consider when "
 "probing for persistence media. If \"filesystem\" is in the list, filesystems "
@@ -801,13 +970,13 @@ msgstr ""
 "noms de fichier correspondant. Le défaut est \"file,filesystem\"."
 
 #. type: IP
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 #, no-wrap
 msgid "B<persistence-label>=I<LABEL>"
 msgstr "B<persistence-label>=I<LABEL>"
 
 #. type: Plain text
-#: en/live-boot.7:125
+#: en/live-boot.7:164
 msgid ""
 "live-boot will use the name \"LABEL\" instead of \"persistence\" when "
 "searching for persistent storage. LABEL can be any valid filename, partition "
@@ -818,7 +987,7 @@ msgstr ""
 "valide, étiquette de partition ou nom GPT."
 
 #. type: Plain text
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 msgid ""
 "This option causes live-boot to reboot without attempting to eject the media "
 "and without asking the user to remove the boot media."
@@ -827,13 +996,13 @@ msgstr ""
 "média et sans demander à l'utilisateur de retirer le média de démarrage."
 
 #. type: IP
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 #, no-wrap
 msgid "B<showmounts>"
 msgstr "B<showmounts>"
 
 #. type: Plain text
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 msgid ""
 "This parameter will make live-boot to show on \"/\" the ro filesystems "
 "(mostly compressed) on \"/lib/live\". This is not enabled by default because "
@@ -846,13 +1015,13 @@ msgstr ""
 "\"mono\" qui stocke des chemins binaires lors de l'installation."
 
 #. type: IP
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 #, no-wrap
 msgid "B<silent>"
 msgstr "B<silent>"
 
 #. type: Plain text
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 msgid ""
 "If you boot with the normal quiet parameter, live-boot hides most messages "
 "of its own. When adding silent, it hides all."
@@ -861,13 +1030,13 @@ msgstr ""
 "de ses messages. Lorsque de l'ajout de silent, il cache tout."
 
 #. type: IP
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 #, no-wrap
 msgid "B<todisk>=I<DEVICE>"
 msgstr "B<todisk>=I<DEVICE>"
 
 #. type: Plain text
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 msgid ""
 "Adding this parameter, live-boot will try to copy the entire read-only media "
 "to the specified device before mounting the root filesystem. It probably "
@@ -883,13 +1052,13 @@ msgstr ""
 "DEVICE utilisé cette fois."
 
 #. type: IP
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 #, no-wrap
 msgid "B<toram>"
 msgstr "B<toram>"
 
 #. type: Plain text
-#: en/live-boot.7:135
+#: en/live-boot.7:174
 msgid ""
 "Adding this parameter, live-boot will try to copy the whole read-only media "
 "to the computer's RAM before mounting the root filesystem. This could need a "
@@ -901,36 +1070,41 @@ msgstr ""
 "l'espace utilisé par le média en lecture-seule."
 
 #. type: IP
-#: en/live-boot.7:135
-#, no-wrap
-msgid "B<union>=aufs|overlay"
+#: en/live-boot.7:174
+#, fuzzy, no-wrap
+#| msgid "B<union>=aufs|overlay"
+msgid "B<union>=overlay|aufs"
 msgstr "B<union>=aufs|overlay"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:138
+#: en/live-boot.7:177
+#, fuzzy
+#| msgid ""
+#| "By default, live-boot uses aufs. With this parameter, you can switch to "
+#| "overlay."
 msgid ""
-"By default, live-boot uses aufs. With this parameter, you can switch to "
-"overlay."
+"By default, live-boot uses overlay. With this parameter, you can switch to "
+"aufs."
 msgstr ""
 "Par défaut, live-boot utilise aufs. Avec ce paramètre, vous pouvez changer "
 "ceci pour overlay."
 
 #.  FIXME
 #. type: SH
-#: en/live-boot.7:140
+#: en/live-boot.7:179
 #, no-wrap
 msgid "FILES (old)"
 msgstr "FICHIERS (ancien)"
 
 #. type: IP
-#: en/live-boot.7:141
+#: en/live-boot.7:180
 #, no-wrap
 msgid "B</etc/live.conf>"
 msgstr "B</etc/live.conf>"
 
 #. type: Plain text
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 msgid ""
 "Some variables can be configured via this config file (inside the live "
 "system)."
@@ -939,14 +1113,14 @@ msgstr ""
 "configuration (à l'intérieur du système live)."
 
 #. type: IP
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 #, no-wrap
 msgid "B<live/filesystem.module>"
 msgstr "B<live/filesystem.module>"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:146
+#: en/live-boot.7:185
 msgid ""
 "This optional file (inside the live media) contains a list of white-space or "
 "carriage-return-separated file names corresponding to disk images in the \"/"
@@ -968,92 +1142,97 @@ msgstr ""
 "\" sont chargées par ordre alphanumérique."
 
 #. type: SH
-#: en/live-boot.7:147
+#: en/live-boot.7:186
 #, no-wrap
 msgid "FILES"
 msgstr "FICHIERS"
 
 #. type: IP
-#: en/live-boot.7:148
+#: en/live-boot.7:187
 #, no-wrap
 msgid "B</etc/live/boot.conf>"
 msgstr "B</etc/live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:149
+#: en/live-boot.7:188
 #, no-wrap
 msgid "B</etc/live/boot/*>"
 msgstr "B</etc/live/boot/*>"
 
 #. type: IP
-#: en/live-boot.7:150
+#: en/live-boot.7:189
 #, no-wrap
 msgid "B<live/boot.conf>"
 msgstr "B<live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:151
+#: en/live-boot.7:190
 #, no-wrap
 msgid "B<live/boot/*>"
 msgstr "B<live/boot/*>"
 
 #. type: IP
-#: en/live-boot.7:152
+#: en/live-boot.7:191
 #, no-wrap
 msgid "B<persistence.conf>"
 msgstr "B<persistence.conf>"
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "VOIR AUSSI"
 
 #. type: Plain text
-#: en/live-boot.7:156
+#: en/live-boot.7:195
 msgid "I<persistence.conf>(5)"
 msgstr "I<persistence.conf>(5)"
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "PAGE D'ACCUEIL"
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
+#, fuzzy
+#| msgid ""
+#| "More information about live-boot and the Live Systems project can be "
+#| "found on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the "
+#| "manual at E<lt>I<http://live-systems.org/manual/>E<gt>."
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 "Davantage d'informations à propos de live-boot et du projet Live Systems "
 "peuvent être trouvées sur la page E<lt>I<http://live-systems.org/>E<gt> et "
 "dans le manuel sur E<lt>I<http://live-systems.org/manual/>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr "BOGUES"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -1066,13 +1245,13 @@ msgstr ""
 "E<lt>I<debian-live@lists.debian.org>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTEUR"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
index 7640280..05014de 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot 5.0~a5-1\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: 2015-09-21 14:10+0200\n"
 "Last-Translator: Olivier Humbert <trebmuh@tuxfamily.org>\n"
 "Language-Team: none\n"
@@ -51,57 +51,62 @@ msgid "DESCRIPTION"
 msgstr "DESCRIPTION"
 
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "OPTIONS"
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "VOIR AUSSI"
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "PAGE D'ACCUEIL"
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
+#, fuzzy
+#| msgid ""
+#| "More information about live-boot and the Live Systems project can be "
+#| "found on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the "
+#| "manual at E<lt>I<http://live-systems.org/manual/>E<gt>."
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 "Davantage d'informations à propos de live-boot et du projet Live Systems "
 "peuvent être trouvées sur la page E<lt>I<http://live-systems.org/>E<gt> et "
 "dans le manuel sur E<lt>I<http://live-systems.org/manual/>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr "BOGUES"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -114,13 +119,13 @@ msgstr ""
 "E<lt>I<debian-live@lists.debian.org>E<gt>."
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr "AUTEUR"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
@@ -581,7 +586,9 @@ msgstr "Rép :"
 
 #. type: Plain text
 #: en/persistence.conf.5:170
-msgid "/homea/user2/.ssh (from c)"
+#, fuzzy
+#| msgid "/homea/user2/.ssh (from c)"
+msgid "/home/user2/.ssh (from c)"
 msgstr "/homea/user2/.ssh (depuis c)"
 
 #. type: Plain text
index 4078ec9..8a32247 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: 2014-08-28 02:52+0900\n"
 "Last-Translator: victory <victory.deb@gmail.com>\n"
 "Language-Team: none\n"
@@ -144,37 +144,150 @@ msgid "Configuration Files"
 msgstr "設定ファイル"
 
 #. type: Plain text
-#: en/live-boot.7:27
+#: en/live-boot.7:28
+#, fuzzy
+#| msgid ""
+#| "B<live-boot> can be configured (but not activated) through configuration "
+#| "files. Those files can be placed either in the root filesystem itself (/"
+#| "etc/live/boot.conf, /etc/live/boot/*), or on the live media (live/boot."
+#| "conf, live/boot/*)."
 msgid ""
 "B<live-boot> can be configured (but not activated) through configuration "
 "files. Those files can be placed either in the root filesystem itself (/etc/"
 "live/boot.conf, /etc/live/boot/*), or on the live media (live/boot.conf, "
-"live/boot/*)."
+"live/boot/*).  These environment variables can only be set in the "
+"configuration files:"
 msgstr ""
 "B<live-boot> は設定ファイルを利用して設定 (但し有効化しない) できます。この設"
 "定ファイルは root ファイルシステム自体 (/etc/live/boot.conf、 /etc/live/boot/"
 "*)、または Live メディア (live/boot.conf、 live/boot/*) に配置できます。"
 
+#. type: TP
+#: en/live-boot.7:29
+#, no-wrap
+msgid "B<DISABLE_CDROM>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:32
+msgid ""
+"Disable support for booting from CD-ROMs.  If set to 'I<true>' mkinitramfs "
+"will build an initramfs without the kernel modules for reading CD-ROMs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:33
+#, no-wrap
+msgid "B<DISABLE_FAT>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:36
+msgid ""
+"Disable support for booting from FAT file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module vfat and some "
+"nls_* modules."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:37
+#, no-wrap
+msgid "B<DISABLE_FUSE>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:40
+msgid ""
+"Disable support for booting from FUSE-based file systems.  If set to "
+"'I<true>' mkinitramfs will build an initramfs without the kernel module fuse "
+"and file systems that depend on it (like curlftpfs and httpfs2)."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:41
+#, no-wrap
+msgid "B<DISABLE_NTFS>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:44
+msgid ""
+"Disable support for booting from NTFS file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module ntfs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:45
+#, no-wrap
+msgid "B<DISABLE_USB>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:48
+msgid ""
+"Disable support for booting from USB devices.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module sd_mod."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:49
+#, no-wrap
+msgid "B<MINIMAL>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:52
+msgid ""
+"Build a minimal initramfs.  If set to 'I<true>' mkinitramfs will build an "
+"initramfs without some udev scripts and without rsync."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:53
+#, no-wrap
+msgid "B<PERSISTENCE_FSCK>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:56 en/live-boot.7:106
+msgid ""
+"Run fsck on persistence filesystem on boot. Will attempt to repair errors. "
+"The execution log will be saved in /var/log/live/fsck.log."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:57
+#, no-wrap
+msgid "B<FSCKFIX>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:60
+msgid ""
+"If PERSISTENCE_FSCK or forcefsck are set, will pass -y to fsck to stop it "
+"from asking questions interactively and assume yes to all queries."
+msgstr ""
+
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "オプション"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 msgid "B<live-boot> currently features the following parameters."
 msgstr "B<live-boot> では以下のパラメータが現在有効です。"
 
 #. type: IP
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 #, no-wrap
 msgid "B<access>=I<ACCESS>"
 msgstr "B<access>=I<アクセス>"
 
 #. type: Plain text
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 msgid ""
 "Set the accessibility level for physically or visually impaired users. "
 "ACCESS must be one of v1, v2, v3, m1, or m2. v1=lesser visual impairment, "
@@ -187,13 +300,13 @@ msgstr ""
 "m2=運動神経に中程度の難あり。"
 
 #. type: IP
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 #, no-wrap
 msgid "B<console>=I<TTY,SPEED>"
 msgstr "B<console>=I<TTY,速度>"
 
 #. type: Plain text
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 msgid ""
 "Set the default console to be used with the \"live-getty\" option. Example: "
 "\"console=ttyS0,115200\""
@@ -202,40 +315,40 @@ msgstr ""
 "「console=ttyS0,115200」"
 
 #. type: IP
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 #, no-wrap
 msgid "B<debug>"
 msgstr "B<debug>"
 
 #. type: Plain text
-#: en/live-boot.7:37
+#: en/live-boot.7:70
 msgid "Makes initramfs boot process more verbose."
 msgstr "initramfs ブートプロセスの出力をもっと冗長にします。"
 
 #. type: Plain text
-#: en/live-boot.7:39
+#: en/live-boot.7:72
 msgid "Use: debug=1"
 msgstr "debug=1 としてください"
 
 #. type: Plain text
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 msgid "Without setting debug to a value the messages may not be shown."
 msgstr "debug に値をセットしないとメッセージは表示されないかもしれません。"
 
 #. type: IP
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 #, no-wrap
 msgid "B<fetch>=I<URL>"
 msgstr "B<fetch>=I<URL>"
 
 #. type: IP
-#: en/live-boot.7:42
+#: en/live-boot.7:75
 #, no-wrap
 msgid "B<httpfs>=I<URL>"
 msgstr "B<httpfs>=I<URL>"
 
 #. type: Plain text
-#: en/live-boot.7:50
+#: en/live-boot.7:83
 msgid ""
 "Another form of netboot by downloading a squashfs image from a given URL.  "
 "The fetch method copies the image to RAM and the httpfs method uses FUSE and "
@@ -254,7 +367,7 @@ msgstr ""
 "は高速に動作します。"
 
 #. type: Plain text
-#: en/live-boot.7:52
+#: en/live-boot.7:85
 msgid ""
 "Due to current limitations in busybox's wget and DNS resolution, an URL can "
 "not contain a hostname but an IP address only."
@@ -263,17 +376,17 @@ msgstr ""
 "IPアドレスにしか対応していません。"
 
 #. type: Plain text
-#: en/live-boot.7:54
+#: en/live-boot.7:87
 msgid "Not working: http://example.com/path/to/your_filesystem.squashfs"
 msgstr "機能しない: http://example.com/path/to/your_filesystem.squashfs"
 
 #. type: Plain text
-#: en/live-boot.7:56
+#: en/live-boot.7:89
 msgid "Working: http://1.2.3.4/path/to/your_filesystem.squashfs"
 msgstr "機能する: http://1.2.3.4/path/to/your_filesystem.squashfs"
 
 #. type: Plain text
-#: en/live-boot.7:58
+#: en/live-boot.7:91
 msgid ""
 "Also note that therefore it's currently not possible to fetch an image from "
 "a name-based virtualhost of an httpd if it is sharing the IP address with "
@@ -284,19 +397,19 @@ msgstr ""
 "であることにも注意してください。"
 
 #. type: Plain text
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 msgid "You may also use the live ISO image in place of the squashfs image."
 msgstr ""
 "また、squashfs イメージの適切な位置にある Live ISO イメージも利用できます。"
 
 #. type: IP
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 #, no-wrap
 msgid "B<iscsi>=I<server-ip[,server-port];target-name>"
 msgstr "B<iscsi>=I<サーバのIPアドレス[,サーバのポート];対象の名前>"
 
 #. type: Plain text
-#: en/live-boot.7:62
+#: en/live-boot.7:95
 msgid ""
 "Boot from an iSCSI target that has an ISO or disk live image as one of its "
 "LUNs. The specified target is searched for a LUN which looks like a live "
@@ -310,12 +423,12 @@ msgstr ""
 "す:"
 
 #. type: Plain text
-#: en/live-boot.7:64
+#: en/live-boot.7:97
 msgid "# The target-name you specify in the iscsi= parameter"
 msgstr "# iscsi= パラメータで指定したターゲットの名前"
 
 #. type: Plain text
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid ""
 "Target E<lt>target-nameE<gt>\n"
@@ -330,13 +443,13 @@ msgstr ""
 "  # パラメータを調整してみるのもいいかもしれません。\n"
 
 #. type: IP
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid "B<findiso>=I</PATH/TO/IMAGE>"
 msgstr "B<findiso>=I</イメージ/への/パス>"
 
 #. type: Plain text
-#: en/live-boot.7:71
+#: en/live-boot.7:104
 msgid ""
 "Look for the specified ISO file on all disks where it usually looks for the ."
 "squashfs file (so you don't have to know the device name as in fromiso=....)."
@@ -346,28 +459,41 @@ msgstr ""
 "りません)。"
 
 #. type: IP
-#: en/live-boot.7:71
+#: en/live-boot.7:104
+#, no-wrap
+msgid "B<forcefsck>"
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:106
 #, no-wrap
 msgid "B<fromiso>=I</PATH/TO/IMAGE>"
 msgstr "B<fromiso>=I</イメージ/への/パス>"
 
 #. type: Plain text
-#: en/live-boot.7:73
+#: en/live-boot.7:108
+msgid ""
+"Use a filesystem from within an ISO image that's available on live-media. "
+"The first part of the argument should be the block device where the image is "
+"stored, followed by the path and filename (e.g. fromiso=/dev/sda1/live/image."
+"iso)."
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:110
 msgid ""
-"Allows to use a filesystem from within an ISO image that's available on live-"
-"media."
+"Alternatively, it can be used to boot from an ISO embedded into an initrd (e."
+"g. fromiso=/live/image.iso)."
 msgstr ""
-"Live メディア上で利用可能な ISO イメージ内からファイルシステムを利用できるよ"
-"うにします。"
 
 #. type: IP
-#: en/live-boot.7:73
+#: en/live-boot.7:110
 #, no-wrap
 msgid "B<ignore_uuid>"
 msgstr "B<ignore_uuid>"
 
 #. type: Plain text
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 msgid ""
 "Do not check that any UUID embedded in the initramfs matches the discovered "
 "medium. live-boot may be told to generate a UUID by setting "
@@ -378,13 +504,13 @@ msgstr ""
 "live-boot に指示しているかもしれません。"
 
 #. type: IP
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 #, no-wrap
 msgid "B<verify-checksums>"
 msgstr "B<verify-checksums>"
 
 #. type: Plain text
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 msgid ""
 "If specified, an MD5 sum is calculated on the live media during boot and "
 "compared to the value found in md5sum.txt found in the root directory of the "
@@ -394,17 +520,24 @@ msgstr ""
 "ルートディレクトリにある md5sum.txt 中の値と比較します。"
 
 #. type: IP
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 #, no-wrap
 msgid "B<ip>=[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>] [,[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>]]"
 msgstr "B<ip>=[I<デバイス>]:[I<クライアントのIPアドレス>]:[I<ネットマスク>]:[I<ゲートウェイのIPアドレス>]:[I<ネームサーバ>] [,[I<デバイス>]:[I<クライアントのIPアドレス>]:[I<ネットマスク>]:[I<ゲートウェイのIPアドレス>]:[I<ネームサーバ>]]"
 
 #. type: Plain text
-#: en/live-boot.7:79
+#: en/live-boot.7:116
+#, fuzzy
+#| msgid ""
+#| "Let you specify the name(s) and the options of the interface(s) that "
+#| "should be configured at boot time. Do not specify this if you want to use "
+#| "dhcp (default). It will be changed in a future release to mimick official "
+#| "kernel boot param specification (e.g. "
+#| "ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp)."
 msgid ""
 "Let you specify the name(s) and the options of the interface(s) that should "
 "be configured at boot time. Do not specify this if you want to use dhcp "
-"(default). It will be changed in a future release to mimick official kernel "
+"(default). It will be changed in a future release to mimic official kernel "
 "boot param specification (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::"
 "eth0,:::::eth1:dhcp)."
 msgstr ""
@@ -414,13 +547,13 @@ msgstr ""
 "ip=10.0.0.1::10.0.0.254:255.255.255.0::eth0,:::::eth1:dhcp) かもしれません。"
 
 #. type: IP
-#: en/live-boot.7:79
+#: en/live-boot.7:116
 #, no-wrap
 msgid "B<ip>=[I<frommedia>]"
 msgstr "B<ip>=[I<読み込み元メディア>]"
 
 #. type: Plain text
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 msgid ""
 "If this variable is set, dhcp and static configuration are just skipped and "
 "the system will use the (must be) media-preconfigured /etc/network/"
@@ -431,13 +564,13 @@ msgstr ""
 "network/interfaces を代わりに利用します。"
 
 #. type: IP
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 #, no-wrap
 msgid "{B<live-media>|B<bootfrom>}=I<DEVICE>"
 msgstr "{B<live-media>|B<bootfrom>}=I<デバイス>"
 
 #. type: Plain text
-#: en/live-boot.7:83
+#: en/live-boot.7:120
 msgid ""
 "If you specify one of this two equivalent forms, live-boot will first try to "
 "find this device for the \"/live\" directory where the read-only root "
@@ -450,9 +583,15 @@ msgstr ""
 "査が行われます。"
 
 #. type: Plain text
-#: en/live-boot.7:85
+#: en/live-boot.7:122
+#, fuzzy
+#| msgid ""
+#| "Instead of specifing an actual device name, the keyword 'removable' can "
+#| "be used to limit the search of acceptable live media to removable type "
+#| "only. Note that if you want to further restrict the media to usb mass "
+#| "storage only, you can use the 'removable-usb' keyword."
 msgid ""
-"Instead of specifing an actual device name, the keyword 'removable' can be "
+"Instead of specifying an actual device name, the keyword 'removable' can be "
 "used to limit the search of acceptable live media to removable type only. "
 "Note that if you want to further restrict the media to usb mass storage "
 "only, you can use the 'removable-usb' keyword."
@@ -463,13 +602,13 @@ msgstr ""
 "キーワードを使えることに注目してください。"
 
 #. type: IP
-#: en/live-boot.7:85
+#: en/live-boot.7:122
 #, no-wrap
 msgid "{B<live-media-encryption>|B<encryption>}=I<TYPE>"
 msgstr "{B<live-media-encryption>|B<encryption>}=I<暗号化の種類>"
 
 #. type: Plain text
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 msgid ""
 "live-boot will mount the encrypted rootfs TYPE, asking the passphrase, "
 "useful to build paranoid live systems :-). TYPE supported so far is \"aes\" "
@@ -480,13 +619,13 @@ msgstr ""
 "ポートしているのは loop-aes 暗号化を指示する「aes」です。"
 
 #. type: IP
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 #, no-wrap
 msgid "B<live-media-offset>=I<BYTES>"
 msgstr "B<live-media-offset>=I<バイト数>"
 
 #. type: Plain text
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 msgid ""
 "This way you could tell live-boot that your image starts at offset BYTES in "
 "the above specified or autodiscovered device, this could be useful to hide "
@@ -499,13 +638,13 @@ msgstr ""
 "ン」なイメージを作成するのに有用かもしれません。"
 
 #. type: IP
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 #, no-wrap
 msgid "B<live-media-path>=I<PATH>"
 msgstr "B<live-media-path>=I<パス>"
 
 #. type: Plain text
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 msgid ""
 "Sets the path to the live filesystem on the medium. By default, it is set to "
 "'/live' and you should not change that unless you have customized your media "
@@ -516,13 +655,13 @@ msgstr ""
 "ません。"
 
 #. type: IP
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 #, no-wrap
 msgid "B<live-media-timeout>=I<SECONDS>"
 msgstr "B<live-media-timeout>=I<秒数>"
 
 #. type: Plain text
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 msgid ""
 "Set the timeout in seconds for the device specified by \"live-media=\" to "
 "become ready before giving up."
@@ -531,13 +670,13 @@ msgstr ""
 "数で指示します。"
 
 #. type: IP
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 #, no-wrap
 msgid "B<module>=I<NAME>"
 msgstr "B<module>=I<名前>"
 
 #. type: Plain text
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 msgid ""
 "Instead of using the default optional file \"filesystem.module\" (see below) "
 "another file could be specified without the extension \".module\"; it should "
@@ -548,13 +687,13 @@ msgstr ""
 "れは Live メディアの「/live」ディレクトリに配置すべきです。"
 
 #. type: IP
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 #, no-wrap
 msgid "B<netboot>[=nfs|cifs]"
 msgstr "B<netboot>[=nfs|cifs]"
 
 #. type: Plain text
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 msgid ""
 "This tells live-boot to perform a network mount. The parameter \"nfsroot="
 "\" (with optional \"nfsopts=\"), should specify where is the location of the "
@@ -566,24 +705,24 @@ msgstr ""
 "合は nfs を試します。"
 
 #. type: IP
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 #, no-wrap
 msgid "B<nfsopts>="
 msgstr "B<nfsopts>="
 
 #. type: Plain text
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 msgid "This lets you specify custom nfs options."
 msgstr "これを使って nfs オプションを指定できます。"
 
 #. type: IP
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 #, no-wrap
 msgid "B<nofastboot>"
 msgstr "B<nofastboot>"
 
 #. type: Plain text
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 msgid ""
 "This parameter disables the default disabling of filesystem checks in /etc/"
 "fstab. If you have static filesystems on your harddisk and you want them to "
@@ -595,13 +734,13 @@ msgstr ""
 "い場合はファイルシステムのチェックは飛ばされます。"
 
 #. type: IP
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 #, no-wrap
 msgid "B<nopersistence>"
 msgstr "B<nopersistence>"
 
 #. type: Plain text
-#: en/live-boot.7:103
+#: en/live-boot.7:140
 msgid ""
 "disables the \"persistence\" feature, useful if the bootloader (like "
 "syslinux) has been installed with persistence enabled."
@@ -610,29 +749,35 @@ msgstr ""
 "の) が保持機能を有効にしてインストールされている場合に有用です。"
 
 #. type: IP
-#: en/live-boot.7:103 en/live-boot.7:125
+#: en/live-boot.7:140 en/live-boot.7:164
 #, no-wrap
 msgid "B<noeject>"
 msgstr "B<noeject>"
 
 #. type: Plain text
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 msgid "Do not prompt to eject the live medium."
 msgstr "Live メディアを取り出すかどうか確認しません。"
 
 #. type: IP
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 #, no-wrap
 msgid "B<ramdisk-size>"
 msgstr "B<ramdisk-size>"
 
 #. type: Plain text
-#: en/live-boot.7:107
+#: en/live-boot.7:144
+#, fuzzy
+#| msgid ""
+#| "This parameter allows to set a custom ramdisk size (it's the '-o size' "
+#| "option of tmpfs mount). By default, there is no ramdisk size set, so the "
+#| "default of mount applies (currently 50% of available RAM). Note that this "
+#| "option has currently no effect when booting with toram."
 msgid ""
-"This parameter allows to set a custom ramdisk size (it's the '-o size' "
-"option of tmpfs mount). By default, there is no ramdisk size set, so the "
-"default of mount applies (currently 50% of available RAM). Note that this "
-"option has currently no effect when booting with toram."
+"This parameter defines a custom ramdisk size (it's the '-o size' option of "
+"tmpfs mount). By default, there is no ramdisk size set, so the default of "
+"mount applies (currently 50% of available RAM). Note that this option has "
+"currently no effect when booting with toram."
 msgstr ""
 "このパラメータにより独自の RAM ディスクサイズ (tmpfs マウント時の「-o サイ"
 "ズ」オプション) をセットできます。デフォルトでは RAM ディスクサイズはセットさ"
@@ -641,24 +786,40 @@ msgstr ""
 "いことに注意してください"
 
 #. type: IP
-#: en/live-boot.7:107
+#: en/live-boot.7:144
+#, no-wrap
+msgid "B<overlay-size>=I<SIZE>"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:146
+msgid ""
+"The size of the tmpfs mount (used for the upperdir union root mount) in "
+"bytes, and rounded up to entire pages. This option accepts a suffix % to "
+"limit the instance to that percentage of your physical RAM or a suffix k, m "
+"or g for Ki, Mi, Gi (binary kilo (kibi), binary mega (mebi) and binary giga "
+"(gibi)). By default, 50% of available RAM will be used."
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:146
 #, no-wrap
 msgid "B<swap=true>"
 msgstr "B<swap=true>"
 
 #. type: Plain text
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 msgid "This parameter enables usage of local swap partitions."
 msgstr "このパラメータはローカルのスワップパーティションの利用を有効にします。"
 
 #. type: IP
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 #, no-wrap
 msgid "B<persistence>"
 msgstr "B<persistence>"
 
 #. type: Plain text
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 msgid ""
 "live-boot will probe devices for persistence media. These can be partitions "
 "(with the correct GPT name), filesystems (with the correct label) or image "
@@ -674,15 +835,23 @@ msgstr ""
 "という名前になります。"
 
 #. type: IP
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 #, no-wrap
 msgid "B<persistence-encryption>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-encryption>=I<種類1>,I<種類2> ... I<種類n>"
 
 #. type: Plain text
-#: en/live-boot.7:113
+#: en/live-boot.7:152
+#, fuzzy
+#| msgid ""
+#| "This option determines which types of encryption that we allow to be used "
+#| "when probing devices for persistence media. If \"none\" is in the list, "
+#| "we allow unencrypted media; if \"luks\" is in the list, we allow LUKS-"
+#| "encrypted media. Whenever a device containing encrypted media is probed "
+#| "the user will be prompted for the passphrase. The default value is \"none"
+#| "\"."
 msgid ""
-"This option determines which types of encryption that we allow to be used "
+"This option determines which types of encryption that are allowed to be used "
 "when probing devices for persistence media. If \"none\" is in the list, we "
 "allow unencrypted media; if \"luks\" is in the list, we allow LUKS-encrypted "
 "media. Whenever a device containing encrypted media is probed the user will "
@@ -695,13 +864,13 @@ msgstr ""
 "フレーズをユーザに質問します。デフォルト値は「none」です。"
 
 #. type: IP
-#: en/live-boot.7:113
+#: en/live-boot.7:152
 #, no-wrap
 msgid "B<persistence-media>={I<removable>|I<removable-usb>}"
 msgstr "B<persistence-media>={I<removable>|I<removable-usb>}"
 
 #. type: Plain text
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 msgid ""
 "If you specify the keyword 'removable', live-boot will try to find "
 "persistence partitions on removable media only. Note that if you want to "
@@ -714,13 +883,13 @@ msgstr ""
 "さい。"
 
 #. type: IP
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 #, no-wrap
 msgid "B<persistence-method>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-method>=I<種類1>,I<種類2> ... I<種類n>"
 
 #. type: Plain text
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 msgid ""
 "This option determines which types of persistence media we allow. If "
 "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
@@ -731,13 +900,13 @@ msgstr ""
 "ト値は「overlay」です。"
 
 #. type: IP
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 #, no-wrap
 msgid "B<persistence-path>=I<PATH>"
 msgstr "B<persistence-path>=I<パス>"
 
 #. type: Plain text
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 msgid ""
 "live-boot will look for persistency files in the root directory of a "
 "partition, with this parameter, the path can be configured so that you can "
@@ -748,13 +917,13 @@ msgstr ""
 "クトリを保持用ファイルの保管先にできます。"
 
 #. type: IP
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 #, no-wrap
 msgid "B<persistence-read-only>"
 msgstr "B<persistence-read-only>"
 
 #. type: Plain text
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 msgid ""
 "Filesystem changes are not saved back to persistence media. In particular, "
 "overlays and netboot NFS mounts are mounted read-only."
@@ -763,13 +932,13 @@ msgstr ""
 "ネットワーク経由のブート用の NFS マウントは読み取り専用でマウントされます。"
 
 #. type: IP
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 #, no-wrap
 msgid "B<persistence-storage>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr "B<persistence-storage>=I<種類1>,I<種類2> ... I<種類n>"
 
 #. type: Plain text
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 msgid ""
 "This option determines which types of persistence storage to consider when "
 "probing for persistence media. If \"filesystem\" is in the list, filesystems "
@@ -784,13 +953,13 @@ msgstr ""
 "filesystem」です。"
 
 #. type: IP
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 #, no-wrap
 msgid "B<persistence-label>=I<LABEL>"
 msgstr "B<persistence-label>=I<ラベル>"
 
 #. type: Plain text
-#: en/live-boot.7:125
+#: en/live-boot.7:164
 msgid ""
 "live-boot will use the name \"LABEL\" instead of \"persistence\" when "
 "searching for persistent storage. LABEL can be any valid filename, partition "
@@ -801,7 +970,7 @@ msgstr ""
 "名前として有効な任意のものを使えます。"
 
 #. type: Plain text
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 msgid ""
 "This option causes live-boot to reboot without attempting to eject the media "
 "and without asking the user to remove the boot media."
@@ -810,13 +979,13 @@ msgstr ""
 "除するかユーザに質問することもなくリブートします。"
 
 #. type: IP
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 #, no-wrap
 msgid "B<showmounts>"
 msgstr "B<showmounts>"
 
 #. type: Plain text
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 msgid ""
 "This parameter will make live-boot to show on \"/\" the ro filesystems "
 "(mostly compressed) on \"/lib/live\". This is not enabled by default because "
@@ -829,13 +998,13 @@ msgstr ""
 "めデフォルトでは有効にされていません。"
 
 #. type: IP
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 #, no-wrap
 msgid "B<silent>"
 msgstr "B<silent>"
 
 #. type: Plain text
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 msgid ""
 "If you boot with the normal quiet parameter, live-boot hides most messages "
 "of its own. When adding silent, it hides all."
@@ -844,13 +1013,13 @@ msgstr ""
 "セージを非表示にします。「silent」を付けると全て非表示にします。"
 
 #. type: IP
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 #, no-wrap
 msgid "B<todisk>=I<DEVICE>"
 msgstr "B<todisk>=I<デバイス>"
 
 #. type: Plain text
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 msgid ""
 "Adding this parameter, live-boot will try to copy the entire read-only media "
 "to the specified device before mounting the root filesystem. It probably "
@@ -865,13 +1034,13 @@ msgstr ""
 "定するようにしてください。"
 
 #. type: IP
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 #, no-wrap
 msgid "B<toram>"
 msgstr "B<toram>"
 
 #. type: Plain text
-#: en/live-boot.7:135
+#: en/live-boot.7:174
 msgid ""
 "Adding this parameter, live-boot will try to copy the whole read-only media "
 "to the computer's RAM before mounting the root filesystem. This could need a "
@@ -883,14 +1052,14 @@ msgstr ""
 "なるかもしれません。"
 
 #. type: IP
-#: en/live-boot.7:135
+#: en/live-boot.7:174
 #, no-wrap
 msgid "B<union>=overlay|aufs"
 msgstr "B<union>=overlay|aufs"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:138
+#: en/live-boot.7:177
 msgid ""
 "By default, live-boot uses overlay. With this parameter, you can switch to "
 "aufs."
@@ -900,33 +1069,33 @@ msgstr ""
 
 #.  FIXME
 #. type: SH
-#: en/live-boot.7:140
+#: en/live-boot.7:179
 #, no-wrap
 msgid "FILES (old)"
 msgstr "ファイル (古い情報)"
 
 #. type: IP
-#: en/live-boot.7:141
+#: en/live-boot.7:180
 #, no-wrap
 msgid "B</etc/live.conf>"
 msgstr "B</etc/live.conf>"
 
 #. type: Plain text
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 msgid ""
 "Some variables can be configured via this config file (inside the live "
 "system)."
 msgstr "一部の変数はこの (Live システム中の) 設定ファイルにより設定できます。"
 
 #. type: IP
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 #, no-wrap
 msgid "B<live/filesystem.module>"
 msgstr "B<live/filesystem.module>"
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:146
+#: en/live-boot.7:185
 msgid ""
 "This optional file (inside the live media) contains a list of white-space or "
 "carriage-return-separated file names corresponding to disk images in the \"/"
@@ -946,92 +1115,97 @@ msgstr ""
 "ルがない場合は「/live」ディレクトリにあるイメージを英数字順に読み込みます。"
 
 #. type: SH
-#: en/live-boot.7:147
+#: en/live-boot.7:186
 #, no-wrap
 msgid "FILES"
 msgstr "ファイル"
 
 #. type: IP
-#: en/live-boot.7:148
+#: en/live-boot.7:187
 #, no-wrap
 msgid "B</etc/live/boot.conf>"
 msgstr "B</etc/live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:149
+#: en/live-boot.7:188
 #, no-wrap
 msgid "B</etc/live/boot/*>"
 msgstr "B</etc/live/boot/*>"
 
 #. type: IP
-#: en/live-boot.7:150
+#: en/live-boot.7:189
 #, no-wrap
 msgid "B<live/boot.conf>"
 msgstr "B<live/boot.conf>"
 
 #. type: IP
-#: en/live-boot.7:151
+#: en/live-boot.7:190
 #, no-wrap
 msgid "B<live/boot/*>"
 msgstr "B<live/boot/*>"
 
 #. type: IP
-#: en/live-boot.7:152
+#: en/live-boot.7:191
 #, no-wrap
 msgid "B<persistence.conf>"
 msgstr "B<persistence.conf>"
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "関連項目"
 
 #. type: Plain text
-#: en/live-boot.7:156
+#: en/live-boot.7:195
 msgid "I<persistence.conf>(5)"
 msgstr "I<persistence.conf>(5)"
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "ホームページ"
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
+#, fuzzy
+#| msgid ""
+#| "More information about live-boot and the Live Systems project can be "
+#| "found on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the "
+#| "manual at E<lt>I<http://live-systems.org/manual/>E<gt>."
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 "live-boot 及び Live システムプロジェクトについてのさらなる情報は、"
 "E<lt>I<http://live-systems.org/>E<gt> のホームページや E<lt>I<http://live-"
 "systems.org/manual/>E<gt> のマニュアルにあります。"
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr "バグ"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -1044,13 +1218,13 @@ msgstr ""
 "報告できます。"
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr "作者"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
index cb209d3..d1450a0 100644 (file)
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: live-boot\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: 2015-01-05 05:50+0900\n"
 "Last-Translator: victory <victory.deb@gmail.com>\n"
 "Language-Team: none\n"
@@ -51,57 +51,62 @@ msgid "DESCRIPTION"
 msgstr "説明"
 
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr "オプション"
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr "関連項目"
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr "I<live-build>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr "I<live-config>(7)"
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr "I<live-tools>(7)"
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr "ホームページ"
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
+#, fuzzy
+#| msgid ""
+#| "More information about live-boot and the Live Systems project can be "
+#| "found on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the "
+#| "manual at E<lt>I<http://live-systems.org/manual/>E<gt>."
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 "live-boot 及び Live システムプロジェクトについてのさらなる情報は、"
 "E<lt>I<http://live-systems.org/>E<gt> のホームページや E<lt>I<http://live-"
 "systems.org/manual/>E<gt> のマニュアルにあります。"
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr "バグ"
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -114,13 +119,13 @@ msgstr ""
 "報告できます。"
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr "作者"
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
@@ -564,7 +569,9 @@ msgstr "ディレクトリ:"
 
 #. type: Plain text
 #: en/persistence.conf.5:170
-msgid "/homea/user2/.ssh (from c)"
+#, fuzzy
+#| msgid "/homea/user2/.ssh (from c)"
+msgid "/home/user2/.ssh (from c)"
 msgstr "/homea/user2/.ssh (c の場合)"
 
 #. type: Plain text
diff --git a/manpages/po4a.cfg b/manpages/po4a.cfg
deleted file mode 100644 (file)
index 0f2b1ba..0000000
+++ /dev/null
@@ -1,4 +0,0 @@
-[po4a_langs] es fr ja
-[po4a_paths] pot/$master.pot $lang:po/$lang/$master.po
-[type: man] en/live-boot.7 $lang:$lang/live-boot.$lang.7
-[type: man] en/persistence.conf.5 $lang:$lang/persistence.conf.$lang.5
index 32ccf0b..dee33bb 100644 (file)
@@ -1,13 +1,13 @@
 # SOME DESCRIPTIVE TITLE
-# Copyright (C) YEAR Free Software Foundation, Inc.
+# Copyright (C) YEAR Live Systems Project
 # This file is distributed under the same license as the live-boot package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: live-boot 5.0~a5-1\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"Project-Id-Version: live-boot 1:20180603\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -129,34 +129,141 @@ msgid "Configuration Files"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:27
+#: en/live-boot.7:28
 msgid ""
 "B<live-boot> can be configured (but not activated) through configuration "
 "files. Those files can be placed either in the root filesystem itself (/etc/"
 "live/boot.conf, /etc/live/boot/*), or on the live media (live/boot.conf, "
-"live/boot/*)."
+"live/boot/*).  These environment variables can only be set in the "
+"configuration files:"
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:29
+#, no-wrap
+msgid "B<DISABLE_CDROM>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:32
+msgid ""
+"Disable support for booting from CD-ROMs.  If set to 'I<true>' mkinitramfs "
+"will build an initramfs without the kernel modules for reading CD-ROMs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:33
+#, no-wrap
+msgid "B<DISABLE_FAT>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:36
+msgid ""
+"Disable support for booting from FAT file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module vfat and some "
+"nls_* modules."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:37
+#, no-wrap
+msgid "B<DISABLE_FUSE>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:40
+msgid ""
+"Disable support for booting from FUSE-based file systems.  If set to "
+"'I<true>' mkinitramfs will build an initramfs without the kernel module fuse "
+"and file systems that depend on it (like curlftpfs and httpfs2)."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:41
+#, no-wrap
+msgid "B<DISABLE_NTFS>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:44
+msgid ""
+"Disable support for booting from NTFS file systems.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module ntfs."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:45
+#, no-wrap
+msgid "B<DISABLE_USB>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:48
+msgid ""
+"Disable support for booting from USB devices.  If set to 'I<true>' "
+"mkinitramfs will build an initramfs without the kernel module sd_mod."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:49
+#, no-wrap
+msgid "B<MINIMAL>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:52
+msgid ""
+"Build a minimal initramfs.  If set to 'I<true>' mkinitramfs will build an "
+"initramfs without some udev scripts and without rsync."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:53
+#, no-wrap
+msgid "B<PERSISTENCE_FSCK>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:56 en/live-boot.7:106
+msgid ""
+"Run fsck on persistence filesystem on boot. Will attempt to repair errors. "
+"The execution log will be saved in /var/log/live/fsck.log."
+msgstr ""
+
+#. type: TP
+#: en/live-boot.7:57
+#, no-wrap
+msgid "B<FSCKFIX>=[I<true>|I<false>]"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:60
+msgid ""
+"If PERSISTENCE_FSCK or forcefsck are set, will pass -y to fsck to stop it "
+"from asking questions interactively and assume yes to all queries."
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 msgid "B<live-boot> currently features the following parameters."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:31
+#: en/live-boot.7:64
 #, no-wrap
 msgid "B<access>=I<ACCESS>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 msgid ""
 "Set the accessibility level for physically or visually impaired users. "
 "ACCESS must be one of v1, v2, v3, m1, or m2. v1=lesser visual impairment, "
@@ -165,53 +272,53 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:33
+#: en/live-boot.7:66
 #, no-wrap
 msgid "B<console>=I<TTY,SPEED>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 msgid ""
 "Set the default console to be used with the \"live-getty\" option. Example: "
 "\"console=ttyS0,115200\""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:35
+#: en/live-boot.7:68
 #, no-wrap
 msgid "B<debug>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:37
+#: en/live-boot.7:70
 msgid "Makes initramfs boot process more verbose."
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:39
+#: en/live-boot.7:72
 msgid "Use: debug=1"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 msgid "Without setting debug to a value the messages may not be shown."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:41
+#: en/live-boot.7:74
 #, no-wrap
 msgid "B<fetch>=I<URL>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:42
+#: en/live-boot.7:75
 #, no-wrap
 msgid "B<httpfs>=I<URL>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:50
+#: en/live-boot.7:83
 msgid ""
 "Another form of netboot by downloading a squashfs image from a given URL.  "
 "The fetch method copies the image to RAM and the httpfs method uses FUSE and "
@@ -223,24 +330,24 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:52
+#: en/live-boot.7:85
 msgid ""
 "Due to current limitations in busybox's wget and DNS resolution, an URL can "
 "not contain a hostname but an IP address only."
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:54
+#: en/live-boot.7:87
 msgid "Not working: http://example.com/path/to/your_filesystem.squashfs"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:56
+#: en/live-boot.7:89
 msgid "Working: http://1.2.3.4/path/to/your_filesystem.squashfs"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:58
+#: en/live-boot.7:91
 msgid ""
 "Also note that therefore it's currently not possible to fetch an image from "
 "a name-based virtualhost of an httpd if it is sharing the IP address with "
@@ -248,18 +355,18 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 msgid "You may also use the live ISO image in place of the squashfs image."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:60
+#: en/live-boot.7:93
 #, no-wrap
 msgid "B<iscsi>=I<server-ip[,server-port];target-name>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:62
+#: en/live-boot.7:95
 msgid ""
 "Boot from an iSCSI target that has an ISO or disk live image as one of its "
 "LUNs. The specified target is searched for a LUN which looks like a live "
@@ -268,12 +375,12 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:64
+#: en/live-boot.7:97
 msgid "# The target-name you specify in the iscsi= parameter"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid ""
 "Target E<lt>target-nameE<gt>\n"
@@ -283,39 +390,54 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:69
+#: en/live-boot.7:102
 #, no-wrap
 msgid "B<findiso>=I</PATH/TO/IMAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:71
+#: en/live-boot.7:104
 msgid ""
 "Look for the specified ISO file on all disks where it usually looks for the ."
 "squashfs file (so you don't have to know the device name as in fromiso=....)."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:71
+#: en/live-boot.7:104
+#, no-wrap
+msgid "B<forcefsck>"
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:106
 #, no-wrap
 msgid "B<fromiso>=I</PATH/TO/IMAGE>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:73
+#: en/live-boot.7:108
+msgid ""
+"Use a filesystem from within an ISO image that's available on live-media. "
+"The first part of the argument should be the block device where the image is "
+"stored, followed by the path and filename (e.g. fromiso=/dev/sda1/live/image."
+"iso)."
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:110
 msgid ""
-"Allows to use a filesystem from within an ISO image that's available on live-"
-"media."
+"Alternatively, it can be used to boot from an ISO embedded into an initrd (e."
+"g. fromiso=/live/image.iso)."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:73
+#: en/live-boot.7:110
 #, no-wrap
 msgid "B<ignore_uuid>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 msgid ""
 "Do not check that any UUID embedded in the initramfs matches the discovered "
 "medium. live-boot may be told to generate a UUID by setting "
@@ -323,13 +445,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:75
+#: en/live-boot.7:112
 #, no-wrap
 msgid "B<verify-checksums>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 msgid ""
 "If specified, an MD5 sum is calculated on the live media during boot and "
 "compared to the value found in md5sum.txt found in the root directory of the "
@@ -337,29 +459,29 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:77
+#: en/live-boot.7:114
 #, no-wrap
 msgid "B<ip>=[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>] [,[I<DEVICE>]:[I<CLIENT_IP>]:[I<NETMASK>]:[I<GATEWAY_IP>]:[I<NAMESERVER>]]"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:79
+#: en/live-boot.7:116
 msgid ""
 "Let you specify the name(s) and the options of the interface(s) that should "
 "be configured at boot time. Do not specify this if you want to use dhcp "
-"(default). It will be changed in a future release to mimick official kernel "
+"(default). It will be changed in a future release to mimic official kernel "
 "boot param specification (e.g. ip=10.0.0.1::10.0.0.254:255.255.255.0::"
 "eth0,:::::eth1:dhcp)."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:79
+#: en/live-boot.7:116
 #, no-wrap
 msgid "B<ip>=[I<frommedia>]"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 msgid ""
 "If this variable is set, dhcp and static configuration are just skipped and "
 "the system will use the (must be) media-preconfigured /etc/network/"
@@ -367,13 +489,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:81
+#: en/live-boot.7:118
 #, no-wrap
 msgid "{B<live-media>|B<bootfrom>}=I<DEVICE>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:83
+#: en/live-boot.7:120
 msgid ""
 "If you specify one of this two equivalent forms, live-boot will first try to "
 "find this device for the \"/live\" directory where the read-only root "
@@ -382,22 +504,22 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:85
+#: en/live-boot.7:122
 msgid ""
-"Instead of specifing an actual device name, the keyword 'removable' can be "
+"Instead of specifying an actual device name, the keyword 'removable' can be "
 "used to limit the search of acceptable live media to removable type only. "
 "Note that if you want to further restrict the media to usb mass storage "
 "only, you can use the 'removable-usb' keyword."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:85
+#: en/live-boot.7:122
 #, no-wrap
 msgid "{B<live-media-encryption>|B<encryption>}=I<TYPE>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 msgid ""
 "live-boot will mount the encrypted rootfs TYPE, asking the passphrase, "
 "useful to build paranoid live systems :-). TYPE supported so far is \"aes\" "
@@ -405,13 +527,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:87
+#: en/live-boot.7:124
 #, no-wrap
 msgid "B<live-media-offset>=I<BYTES>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 msgid ""
 "This way you could tell live-boot that your image starts at offset BYTES in "
 "the above specified or autodiscovered device, this could be useful to hide "
@@ -420,13 +542,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:89
+#: en/live-boot.7:126
 #, no-wrap
 msgid "B<live-media-path>=I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 msgid ""
 "Sets the path to the live filesystem on the medium. By default, it is set to "
 "'/live' and you should not change that unless you have customized your media "
@@ -434,26 +556,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:91
+#: en/live-boot.7:128
 #, no-wrap
 msgid "B<live-media-timeout>=I<SECONDS>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 msgid ""
 "Set the timeout in seconds for the device specified by \"live-media=\" to "
 "become ready before giving up."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:93
+#: en/live-boot.7:130
 #, no-wrap
 msgid "B<module>=I<NAME>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 msgid ""
 "Instead of using the default optional file \"filesystem.module\" (see below) "
 "another file could be specified without the extension \".module\"; it should "
@@ -461,13 +583,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:95
+#: en/live-boot.7:132
 #, no-wrap
 msgid "B<netboot>[=nfs|cifs]"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 msgid ""
 "This tells live-boot to perform a network mount. The parameter \"nfsroot="
 "\" (with optional \"nfsopts=\"), should specify where is the location of the "
@@ -475,24 +597,24 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:97
+#: en/live-boot.7:134
 #, no-wrap
 msgid "B<nfsopts>="
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 msgid "This lets you specify custom nfs options."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:99
+#: en/live-boot.7:136
 #, no-wrap
 msgid "B<nofastboot>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 msgid ""
 "This parameter disables the default disabling of filesystem checks in /etc/"
 "fstab. If you have static filesystems on your harddisk and you want them to "
@@ -500,63 +622,79 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:101
+#: en/live-boot.7:138
 #, no-wrap
 msgid "B<nopersistence>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:103
+#: en/live-boot.7:140
 msgid ""
 "disables the \"persistence\" feature, useful if the bootloader (like "
 "syslinux) has been installed with persistence enabled."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:103 en/live-boot.7:125
+#: en/live-boot.7:140 en/live-boot.7:164
 #, no-wrap
 msgid "B<noeject>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 msgid "Do not prompt to eject the live medium."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:105
+#: en/live-boot.7:142
 #, no-wrap
 msgid "B<ramdisk-size>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:107
+#: en/live-boot.7:144
 msgid ""
-"This parameter allows to set a custom ramdisk size (it's the '-o size' "
-"option of tmpfs mount). By default, there is no ramdisk size set, so the "
-"default of mount applies (currently 50% of available RAM). Note that this "
-"option has currently no effect when booting with toram."
+"This parameter defines a custom ramdisk size (it's the '-o size' option of "
+"tmpfs mount). By default, there is no ramdisk size set, so the default of "
+"mount applies (currently 50% of available RAM). Note that this option has "
+"currently no effect when booting with toram."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:107
+#: en/live-boot.7:144
+#, no-wrap
+msgid "B<overlay-size>=I<SIZE>"
+msgstr ""
+
+#. type: Plain text
+#: en/live-boot.7:146
+msgid ""
+"The size of the tmpfs mount (used for the upperdir union root mount) in "
+"bytes, and rounded up to entire pages. This option accepts a suffix % to "
+"limit the instance to that percentage of your physical RAM or a suffix k, m "
+"or g for Ki, Mi, Gi (binary kilo (kibi), binary mega (mebi) and binary giga "
+"(gibi)). By default, 50% of available RAM will be used."
+msgstr ""
+
+#. type: IP
+#: en/live-boot.7:146
 #, no-wrap
 msgid "B<swap=true>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 msgid "This parameter enables usage of local swap partitions."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:109
+#: en/live-boot.7:148
 #, no-wrap
 msgid "B<persistence>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 msgid ""
 "live-boot will probe devices for persistence media. These can be partitions "
 "(with the correct GPT name), filesystems (with the correct label) or image "
@@ -566,15 +704,15 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:111
+#: en/live-boot.7:150
 #, no-wrap
 msgid "B<persistence-encryption>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:113
+#: en/live-boot.7:152
 msgid ""
-"This option determines which types of encryption that we allow to be used "
+"This option determines which types of encryption that are allowed to be used "
 "when probing devices for persistence media. If \"none\" is in the list, we "
 "allow unencrypted media; if \"luks\" is in the list, we allow LUKS-encrypted "
 "media. Whenever a device containing encrypted media is probed the user will "
@@ -582,13 +720,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:113
+#: en/live-boot.7:152
 #, no-wrap
 msgid "B<persistence-media>={I<removable>|I<removable-usb>}"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 msgid ""
 "If you specify the keyword 'removable', live-boot will try to find "
 "persistence partitions on removable media only. Note that if you want to "
@@ -597,13 +735,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:115
+#: en/live-boot.7:154
 #, no-wrap
 msgid "B<persistence-method>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 msgid ""
 "This option determines which types of persistence media we allow. If "
 "\"overlay\" is in the list, we consider overlays (i.e. \"live-rw\" and "
@@ -611,13 +749,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:117
+#: en/live-boot.7:156
 #, no-wrap
 msgid "B<persistence-path>=I<PATH>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 msgid ""
 "live-boot will look for persistency files in the root directory of a "
 "partition, with this parameter, the path can be configured so that you can "
@@ -625,26 +763,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:119
+#: en/live-boot.7:158
 #, no-wrap
 msgid "B<persistence-read-only>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 msgid ""
 "Filesystem changes are not saved back to persistence media. In particular, "
 "overlays and netboot NFS mounts are mounted read-only."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:121
+#: en/live-boot.7:160
 #, no-wrap
 msgid "B<persistence-storage>=I<TYPE1>,I<TYPE2> ... I<TYPEn>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 msgid ""
 "This option determines which types of persistence storage to consider when "
 "probing for persistence media. If \"filesystem\" is in the list, filesystems "
@@ -654,13 +792,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:123
+#: en/live-boot.7:162
 #, no-wrap
 msgid "B<persistence-label>=I<LABEL>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:125
+#: en/live-boot.7:164
 msgid ""
 "live-boot will use the name \"LABEL\" instead of \"persistence\" when "
 "searching for persistent storage. LABEL can be any valid filename, partition "
@@ -668,20 +806,20 @@ msgid ""
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 msgid ""
 "This option causes live-boot to reboot without attempting to eject the media "
 "and without asking the user to remove the boot media."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:127
+#: en/live-boot.7:166
 #, no-wrap
 msgid "B<showmounts>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 msgid ""
 "This parameter will make live-boot to show on \"/\" the ro filesystems "
 "(mostly compressed) on \"/lib/live\". This is not enabled by default because "
@@ -690,26 +828,26 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:129
+#: en/live-boot.7:168
 #, no-wrap
 msgid "B<silent>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 msgid ""
 "If you boot with the normal quiet parameter, live-boot hides most messages "
 "of its own. When adding silent, it hides all."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:131
+#: en/live-boot.7:170
 #, no-wrap
 msgid "B<todisk>=I<DEVICE>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 msgid ""
 "Adding this parameter, live-boot will try to copy the entire read-only media "
 "to the specified device before mounting the root filesystem. It probably "
@@ -719,13 +857,13 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:133
+#: en/live-boot.7:172
 #, no-wrap
 msgid "B<toram>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:135
+#: en/live-boot.7:174
 msgid ""
 "Adding this parameter, live-boot will try to copy the whole read-only media "
 "to the computer's RAM before mounting the root filesystem. This could need a "
@@ -733,14 +871,14 @@ msgid ""
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:135
+#: en/live-boot.7:174
 #, no-wrap
 msgid "B<union>=overlay|aufs"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:138
+#: en/live-boot.7:177
 msgid ""
 "By default, live-boot uses overlay. With this parameter, you can switch to "
 "aufs."
@@ -748,33 +886,33 @@ msgstr ""
 
 #.  FIXME
 #. type: SH
-#: en/live-boot.7:140
+#: en/live-boot.7:179
 #, no-wrap
 msgid "FILES (old)"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:141
+#: en/live-boot.7:180
 #, no-wrap
 msgid "B</etc/live.conf>"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 msgid ""
 "Some variables can be configured via this config file (inside the live "
 "system)."
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:143
+#: en/live-boot.7:182
 #, no-wrap
 msgid "B<live/filesystem.module>"
 msgstr ""
 
 #.  FIXME
 #. type: Plain text
-#: en/live-boot.7:146
+#: en/live-boot.7:185
 msgid ""
 "This optional file (inside the live media) contains a list of white-space or "
 "carriage-return-separated file names corresponding to disk images in the \"/"
@@ -787,89 +925,89 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:147
+#: en/live-boot.7:186
 #, no-wrap
 msgid "FILES"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:148
+#: en/live-boot.7:187
 #, no-wrap
 msgid "B</etc/live/boot.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:149
+#: en/live-boot.7:188
 #, no-wrap
 msgid "B</etc/live/boot/*>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:150
+#: en/live-boot.7:189
 #, no-wrap
 msgid "B<live/boot.conf>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:151
+#: en/live-boot.7:190
 #, no-wrap
 msgid "B<live/boot/*>"
 msgstr ""
 
 #. type: IP
-#: en/live-boot.7:152
+#: en/live-boot.7:191
 #, no-wrap
 msgid "B<persistence.conf>"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:156
+#: en/live-boot.7:195
 msgid "I<persistence.conf>(5)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -878,13 +1016,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
index 821fca3..5e3167b 100644 (file)
@@ -1,13 +1,13 @@
 # SOME DESCRIPTIVE TITLE
-# Copyright (C) YEAR Free Software Foundation, Inc.
+# Copyright (C) YEAR Live Systems Project
 # This file is distributed under the same license as the live-boot package.
 # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
 #
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: live-boot 5.0~a5-1\n"
-"POT-Creation-Date: 2015-09-22 10:09+0200\n"
+"Project-Id-Version: live-boot 1:20180603\n"
+"POT-Creation-Date: 2019-05-09 14:58+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -53,54 +53,54 @@ msgid "DESCRIPTION"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:28 en/persistence.conf.5:57
+#: en/live-boot.7:61 en/persistence.conf.5:57
 #, no-wrap
 msgid "OPTIONS"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:154 en/persistence.conf.5:190
+#: en/live-boot.7:193 en/persistence.conf.5:190
 #, no-wrap
 msgid "SEE ALSO"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:158 en/persistence.conf.5:194
+#: en/live-boot.7:197 en/persistence.conf.5:194
 msgid "I<live-build>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:160 en/persistence.conf.5:196
+#: en/live-boot.7:199 en/persistence.conf.5:196
 msgid "I<live-config>(7)"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:162 en/persistence.conf.5:198
+#: en/live-boot.7:201 en/persistence.conf.5:198
 msgid "I<live-tools>(7)"
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:163 en/persistence.conf.5:199
+#: en/live-boot.7:202 en/persistence.conf.5:199
 #, no-wrap
 msgid "HOMEPAGE"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:165 en/persistence.conf.5:201
+#: en/live-boot.7:204 en/persistence.conf.5:201
 msgid ""
 "More information about live-boot and the Live Systems project can be found "
-"on the homepage at E<lt>I<http://live-systems.org/>E<gt> and in the manual "
-"at E<lt>I<http://live-systems.org/manual/>E<gt>."
+"on the homepage at E<lt>I<https://wiki.debian.org/DebianLive>E<gt> and in "
+"the manual at E<lt>I<https://live-team.pages.debian.net/live-manual/>E<gt>."
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:166 en/persistence.conf.5:202
+#: en/live-boot.7:205 en/persistence.conf.5:202
 #, no-wrap
 msgid "BUGS"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:168 en/persistence.conf.5:204
+#: en/live-boot.7:207 en/persistence.conf.5:204
 msgid ""
 "Bugs can be reported by submitting a bugreport for the live-boot package in "
 "the Bug Tracking System at E<lt>I<http://bugs.debian.org/>E<gt> or by "
@@ -109,13 +109,13 @@ msgid ""
 msgstr ""
 
 #. type: SH
-#: en/live-boot.7:169 en/persistence.conf.5:205
+#: en/live-boot.7:208 en/persistence.conf.5:205
 #, no-wrap
 msgid "AUTHOR"
 msgstr ""
 
 #. type: Plain text
-#: en/live-boot.7:170 en/persistence.conf.5:206
+#: en/live-boot.7:209 en/persistence.conf.5:206
 msgid ""
 "live-boot was written by Daniel Baumann E<lt>I<mail@daniel-baumann.ch>E<gt>."
 msgstr ""
@@ -473,7 +473,7 @@ msgstr ""
 
 #. type: Plain text
 #: en/persistence.conf.5:170
-msgid "/homea/user2/.ssh (from c)"
+msgid "/home/user2/.ssh (from c)"
 msgstr ""
 
 #. type: Plain text