|
|
e8c52d |
From 5ba6fa3dd7d3065c12a26e217760ae52a67a277e Mon Sep 17 00:00:00 2001
|
|
|
e8c52d |
From: Peter Jones <pjones@redhat.com>
|
|
|
e8c52d |
Date: Mon, 20 Jan 2014 16:01:05 -0500
|
|
|
e8c52d |
Subject: [PATCH 14/18] Man pages missing (#948848)
|
|
|
e8c52d |
|
|
|
e8c52d |
Added man pages for os-prober and linux-boot-prober.
|
|
|
e8c52d |
|
|
|
e8c52d |
Resolves: rhbz#948848
|
|
|
e8c52d |
---
|
|
|
e8c52d |
linux-boot-prober.1 | 27 +++++++++++++++++++++++++++
|
|
|
e8c52d |
os-prober.1 | 24 ++++++++++++++++++++++++
|
|
|
e8c52d |
2 files changed, 51 insertions(+)
|
|
|
e8c52d |
create mode 100644 linux-boot-prober.1
|
|
|
e8c52d |
create mode 100644 os-prober.1
|
|
|
e8c52d |
|
|
|
e8c52d |
diff --git a/linux-boot-prober.1 b/linux-boot-prober.1
|
|
|
e8c52d |
new file mode 100644
|
|
|
e8c52d |
index 0000000..4818c85
|
|
|
e8c52d |
--- /dev/null
|
|
|
e8c52d |
+++ b/linux-boot-prober.1
|
|
|
c0b357 |
@@ -0,0 +1,27 @@
|
|
|
c0b357 |
+.TH linux-boot-prober 1 "20 Jan 2014" "linux-boot-prober"
|
|
|
c0b357 |
+.SH "NAME"
|
|
|
c0b357 |
+linux-boot-prober \(em Determine boot characteristics of a specified device.
|
|
|
c0b357 |
+.SH "SYNOPSIS"
|
|
|
c0b357 |
+.B linux-boot-prober
|
|
|
c0b357 |
+.I <partition>
|
|
|
c0b357 |
+.SH "DESCRIPTION"
|
|
|
c0b357 |
+.PP
|
|
|
c0b357 |
+The \fBlinux-boot-prober\fR utility will try to work out how to boot the
|
|
|
c0b357 |
+linux root partition specified by \fI<partition>\fR. If successful, it
|
|
|
c0b357 |
+will outoput one or more lines of the form:
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+<root partition>:<boot partition>:<label>:<kernel path>:<initrd path>:<kernel parameters>
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+For example, for a system with a kernel at \fI/boot/vmlinuz\fR and an
|
|
|
c0b357 |
+initramfs at \fI/boot/initrd.gz\fR, and with \fI/\fR on \fI/dev/sda2\fR and
|
|
|
c0b357 |
+\fI/boot\fR on \fI/dev/sda1\fR, the command "linux-boot-prober /dev/sda1" will
|
|
|
c0b357 |
+display:
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+/dev/sda2:/dev/sda1:Linux:/vmlinuz:/initrd.gz:root=/dev/sda1
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+Some partitions will not be displayed by \fBlinux-boot-prober\fI. If a
|
|
|
c0b357 |
+partition is mounted on \fI/\fR, \fI/target\fR, or \fI/target/boot\fR, it will
|
|
|
c0b357 |
+be skipped.
|
|
|
c0b357 |
+.SH "SEE ALSO"
|
|
|
c0b357 |
+.PP
|
|
|
c0b357 |
+\fBos-prober\fR(1)
|
|
|
e8c52d |
diff --git a/os-prober.1 b/os-prober.1
|
|
|
e8c52d |
new file mode 100644
|
|
|
e8c52d |
index 0000000..8a8b6ff
|
|
|
e8c52d |
--- /dev/null
|
|
|
e8c52d |
+++ b/os-prober.1
|
|
|
c0b357 |
@@ -0,0 +1,24 @@
|
|
|
c0b357 |
+.TH os-prober 1 "20 Jan 2014" "os-prober"
|
|
|
c0b357 |
+.SH "NAME"
|
|
|
c0b357 |
+os-prober \(em Discover bootable partitions on the local system.
|
|
|
c0b357 |
+.SH "SYNOPSIS"
|
|
|
c0b357 |
+.B os-prober
|
|
|
c0b357 |
+.SH "DESCRIPTION"
|
|
|
c0b357 |
+.PP
|
|
|
c0b357 |
+The \fBos-prober\fR utility will scan all disks available on the system for
|
|
|
c0b357 |
+other operating systems. For each discovered OS, it will output a line of
|
|
|
c0b357 |
+the form:
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+<partition>:<descriptive name>:<short name>:<kind of loader>
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+For example, on system with Windows XP installed on \fI/dev/sda1\fR,
|
|
|
c0b357 |
+\fBos-prober\fR will display:
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+/dev/sda1:Windows NT/2000/XP:WinNT:chain
|
|
|
c0b357 |
+
|
|
|
c0b357 |
+Note that for Linux systems that are discovered, a call to
|
|
|
c0b357 |
+\fBlinux-boot-prober\fI may be required in order to fully discover the
|
|
|
c0b357 |
+necessary information to boot the system.
|
|
|
c0b357 |
+.SH "SEE ALSO"
|
|
|
c0b357 |
+.PP
|
|
|
c0b357 |
+\fBlinux-boot-prober\fR(1)
|
|
|
e8c52d |
--
|
|
|
e8c52d |
2.5.5
|
|
|
e8c52d |
|