Reworking manpages for live-helper 2.
This commit is contained in:
parent
caa5ad90b5
commit
79dd982009
56
Makefile
56
Makefile
|
@ -2,7 +2,7 @@
|
|||
|
||||
SHELL := sh -e
|
||||
|
||||
#TRANSLATIONS="de"
|
||||
LANGUAGES = de
|
||||
|
||||
all: test install
|
||||
|
||||
|
@ -10,7 +10,7 @@ test:
|
|||
# Checking for syntax errors
|
||||
for SCRIPT in live-helper.sh cgi/* functions/* examples/*/*.sh helpers/* hooks/*; \
|
||||
do \
|
||||
sh -n $$SCRIPT; \
|
||||
sh -n $${SCRIPT}; \
|
||||
done
|
||||
|
||||
# Checking for bashisms
|
||||
|
@ -38,25 +38,18 @@ install:
|
|||
cp -r COPYING docs/* $(DESTDIR)/usr/share/doc/live-helper
|
||||
|
||||
# Installing manpages
|
||||
for MANPAGE in manpages/*.en.1; \
|
||||
for MANPAGE in manpages/en/*; \
|
||||
do \
|
||||
install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man1/$$(basename $$MANPAGE .en.1).1; \
|
||||
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \
|
||||
install -D -m 0644 $${MANPAGE} $(DESTDIR)/usr/share/man/man$${SECTION}/$$(basename $${MANPAGE} .en.$${SECTION}).$${SECTION}; \
|
||||
done
|
||||
|
||||
for MANPAGE in manpages/*.en.7; \
|
||||
for LANGUAGE in $(LANGUAGES); \
|
||||
do \
|
||||
install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/man7/$$(basename $$MANPAGE .en.7).7; \
|
||||
done
|
||||
|
||||
for TRANSLATIONS in $$TRANSLATIONS; \
|
||||
do \
|
||||
for MANPAGE in manpages/*.$$TRANSLATION.1; \
|
||||
for MANPAGE in manpages/$${LANGUAGE}/*; \
|
||||
do \
|
||||
install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/$$(basename $$MANPAGE .$$TRANSLATION.1).1; \
|
||||
done; \
|
||||
for MANPAGE in manpages/*.$$TRANSLATION.7; \
|
||||
do \
|
||||
install -D -m 0644 $$MANPAGE $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/$$(basename $$MANPAGE .$$TRANSLATION.7).7; \
|
||||
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$3 }')"; \
|
||||
install -D -m 0644 $${MANPAGE} $(DESTDIR)/usr/share/man/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
@ -74,25 +67,18 @@ uninstall:
|
|||
rm -rf $(DESTDIR)/usr/share/doc/live-helper
|
||||
|
||||
# Uninstalling manpages
|
||||
for MANPAGE in manpages/*.en.1; \
|
||||
for MANPAGE in manpages/en/*; \
|
||||
do \
|
||||
rm -f $(DESTDIR)/usr/share/man/man1/$$(basename $$MANPAGE .en.1).1*; \
|
||||
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \
|
||||
rm -f $(DESTDIR)/usr/share/man/man$${SECTION}/$$(basename $${MANPAGE} .en.$${SECTION}).$${SECTION}; \
|
||||
done
|
||||
|
||||
for MANPAGE in manpages/*.en.7; \
|
||||
for LANGUAGE in $(LANGUAGES); \
|
||||
do \
|
||||
rm -f $(DESTDIR)/usr/share/man/man7/$$(basename $$MANPAGE .en.7).7*; \
|
||||
done
|
||||
|
||||
for TRANSLATIONS in $$TRANSLATIONS; \
|
||||
do \
|
||||
for MANPAGE in manpages/*.$$TRANSLATION.1; \
|
||||
for MANPAGE in manpages/$${LANGUAGE}/*; \
|
||||
do \
|
||||
rm -f $(DESTDIR)/usr/share/man/$$TRANSLATION/man1/$$(basename $$MANPAGE .$$TRANSLATION.1).1*; \
|
||||
done; \
|
||||
for MANPAGE in manpages/*.$$TRANSLATION.7; \
|
||||
do \
|
||||
rm -f $(DESTDIR)/usr/share/man/$$TRANSLATION/man7/$$(basename $$MANPAGE .$$TRANSLATION.7).7*; \
|
||||
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$3 }')"; \
|
||||
rm -f $(DESTDIR)/usr/share/man/$${LANGUAGE}/man$${SECTION}/$$(basename $${MANPAGE} .$${LANGUAGE}.$${SECTION}).$${SECTION}; \
|
||||
done; \
|
||||
done
|
||||
|
||||
|
@ -101,13 +87,3 @@ clean:
|
|||
distclean:
|
||||
|
||||
reinstall: uninstall install
|
||||
|
||||
po4a:
|
||||
# Automatic generation of translated manpages
|
||||
if [ $$(which po4a) ]; \
|
||||
then \
|
||||
cd manpages; \
|
||||
po4a po4a/live-helper.cfg; \
|
||||
else \
|
||||
echo "ERROR: skipping po generation - you need to install po4a <http://po4a.alioth.debian.org/>."; \
|
||||
fi
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
# Makefile
|
||||
|
||||
SHELL := sh -e
|
||||
|
||||
LANGUAGES = $(shell cd po && ls)
|
||||
|
||||
all: build
|
||||
|
||||
po4a.cfg:
|
||||
echo "[po4a_langs] $(LANGUAGES)" > po4a.cfg
|
||||
echo "[po4a_paths] pot/\$$master.pot \$$lang:po/\$$lang/\$$master.po" >> po4a.cfg
|
||||
|
||||
for MANPAGE in en/*; \
|
||||
do \
|
||||
SECTION="$$(basename $${MANPAGE} | awk -F. '{ print $$2 }')"; \
|
||||
echo "[type: man] $${MANPAGE} \$$lang:\$$lang/$$(basename $${MANPAGE} .$${SECTION}).\$$lang.$${SECTION}" >> po4a.cfg; \
|
||||
done
|
||||
|
||||
update:
|
||||
./bin/update-version.sh
|
||||
|
||||
build: po4a.cfg
|
||||
@if [ ! -x "$$(which po4a 2>/dev/null)" ]; \
|
||||
then \
|
||||
echo "E: po4a - command not found"; \
|
||||
echo "I: po4a can be optained from http://po4a.alioth.debian.org/"; \
|
||||
echo "I: On Debian systems, po4a can be installed with 'apt-get install po4a'."; \
|
||||
exit 1; \
|
||||
fi
|
||||
|
||||
po4a --keep 0 --package-name live-helper po4a.cfg
|
||||
|
||||
clean:
|
||||
rm -f */*.po~
|
||||
|
||||
distclean: clean
|
||||
rm -f po4a.cfg
|
||||
rm -rf $(LANGUAGES)
|
||||
|
||||
rebuild: distclean update build
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
. ../functions/common.sh
|
||||
|
||||
echo "Updating version headers..."
|
||||
|
||||
for MANPAGE in en/*
|
||||
do
|
||||
SECTION="$(basename ${MANPAGE} | awk -F. '{ print $2 }')"
|
||||
|
||||
sed -i -e "s|^.TH.*$|.TH LIVE\\\-HELPER ${SECTION} $(date +%Y\\\\-%m\\\\-%d) ${CONFIG_VERSION} \"Debian Live Project\"|" ${MANPAGE}
|
||||
done
|
|
@ -0,0 +1,48 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh\fP \- wrapper for live\-helper programs
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh\fP COMMAND [COMMAND_OPTIONS]
|
||||
.PP
|
||||
\fBlh\fP [\fIlive\-helper\ options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the Debian
|
||||
Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh\fP has no specific options but understands all generic live\-helper
|
||||
options. See \fIlive\-helper\fP(7) for a complete list of all generic
|
||||
live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
\fBlh binary\fP calls all necessary live\-helper programs in the correct order
|
||||
to complete the binary stage.
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary\fP has no specific options but understands all generic live\-helper
|
||||
options. See \fIlive\-helper\fP(7) for a complete list of all generic
|
||||
live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_checksums\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_checksums\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_checksums\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_checksums\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_chroot\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_chroot\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_chroot\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_chroot\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_debian\-installer\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_debian\-installer\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_debian\-installer\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_debian\-installer\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_disk\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_disk\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_disk\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_disk\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_encryption\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_encryption\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_encryption\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_encryption\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_grub\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_grub\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_grub\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_grub\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_grub2\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_grub2\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_grub2\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_grub2\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_includes\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_includes\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_includes\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_includes\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_iso\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_iso\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_iso\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_iso\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_linux\-image\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_linux\-image\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_linux\-image\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_linux\-image\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-hooks\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_local\-hooks\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_local\-hooks\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_local\-hooks\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-includes\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_local\-includes\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_local\-includes\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_local\-includes\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-packageslists\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_local\-packageslists\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_local\-packageslists\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_local\-packageslists\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_manifest\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_manifest\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_manifest\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_manifest\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_memtest\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_memtest\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_memtest\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_memtest\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_net\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_net\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_net\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_net\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_rootfs\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_rootfs\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_rootfs\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_rootfs\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_silo\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_silo\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_silo\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_silo\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_syslinux\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_syslinux\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_syslinux\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_syslinux\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_tar\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_tar\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_tar\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_tar\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_usb\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_usb\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_usb\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_usb\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_virtual\-hdd\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_virtual\-hdd\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_virtual\-hdd\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_virtual\-hdd\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_win32\-loader\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_win32\-loader\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_win32\-loader\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_win32\-loader\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_yaboot\fP \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_yaboot\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_yaboot\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh binary_yaboot\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap \fP \- Complete the bootstrap stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh bootstrap\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh bootstrap\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
\fBlh bootstrap\fP calls all necessary live\-helper programs in the correct
|
||||
order to complete the bootstrap stage.
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh bootstrap\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_cache\fP \- Complete the bootstrap stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh bootstrap_cache\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh bootstrap_cache\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh bootstrap_cache\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_cdebootstrap\fP \- Complete the bootstrap stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh bootstrap_cdebootstrap\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh bootstrap_cdebootstrap\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh bootstrap_cdebootstrap\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_copy\fP \- Complete the bootstrap stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh bootstrap_copy\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh bootstrap_copy\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh bootstrap_copy\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh bootstrap_debootstrap\fP \- Complete the bootstrap stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh bootstrap_debootstrap\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh bootstrap_debootstrap\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh bootstrap_debootstrap\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,49 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh build\fP \- Complete the bootstrap, chroot, binary, and source stages
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh build\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh build\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
\fBlh build\fP calls all necessary live\-helper programs in the correct order to
|
||||
complete the bootstrap, chroot, binary, and source stages.
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh build\fP has no specific options but understands all generic live\-helper
|
||||
options. See \fIlive\-helper\fP(7) for a complete list of all generic
|
||||
live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBauto/config\fP 4
|
||||
|
||||
.\" FIXME
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
\fBlh chroot\fP calls all necessary live\-helper programs in the correct order
|
||||
to complete the chroot stage.
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh chroot\fP has no specific options but understands all generic live\-helper
|
||||
options. See \fIlive\-helper\fP(7) for a complete list of all generic
|
||||
live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_apt\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_apt\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_apt\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_apt\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_cache\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_cache\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_cache\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_cache\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_debianchroot\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_debianchroot\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_debianchroot\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_debianchroot\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_devpts\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_devpts\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_devpts\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_devpts\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_dpkg\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_dpkg\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_dpkg\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_dpkg\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hacks\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_hacks\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_hacks\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_hacks\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hooks\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_hooks\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_hooks\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_hooks\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hostname\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_hostname\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_hostname\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_hostname\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_hosts\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_hosts\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_hosts\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_hosts\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_install\-packages\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_install\-packages\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_install\-packages\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_install\-packages\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_interactive\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_interactive\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_interactive\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_interactive\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_linux\-image\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_linux\-image\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_linux\-image\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_linux\-image\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-hooks\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_local\-hooks\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_local\-hooks\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_local\-hooks\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-includes\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_local\-includes\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_local\-includes\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_local\-includes\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-packages\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_local\-packages\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_local\-packages\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_local\-packages\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-packageslists\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_local\-packageslists\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_local\-packageslists\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_local\-packageslists\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-patches\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_local\-patches\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_local\-patches\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_local\-patches\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_local\-preseed\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_local\-preseed\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_local\-preseed\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_local\-preseed\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_localization\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_localization\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_localization\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_localization\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_packages\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_packages\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_packages\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_packages\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_packageslists\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_packageslists\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_packageslists\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_packageslists\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_preseed\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_preseed\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_preseed\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_preseed\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_proc\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_proc\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_proc\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_proc\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_resolv\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_resolv\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_resolv\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_resolv\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_selinuxfs\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_selinuxfs\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_selinuxfs\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_selinuxfs\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sources\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_sources\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_sources\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_sources\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_symlinks\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_symlinks\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_symlinks\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_symlinks\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sysfs\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_sysfs\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_sysfs\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_sysfs\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sysv\-rc\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_sysv\-rc\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_sysv\-rc\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_sysv\-rc\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_sysvinit\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_sysvinit\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_sysvinit\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_sysvinit\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_tasks\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_tasks\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_tasks\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_tasks\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh chroot_upstart\fP \- Complete the chroot stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh chroot_upstart\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh chroot_upstart\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh chroot_upstart\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,73 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh clean\fP \- Clean build directory
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh clean\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh clean\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
.\" FIXME
|
||||
\fBlh clean\fP is responsible for cleaning up after a system is built. It
|
||||
removes the build directories, and removes some other files including stage
|
||||
files, and any detritus left behind by other live\-helper commands.
|
||||
|
||||
.SH OPTIONS
|
||||
In addition to its specific options \fBlh clean\fP understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
.PP
|
||||
.\" FIXME
|
||||
.IP \fB\-\-all\fP 4
|
||||
removes chroot, binary, stage, and source. The cache directory is kept. This
|
||||
is the default operation and will be performed if no argument is given.
|
||||
.IP \fB\-\-cache\fP 4
|
||||
removes the cache directories.
|
||||
.IP \fB\-\-chroot\fP 4
|
||||
unmounts and removes the chroot directory.
|
||||
.IP \fB\-\-binary\fP 4
|
||||
removes all binary related caches, files, directories, and stages files.
|
||||
.IP \fB\-\-purge\fP 4
|
||||
removes everything, including all caches. The config directory is kept.
|
||||
.IP \fB\-\-remove\fP 4
|
||||
removes everything, including package cache but not stage cache. The config
|
||||
directory is kept.
|
||||
.IP \fB\-\-stage\fP 4
|
||||
removes all stage files.
|
||||
.IP \fB\-\-source\fP 4
|
||||
.\" FIXME
|
||||
removes all source related caches, files, directories, and stage files.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBauto/clean\fP 4
|
||||
|
||||
.\" FIXME
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,719 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh config\fP \- Create config directory
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh config\fP [\fIlive\-helper options\fP]
|
||||
.PP
|
||||
.\" FIXME
|
||||
\fBlh config\fP
|
||||
.br
|
||||
\fB [\-\-apt\fP apt|aptitude]
|
||||
.br
|
||||
[\fB\-\-apt\-ftp\-proxy\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-apt\-http\-proxy\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-apt\-pdiffs\fP true|false]
|
||||
.br
|
||||
[\fB\-\-apt\-options\fP \fIOPTION\fP|"\fIOPTIONS\fP"]
|
||||
.br
|
||||
[\fB\-\-aptitude\-options\fP \fIOPTION\fP|"\fIOPTIONS\fP"]
|
||||
.br
|
||||
[\fB\-\-apt\-pipeline\fP \fIDEPTH\fP]
|
||||
.br
|
||||
[\fB\-\-apt\-recommends\fP true|false]
|
||||
.br
|
||||
[\fB\-\-apt\-secure\fP true|false]
|
||||
.br
|
||||
[\-a|\fB\-\-architecture\fP \fIARCHITECTURE\fP]
|
||||
.br
|
||||
[\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd]
|
||||
.br
|
||||
[\fB\-\-binary\-filesystem\fP fat16|fat32|ext2]
|
||||
.br
|
||||
[\fB\-\-binary\-indices\fP true|false|none]
|
||||
.br
|
||||
[\fB\-\-bootappend\-install\fP \fIPARAMETER\fP|\fI"PARAMETERS"\fP]
|
||||
.br
|
||||
[\fB\-\-bootappend\-live\fP \fIPARAMETER\fP|\fI"PARAMETERS"\fP]
|
||||
.br
|
||||
[\fB\-\-bootloader\fP grub|syslinux|yaboot]
|
||||
.br
|
||||
[\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap|copy]
|
||||
.br
|
||||
[\fB\-\-bootstrap\-config\fP \fIFILE\fP]
|
||||
.br
|
||||
[\-f|\fB\-\-bootstrap\-flavour\fP minimal|standard]
|
||||
.br
|
||||
[\fB\-\-bootstrap\-keyring\fP \fIPACKAGE\fP]
|
||||
.br
|
||||
[\fB\-\-cache\fP true|false]
|
||||
.br
|
||||
[\fB\-\-cache\-indices\fP true|false]
|
||||
.br
|
||||
[\fB\-\-cache\-packages\fP true|false]
|
||||
.br
|
||||
[\fB\-\-cache\-stages\fP \fISTAGE\fP|\fI"STAGES"\fP]
|
||||
.br
|
||||
[\fB\-\-checksums\fP md5|sha1|sha256|none]
|
||||
.br
|
||||
[\fB\-\-chroot\-build\fP true|false]
|
||||
.br
|
||||
[\fB\-\-chroot\-filesystem\fP ext2|ext3|squashfs|plain|jffs2]
|
||||
.br
|
||||
[\fB\-\-clean]\fP
|
||||
.br
|
||||
\fB [\-c|\-\-conffile\fP \fIFILE\fP]
|
||||
.br
|
||||
[\fB\-\-debconf\-frontend\fP dialog|editor|noninteractive|readline]
|
||||
.br
|
||||
[\fB\-\-debconf\-nowarnings\fP true|false]
|
||||
.br
|
||||
[\fB\-\-debconf\-priority\fP low|medium|high|critical]
|
||||
.br
|
||||
[\fB\-\-debian\-installer\fP true|cdrom|netinst|netboot|businesscard|live|false]
|
||||
.br
|
||||
[\fB\-\-debian\-installer\-distribution\fP daily|\fICODENAME\fP]
|
||||
.br
|
||||
[\fB\-\-debian\-installer\-preseedfile\fP \fIFILE\fP|\fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-debian\-installer\-gui\fP true|false]
|
||||
.br
|
||||
[\-d|\fB\-\-distribution\fP \fICODENAME\fP]
|
||||
.br
|
||||
[\-\-\fBdump\fP]
|
||||
.br
|
||||
[\-e|\fB\-\-encryption\fP false|aes128|aes192|aes256]
|
||||
.br
|
||||
[\fB\-\-fdisk\fP fdisk|fdisk.dist]
|
||||
.br
|
||||
[\fB\-\-grub\-splash\fP \fIFILE\fP]
|
||||
.br
|
||||
[\fB\-\-gzip\-options\fP \fIOPTION\fP|"\fIOPTIONS\fP"]
|
||||
.br
|
||||
[\fB\-\-hooks\fP \fIFILE\fP]
|
||||
.br
|
||||
[\fB\-\-hostname\fP \fINAME\fP]
|
||||
.br
|
||||
[\fB\-\-ignore\-system\-defaults\fP]
|
||||
.br
|
||||
[\fB\-\-includes\fP \fIPATH\fP]
|
||||
.br
|
||||
[\fB\-\-initramfs\fP auto|live\-initramfs|casper]
|
||||
.br
|
||||
[\fB\-\-interactive\fP shell]
|
||||
.br
|
||||
[\fB\-\-iso\-application\fP \fINAME\fP]
|
||||
.br
|
||||
[\fB\-\-iso\-preparer\fP \fINAME\fP]
|
||||
.br
|
||||
[\fB\-\-iso\-publisher\fP \fINAME\fP]
|
||||
.br
|
||||
[\fB\-\-iso\-volume\fP \fINAME\fP]
|
||||
.br
|
||||
[\fB\-\-jffs2\-eraseblock\fP \fISIZE\fP]
|
||||
.br
|
||||
[\fB\-\-keyring\-packages\fP \fIPACKAGE|"PACKAGES"\fP]
|
||||
.br
|
||||
[\-l|\fB\-\-language\fP \fILANGUAGE\fP]
|
||||
.br
|
||||
[\-k|\fB\-\-linux\-flavours\fP \fIFLAVOUR\fP|\fI"FLAVOURS"\fP]
|
||||
.br
|
||||
[\fB\-\-linux\-packages\fP \fI"PACKAGES"\fP]
|
||||
.br
|
||||
[\fB\-\-losetup\fP losetup|losetup.orig]
|
||||
.br
|
||||
[\fB\-\-memtest\fP memtest86+|memtest86|none]
|
||||
.br
|
||||
[\-m|\fB\-\-mirror\-bootstrap\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-mirror\-binary\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-mirror\-binary\-security\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-mirror\-chroot\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-mirror\-chroot\-security\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-mirror\-debian\-installer\fP \fIURL\fP]
|
||||
.br
|
||||
[\fB\-\-mode\fP debian|emdebian|ubuntu]
|
||||
.br
|
||||
[\fB\-\-net\-root\-filesystem\fP nfs|cfs]
|
||||
.br
|
||||
[\fB\-\-net\-root\-mountoptions\fP \fIOPTIONS\fP]
|
||||
.br
|
||||
[\fB\-\-net\-root\-path\fP \fIPATH\fP]
|
||||
.br
|
||||
[\fB\-\-net\-root\-server\fP \fIIP\fP|\fIHOSTNAME\fP]
|
||||
.br
|
||||
[\fB\-\-net\-cow\-filesystem\fP nfs|cfs]
|
||||
.br
|
||||
[\fB\-\-net\-cow\-mountoptions\fP \fIOPTIONS\fP]
|
||||
.br
|
||||
[\fB\-\-net\-cow\-path\fP \fIPATH\fP]
|
||||
.br
|
||||
[\fB\-\-net\-cow\-server\fP \fIIP\fP|\fIHOSTNAME\fP]
|
||||
.br
|
||||
[\fB\-\-net\-tarball\fP bzip2|gzip|tar|none]
|
||||
.br
|
||||
[\-p|\fB\-\-packages\-lists\fP \fILIST\fP|\fI"LISTS"\fP]
|
||||
.br
|
||||
[\fB\-\-packages\fP \fIPACKAGE\fP|\fI"PACKAGES"\fP]
|
||||
.br
|
||||
[\fB\-r, \-\-repositories \fP\fIREPOSITORY\fP|\fI"REPOSITORIES"\fP]
|
||||
.br
|
||||
[\fB\-\-root\-command\fP sudo]
|
||||
.br
|
||||
[\fB\-\-use\-fakeroot\fP true|false]
|
||||
.br
|
||||
[\fB\-\-archive\-areas\fP \fIARCHIVE_AREA\fP|\fI"ARCHIVE_AREAS"\fP]
|
||||
.br
|
||||
[\fB\-\-security\fP true|false]
|
||||
.br
|
||||
[\fB\-\-source\fP true|false]
|
||||
.br
|
||||
[\-s|\fB\-\-source\-images\fP iso|net|tar|usb\-hdd]
|
||||
.br
|
||||
[\fB\-\-symlinks\fP true|false]
|
||||
.br
|
||||
[\fB\-\-syslinux\-splash\fP \fIFILE\fP]
|
||||
.br
|
||||
[\fB\-\-syslinux\-timeout\fP \fISECONDS\fP]
|
||||
.br
|
||||
[\fB\-\-syslinux\-menu\fP true|false]
|
||||
.br
|
||||
[\fB\-\-sysvinit\fP true|false]
|
||||
.br
|
||||
[\fB\-\-tasksel\fP aptitude|tasksel]
|
||||
.br
|
||||
[\fB\-\-tasks\fP \fITASK\fP|"\fITASKS\fP"]
|
||||
.br
|
||||
[\fB\-\-templates\fP \fIPATH\fP]
|
||||
.br
|
||||
[\fB\-\-virtual\-root\-filesystem\fP ext3]
|
||||
.br
|
||||
[\fB\-\-virtual\-root\-size \fP\fIMB\fP]
|
||||
.br
|
||||
[\fB\-\-exposed\-root\fP true|false]
|
||||
.br
|
||||
[\fB\-\-username\fP \fINAME\fP]
|
||||
.br
|
||||
.\" FIXME
|
||||
[\fB\-\-win32\-loader true|false]\fP
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh config\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
\fBlh config\fP populates the configuration directory for live\-helper. By
|
||||
default, this directory is named 'config' and is created in the current
|
||||
directory where \fBlh config\fP was executed.
|
||||
.PP
|
||||
.\" FIXME
|
||||
Note: Currently \fBlh config\fP tries to be smart and sets defaults for some
|
||||
options depending on the setting of other options (e.g. which linux packages
|
||||
to be used depending on if a lenny system gets build or not). This means
|
||||
that when generating a new configuration, you should call \fBlh config\fP only
|
||||
once with all options specified. Calling it several times with only a subset
|
||||
of the options each can result in non working configurations. This is also
|
||||
caused by the fact that \fBlh config\fP called with one option only changes
|
||||
that option, and leaves everything else as is unless its not
|
||||
defined. However, \fBlh config\fP does warn about know impossible or likely
|
||||
impossible combinations that would lead to non working live systems. If
|
||||
unsure, remove config/{binary,bootstrap,chroot,common,source} and call \fBlh
|
||||
config\fP again.
|
||||
|
||||
.SH OPTIONS
|
||||
In addition to its specific options \fBlh config\fP understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
.PP
|
||||
.\" FIXME
|
||||
.IP "\fB\-\-apt\fP apt|aptitude" 4
|
||||
defines if apt\-get or aptitude is used to install packages when building the
|
||||
image. When building etch images, this defaults to aptitude. Every other
|
||||
distribution defaults to apt.
|
||||
.IP "\fB\-\-apt\-ftp\-proxy\fP \fIURL\fP" 4
|
||||
sets the ftp proxy to be used by apt. By default, this is empty but if the
|
||||
host has the environment variable ftp_proxy set, apt\-ftp\-proxy gets
|
||||
automatically set to the value of ftp_proxy.
|
||||
.IP "\fB\-\-apt\-http\-proxy\fP \fIURL\fP" 4
|
||||
sets the http proxy to be used by apt. By default, this is empty but if the
|
||||
host has the environment variable http_proxy set, apt\-http\-proxy gets
|
||||
automatically set to the value of http_proxy.
|
||||
.IP "\fB\-\-apt\-pdiffs\fP true|false" 4
|
||||
defines whetever apt should use incremental package indices feature or
|
||||
not. This is true by default.
|
||||
.IP "\fB\-\-apt\-options\fP \fIOPTION\fP|\(dq\fIOPTIONS\fP\(dq" 4
|
||||
defines the default options that will be appended to every apt call that is
|
||||
made inside chroot during the building of the image. By default, this is set
|
||||
to \-\-yes to allow non\-interactive installation of packages.
|
||||
.IP "\fB\-\-aptitude\-options\fP \fIOPTION\fP|\(dq\fIOPTIONS\fP\(dq" 4
|
||||
defines the default options that will be appended to every aptitude call
|
||||
that is made inside chroot during building of the image. By default, this is
|
||||
set to \-\-assume\-yes to allow non\-interactive installation of packages.
|
||||
.IP "\fB\-\-apt\-pipeline\fP \fIDEPTH\fP" 4
|
||||
sets the depth of the apt/aptitude pipeline. In cases where the remote
|
||||
server is not RFC conforming or buggy (such as Squid 2.0.2) this option can
|
||||
be a value from 0 to 5 indicating how many outstanding requests APT should
|
||||
send. A value of zero MUST be specified if the remote host does not properly
|
||||
linger on TCP connections \- otherwise data corruption will occur. Hosts
|
||||
which require this are in violation of RFC 2068. By default, live\-helper
|
||||
does not set this option.
|
||||
.IP "\fB\-\-apt\-recommends\fP true|false" 4
|
||||
defines if apt should install recommended packages automatically. By
|
||||
default, this is true except in emdebian mode.
|
||||
.IP "\fB\-\-apt\-secure\fP true|false" 4
|
||||
defines if apt should check repository signatures. This is true by default.
|
||||
.IP "\-a|\fB\-\-architecture\fP \fIARCHITECTURE\fP" 4
|
||||
defines the architecture of the to be build image. By default, this is set
|
||||
to the host architecture. Note that you cannot crossbuild for another
|
||||
architecture if your host system is not able to execute binaries for the
|
||||
target architecture natively. For example, building amd64 images on i386 and
|
||||
vice versa is possile if you have a 64bit capable i386 processor and the
|
||||
right kernel. But building powerpc images on an i386 system is not possible.
|
||||
.IP "\-b|\fB\-\-binary\-images\fP iso|iso\-hybrid|net|tar|usb\-hdd" 4
|
||||
defines the image type to build. By default this is set to iso to build
|
||||
CD/DVD images, for squeeze and newer it defaults to iso\-hybrid.
|
||||
.IP "\fB\-\-binary\-filesystem\fP fat16|fat32|ext2" 4
|
||||
defines the filesystem to be used in the image type. This only has an effect
|
||||
if the selected binary image type does allow to choose a filesystem. For
|
||||
example, when selection iso the resulting CD/DVD has always the filesystem
|
||||
ISO9660. When building usb\-hdd images for usb sticks, this is active. Note
|
||||
that it defaults to fat16 on all architectures except sparc where it
|
||||
defaults to ext2. Also note that if you choose fat16 and your resulting
|
||||
binary image gets bigger than 2GB, the binary filesystem automatically gets
|
||||
switched to fat32.
|
||||
.IP "\fB\-\-binary\-indices\fP true|false|none" 4
|
||||
defines if the resulting images should have binary indices or not and
|
||||
defaults to true. If set to none, no indices are included at all.
|
||||
.IP "\fB\-\-bootappend\-install\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4
|
||||
sets boot parameters specific to debian\-installer, if included.
|
||||
.IP "\fB\-\-bootappend\-live\fP \fIPARAMETER\fP|\(dq\fIPARAMETERS\fP\(dq" 4
|
||||
sets boot parameters specific to debian\-live. A complete list of boot
|
||||
parameters can be found, for etch, in the manpage of casper, for all other
|
||||
distributions in the manpage of live\-initramfs. On the images, a list of all
|
||||
parameters (without comments) is included in the /parameters.txt.
|
||||
.IP "\fB\-\-bootloader\fP grub|syslinux|yaboot" 4
|
||||
defines which bootloader is beeing used in the generated image. This has
|
||||
only an effect if the selected binary image type does allow to choose the
|
||||
bootloader. For example, if you build a iso, always syslinux (or more
|
||||
precise, isolinux) is being used. Also note that some combinations of binary
|
||||
images types and bootloaders may be possible but live\-helper does not
|
||||
support them yet. \fBlh config\fP will fail to create such a not yet supported
|
||||
configuration and give a explanation about it. For usb\-hdd images on amd64
|
||||
and i386, the default is syslinux. yaboot is only used on powerpc.
|
||||
.IP "\fB\-\-bootstrap\fP cdebootstrap|cdebootstrap\-static|debootstrap|copy" 4
|
||||
defines which program is used to bootstrap the debian chroot, default is
|
||||
debootstrap. Note that if you set the bootstrap program to copy, then your
|
||||
host system is copied. This can be useful if you want to convert/clone your
|
||||
existing host system into a live system, however, make sure you do have
|
||||
enough free space as this can, depending on your host system, get quite big.
|
||||
.IP "\fB\-\-bootstrap\-config\fP \fIFILE\fP" 4
|
||||
sets a custom configuration file for the boostrap programm of choice and is
|
||||
empty by default. Refere to the documentation of debootstrap or cdebootstrap
|
||||
for more information about that. When the bootstrap program is set to copy,
|
||||
this has no effect.
|
||||
.IP "\-f|\fB\-\-bootstrap\-flavour\fP minimal|standard" 4
|
||||
defines if the bootstrap program should bootstrap the standard system (all
|
||||
packages of priority required and important, which is the default) or a
|
||||
minimal system (only packages of priority required, plus apt).
|
||||
.IP "\fB\-\-bootstrap\-keyring\fP \fIPACKAGE\fP" 4
|
||||
sets the archive keyring package to be used. Default is
|
||||
debian\-archive\-keyring.
|
||||
.IP "\fB\-\-cache\fP true|false" 4
|
||||
defines globally if any cache should be used at all. Different caches can be
|
||||
controled through the their own options.
|
||||
.IP "\fB\-\-cache\-indices\fP true|false" 4
|
||||
defines if downloaded package indices and lists should be cached which is
|
||||
false by default. Enabling it would allow to rebuild an image completely
|
||||
offline, however, you would not get updates anymore then.
|
||||
.IP "\fB\-\-cache\-packages\fP true|false" 4
|
||||
defines if downloaded packages files should be cached which is true by
|
||||
default. Disabling it does save space consumtion in your build directory,
|
||||
but remember that you will cause much unnecessary traffic if you do a couple
|
||||
of rebuilds. In general you should always leave it true, however, in some
|
||||
particular rare build setups, it can be faster to refetch packages from the
|
||||
local network mirror rather than to utilize the local disk.
|
||||
.IP "\fB\-\-cache\-stages\fP true|false|\fISTAGE\fP|\(dq\fISTAGES\fP\(dq" 4
|
||||
sets which stages should be cached. By default set to bootstrap. As an
|
||||
exception to the normal stage names, also rootfs can be used here which does
|
||||
only cache the generated root filesystem in
|
||||
filesystem.{dir,ext*,squashfs}. This is useful during development if you
|
||||
want to rebuild the binary stage but not regenerate the root filesystem all
|
||||
the time.
|
||||
.IP "\fB\-\-checksums\fP md5|sha1|sha256|none" 4
|
||||
defines if the binary image should contain a file called md5sums.txt,
|
||||
sha1sums.txt and/or sha256sums.txt. These lists all files on the image
|
||||
together with their checksums. This in turn can be used by live\-initramfs'
|
||||
built\-in integrity\-check to verify the medium if specified at boot
|
||||
prompt. In general, this should not be false and is an important feature of
|
||||
live system released to the public. However, during development of very big
|
||||
images it can save some time by not calculating the checksums.
|
||||
.IP "\fB\-\-chroot\-build\fP true|false" 4
|
||||
defines whetever live\-helper should use the tools from within the chroot to
|
||||
build the binary image or not by using and including the host systems
|
||||
tools. This is a very dangerous option, using the tools of the host system
|
||||
can lead to tainted and even non\-bootable images if the host systems version
|
||||
of the required tools (mainly these are the bootloaders such as syslinux,
|
||||
grub and yaboot, and the auxilliary tools such as dosfstools, genisoimage,
|
||||
squashfs\-tools and others) do not \fBexactely\fP match what is present at
|
||||
build\-time in the target distribution. Never do disable this option unless
|
||||
you are \fBexactely\fP sure what you are doing and have \fBcompletely\fP\fI
|
||||
understood its consequences.\fP
|
||||
.IP "\fB\-\-chroot\-filesystem\fP ext2|ext3|squashfs|plain|jffs2" 4
|
||||
defines which filesystem type should be used for the root filesystem
|
||||
image. If you use plain, then no filesystem image is created and the root
|
||||
filesystem content is copied on the binary image filesystem as flat
|
||||
files. Depending on what binary filesystem you have choosen, it may not be
|
||||
possible to build with a plain root filesystem, e.g. fat16/fat32 and plain
|
||||
don't work as linux does not support to run on them.
|
||||
.IP \fB\-\-clean\fP 4
|
||||
minimizes config directory by automatically removing unused and thus empty
|
||||
subdirectories.
|
||||
.IP "\-c|\fB\-\-conffile\fP \fIFILE\fP" 4
|
||||
using a user specified alternative configuration file in addition to the
|
||||
normally used one in the config directory.
|
||||
.IP "\fB\-\-debconf\-frontend\fP dialog|editor|noninteractive|readline" 4
|
||||
defines what value the debconf frontend should be set to inside the
|
||||
chroot. Note that setting it to anything by noninteractive, which is the
|
||||
default, makes your build asking questions during the build.
|
||||
.IP "\fB\-\-debconf\-nowarnings\fP true|false" 4
|
||||
defines if warnings of debconf should be displayed or not. Warnings from
|
||||
debconf are generally very rare and by default, we skipp them, if any, in
|
||||
order to keep the build process entirely non interactive.
|
||||
.IP "\fB\-\-debconf\-priority\fP low|medium|high|critical" 4
|
||||
defines what value the debconf priority shoul dbe set to inside the
|
||||
chroot. By default, it is set to critical, which means that almost no
|
||||
questions are displayed. Note that this only has an effect if you use any
|
||||
debconf frontend different from noninteractive.
|
||||
.IP "\fB\-\-debian\-installer\fP true|cdrom|netinst|netboot|businesscard|live|false" 4
|
||||
defines which type, if any, of the debian\-installer should be included in
|
||||
the resulting binary image. By default, no installer is included. All
|
||||
available flavours except live are the identical configurations used on the
|
||||
installer media produced by regular debian\-cd. When live is choosen, the
|
||||
live\-installer udeb is included so that debian\-installer will behave
|
||||
different than usual \- instead of installing the debian system from packages
|
||||
from the medium or the network, it installs the live system to the disk.
|
||||
.IP "\fB\-\-debian\-installer\-distribution\fP daily|\fICODENAME\fP" 4
|
||||
defines the distribution where the debian\-installer files should be taken
|
||||
out from. Normally, this should be set to the same distribution as the live
|
||||
system. However, some times, one wants to use a newer or even daily built
|
||||
installer.
|
||||
.IP "\fB\-\-debian\-installer\-preseedfile\fP \fIFILE\fP|\fIURL\fP" 4
|
||||
sets the filename or URL for an optionally used and included preseeding file
|
||||
for debian\-installer.
|
||||
.IP "\fB\-\-debian\-installer\-gui\fP true|false" 4
|
||||
defines if the debian\-installer graphical GTK interface should be true or
|
||||
not. In Debian mode and for most versions of Ubuntu, this option is true,
|
||||
whereas otherwise false, by default.
|
||||
.IP "\-d|\fB\-\-distribution\fP \fICODENAME\fP" 4
|
||||
defines the distribution of the resulting live system.
|
||||
.IP \-\-\fBdump\fP 4
|
||||
prepares a report of the currently present live system configuration and the
|
||||
version of live\-helper used. This is useful to provide if you submit bug
|
||||
reports, we do get all informations required for us to locate and replicate
|
||||
an error.
|
||||
.IP "\-e|\fB\-\-encryption\fP false|aes128|aes192|aes256" 4
|
||||
defines if the root filesystem should be encrypted or not. By default, this
|
||||
is false.
|
||||
.IP "\fB\-\-fdisk\fP fdisk|fdisk.dist" 4
|
||||
sets the filename of the fdisk binary from the host system that should be
|
||||
used. This is autodetected and does generally not need any customization.
|
||||
.IP "\fB\-\-grub\-splash\fP \fIFILE\fP" 4
|
||||
defines the name of an optional to be included splash screen graphic for the
|
||||
grub bootloader.
|
||||
.IP "\fB\-\-gzip\-options\fP \fIOPTION\fP|\(dq\fIOPTIONS\fP\(dq" 4
|
||||
defines the default options that will be appended to (almost) every gzip
|
||||
call during the building of the image. By default, this is set to \-\-best to
|
||||
use highest (but slowest) compression. Dynamically, if the host system
|
||||
supports it, also \-\-rsyncable is added.
|
||||
.IP "\fB\-\-hooks\fP \fIFILE\fP" 4
|
||||
defines which hooks available in /usr/share/live\-helper/examples/hooks
|
||||
should be activated. Normally, there are no hooks executed. Make sure you
|
||||
know and understood the hook before you enable it.
|
||||
.IP "\fB\-\-hostname\fP \fINAME\fP" 4
|
||||
sets the hostname of the live system.
|
||||
.IP \fB\-\-ignore\-system\-defaults\fP 4
|
||||
\fBlh config\fP by default reads system defaults from /etc/default/live\-helper
|
||||
when generating a new live system config directory. This is useful if you
|
||||
want to set global settings, such as mirror locations, and don't want to
|
||||
specify them all of the time.
|
||||
.IP "\fB\-\-includes\fP \fIPATH\fP" 4
|
||||
sets the path to the includes that live\-helper is going to use,
|
||||
e.g. additional minimal documentation that you want to have on all live
|
||||
systems. By default, this is set to /usr/share/live\-helper/includes/.
|
||||
.IP "\fB\-\-initramfs\fP auto|live\-initramfs|casper" 4
|
||||
sets the name of package that contains the live system specific initramfs
|
||||
modification. By default, auto is used, which means that at build time of
|
||||
the image rather than on configuration time, the value will be expanded to
|
||||
casper when building etch systems and to live\-initramfs for all other
|
||||
systems.
|
||||
.IP "\fB\-\-interactive\fP shell" 4
|
||||
defines if after the chroot stage and before the beginning of the binary
|
||||
stage, a interactive shell login should be spawned in the chroot in order to
|
||||
allow you to do manual customizations. Once you close the shell with logout
|
||||
or exit, the build will continue as usual. Note that it's strongly
|
||||
discouraged to use this for anything else than testing. Modifications that
|
||||
should be present in all builds of a live system should be properly made
|
||||
through hooks. Everything else destroys the beauty of being able to
|
||||
completely automatise the build process and making it non interactive. By
|
||||
default, this is of course false.
|
||||
.IP "\fB\-\-iso\-application\fP \fINAME\fP" 4
|
||||
sets the APPLICATION field in the header of a resulting CD/DVD image and
|
||||
defaults to "Debian Live" in debian mode, and to "Emdebian Live" in emdebian
|
||||
mode, and "Ubuntu Live" in ubuntu mode.
|
||||
.IP "\fB\-\-iso\-preparer\fP \fINAME\fP" 4
|
||||
sets the PREPARER field in the header of a resulting CD/DVD image. By
|
||||
default this is set to "live\-helper \fIVERSION\fP;
|
||||
http://packages.qa.debian.org/live\-helper", whereas VERSION is expanded to
|
||||
the version of live\-helper that was used to build the image.
|
||||
.IP "\fB\-\-iso\-publisher\fP \fINAME\fP" 4
|
||||
sets the PUBLISHED field in the header of a resulting CD/DVD image. By
|
||||
default, this is set to 'Debian Live project; http:/live.debian.net/;
|
||||
debian\-live@lists.debian.org'. Remember to change this to the appropriate
|
||||
values at latest when you distributing custom and unofficial images.
|
||||
.IP "\fB\-\-iso\-volume\fP \fINAME\fP" 4
|
||||
sets the VOLUME field in the header of a resulting CD/DVD and defaults to
|
||||
\&'(\fIMODE\fP) (\fIDISTRIBUTION\fP) (\fIDATE\fP)' whereas MODE is expanded to the name
|
||||
of the mode in use, DISTRIBUTION the distribution name, and DATE with the
|
||||
current date and time of the generation. When running in debian\-release mode
|
||||
however, it will instead default to 'Debian (\fIVERSION\fP) (\fIARCHITECTURE\fP)
|
||||
live' where VERSION becomes the numerical version of the release being built
|
||||
and ARCHITECTURE becomes the name of the architecture.
|
||||
.IP "\fB\-\-jffs2\-eraseblock\fP \fISIZE\fP" 4
|
||||
sets the eraseblock size for a JFFS2 (Second Journalling Flash File System)
|
||||
filesystem. The default is 64 KiB. If you use an erase block size different
|
||||
than the erase block size of the target MTD device, JFFS2 may not perform
|
||||
optimally. If the SIZE specified is below 4096, the units are assumed to be
|
||||
KiB.
|
||||
.IP "\fB\-\-keyring\-packages\fP \fIPACKAGE|\(dqPACKAGES\fP\(dq" 4
|
||||
sets the keyring package or additional keyring packages. By default this is
|
||||
set to debian\-archive\-keyring.
|
||||
.IP "\-l|\fB\-\-language\fP \fILANGUAGE\fP" 4
|
||||
sets the language of a live system by installing l10n related packages and
|
||||
enables generation of the correct locales through automatically setting the
|
||||
right boot parameters.
|
||||
.IP "\-k|\fB\-\-linux\-flavours\fP \fIFLAVOUR\fP|\(dq\fIFLAVOURS\fP\(dq" 4
|
||||
sets the kernel flavours to be installed. Note that in case you specify more
|
||||
than that the first will be configured the default kernel that gets booted.
|
||||
.IP "\fB\-\-linux\-packages\fP \(dq\fIPACKAGES\fP\(dq" 4
|
||||
sets the internal name of the kernel packages naming scheme. If you use
|
||||
debian kernel packages, you will not have to adjust it. If you decide to use
|
||||
custom kernel packages that do not follow the debian naming scheme, remember
|
||||
to set this option to the stub of the packages only (for debian this is
|
||||
linux\-image\-2.6), so that \fISTUB\fP\-\fIFLAVOUR\fP results in a valid package name
|
||||
(for debian e.g. linux\-image\-2.6\-486). Preferably you use the meta package
|
||||
name, if any, for the stub, so that your configuration is ABI
|
||||
independent. Also don't forget that you have to include stubs of the binary
|
||||
modules packages for unionfs or aufs, and squashfs if you built them
|
||||
out\-of\-tree.
|
||||
.IP "\fB\-\-losetup\fP losetup|losetup.orig" 4
|
||||
sets the filename of the losetup binary from the host system that should be
|
||||
used. This is autodetected and does generally not need any customization.
|
||||
.IP "\fB\-\-memtest\fP memtest86+|memtest86|none" 4
|
||||
defines if memtest, memtest86+ or no memory tester at all should be included
|
||||
as secondary bootloader configuration. This is only available on amd64 and
|
||||
i386 and defaults to memtest86+.
|
||||
.IP "\-m|\fB\-\-mirror\-bootstrap\fP \fIURL\fP" 4
|
||||
sets the location of the debian package mirror that should be used to
|
||||
bootstrap from.
|
||||
.IP "\fB\-\-mirror\-binary\fP \fIURL\fP" 4
|
||||
sets the location of the debian package mirror that should end up configured
|
||||
in the final image and which is the one a user would see and use. This has
|
||||
not necessarily to be the same that is used to build the image, e.g. if you
|
||||
use a local mirror but want to have an official mirror in the image. By
|
||||
default, the same value that is used for \-\-mirror\-chroot is used here unless
|
||||
specified different.
|
||||
.IP "\fB\-\-mirror\-binary\-security\fP \fIURL\fP" 4
|
||||
sets the location of the debian security package mirror that should end up
|
||||
configuered in the final image. By default, the same value that is used for
|
||||
\-\-mirror\-chroot\-security is used here unless specified different.
|
||||
.IP "\fB\-\-mirror\-chroot\fP \fIURL\fP" 4
|
||||
sets the location of the debian package mirror that will be used to fetch
|
||||
the packages in order to build the live system. By default, this points to
|
||||
http://ftp.us.debian.org/debian/ which may not be a good default if you live
|
||||
outside the U.S.
|
||||
.IP "\fB\-\-mirror\-chroot\-security\fP \fIURL\fP" 4
|
||||
sets the location of the debian security package mirror that will be used to
|
||||
fetch the packages in order to build the live system. By default, this
|
||||
points to http://security.debian.org/debian/.
|
||||
.IP "\fB\-\-mirror\-debian\-installer\fP \fIURL\fP" 4
|
||||
sets the location of the mirror that will be used to fetch the debian
|
||||
installer images. By default, this points to the same mirror used to build
|
||||
the live system.
|
||||
.IP "\fB\-\-mode\fP debian|emdebian|ubuntu" 4
|
||||
defines a global mode to load project specific defaults. By default this is
|
||||
set to debian.
|
||||
.IP "\fB\-\-net\-root\-filesystem\fP nfs|cfs" 4
|
||||
defines the filesystem that will be configured in the bootloader
|
||||
configuration for your netboot image. This defaults to nfs.
|
||||
.IP "\fB\-\-net\-root\-mountoptions\fP \fIOPTIONS\fP" 4
|
||||
sets additional options for mounting the root filesystem in netboot images
|
||||
and is by default empty.
|
||||
.IP "\fB\-\-net\-root\-path\fP \fIPATH\fP" 4
|
||||
sets the file path that will be configured in the bootloader configuration
|
||||
for your netboot image. This defaults to /srv/debian\-live in debian mode and
|
||||
to /srv/emebian\-live when being in emdebian mode, and /srv/ubuntu\-live when
|
||||
in ubuntu mode.
|
||||
.IP "\fB\-\-net\-root\-server\fP \fIIP\fP|\fIHOSTNAME\fP" 4
|
||||
sets the IP or hostname that will be configured in the bootloader
|
||||
configuration for the root filesystem of your netboot image. This defaults
|
||||
to 192.168.1.1.
|
||||
.IP "\fB\-\-net\-cow\-filesystem\fP nfs|cfs" 4
|
||||
defines the filesystem type for the copy\-on\-write layer and defaults to nfs.
|
||||
.IP "\fB\-\-net\-cow\-mountoptions\fP \fIOPTIONS\fP" 4
|
||||
sets additional options for mounting the copy\-on\-write layer in netboot
|
||||
images and is by default empty.
|
||||
.IP "\fB\-\-net\-cow\-path\fP \fIPATH\fP" 4
|
||||
defines the path to client writable filesystem. Anywhere that
|
||||
\fIclient_mac_address\fP is specified in the path live\-initramfs will
|
||||
substitute the MAC address of the client delimited with hyphens.
|
||||
.PP
|
||||
.IP "" 4
|
||||
Example:
|
||||
.br
|
||||
/export/hosts/client_mac_address
|
||||
.br
|
||||
/export/hosts/00\-16\-D3\-33\-92\-E8
|
||||
.IP "\fB\-\-net\-cow\-server\fP \fIIP\fP|\fIHOSTNAME\fP" 4
|
||||
sets the IP or hostname that will be configured in the bootloader
|
||||
configuration for the copy\-on\-write filesystem of your netboot image and is
|
||||
by default empty.
|
||||
.IP "\fB\-\-net\-tarball\fP bzip2|gzip|tar|none" 4
|
||||
defines the format of the netboot image. Choosing tar results in a not
|
||||
compressed tarball, bzip2 and gzip in a bzip2 resp. gzip compressed
|
||||
tarball. Choosing none leads to no tarball at all, the plain binary
|
||||
directory is considered the output in this case. Default is gzip.
|
||||
.IP "\-p|\fB\-\-packages\-lists\fP \fILIST\fP|\(dq\fILISTS\fP\(dq" 4
|
||||
defines which lists available in /usr/share/live\-helper/lists should be
|
||||
used. By default, this is set to standard. Note that in case you have local
|
||||
packages lists, you don't need to list them here. Putting them into
|
||||
config/chroot_local\-packageslists is enough (the filename needs to have the
|
||||
\&.list suffix though).
|
||||
.IP "\fB\-\-packages\fP \fIPACKAGE\fP|\(dq\fIPACKAGES\fP\(dq" 4
|
||||
defines one or more packages to be installed in the live system. This is a
|
||||
quick and convenient place to add a few packages when building an image
|
||||
(limited by the max length of shell). Packages that should be permanently
|
||||
installed should be put into a local packages list.
|
||||
.IP "\fB\-r, \-\-repositories\fP \fIREPOSITORY\fP|\(dq\fIREPOSITORIES\fP\(dq" 4
|
||||
enables one of available third\-party repository configurations in
|
||||
/usr/share/live\-helper/repositories.
|
||||
.IP "\fB\-\-root\-command\fP sudo" 4
|
||||
controls if live\-helper should use sudo internally to build the live
|
||||
image. Note that this is not well tested and that you should, when relying
|
||||
on sudo, call the individual live\-helper command with sudo itself.
|
||||
.IP "\fB\-\-use\-fakeroot\fP true|false" 4
|
||||
controls if live\-helper should utilize fakeroot and fakechroot to try and
|
||||
avoid requiring root privillages where possible. By default, this option is
|
||||
false.
|
||||
.IP "\fB\-\-archive\-areas\fP \fIARCHIVE_AREA\fP|\(dq\fIARCHIVE_AREAS\fP\(dq" 4
|
||||
defines which package archive areas of a debian packages archive should be
|
||||
used for configured debian package mirrors. By default, this is set to
|
||||
main. Remember to check the licenses of each packages with respect to their
|
||||
redistributability in your juristiction when enabling contrib or non\-free
|
||||
with this mechanism.
|
||||
.IP "\fB\-\-security\fP true|false" 4
|
||||
defines if the security repositories specified in the security mirror
|
||||
options should be used or not.
|
||||
.IP "\fB\-\-source\fP true|false" 4
|
||||
defines if a corresponding source image to the binary image should be
|
||||
build. By default this is false because most people do not require this and
|
||||
would require to download quite a few source packages. However, once you
|
||||
start distributing your live image, you should make sure you build it with a
|
||||
source image alongside.
|
||||
.IP "\-s|\fB\-\-source\-images\fP iso|net|tar|usb\-hdd" 4
|
||||
defines the image type for the source image. Default is tar.
|
||||
.IP "\fB\-\-symlinks\fP true|false" 4
|
||||
defines if the symlink hack should be true or false. The symlink hack
|
||||
converts all absolute symlinks to relative ones. By default this is false
|
||||
and in general there is no need or gain to enable it. If you are in a
|
||||
special situation that requires this, you will know.
|
||||
.IP "\fB\-\-syslinux\-splash\fP \fIFILE\fP" 4
|
||||
defines the file of the syslinux splash graphic that should be used instead
|
||||
of the default one.
|
||||
.IP "\fB\-\-syslinux\-timeout\fP \fISECONDS\fP" 4
|
||||
defines the timeout the syslinux bootloader should wait for input from the
|
||||
user at the bootprompt prior booting the default kernel. This defaults to 0
|
||||
which means it will wait forever.
|
||||
.IP "\fB\-\-syslinux\-menu\fP true|false" 4
|
||||
defines if syslinux should be make use of the vgamenu capabilities or not.
|
||||
.IP "\fB\-\-sysvinit\fP true|false" 4
|
||||
defines if the sysvinit hack should be true or false. The sysvinit hack
|
||||
disables all non\-essential services from starting up at bootup in order to
|
||||
reduce overall boottime. By default this is false and in general there you
|
||||
don't want to enable it.
|
||||
.IP "\fB\-\-tasksel\fP aptitude|tasksel" 4
|
||||
selects which program is used to install tasks. By default, this is set to
|
||||
tasksel.
|
||||
.IP "\fB\-\-tasks\fP \fITASK\fP|\(dq\fITASKS\fP\(dq" 4
|
||||
defines one or more package tasks to be installed in the live system. This
|
||||
is a quick and convenient way to get a reasonable default selection of
|
||||
packages suitable for most users when building an image, but it results in
|
||||
quite big images. If you want to have finer grained package selections,
|
||||
local packages lists should be used instead.
|
||||
.IP "\fB\-\-templates\fP \fIPATH\fP" 4
|
||||
sets the path to the templates that live\-helper is going to use, e.g. for
|
||||
bootloaders. By default, this is set to /usr/share/live\-helper/templates/.
|
||||
.IP "\fB\-\-virtual\-root\-filesystem\fP ext3" 4
|
||||
defines what filesystem to format the root filesystem when building
|
||||
virtual\-hdd images.
|
||||
.IP "\fB\-\-virtual\-root\-size\fP MB" 4
|
||||
defines what size the virtual\-hdd image should be. Note that although the
|
||||
default is set to 10000 (= 10GB), it will not need 10GB space on your
|
||||
harddisk as the files are created as sparse files.
|
||||
.IP "\fB\-\-exposed\-root\fP true|false" 4
|
||||
defines whether to expose the root filesystem as read only and not covered
|
||||
by the union filesystem. This has useful implications for certain speciality
|
||||
setups such as LTSP. By default, this option is false.
|
||||
.IP "\fB\-\-username\fP \fINAME\fP" 4
|
||||
sets the name of the account of the default user in the live system.
|
||||
.IP "\fB\-\-win32\-loader true|false\fP" 4
|
||||
.\" FIXME
|
||||
defines if win32\-loader should be included in the binary image or not.
|
||||
|
||||
.SH ENVIRONMENT
|
||||
.\" FIXME
|
||||
.\" FIXME
|
||||
All command line switches can also be specified through the corresponding
|
||||
environment variable. Environment variables are name LH_FOO, means,
|
||||
e.g. \-\-apt\-ftp\-proxy becomes LH_APT_FTP_PROXY. However, this generally
|
||||
should not be used.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBauto/config\fP 4
|
||||
.IP \fB/etc/default/live\-helper\fP 4
|
||||
.\" FIXME
|
||||
An optional, global configuration file for \fBlh config\fP variables. It is
|
||||
useful to specify a few system wide defaults, like LH_MIRROR_BOOTSTRAP. This
|
||||
feature can be false by specifying the \fB\-\-ignore\-system\-defaults\fP option.
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,46 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh_local\fP \- wrapper for local live\-helper programs
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh local\fP [\fIlive\-helper\ options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh local\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh local\fP has no specific options but understands all generic live\-helper
|
||||
options. See \fIlive\-helper\fP(7) for a complete list of all generic
|
||||
live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh source\fP \- Complete the source stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh source\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh source\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
\fBlh source\fP calls all necessary live\-helper programs in the correct order
|
||||
to complete the source stage.
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh source\fP has no specific options but understands all generic live\-helper
|
||||
options. See \fIlive\-helper\fP(7) for a complete list of all generic
|
||||
live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_checksums\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_checksums\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_checksums\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_checksums\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_debian\-live\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_debian\-live\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_debian\-live\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_debian\-live\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_debian\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_debian\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_debian\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_debian\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_disk\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_disk\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_disk\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_disk\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_iso\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_iso\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_iso\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_iso\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_net\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_net\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_net\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_net\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_tar\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_tar\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_tar\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_tar\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_usb\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_usb\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_usb\fP is a low\-level command (plumbing) of \fIlive\-helper\fP(7),
|
||||
the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_usb\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,47 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh sources_virtual\-hdd\fP \- Complete the sources stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh sources_virtual\-hdd\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh sources_virtual\-hdd\fP is a low\-level command (plumbing) of
|
||||
\fIlive\-helper\fP(7), the Debian Live tool suite.
|
||||
.PP
|
||||
|
||||
.\" FIXME
|
||||
.SH OPTIONS
|
||||
\fBlh sources_virtual\-hdd\fP has no specific options but understands all
|
||||
generic live\-helper options. See \fIlive\-helper\fP(7) for a complete list of
|
||||
all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,53 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh testroot\fP \- Ensure that a system is built as root
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh testroot\fP [\fIlive\-helper options\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh testroot\fP is a high\-level command (porcelain) of \fIlive\-helper\fP(7), the
|
||||
Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
\fBlh testroot\fP simply checks to see if you are root. If not, it exits with
|
||||
an error. Debian Live images must currently be built as real root.
|
||||
.PP
|
||||
.\" FIXME
|
||||
Note: Support for using \fIfakeroot\fP(1) and \fIsudo\fP(8) internally in
|
||||
live\-helper itself is still experimental, however, calling a helper yourself
|
||||
with sudo is safe.
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh testroot\fP has no specific options but understands all generic
|
||||
live\-helper options. See \fIlive\-helper\fP(7) for a complete list of all
|
||||
generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP \fBnone\fP 4
|
||||
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-helper\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,310 @@
|
|||
.\"*******************************************************************
|
||||
.\"
|
||||
.\" This file was generated with po4a. Translate the source file.
|
||||
.\"
|
||||
.\"*******************************************************************
|
||||
.TH LIVE\-HELPER 7 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlive\-helper\fP \- the Debian Live tool suite
|
||||
|
||||
.SH SYNOPSIS
|
||||
.\" FIXME
|
||||
.\" FIXME
|
||||
\fBlh \fP\fICOMMAND\fP [\fB\-h|\-\-help\fP] [\fB\-u|\-\-usage\fP] [\fB\-v|\-\-version\fP]
|
||||
[\fB\-\-breakpoints\fP] [\fB\-\-conffile\fP] [\fB\-\-debug\fP] [\fB\-\-force\fP] [\fB\-\-quiet\fP]
|
||||
[\fB\-\-verbose\fP]
|
||||
|
||||
.SH DESCRIPTION
|
||||
.\" FIXME
|
||||
live\-helper is a set of scripts to build Debian Live system images. The idea
|
||||
behind live\-helper is a tool suite that uses a configuration directory to
|
||||
completely automate and customize all aspects of building a Live image.
|
||||
.PP
|
||||
The \fICOMMAND\fP is a name of a live\-helper command (see below).
|
||||
.PP
|
||||
.\" FIXME
|
||||
More documentation about how to use live\-helper is available in the
|
||||
individual manpages for each helper and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH OPTIONS
|
||||
.\" FIXME
|
||||
.SS "Shared live\-helper options"
|
||||
The following command line options are supported by all live\-helper
|
||||
programs.
|
||||
.IP "\fB\-h, \-\-help\fP" 4
|
||||
display help and exit.
|
||||
.IP "\fB\-u, \-\-usage\fP" 4
|
||||
show usage and exit.
|
||||
.IP "\fB\-v, \-\-version\fP" 4
|
||||
output version information and exit.
|
||||
.SS "Common live\-helper options"
|
||||
The following command line options are supported by most live\-helper
|
||||
programs. See the man page of each program for a complete explanation of
|
||||
what each option does.
|
||||
.IP \fB\-\-breakpoints\fP 4
|
||||
run with breakpoints.
|
||||
.IP \fB\-\-conffile\fP 4
|
||||
use custom configuration file.
|
||||
.IP \fB\-\-debug\fP 4
|
||||
show debug information.
|
||||
.IP \fB\-\-force\fP 4
|
||||
force helper execution, even if stage file exists.
|
||||
.IP \fB\-\-quiet\fP 4
|
||||
be quiet.
|
||||
.IP \fB\-\-verbose\fP 4
|
||||
.\" FIXME
|
||||
be verbose.
|
||||
|
||||
.SH "LIVE\-HELPER COMMANDS"
|
||||
.\" FIXME
|
||||
We divide live\-helper into high level ("porcelain") commands and low level
|
||||
("plumbing") commands.
|
||||
.PP
|
||||
.\" FIXME
|
||||
Here is the complete list of all available live\-helper commands. See their
|
||||
man pages for additional documentation.
|
||||
|
||||
.SH "HIGH\-LEVEL COMMANDS (PORCELAIN)"
|
||||
.\" FIXME
|
||||
We separate the porcelain commands into the main commands and some ancillary
|
||||
user utilities.
|
||||
.SS "Main porcelain commands"
|
||||
.IP \fBlh_config\fP(1) 4
|
||||
create configuration for live\-helper
|
||||
.IP \fBlh_bootstrap\fP(1) 4
|
||||
create the first stage by bootstrapping a basic debian system
|
||||
.IP \fBlh_chroot\fP(1) 4
|
||||
create the second stage by customizing the chroot
|
||||
.IP \fBlh_binary\fP(1) 4
|
||||
create the third stage by generating a binary image
|
||||
.IP \fBlh_source\fP(1) 4
|
||||
create the optional fourth stage by generating a source image
|
||||
.IP \fBlh_clean\fP(1) 4
|
||||
clean up system build directories
|
||||
.SS "Ancillary Commands"
|
||||
.IP \fBlh\fP(1) 4
|
||||
generic live\-helper wrapper
|
||||
.IP \fBlh_build\fP(1) 4
|
||||
alias for all stages
|
||||
.IP \fBlh_local\fP(1) 4
|
||||
helper for using a local live\-helper
|
||||
.IP \fBlh_testroot\fP(1) 4
|
||||
.\" FIXME
|
||||
ensure that a system is built as root
|
||||
|
||||
.SH "LOW\-LEVEL COMMANDS (PLUMBING)"
|
||||
.\" FIXME
|
||||
The actual work of live\-helper is implemented in the low\-level commands,
|
||||
called plumbing. They are not supposed to be used by end users, they should
|
||||
stick with porcelains as they ensure that all the different plumbing
|
||||
commands are executed in the right order. However, if you intend to reuse
|
||||
live\-helper commands in your own scripts, then the plumbings might be of
|
||||
interest for you.
|
||||
.PP
|
||||
Note that the interface (set of options and the semantics) to these
|
||||
low\-level commands are meant to be a lot more stable than Porcelain level
|
||||
commands. The interface to Porcelain commands on the other hand are subject
|
||||
to change in order to improve the end user experience.
|
||||
.SS "Bootstrap commands"
|
||||
.IP \fBlh_bootstrap_cache\fP(1) 4
|
||||
cache bootstrap stage
|
||||
.IP \fBlh_bootstrap_cdebootstrap\fP(1) 4
|
||||
bootstrap a Debian system with cdebootstrap(1)
|
||||
.IP \fBlh_bootstrap_copy\fP(1) 4
|
||||
bootstrap by copying the host system
|
||||
.IP \fBlh_bootstrap_debootstrap\fP(1) 4
|
||||
bootstrap a Debian system with debootstrap(8)
|
||||
.SS "Chroot commands"
|
||||
.IP \fBlh_chroot_apt\fP(1) 4
|
||||
manage /etc/apt/apt.conf
|
||||
.IP \fBlh_chroot_cache\fP(1) 4
|
||||
cache chroot stage
|
||||
.IP \fBlh_chroot_debianchroot\fP(1) 4
|
||||
manage /etc/debian_chroot
|
||||
.IP \fBlh_chroot_devpts\fP(1) 4
|
||||
mount /dev/pts
|
||||
.IP \fBlh_chroot_dpkg\fP(1) 4
|
||||
manage /sbin/dpkg
|
||||
.IP \fBlh_chroot_hacks\fP(1) 4
|
||||
execute hacks in chroot
|
||||
.IP \fBlh_chroot_hooks\fP(1) 4
|
||||
execute hooks in chroot
|
||||
.IP \fBlh_chroot_hostname\fP(1) 4
|
||||
manage /bin/hostname
|
||||
.IP \fBlh_chroot_hosts\fP(1) 4
|
||||
manage /etc/hosts
|
||||
.IP \fBlh_chroot_install\-packages\fP(1) 4
|
||||
install queued packages into chroot
|
||||
.IP \fBlh_chroot_interactive\fP(1) 4
|
||||
make build interactive
|
||||
.IP \fBlh_chroot_linux\-image\fP(1) 4
|
||||
manage /etc/kernel\-img.conf
|
||||
.IP \fBlh_chroot_local\-hooks\fP(1) 4
|
||||
execute local hooks in chroot
|
||||
.IP \fBlh_chroot_local\-includes\fP(1) 4
|
||||
copy local files into chroot
|
||||
.IP \fBlh_chroot_localization\fP(1) 4
|
||||
install localization packages into chroot
|
||||
.IP \fBlh_chroot_local\-packages\fP(1) 4
|
||||
queue install of local packages into chroot
|
||||
.IP \fBlh_chroot_local\-patches\fP(1) 4
|
||||
apply local patches against chroot
|
||||
.IP \fBlh_chroot_local\-preseed\fP(1) 4
|
||||
use debconf local preseeding file
|
||||
.IP \fBlh_chroot_packages\fP(1) 4
|
||||
queue install of packages into chroot
|
||||
.IP \fBlh_chroot_packageslists\fP(1) 4
|
||||
queue install of packages lists into chroot
|
||||
.IP \fBlh_chroot_preseed\fP(1) 4
|
||||
use debconf preseeding file
|
||||
.IP \fBlh_chroot_proc\fP(1) 4
|
||||
mount /proc
|
||||
.IP \fBlh_chroot_resolv\fP(1) 4
|
||||
manage /etc/resolv.conf
|
||||
.IP \fBlh_chroot_selinuxfs\fP(1) 4
|
||||
mount /selinux
|
||||
.IP \fBlh_chroot_sources\fP(1) 4
|
||||
manage /etc/apt/sources.list
|
||||
.IP \fBlh_chroot_symlinks\fP(1) 4
|
||||
convert symlinks
|
||||
.IP \fBlh_chroot_sysfs\fP(1) 4
|
||||
mount /sys
|
||||
.IP \fBlh_chroot_sysvinit\fP(1) 4
|
||||
configure sysvinit
|
||||
.IP \fBlh_chroot_sysv\-rc\fP(1) 4
|
||||
manage /usr/sbin/policy\-rc.d
|
||||
.IP \fBlh_chroot_tasks\fP(1) 4
|
||||
install tasks into chroot
|
||||
.SS "Binary commands"
|
||||
.IP \fBlh_binary_chroot\fP(1) 4
|
||||
copy chroot into chroot
|
||||
.IP \fBlh_binary_debian\-installer\fP(1) 4
|
||||
install debian\-installer into binary
|
||||
.IP \fBlh_binary_disk\fP(1) 4
|
||||
install disk information into binary
|
||||
.IP \fBlh_binary_encryption\fP(1) 4
|
||||
encrypts rootfs
|
||||
.IP \fBlh_binary_grub\fP(1) 4
|
||||
installs grub into binary
|
||||
.IP \fBlh_binary_grub2\fP(1) 4
|
||||
installs grub2 into binary
|
||||
.IP \fBlh_binary_includes\fP(1) 4
|
||||
copy files into binary
|
||||
.IP \fBlh_binary_iso\fP(1) 4
|
||||
build iso binary image
|
||||
.IP \fBlh_binary_linux\-image\fP(1) 4
|
||||
install linux\-image into binary
|
||||
.IP \fBlh_binary_local\-hooks\fP(1) 4
|
||||
execute local hooks in binary
|
||||
.IP \fBlh_binary_local\-includes\fP(1) 4
|
||||
copy files into binary
|
||||
.IP \fBlh_binary_local\-packageslists\fP(1) 4
|
||||
install local packages lists into binary
|
||||
.IP \fBlh_binary_manifest\fP(1) 4
|
||||
create manifest
|
||||
.IP \fBlh_binary_checksums\fP(1) 4
|
||||
create binary checksums (md5, sha1, and/or sha256)
|
||||
.IP \fBlh_binary_memtest\fP(1) 4
|
||||
installs a memtest into binary
|
||||
.IP \fBlh_binary_net\fP(1) 4
|
||||
build netboot binary image
|
||||
.IP \fBlh_binary_rootfs\fP(1) 4
|
||||
build rootfs image
|
||||
.IP \fBlh_binary_silo\fP(1) 4
|
||||
installs silo into binary
|
||||
.IP \fBlh_binary_syslinux\fP(1) 4
|
||||
installs syslinux into binary
|
||||
.IP \fBlh_binary_tar\fP(1) 4
|
||||
build harddisk binary image
|
||||
.IP \fBlh_binary_usb\fP(1) 4
|
||||
build binary usb\-hdd image
|
||||
.IP \fBlh_binary_virtual\-hdd\fP(1) 4
|
||||
build binary virtual\-hdd image
|
||||
.IP \fBlh_binary_win32\-loader\fP(1) 4
|
||||
installs win32\-loader into binary
|
||||
.IP \fBlh_binary_yaboot\fP(1) 4
|
||||
installs yaboot into binary
|
||||
.SS "Source commands"
|
||||
.IP \fBlh_source_debian\fP(1) 4
|
||||
download sources
|
||||
.IP \fBlh_source_debian\-live\fP(1) 4
|
||||
copy debian\-live config into source
|
||||
.IP \fBlh_source_disk\fP(1) 4
|
||||
install disk information into source
|
||||
.IP \fBlh_source_iso\fP(1) 4
|
||||
build iso source image
|
||||
.IP \fBlh_source_checksums\fP(1) 4
|
||||
create source checksums (md5, sha1, and/or sha256)
|
||||
.IP \fBlh_source_net\fP(1) 4
|
||||
build source net image
|
||||
.IP \fBlh_source_tar\fP(1) 4
|
||||
build source tarball
|
||||
.IP \fBlh_source_usb\fP(1) 4
|
||||
build source usb\-hdd image
|
||||
.IP \fBlh_source_virtual\-hdd\fP(1) 4
|
||||
.\" FIXME
|
||||
build source virtual\-hdd image
|
||||
|
||||
.SH "CONFIG FILES"
|
||||
.\" FIXME
|
||||
Many live\-helper commands make use of files in the \fIconfig/\fP directory to
|
||||
control what they do. Besides the common \fIconfig/common\fP, which is used by
|
||||
all live\-helper commands, some additional files can be used to configure the
|
||||
behavior of specific live\-helper commands. These files are typically named
|
||||
config/stage or config/stage_helper (where "stage" of course, is replaced
|
||||
with the name of the stage that they belong to, and "helper" with the name
|
||||
of the helper).
|
||||
.PP
|
||||
For example, lh_bootstrap_debootstrap uses files named config/bootstrap and
|
||||
config/bootstrap_debootstrap to read the options it will use. See the man
|
||||
pages of individual commands for details about the names and formats of the
|
||||
files they use. Generally, these files contain variables with values
|
||||
assigned, one variable per line. Some programs in live\-helper use pairs of
|
||||
values or slightly more complicated variable assignments.
|
||||
.PP
|
||||
Note that live\-helper will respect environment variables which are present
|
||||
in the context of the shell it is running. If variables can be read from
|
||||
config files, then they override environment variables, and if command line
|
||||
options are used, they override values from config files. If no value for a
|
||||
given variable can be found and thus is unset, live\-helper will
|
||||
automatically set it to the default value.
|
||||
.PP
|
||||
In some rare cases, you may want to have different versions of these files
|
||||
for different architectures or distributions. If files named
|
||||
config/stage.arch or config/stage_helper.arch, and config/stage.dist or
|
||||
config/stage_helper.dist exist, where "arch" is the same as the output of
|
||||
"dpkg \-\-print\-architecture" and "dist" is the same as the codename of the
|
||||
target distribution, then they will be used in preference to other, more
|
||||
general files.
|
||||
.PP
|
||||
.\" FIXME
|
||||
All config files are shell scripts which are sourced by a live\-helper
|
||||
program. That means they have to follow the normal shell syntax. You can
|
||||
also put comments in these files; lines beginning with "#" are ignored.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP \fBn/a\fP 4
|
||||
|
||||
.\" FIXME
|
||||
.SH "SEE ALSO"
|
||||
\fIlive\-initramfs\fP(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found
|
||||
on the homepage at <\fIhttp://live.debian.net/\fP> and in the manual at
|
||||
<\fIhttp://live.debian.net/manual/\fP>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package
|
||||
in the Debian Bug Tracking System at <\fIhttp://bugs.debian.org/\fP> or
|
||||
by writing a mail to the Debian Live mailing list at
|
||||
<\fIdebian\-live@lists.debian.org\fP>.
|
||||
|
||||
.SH AUTHOR
|
||||
live\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fP> for
|
||||
the Debian project.
|
|
@ -0,0 +1,34 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh\fR \- wrapper for live\-helper programs
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh\fR COMMAND [COMMAND_OPTIONS]
|
||||
.PP
|
||||
\fBlh\fR [\fIlive\-helper\ options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP "\fBnone\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,32 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary\fR is a high\-level command (porcelain) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
\fBlh binary\fR calls all necessary live\-helper programs in the correct order to complete the binary stage.
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.IP "\fBnone\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_checksums\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_checksums\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_checksums\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_checksums\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_chroot\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_chroot\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_chroot\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_chroot\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_debian\-installer\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_debian\-installer\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_debian\-installer\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_debian\-installer\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_disk\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_disk\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_disk\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_disk\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_encryption\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_encryption\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_encryption\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_encryption\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_grub\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_grub\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_grub\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_grub\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_grub2\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_grub2\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_grub2\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_grub2\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_includes\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_includes\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_includes\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_includes\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_iso\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_iso\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_iso\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_iso\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_linux\-image\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_linux\-image\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_linux\-image\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_linux\-image\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-hooks\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_local\-hooks\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_local\-hooks\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_local\-hooks\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local\-includes\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_local\-includes\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_local\-includes\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_local\-includes\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_local-packageslists\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_local-packageslists\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_local-packageslists\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_local-packageslists\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_manifest\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_manifest\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_manifest\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_manifest\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
|
@ -0,0 +1,33 @@
|
|||
.TH LIVE\-HELPER 1 2010\-05\-08 2.0~a11 "Debian Live Project"
|
||||
|
||||
.SH NAME
|
||||
\fBlh binary_memtest\fR \- Complete the binary stage
|
||||
|
||||
.SH SYNOPSIS
|
||||
\fBlh binary_memtest\fR [\fIlive\-helper options\fR]
|
||||
|
||||
.SH DESCRIPTION
|
||||
\fBlh binary_memtest\fR is a low\-level command (plumbing) of \fIlive\-helper\fR(7), the Debian Live tool suite.
|
||||
.PP
|
||||
.\" FIXME
|
||||
|
||||
.SH OPTIONS
|
||||
\fBlh binary_memtest\fR has no specific options but understands all generic live\-helper options. See \fIlive\-helper\fR(7) for a complete list of all generic live\-helper options.
|
||||
|
||||
.SH FILES
|
||||
.\" FIXME
|
||||
.IP "\fBn/a\fR" 4
|
||||
|
||||
.SH SEE ALSO
|
||||
\fIlive\-helper\fR(7)
|
||||
.PP
|
||||
This program is a part of live\-helper.
|
||||
|
||||
.SH HOMEPAGE
|
||||
More information about live\-helper and the Debian Live project can be found on the homepage at <\fIhttp://live.debian.net/\fR> and in the manual at <\fIhttp://live.debian.net/manual/\fR>.
|
||||
|
||||
.SH BUGS
|
||||
Bugs can be reported by sumbitting a bugreport for the live\-helper package in the Debian 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\-helper was written by Daniel Baumann <\fIdaniel@debian.org\fR> for the Debian project.
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue