rename util-linux-ng back to util-linux

Signed-off-by: Karel Zak <kzak@redhat.com>
This commit is contained in:
Karel Zak 2010-11-30 11:41:59 +01:00
parent 5a16af58c5
commit 601d12fb10
185 changed files with 2037 additions and 1717 deletions

View File

@ -1,6 +1,5 @@
utils-linux-ng
(fork of util-linux, based on version 2.13-pre7)
utils-linux
MAINTAINER:
@ -19,6 +18,8 @@ AUTHORS (merged projects & commands):
Karel Zak <kzak@redhat.com>
findmnt: Karel Zak <kzak@redhat.com>
flock: H. Peter Anvin <hpa@zytor.com>
fstrim: Lukas Czerner <lczerner@redhat.com>
fsfreeze: Hajime Taira <htaira@redhat.com>
getopt: Frodo Looijaard <frodol@dds.nl>
hwclock: Bryan Henderson <bryanh@giraffe-data.com>
ipcmk: Hayden James <hayden.james@gmail.com>
@ -27,6 +28,8 @@ AUTHORS (merged projects & commands):
libmount: Karel Zak <kzak@redhat.com>
libuuid: Theodore Ts'o <tytso@mit.edu>
lscpu: Cai Qian <qcai@redhat.com>
lsblk: Milan Broz <mbroz@redhat.com>
Karel Zak <kzak@redhat.com>
rtcwake: David Brownell <david-b@pacbell.net>
Bernhard Walle <bwalle@suse.de>
schedutils: Robert Love <rlove@rlove.org>

23
README
View File

@ -1,31 +1,32 @@
util-linux-ng
(fork of util-linux, based on version 2.13-pre7)
util-linux
util-linux is a random collection of Linux utilities
util-linux is a random collection of Linux utilities
Note that in years 2006-2010 this project used the name "util-linux-ng".
WEB PAGE:
http://kernel.org/~kzak/util-linux-ng/
http://kernel.org/~kzak/util-linux/
MAILING LIST:
E-MAIL: util-linux-ng@vger.kernel.org
URL: http://vger.kernel.org/vger-lists.html#util-linux-ng
URL: http://vger.kernel.org/vger-lists.html#util-linux
DOWNLOAD:
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/
ftp://ftp.kernel.org/pub/linux/utils/util-linux/
SOURCE CODE:
Web interface:
http://git.kernel.org/?p=utils/util-linux-ng/util-linux-ng.git
http://git.kernel.org/?p=utils/util-linux/util-linux.git
Checkout:
git clone git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git util-linux-ng
git clone git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git util-linux
NLS (PO TRANSLATIONS):
@ -34,7 +35,7 @@ NLS (PO TRANSLATIONS):
NEUTRALITY:
The stuff in util-linux-ng should be rather distribution-neutral.
The stuff in util-linux should be rather distribution-neutral.
No RPMs/DEBs/... are provided - get yours from your distributor.
@ -51,9 +52,7 @@ VERSION SCHEMA:
Development releases:
<major>.<minor><suffix>
suffix = "devel" or "-rc<N>"
<major>.<minor>-rc<N>
COMPILATION:

View File

@ -1,6 +1,6 @@
Notes for util-linux-ng developers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Notes for util-linux developers
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
AUTOTOOLS:
@ -88,7 +88,7 @@ CODING STYLE:
SCM (source code management):
git clone git://git.kernel.org/pub/scm/utils/util-linux-ng/util-linux-ng.git util-linux-ng
git clone git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git util-linux
* maintenance (stable) branch

View File

@ -1,5 +1,5 @@
The project util-linux-ng doesn't use the same license for all of the code.
The project util-linux doesn't use the same license for all of the code.
There is code under:
* GPLv3+ (GNU General Public License version 3, or any later version)

View File

@ -16,14 +16,14 @@ HAS_GTKDOC=1
(autopoint --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autopoint installed to generate util-linux-ng build system.."
echo "You must have autopoint installed to generate util-linux build system.."
echo "Download the appropriate package for your distribution,"
echo "or see http://www.gnu.org/software/gettext"
DIE=1
}
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to generate util-linux-ng build system."
echo "You must have autoconf installed to generate util-linux build system."
echo
echo "Download the appropriate package for your distribution,"
echo "or see http://www.gnu.org/software/autoconf"
@ -32,7 +32,7 @@ HAS_GTKDOC=1
#(libtool --version) < /dev/null > /dev/null 2>&1 || {
# echo
# echo "You must have libtool-2 installed to generate util-linux-ng build system."
# echo "You must have libtool-2 installed to generate util-linux build system."
# echo "Download the appropriate package for your distribution,"
# echo "or see http://www.gnu.org/software/libtool"
# DIE=1
@ -40,7 +40,7 @@ HAS_GTKDOC=1
(automake --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to generate util-linux-ng build system."
echo "You must have automake installed to generate util-linux build system."
echo
echo "Download the appropriate package for your distribution,"
echo "or see http://www.gnu.org/software/automake"
@ -48,7 +48,7 @@ HAS_GTKDOC=1
}
(autoheader --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoheader installed to generate util-linux-ng build system."
echo "You must have autoheader installed to generate util-linux build system."
echo
echo "Download the appropriate package for your distribution,"
echo "or see http://www.gnu.org/software/autoheader"
@ -60,7 +60,7 @@ if test "$DIE" -eq 1; then
fi
test -f mount/mount.c || {
echo "You must run this script in the top-level util-linux-ng directory"
echo "You must run this script in the top-level util-linux directory"
exit 1
}

View File

@ -1,6 +1,6 @@
#
# WARNING: this is not gtk-doc.make file from gtk-doc project. This
# file has been modified to match with util-linux-ng requirements:
# file has been modified to match with util-linux requirements:
#
# * install files to $datadir
# * don't maintain generated files in git repository

View File

@ -1,4 +1,4 @@
AC_INIT(util-linux-ng, 2.18, kzak@redhat.com)
AC_INIT(util-linux, 2.18, kzak@redhat.com)
AC_PREREQ(2.60)
@ -393,10 +393,10 @@ if test "x$have_blkid" = xyes; then
AC_DEFINE(HAVE_LIBBLKID, 1, [Define to 1 if you have the -lblkid.])
else
if test "x$build_mount" = xyes; then
AC_MSG_ERROR([libblkid is needed to build util-linux-ng mount])
AC_MSG_ERROR([libblkid is needed to build util-linux mount])
fi
if test "x$enable_fsck" = xyes; then
AC_MSG_ERROR([libblkid is needed to build util-linux-ng fsck])
AC_MSG_ERROR([libblkid is needed to build util-linux fsck])
fi
fi
AM_CONDITIONAL(HAVE_BLKID, test "x$have_blkid" = xyes)

View File

@ -80,6 +80,6 @@ Set read-write.
.SH AUTHOR
blockdev was written by Andries E. Brouwer and rewritten by Karel Zak.
.SH AVAILABILITY
The blockdev command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The blockdev command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -61,5 +61,5 @@ Ioctls for tuning elevator behaviour were added in Linux 2.3.99-pre1.
.SH AUTHORS
Andrea Arcangeli <andrea@suse.de> SuSE
.SH AVAILABILITY
The elvtune command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The elvtune command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -58,5 +58,5 @@ after the format.
.SH AUTHOR
Werner Almesberger (almesber@nessie.cs.id.ethz.ch)
.SH AVAILABILITY
The fdformat command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The fdformat command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -132,5 +132,5 @@ Langfeldt (janl@math.uio.no)
.br
Portability patch by Russell King (rmk@ecs.soton.ac.uk).
.SH AVAILABILITY
The fsck.minix command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The fsck.minix command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -111,5 +111,5 @@ for the ext2 file system.
.BR mkfs.xfs (8),
.BR mkfs.xiafs (8)
.SH AVAILABILITY
The mkfs command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The mkfs command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -44,5 +44,5 @@ is 0 when all went well, and 1 when something went wrong.
.SH "SEE ALSO"
.BR mkfs (8).
.SH AVAILABILITY
The mkfs.bfs command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The mkfs.bfs command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -76,5 +76,5 @@ Usage or syntax error
.BR fsck (8),
.BR reboot (8)
.SH AVAILABILITY
The mkfs.minix command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The mkfs.minix command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -153,5 +153,5 @@ to create the file is not acceptable).
.BR fdisk (8),
.BR swapon (8)
.SH AVAILABILITY
The mkswap command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The mkswap command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -90,5 +90,5 @@ but is regarded either a bug or a feature depending on who you ask!
.SH AUTHOR
Stephen Tweedie (sct@redhat.com)
.SH AVAILABILITY
The raw command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The raw command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -59,7 +59,7 @@ must be in the standard 8-4-4-4-12 character format, such as is ouput by
was written by Jason Borden <jborden@bluehost.com> and Karel Zak <kzak@redhat.com>.
.SH AVAILABILITY
.B swaplabel
is part of the util-linux-ng package and is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package and is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH SEE ALSO
.BR mkswap (8),
.BR swapon (8),

View File

@ -442,5 +442,5 @@ The current version does not support multiple disks.
Kevin E. Martin (martin@cs.unc.edu)
.SH AVAILABILITY
The cfdisk command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The cfdisk command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -185,7 +185,7 @@ program and Linux partitions with the Linux fdisk or Linux cfdisk program.
.BI "\-b " sectorsize
Specify the sector size of the disk. Valid values are 512, 1024, 2048 or 4096.
(Recent kernels know the sector size. Use this only on old kernels or
to override the kernel's ideas.) Since util-linux-ng-2.17, fdisk differentiates
to override the kernel's ideas.) Since util-linux-2.17, fdisk differentiates
between logical and physical sector size. This option changes both sector sizes to
.IB sectorsize .
.TP
@ -279,5 +279,5 @@ The option `dump partition table to file' is missing.
.BR partprobe (8),
.BR kpartx (8)
.SH AVAILABILITY
The fdisk command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The fdisk command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -559,5 +559,5 @@ There is no support for non-DOS partition types.
.BR partprobe (8),
.BR kpartx (8)
.SH AVAILABILITY
The sfdisk command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The sfdisk command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -370,8 +370,8 @@ option as of this writing.
.SH AUTHOR
Theodore Ts'o (tytso@mit.edu)
.SH AVAILABILITY
The fsck command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The fsck command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH FILES
.IR /etc/fstab .
.SH ENVIRONMENT VARIABLES

View File

@ -460,5 +460,5 @@ Frodo Looijaard <frodo@frodo.looijaard.name>
.BR bash (1),
.BR tcsh (1).
.SH AVAILABILITY
The getopt command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The getopt command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -631,5 +631,5 @@ program by Charles Hedrick, Rob Hooft, and Harald Koenig.
See the source code for complete history and credits.
.SH AVAILABILITY
The hwclock command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The hwclock command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -76,7 +76,7 @@ fsprobe_known_fstype(const char *fstype)
#ifdef HAVE_LIBBLKID_INTERNAL
/*
* libblkid from util-linux-ng
* libblkid from util-linux
* -- recommended
*/
static blkid_probe blprobe;

View File

@ -303,5 +303,5 @@ Eric Rasmussen <ear@usfirst.org>
Added \-f option to display custom login messages on different terminals.
.SH AVAILABILITY
The agetty command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The agetty command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -78,5 +78,5 @@ Print version information and exit.
.SH AUTHOR
Salvatore Valente <svalente@mit.edu>
.SH AVAILABILITY
The chfn command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The chfn command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -61,5 +61,5 @@ Print version information and exit.
.SH AUTHOR
Salvatore Valente <svalente@mit.edu>
.SH AVAILABILITY
The chsh command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The chsh command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -106,5 +106,5 @@ http://www.atnf.csiro.au/~rgooch/linux/boot-scripts/
Richard Gooch (rgooch@atnf.csiro.au)
.SH AVAILABILITY
The initctl command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The initctl command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -58,5 +58,5 @@ Also report year of dates.
.SH FILES
/var/log/wtmp \(em login data base
.SH AVAILABILITY
The last command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The last command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -340,5 +340,5 @@ for HP-UX
.br
Ported to Linux 0.12: Peter Orbaek (poe@daimi.aau.dk)
.SH AVAILABILITY
The login command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The login command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -99,5 +99,5 @@ A
command appeared in Version 6 AT&T UNIX.
.SH AVAILABILITY
The mesg command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The mesg command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -30,5 +30,5 @@ Originally by Michael Haardt. Currently maintained by
Peter Orbaek (poe@daimi.aau.dk).
.SH AVAILABILITY
The newgrp command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The newgrp command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -176,5 +176,5 @@ Richard Gooch <rgooch@atnf.csiro.au>
Dependency support
.SH AVAILABILITY
The simpleinit command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The simpleinit command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -82,5 +82,5 @@ The
.Nm vigr
command appeared in Util-Linux 2.6.
.Sh AVAILABILITY
The vigr and vipw commands are part of the util-linux-ng package and are available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The vigr and vipw commands are part of the util-linux package and are available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -67,5 +67,5 @@ A
command appeared in
.At v7 .
.Sh AVAILABILITY
The wall command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The wall command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -116,8 +116,8 @@ http://www.subgenius.com/
нашел"
.SH ДОСТУПНОСТЬ
Команда ddate является частью пакета util-linux-ng и доступна по
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
Команда ddate является частью пакета util-linux и доступна по
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH ПЕРЕВОД
Перевод Rino_ap_Codkelden <mavladi@gmail.com> 2010

View File

@ -253,8 +253,8 @@ For usage or other errors, an exit code of 4 is returned.
was written by Andreas Dilger for libblkid and improved by Theodore Ts'o
and Karel Zak.
.SH AVAILABILITY
The blkid command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The blkid command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR libblkid (3)
.BR findfs (8)

View File

@ -93,5 +93,5 @@ A
.Nm
command appeared in Version 6 AT&T UNIX.
.Sh AVAILABILITY
The cal command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The cal command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -110,5 +110,5 @@ Malaclypse the Younger,
.I "Principia Discordia, Or How I Found Goddess And What I Did To Her When I Found Her"
.SH AVAILABILITY
The ddate command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The ddate command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -24,10 +24,10 @@ be printed on stdout.
.SH AUTHOR
.B findfs
was originally written by Theodore Ts'o (tytso@mit.edu) and re-written for
util-linux-ng package by Karel Zak (kzak@redhat.com).
util-linux package by Karel Zak (kzak@redhat.com).
.SH AVAILABILITY
The findfs command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The findfs command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH SEE ALSO
.BR blkid (8)
.BR fsck (8)

View File

@ -146,5 +146,5 @@ Karel Zak <kzak@redhat.com>
.BR mount (8),
.BR fstab (5)
.SH AVAILABILITY
The findmnt command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The findmnt command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -94,5 +94,5 @@ of the named processes, and not send any signals.
Taken from BSD 4.4. The ability to translate process names to process
ids was added by Salvatore Valente <svalente@mit.edu>.
.SH AVAILABILITY
The kill command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The kill command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -125,5 +125,5 @@ command is expected to be
.St -p1003.2
compatible.
.Sh AVAILABILITY
The logger command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The logger command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -112,5 +112,5 @@ implementation.
.Nm Look
appeared in Version 7 AT&T Unix.
.Sh AVAILABILITY
The look command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The look command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -62,5 +62,5 @@ Karel Zak <kzak@redhat.com>
.BR blkid (8),
.BR ls (1)
.SH AVAILABILITY
The lsblk command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The lsblk command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -50,5 +50,5 @@ It is assumed that none of the devices opened will block.
.BR xauth (1),
.BR md5sum (1)
.SH AVAILABILITY
The mcookie command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The mcookie command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -66,5 +66,5 @@ To be discovered.
.BR ls (1),
.BR stat (1)
.SH AVAILABILITY
The namei command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The namei command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -1,7 +1,7 @@
/*
* Copyright (C) 2008 Karel Zak <kzak@redhat.com>
*
* This file is part of util-linux-ng.
* This file is part of util-linux.
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by

View File

@ -48,5 +48,5 @@ will fix the extension of your html files.
.BR mmv (1),
.BR mv (1)
.SH AVAILABILITY
The rename command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The rename command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -41,5 +41,5 @@ argument in an attempt to get cooked mode back.
.SH AUTHOR
Rik Faith (faith@cs.unc.edu)
.SH AVAILABILITY
The reset command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The reset command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -147,5 +147,5 @@ places
in the log file, including linefeeds and backspaces.
This is not what the naive user expects.
.Sh AVAILABILITY
The script command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The script command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -214,5 +214,5 @@ The program was re-written in C by James Youngman <jay@gnu.org> and Karel Zak <k
.SH AVAILABILITY
The
.B scriptreplay
command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -203,5 +203,5 @@ Sets the bell frequency in Hz. Without an argument, defaults to 0.
.SH BUGS
Differences between the Minix and Linux versions are not documented.
.SH AVAILABILITY
The setterm command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The setterm command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -73,8 +73,8 @@ The
.B uuidd
daemon was written by Theodore Ts'o <tytso@mit.edu>.
.SH AVAILABILITY
uuidd is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
uuidd is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR libuuid (3),
.BR uuidgen (1)

View File

@ -52,7 +52,7 @@ OSF DCE 1.1
.B uuidgen
was written by Andreas Dilger for libuuid.
.SH AVAILABILITY
The uuidgen command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The uuidgen command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR libuuid (3)

View File

@ -146,5 +146,5 @@ must be full; that is, they must begin with a
has a hard-coded path, so may not always find what
you're looking for.
.SH AVAILABILITY
The whereis command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The whereis command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -41,8 +41,8 @@ characters of a string to the corresponding hex value prefixed by '\\x'.
.SH AUTHOR
Karel Zak <kzak@redhat.com>.
.SH AVAILABILITY
The wipefs command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The wipefs command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH SEE ALSO
.BR blkid (8)
.BR findfs (8)

View File

@ -98,5 +98,5 @@ A
.B write
command appeared in Version 6 AT&T UNIX.
.SH AVAILABILITY
The write command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The write command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -7,5 +7,5 @@ Stephen Tweedie <sct@dcs.ed.ac.uk>.
Andries Brouwer <aeb@cwi.nl>
Adrian Bunk <bunk@stusta.de>
Presently in util-linux-ng maintained by Karel Zak <kzak@redhat.com>.
Presently in util-linux maintained by Karel Zak <kzak@redhat.com>.

View File

@ -253,5 +253,5 @@ file format appeared in 4.0BSD.
.\" But without comment convention, and options and vfs_type.
.\" Instead there was a type rw/ro/rq/sw/xx, where xx is the present 'ignore'.
.SH AVAILABILITY
This man page is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
This man page is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -173,8 +173,8 @@ DES encryption is painfully slow. On the other hand, XOR is terribly weak.
Cryptoloop is deprecated in favor of dm-crypt. For more details see
.BR cryptsetup (8).
.SH AVAILABILITY
The losetup command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The losetup command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.\" .SH AUTHORS
.\" .nf
.\" Original version: Theodore Ts'o <tytso@athena.mit.edu>

View File

@ -2748,6 +2748,6 @@ A
.B mount
command existed in Version 5 AT&T UNIX.
.SH AVAILABILITY
The mount command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The mount command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -216,5 +216,5 @@ The
.B swapon
command appeared in 4.0BSD.
.SH AVAILABILITY
The swapon command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The swapon command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -173,5 +173,5 @@ A
.B umount
command appeared in Version 6 AT&T UNIX.
.SH AVAILABILITY
The umount command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The umount command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -36,5 +36,5 @@ Specify the length of the partition (in 512-byte sectors).
.BR partprobe (8),
.BR partx (8)
.SH AVAILABILITY
The addpart command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The addpart command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -30,5 +30,5 @@ Specify the partition number.
.BR partprobe (8),
.BR partx (8)
.SH AVAILABILITY
The delpart command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The delpart command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -52,5 +52,5 @@ Specify the range of partitions (e.g --nr 2-4).
.BR partprobe (8)
.SH AVAILABILITY
The partx command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The partx command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

File diff suppressed because it is too large Load Diff

View File

@ -147,5 +147,5 @@ See
.BR sched_setscheduler (2)
for a description of the Linux scheduling scheme.
.SH AVAILABILITY
The chrt command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The chrt command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -90,5 +90,5 @@ io scheduler.
.SH AUTHORS
Jens Axboe <jens@axboe.dk>
.SH AVAILABILITY
The ionice command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The ionice command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -122,5 +122,5 @@ See
.BR sched_setscheduler (2)
for a description of the Linux scheduling scheme.
.SH AVAILABILITY
The taskset command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The taskset command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -35,8 +35,8 @@ The low-level probing code, topology and partitions support was written
by Karel Zak. Currently, the library is mainatned by Karel Zak.
</para>
<para>
The library is part of the util-linux-ng package since version 2.15 and is
available from ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The library is part of the util-linux package since version 2.15 and is
available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
</para>
</partintro>
<xi:include href="xml/libblkid-config.xml"/>

View File

@ -5,7 +5,7 @@
.\" This file may be copied under the terms of the GNU Public License.
.\"
.\" Created Wed Sep 14 12:02:12 2001, Andreas Dilger
.TH LIBBLKID 3 "May 2009" "util-linux-ng"
.TH LIBBLKID 3 "May 2009" "util-linux"
.SH NAME
libblkid \- block device identification library
.SH SYNOPSIS
@ -84,8 +84,8 @@ caches data extracted from each recognized block device
configuration file
.SH AVAILABILITY
.B libblkid
is part of the util-linux-ng package since version 2.15 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH COPYING
.B libblkid
is available under the terms of the GNU Library General Public License (LGPL),

View File

@ -39,7 +39,7 @@ local:
/*
* version(s) since util-linux-ng 2.15
* version(s) since util-linux 2.15
*/
BLKID_2.15 {
global:
@ -67,7 +67,7 @@ global:
} BLKID_1.0;
/*
* version(s) since util-linux-ng 2.17
* version(s) since util-linux 2.17
*/
BLKID_2.17 {
global:
@ -117,7 +117,7 @@ global:
} BLKID_2.15;
/*
* version(s) since util-linux-ng 2.18
* version(s) since util-linux 2.18
*/
BLKID_2.18 {
global:

View File

@ -22,8 +22,8 @@ The libmount library is used to parse /etc/fstab, /etc/mtab and
/proc/self/mountinfo files, manage the mtab file, evaluate mount options, etc.
</para>
<para>
The library is part of the util-linux-ng package since version 2.18 and is
available from ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The library is part of the util-linux package since version 2.18 and is
available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
</para>
</partintro>
</part>

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid \- DCE compatible Universally Unique Identifier library
.SH SYNOPSIS
@ -52,8 +52,8 @@ OSF DCE 1.1
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid_clear (3),
.BR uuid_compare (3),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_CLEAR 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_CLEAR 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_clear \- reset value of UUID variable to the NULL value
.SH SYNOPSIS
@ -48,8 +48,8 @@ to the NULL value.
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuid_compare (3),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_COMPARE 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_COMPARE 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_compare \- compare whether two UUIDs are the same
.SH SYNOPSIS
@ -54,8 +54,8 @@ greater than
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuid_clear (3),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_COPY 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_COPY 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_copy \- copy a UUID value
.SH SYNOPSIS
@ -50,8 +50,8 @@ The copied UUID is returned in the location pointed to by
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuid_clear (3),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_GENERATE 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_GENERATE 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_generate, uuid_generate_random, uuid_generate_time \- create a new unique UUID value
.SH SYNOPSIS
@ -90,8 +90,8 @@ OSF DCE 1.1
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuidgen (1),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_IS_NULL 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_IS_NULL 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_is_null \- compare the value of the UUID to the NULL value
.SH SYNOPSIS
@ -49,8 +49,8 @@ otherwise 0 is returned.
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuid_clear (3),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_PARSE 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_PARSE 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_parse \- convert an input UUID string into binary representation
.SH SYNOPSIS
@ -58,8 +58,8 @@ OSF DCE 1.1
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuid_clear (3),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_TIME 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_TIME 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_time \- extract the time at which the UUID was created
.SH SYNOPSIS
@ -61,8 +61,8 @@ the epoch, is also stored in the location pointed to by
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuid_clear (3),

View File

@ -29,7 +29,7 @@
.\" %End-Header%
.\"
.\" Created Wed Mar 10 17:42:12 1999, Andreas Dilger
.TH UUID_UNPARSE 3 "May 2009" "util-linux-ng" "Libuuid API"
.TH UUID_UNPARSE 3 "May 2009" "util-linux" "Libuuid API"
.SH NAME
uuid_unparse \- convert an UUID from binary representation to a string
.SH SYNOPSIS
@ -66,8 +66,8 @@ OSF DCE 1.1
Theodore Y. Ts'o
.SH AVAILABILITY
.B libuuid
is part of the util-linux-ng package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
is part of the util-linux package since version 2.15.1 and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH "SEE ALSO"
.BR uuid (3),
.BR uuid_clear (3),

View File

@ -22,8 +22,8 @@ prints things such as "i386", "i486", "i586", "alpha", "sparc",
.BR uname (1),
.BR uname (2)
.SH AVAILABILITY
The arch command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The arch command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.\"
.\" Details:
.\" arch prints the machine part of the system_utsname struct

View File

@ -37,5 +37,5 @@ file.
.SH AUTHOR
Peter Orbaek (poe@daimi.aau.dk)
.SH AVAILABILITY
The ctrlaltdel command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The ctrlaltdel command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -199,5 +199,5 @@ should prevent this, but does not.
.SH "SEE ALSO"
.BR setserial (8)
.SH AVAILABILITY
The cytune command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The cytune command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -66,5 +66,5 @@ have an effect.
.\" .SH AUTHOR
.\" Theodore Ts'o (tytso@athena.mit.edu)
.SH AVAILABILITY
The dmesg command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The dmesg command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -47,6 +47,6 @@ Karel Zak <kzak@redhat.com>
.BR posix_fallocate (3),
.BR truncate (1)
.SH AVAILABILITY
The fallocate command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The fallocate command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -109,5 +109,5 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
.SH "SEE ALSO"
.BR flock (2)
.SH AVAILABILITY
The flock command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The flock command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -70,6 +70,6 @@ must be supplied to
.SH SEE ALSO
.BR mount (8)
.SH AVAILABILITY
The fsfreeze command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The fsfreeze command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -80,5 +80,5 @@ Karel Zak <kzak@redhat.com>
.SH SEE ALSO
.BR mount (8)
.SH AVAILABILITY
The fstrim command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The fstrim command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -118,5 +118,5 @@ compatibility the previous syntax is still supported.
.BR shmget (2),
.BR ftok (3)
.SH AVAILABILITY
The ipcrm command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The ipcrm command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -80,5 +80,5 @@ options.
.SH AUTHOR
krishna balasubramanian (balasub@cis.ohio-state.edu)
.SH AVAILABILITY
The ipcs command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The ipcs command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -139,6 +139,6 @@ set and clear multiple bits.
Tilman Schmidt (tilman@imap.cc)
.fi
.SH AVAILABILITY
The ldattach command is part of the util-linux-ng package
The ldattach command is part of the util-linux package
and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -37,5 +37,5 @@ Cai Qian <qcai@redhat.com>
Karel Zak <kzak@redhat.com>
.fi
.SH AVAILABILITY
The lscpu command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The lscpu command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -63,5 +63,5 @@ exec chroot . sh -c 'umount /old_root; exec /sbin/init' \\
.BR pivot_root (2),
.BR umount (8)
.SH AVAILABILITY
The pivot_root command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The pivot_root command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -165,5 +165,5 @@ misleading information.
.fi
.SH AVAILABILITY
The readprofile command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The readprofile command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -146,5 +146,5 @@ The
command appeared in
.Bx 4.0 .
.Sh AVAILABILITY
The renice command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The renice command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.

View File

@ -132,8 +132,8 @@ The program was posted several times on LKML and other lists
before appearing in kernel commit message for Linux 2.6 in the GIT
commit 87ac84f42a7a580d0dd72ae31d6a5eb4bfe04c6d.
.SH AVAILABILITY
The rtcwake command is part of the util-linux-ng package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
The rtcwake command is part of the util-linux package and is available from
ftp://ftp.kernel.org/pub/linux/utils/util-linux/.
.SH AUTHOR
The program was written by David Brownell <dbrownell@users.sourceforge.net>
and improved by Bernhard Walle <bwalle@suse.de>.

Some files were not shown because too many files have changed in this diff Show More