19 Apr 23:20
coreutils-6.11 released
From: Jim Meyering <jim <at> meyering.net>
Subject: coreutils-6.11 released
Newsgroups: gmane.org.fsf.announce
Date: 2008-04-19 21:21:14 GMT
Subject: coreutils-6.11 released
Newsgroups: gmane.org.fsf.announce
Date: 2008-04-19 21:21:14 GMT
Coreutils version 6.11 has been released. This is a stable release.
Since 6.10, there have been 200 change sets in coreutils proper and almost
300 in gnulib (most of the files in coreutils/{lib,m4} come from gnulib).
Thanks to everyone who has contributed to this release.
This time, a trio from Stanford, Cristian Cadar, Daniel Dunbar and
Dawson Engler deserve special thanks for discovering an amazing number
of bugs (usually segfault-inducing), one in each of the following tools:
pr, md5sum (also affecting sha*sum), mknod, mkfifo, mkdir, paste and ptx.
For a summary of changes and contributors, see:
http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=shortlog;h=v6.11
or run this command from a git-cloned coreutils directory:
git shortlog v6.10..v6.11
To summarize the gnulib-related changes, you can run this command
From a git-cloned gnulib directory:
git shortlog 16c6ed60fb53998428f510f649ee6b57fea30f35\
..2e8956774250d3f5636898fea193c5abaf041d08
Here are the compressed sources:
ftp://ftp.gnu.org/gnu/coreutils/coreutils-6.11.tar.gz (8.8MB)
ftp://ftp.gnu.org/gnu/coreutils/coreutils-6.11.tar.lzma (3.6MB)
Here are the GPG detached signatures[*]:
ftp://ftp.gnu.org/gnu/coreutils/coreutils-6.11.tar.gz.sig
ftp://ftp.gnu.org/gnu/coreutils/coreutils-6.11.tar.lzma.sig
For more information on LZMA compression, see <http://tukaani.org/lzma/>.
(Continue reading)
:
>
> - how can I detect (in Perl or Bourne shell) whether the
> current system is AFS-enabled?
there is currently no single method. at one point, afs patched the
syscall table to present the necessary ioctl but now it creates a
a special /proc entry, /proc/fs/openafs/afs_ioctl, when the syscall
table cant be patched.
> - is there always exactly one PAG?
currently, a process can only belong to a single PAG.
and ealier someone asked (perhaps Didi <ribalba <at> gmail.com>):
> If someone can provide code to determine efficiently
> whether a nameless GID is a PAG then we can probably
> make everyone happy. If that happens, I'll need to
> know if there's a standard or accepted mapping from
> GID to PAG group name. Pointers to unencumbered code
> would be welcome.
with the keyring code, PAG's are no longer exposed to the user
as a number. however, in the older group based PAG support, the
PAG id is encoded as:
('A' << 24) + (pagCounter++ & 0xffffff));
RSS Feed