From b22550fa1506e7cf4101bacc694842678908aaf2 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 7 Dec 2006 00:26:26 +0100 Subject: [PATCH] Imported from util-linux-2.12k tarball. --- HISTORY | 13 +- MCONFIG | 18 +- VERSION | 2 +- configure | 26 +- disk-utils/fsck.cramfs.c | 10 + disk-utils/mkfs.cramfs.c | 4 +- fdisk/cfdisk.c | 2 +- fdisk/fdisk.c | 4 +- fdisk/sfdisk.c | 4 +- getopt/getopt.1 | 4 +- login-utils/login.1 | 4 +- mount/lomount.c | 10 +- mount/mount.8 | 30 +- mount/mount.c | 2 +- mount/mount_by_label.c | 6 +- mount/swap.configure | 2 +- mount/swapon.c | 10 - mount/umount.c | 2 +- po/ca.po | 454 +++++++++++---------- po/cat-id-tbl.c | 861 ++++++++++++++++++++------------------- po/cs.po | 452 ++++++++++---------- po/da.po | 454 +++++++++++---------- po/de.po | 816 +++++++++++++++++++------------------ po/es.po | 643 +++++++++++++++-------------- po/et.po | 452 ++++++++++---------- po/fi.po | 454 +++++++++++---------- po/fr.po | 634 ++++++++++++++-------------- po/it.po | 452 ++++++++++---------- po/ja.po | 452 ++++++++++---------- po/nl.po | 454 +++++++++++---------- po/pt_BR.po | 452 ++++++++++---------- po/sl.po | 452 ++++++++++---------- po/sv.po | 636 +++++++++++++++-------------- po/tr.po | 663 +++++++++++++++--------------- po/uk.po | 454 +++++++++++---------- rescuept/rescuept.c | 5 +- sys-utils/rdev.8 | 19 +- sys-utils/readprofile.c | 2 +- 38 files changed, 4847 insertions(+), 4567 deletions(-) diff --git a/HISTORY b/HISTORY index f933515b..a3f32b42 100644 --- a/HISTORY +++ b/HISTORY @@ -1,3 +1,14 @@ +util-linux 2.12k + +* cfdisk: fixed a signed character bug causing problems for Spanish users +* configure, MCONFIG: detect gcc 3.4.0 and use -mtune option (Matthew Burgess) +* configure: do not run ./conftest (for cross compilation) (NIIBE Yutaka) +* fsck.cramfs: try to get correct PAGE_CACHE_SIZE +* losetup: try to give better error messages +* readprofile: default map file is /boot/System.map +* rdev.8: added historical info on ramdisk +* New French, Spanish, Swedish and Turkish messages + util-linux 2.12j * cal: highlight today (Pádraig Brady) @@ -10,7 +21,7 @@ util-linux 2.12j * swapon: let swapon -a skip the swapfiles marked "noauto" (Dale R. Worley) * umount: fix problem with empty mtab (Bryan Kadzban) * umount: use special umount program if it exists (Ram Pai) -* New Danish messages +* New Danish and French messages util-linux 2.12i diff --git a/MCONFIG b/MCONFIG index beb40207..8e8ab254 100644 --- a/MCONFIG +++ b/MCONFIG @@ -117,14 +117,20 @@ SILENT_PG=no DISABLE_NLS=no # Different optimizations for different cpus. -# gcc 3.0 likes options -mcpu=i486 instead of -m486 +# Before gcc 2.8.0 only -m486 +# gcc 3.0 only likes -mcpu=i486 +# gcc 3.4 only likes -mtune=i486 ifeq "$(ARCH)" "intel" - ifeq "$(HAVE_OLD_GCC)" "yes" - CPUHEAD=-m + ifeq "$(HAVE_NEW_GCC)" "yes" + # 3.4.0 and later + CPUHEAD=-mtune=i else - CPUHEAD=-mcpu=i -# it is rumoured that recent gcc versions want -march=i -# must add the right test + ifeq "$(HAVE_OLD_GCC)" "yes" + # before 3.0 + CPUHEAD=-m + else + CPUHEAD=-mcpu=i + endif endif ifeq "$(CPU)" "i386" CPUTAIL=386 diff --git a/VERSION b/VERSION index d32f3099..5a43192d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.12j +2.12k diff --git a/configure b/configure index e91ac837..cb7fa3ee 100755 --- a/configure +++ b/configure @@ -74,15 +74,31 @@ export COMPILE rm -f conftest.c conftest # -# Old gcc wants options like -m486, but gcc 3.0 says -# `-m486' is deprecated. Use `-march=i486' or `-mcpu=i486' instead. +# Old gcc (e.g. 2.5.8 and 2.7.2.3) wants options like -m486, and these +# are still accepted by 2.95.3 and RedHat's 2.96, but gcc 3.0 says: +# `-m486' is deprecated. Use `-march=i486' or `-mcpu=i486' instead. +# +# Later gcc (e.g. 2.95.3 and 3.3.4) wants options like -mcpu=i486 +# and has never heard about -mtune=i486. +# +# I am told that gcc >= 3.4.0 wants options like -mtune=i486 +# -mtune gives the CPU to optimize for +# -march gives the architecture +# +# Various versions of gcc react to unknown options with strings +# containing "Invalid option" or "invalid option". # echo " int main(){ exit(0); } " > conftest.c -gccout=`$CC $CFLAGS -m386 conftest.c -o conftest 2>&1 | grep "march="` +gccout=`$CC $CFLAGS -mtune=i486 conftest.c -o conftest 2>&1 | grep "nvalid"` if test -z "$gccout"; then - echo "HAVE_OLD_GCC=yes" >> make_include + echo "HAVE_NEW_GCC=yes" >> make_include +else + gccout=`$CC $CFLAGS -m386 conftest.c -o conftest 2>&1 | grep "march="` + if test -z "$gccout"; then + echo "HAVE_OLD_GCC=yes" >> make_include + fi fi rm -f conftest conftest.c @@ -583,7 +599,7 @@ int main () { } " > conftest.c eval $compile -if test -s conftest && ./conftest < conftest.c > /dev/null 2>/dev/null; then +if test -s conftest; then echo "#define ENABLE_WIDECHAR" >> defines.h echo "You have wide character support" else diff --git a/disk-utils/fsck.cramfs.c b/disk-utils/fsck.cramfs.c index 3485bdc7..83bf00ac 100644 --- a/disk-utils/fsck.cramfs.c +++ b/disk-utils/fsck.cramfs.c @@ -75,7 +75,17 @@ unsigned long end_data = 0; /* end of the data */ static uid_t euid; /* effective UID */ #define PAD_SIZE 512 + +#include +#ifdef PAGE_SIZE +#define PAGE_CACHE_SIZE ((int) PAGE_SIZE) +#elif defined __ia64__ +#define PAGE_CACHE_SIZE (16384) +#elif defined __alpha__ +#define PAGE_CACHE_SIZE (8192) +#else #define PAGE_CACHE_SIZE (4096) +#endif /* Guarantee access to at least 8kB at a time */ #define ROMBUFFER_BITS 13 diff --git a/disk-utils/mkfs.cramfs.c b/disk-utils/mkfs.cramfs.c index 32755715..440b043d 100644 --- a/disk-utils/mkfs.cramfs.c +++ b/disk-utils/mkfs.cramfs.c @@ -121,8 +121,8 @@ usage(int status) { FILE *stream = status ? stderr : stdout; fprintf(stream, - _("usage: %s [-v] [-b blksz] [-e edition] [-i file] [-n name] " - "dirname outfile\n" + _("usage: %s [-h] [-v] [-b blksz] [-e edition] [-i file] " + "[-n name] dirname outfile\n" " -h print this help\n" " -v be verbose\n" " -E make all warnings errors " diff --git a/fdisk/cfdisk.c b/fdisk/cfdisk.c index d4528100..149ee761 100644 --- a/fdisk/cfdisk.c +++ b/fdisk/cfdisk.c @@ -414,7 +414,7 @@ fdexit(int ret) { static int get_string(char *str, int len, char *def) { - char c; + unsigned char c; int i = 0; int x, y; int use_def = FALSE; diff --git a/fdisk/fdisk.c b/fdisk/fdisk.c index b3b61be6..a8385420 100644 --- a/fdisk/fdisk.c +++ b/fdisk/fdisk.c @@ -644,7 +644,9 @@ read_extended(int ext) { struct pte *pre = &ptes[partitions-1]; fprintf(stderr, - _("Warning: omitting partitions after %d\n"), + _("Warning: omitting partitions after #%d.\n" + "They will be deleted " + "if you save this partition table.\n"), partitions); clear_partition(pre->ext_pointer); pre->changed = 1; diff --git a/fdisk/sfdisk.c b/fdisk/sfdisk.c index 7cebc33b..8122d753 100644 --- a/fdisk/sfdisk.c +++ b/fdisk/sfdisk.c @@ -2298,7 +2298,9 @@ read_input(char *dev, int interactive, struct disk_desc *z) { */ static void version(void) { - printf("%s %s %s (aeb@cwi.nl, %s)\n", PROGNAME, _("version"), VERSION, DATE); + printf("%s %s %s (aeb@cwi.nl, %s) from util-linux-" + UTIL_LINUX_VERSION "\n", + PROGNAME, _("version"), VERSION, DATE); } static void diff --git a/getopt/getopt.1 b/getopt/getopt.1 index 202884b1..65241e32 100644 --- a/getopt/getopt.1 +++ b/getopt/getopt.1 @@ -33,7 +33,7 @@ parsed in the .BR SYNOPSIS). The second part will start at the first non\-option parameter -that is not an option argument, or after the first occurence of +that is not an option argument, or after the first occurrence of .RB ` \-\- '. If no .RB ` \-o ' @@ -284,7 +284,7 @@ Only if the first character of the short options string was a non\-option parameter output is generated at the place they are found in the input (this is not supported if the first format of the .B SYNOPSIS -is used; in that case all preceding occurences of +is used; in that case all preceding occurrences of .RB ` \- ' and .RB ` + ' diff --git a/login-utils/login.1 b/login-utils/login.1 index 17b26933..29590f94 100644 --- a/login-utils/login.1 +++ b/login-utils/login.1 @@ -65,9 +65,9 @@ exists (other environment variables are preserved if the .B \-p option is used). Then the HOME, PATH, SHELL, TERM, MAIL, and LOGNAME environment variables are set. PATH defaults to -.I /usr/local/bin:/bin:/usr/bin:. +.I /usr/local/bin:/bin:/usr/bin for normal users, and to -.I /sbin:/bin:/usr/sbin:/usr/bin +.I /usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin for root. Last, if this is not a "quiet" login, the message of the day is printed and the file with the user's name in .I /usr/spool/mail diff --git a/mount/lomount.c b/mount/lomount.c index b7ac356e..002f3420 100644 --- a/mount/lomount.c +++ b/mount/lomount.c @@ -148,7 +148,7 @@ find_unused_loop_device (void) { So, we just try /dev/loop[0-7]. */ char dev[20]; char *loop_formats[] = { "/dev/loop%d", "/dev/loop/%d" }; - int i, j, fd, somedev = 0, someloop = 0; + int i, j, fd, somedev = 0, someloop = 0, permission = 0; struct stat statbuf; struct loop_info loopinfo; @@ -166,7 +166,9 @@ find_unused_loop_device (void) { return xstrdup(dev);/* probably free */ } close (fd); - } + } else if (errno == EACCES) + permission++; + continue;/* continue trying as long as devices exist */ } break; @@ -175,6 +177,8 @@ find_unused_loop_device (void) { if (!somedev) error(_("%s: could not find any device /dev/loop#"), progname); + else if (!someloop && permission) + error(_("%s: no permission to look at /dev/loop#"), progname); else if (!someloop) error(_( "%s: Could not find any loop device. Maybe this kernel " @@ -396,7 +400,7 @@ find_unused_loop_device (void) { #include int verbose = 0; -static char *progname; +char *progname; static void usage(void) { diff --git a/mount/mount.8 b/mount/mount.8 index f6bf2b43..b177feb6 100644 --- a/mount/mount.8 +++ b/mount/mount.8 @@ -119,7 +119,10 @@ a second place using .B "mount --rbind olddir newdir" .RE .\" available since Linux 2.4.11. -The mount options are not changed. + +Note that the filesystem mount options will remain the same as those +on the original mount point, and cannot be changed by passing the -o +option along with --bind/--rbind. Since Linux 2.5.1 it is possible to atomically move a mounted tree to another place. The call is @@ -758,6 +761,10 @@ Since Linux 2.5.46, for most mount options the default is determined by the filesystem superblock. Set them with .BR tune2fs (8). .TP +.BR acl " / " noacl +Support POSIX Access Control Lists (or not). +.\" requires CONFIG_EXT2_FS_POSIX_ACL +.TP .BR bsddf " / " minixdf Set the behaviour for the .I statfs @@ -826,6 +833,9 @@ the directory has the setgid bit set, in which case it takes the gid from the parent directory, and also gets the setgid bit set if it is a directory itself. .TP +.BR grpquota " / " noquota " / " quota " / " usrquota +These options are accepted but ignored. +.TP .BR nobh Do not attach buffer_heads to file pagecache. (Since 2.5.49.) .TP @@ -864,13 +874,6 @@ block 32768 on a filesystem with 4k blocks, use "sb=131072". .BR user_xattr " / " nouser_xattr Support "user." extended attributes (or not). .\" requires CONFIG_EXT2_FS_XATTR -.TP -.BR acl " / " noacl -Support POSIX Access Control Lists (or not). -.\" requires CONFIG_EXT2_FS_POSIX_ACL -.TP -.BR grpquota " / " noquota " / " quota " / " usrquota -These options are accepted but ignored. .SH "Mount options for ext3" @@ -1828,17 +1831,22 @@ mount failure some mount succeeded .SH FILES +.TP 18n .I /etc/fstab file system table -.br +.TP .I /etc/mtab table of mounted file systems -.br +.TP .I /etc/mtab~ lock file -.br +.TP .I /etc/mtab.tmp temporary file +.TP +.I /etc/filesystems +a list of filesystem types to try + .SH "SEE ALSO" .BR mount (2), .BR umount (2), diff --git a/mount/mount.c b/mount/mount.c index f598e8f8..e911133b 100644 --- a/mount/mount.c +++ b/mount/mount.c @@ -1464,7 +1464,7 @@ main(int argc, char *argv[]) { if ((p = strrchr(progname, '/')) != NULL) progname = p+1; - umask(033); + umask(022); /* People report that a mount called from init without console writes error messages to /etc/mtab diff --git a/mount/mount_by_label.c b/mount/mount_by_label.c index c804e203..cf79fb80 100644 --- a/mount/mount_by_label.c +++ b/mount/mount_by_label.c @@ -263,14 +263,14 @@ get_spec_by_x(int n, const char *t) { uuidcache_init(); uc = uuidCache; - while(uc) { + while (uc) { switch (n) { case UUID: if (!memcmp(t, uc->uuid, sizeof(uc->uuid))) return xstrdup(uc->device); break; case VOL: - if (!strcmp(t, uc->label)) + if (uc->label && !strcmp(t, uc->label)) return xstrdup(uc->device); break; } @@ -344,7 +344,7 @@ second_occurrence_of_vol_label (const char *label) { uuidcache_init(); for (last = uuidCache; last; last = last->next) { - if (!strcmp(last->label, label)) { + if (last->label && !strcmp(last->label, label)) { occurrences++; if (occurrences == 2) return last->device; diff --git a/mount/swap.configure b/mount/swap.configure index ebd67ced..42a8b1c0 100644 --- a/mount/swap.configure +++ b/mount/swap.configure @@ -23,7 +23,7 @@ echo $SWAPH >> conftest.c echo '#include main(){ exit(0); swapon("/dev/null", 0); }' >> conftest.c eval $compile -if test -s conftest && ./conftest 2>/dev/null; then +if test -s conftest; then echo "#define SWAPON_HAS_TWO_ARGS" > swapargs.h echo $PAGEH >> swapargs.h echo $SWAPH >> swapargs.h diff --git a/mount/swapon.c b/mount/swapon.c index f347c2c7..dce1bf87 100644 --- a/mount/swapon.c +++ b/mount/swapon.c @@ -1,16 +1,6 @@ /* * A swapon(8)/swapoff(8) for Linux 0.99. * swapon.c,v 1.1.1.1 1993/11/18 08:40:51 jrs Exp - * - * 1997-02-xx - * - added '-s' (summary option) - * 1999-02-22 Arkadiusz Mi¶kiewicz - * - added Native Language Support - * 1999-03-21 Arnaldo Carvalho de Melo - * - fixed strerr(errno) in gettext calls - * 2001-03-22 Erik Troan - * - added -e option for -a - * - -a shouldn't try to add swaps that are already enabled */ #include diff --git a/mount/umount.c b/mount/umount.c index bebc8ad7..34ca1084 100644 --- a/mount/umount.c +++ b/mount/umount.c @@ -655,7 +655,7 @@ main (int argc, char *argv[]) { if ((p = strrchr(progname, '/')) != NULL) progname = p+1; - umask(033); + umask(022); while ((c = getopt_long (argc, argv, "adfhlnrit:O:vV", longopts, NULL)) != -1) diff --git a/po/ca.po b/po/ca.po index 3216127b..1156a0e0 100644 --- a/po/ca.po +++ b/po/ca.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: util-linux 2.12\n" -"POT-Creation-Date: 2004-12-05 20:08+0100\n" +"POT-Creation-Date: 2004-12-13 21:53+0100\n" "PO-Revision-Date: 2003-08-01 10:59+0200\n" "Last-Translator: Antoni Bella Perez \n" "Language-Team: Catalan \n" @@ -186,7 +186,7 @@ msgstr "Doble densitat" msgid "Single" msgstr "Densitat simple" -#: disk-utils/fsck.cramfs.c:98 +#: disk-utils/fsck.cramfs.c:108 #, c-format msgid "" "usage: %s [-hv] [-x dir] file\n" @@ -201,99 +201,99 @@ msgstr "" " -v mostra més missatges\n" " fitxer fitxer a comprovar\n" -#: disk-utils/fsck.cramfs.c:191 +#: disk-utils/fsck.cramfs.c:201 #, c-format msgid "%s: error %d while decompressing! %p(%d)\n" msgstr "%s: Error %d al descomprimir! %p(%d)\n" -#: disk-utils/fsck.cramfs.c:243 +#: disk-utils/fsck.cramfs.c:253 #, c-format msgid "%s: size error in symlink `%s'\n" msgstr "%s: Error en la mida de l'enllaç simbòlic `%s'\n" -#: disk-utils/fsck.cramfs.c:258 disk-utils/fsck.cramfs.c:328 +#: disk-utils/fsck.cramfs.c:268 disk-utils/fsck.cramfs.c:338 #, c-format msgid " uncompressing block at %ld to %ld (%ld)\n" msgstr " descomprimint el bloc en %ld a %ld (%ld)\n" -#: disk-utils/fsck.cramfs.c:287 +#: disk-utils/fsck.cramfs.c:297 #, c-format msgid "%s: bogus mode on `%s' (%o)\n" msgstr "%s: Mode fals en `%s' (%o)\n" -#: disk-utils/fsck.cramfs.c:319 +#: disk-utils/fsck.cramfs.c:329 #, c-format msgid " hole at %ld (%d)\n" msgstr " buit en %ld (%d)\n" -#: disk-utils/fsck.cramfs.c:337 +#: disk-utils/fsck.cramfs.c:347 #, c-format msgid "%s: Non-block (%ld) bytes\n" msgstr "%s: No bloc (%ld) octets\n" -#: disk-utils/fsck.cramfs.c:343 +#: disk-utils/fsck.cramfs.c:353 #, c-format msgid "%s: Non-size (%ld vs %ld) bytes\n" msgstr "%s: No mida (%ld vs %ld) octets\n" -#: disk-utils/fsck.cramfs.c:392 +#: disk-utils/fsck.cramfs.c:402 #, c-format msgid "%s: invalid cramfs--bad path length\n" msgstr "%s: cramfs no vàlid, longitud de la ruta errònia\n" -#: disk-utils/fsck.cramfs.c:472 +#: disk-utils/fsck.cramfs.c:482 #, c-format msgid "%s: compiled without -x support\n" msgstr "%s: Compilat sense suport per a -x\n" -#: disk-utils/fsck.cramfs.c:498 +#: disk-utils/fsck.cramfs.c:508 #, c-format msgid "%s: warning--unable to determine filesystem size \n" msgstr "%s: Atenció, no es pot determinar la mida del sistema de fitxers \n" -#: disk-utils/fsck.cramfs.c:508 +#: disk-utils/fsck.cramfs.c:518 #, c-format msgid "%s is not a block device or file\n" msgstr "%s no és un dispositiu de bloc o un fitxer\n" -#: disk-utils/fsck.cramfs.c:514 disk-utils/fsck.cramfs.c:549 +#: disk-utils/fsck.cramfs.c:524 disk-utils/fsck.cramfs.c:559 #, c-format msgid "%s: invalid cramfs--file length too short\n" msgstr "%s: cramfs no vàlid, longitud del fitxer massa curta\n" -#: disk-utils/fsck.cramfs.c:541 +#: disk-utils/fsck.cramfs.c:551 #, c-format msgid "%s: invalid cramfs--wrong magic\n" msgstr "%s: cramfs no vàlid, màgia errònia\n" -#: disk-utils/fsck.cramfs.c:554 +#: disk-utils/fsck.cramfs.c:564 #, c-format msgid "%s: warning--file length too long, padded image?\n" msgstr "%s: Atenció; longitud del fitxer massa llarga, imatge desplaçada?\n" -#: disk-utils/fsck.cramfs.c:564 +#: disk-utils/fsck.cramfs.c:574 #, c-format msgid "%s: invalid cramfs--crc error\n" msgstr "%s: cramfs no vàlid, error del crc\n" -#: disk-utils/fsck.cramfs.c:570 +#: disk-utils/fsck.cramfs.c:580 #, c-format msgid "%s: warning--old cramfs image, no CRC\n" msgstr "%s: Atenció; imatge cramfs antiga, no és CRC\n" -#: disk-utils/fsck.cramfs.c:592 +#: disk-utils/fsck.cramfs.c:602 #, c-format msgid "%s: invalid cramfs--bad superblock\n" msgstr "%s: cramfs no vàlid, superbloc dolent\n" -#: disk-utils/fsck.cramfs.c:608 +#: disk-utils/fsck.cramfs.c:618 #, c-format msgid "%s: invalid cramfs--directory data end (%ld) != file data start (%ld)\n" msgstr "" "%s: cramfs no vàlid, el final de les dades als directoris (%ld)\n" "és diferent del començament de les dades dels fitxers (%ld)\n" -#: disk-utils/fsck.cramfs.c:616 +#: disk-utils/fsck.cramfs.c:626 #, c-format msgid "%s: invalid cramfs--invalid file data offset\n" msgstr "%s: cramfs no vàlid, desplaçament no vàlid de les dades dels fitxers\n" @@ -766,7 +766,7 @@ msgstr "masses ínodes; el màxim és de 512" msgid "not enough space, need at least %lu blocks" msgstr "no hi ha prou espai, com a mínim es necessiten %lu blocs" -#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2224 +#: disk-utils/mkfs.bfs.c:228 fdisk/fdisk.c:2226 #, c-format msgid "Device: %s\n" msgstr "Dispositiu: %s\n" @@ -852,9 +852,10 @@ msgid "mkfs version %s (%s)\n" msgstr "mkfs versió %s (%s)\n" #: disk-utils/mkfs.cramfs.c:124 -#, c-format +#, fuzzy, c-format msgid "" -"usage: %s [-v] [-b blksz] [-e edition] [-i file] [-n name] dirname outfile\n" +"usage: %s [-h] [-v] [-b blksz] [-e edition] [-i file] [-n name] dirname " +"outfile\n" " -h print this help\n" " -v be verbose\n" " -E make all warnings errors (non-zero exit status)\n" @@ -1609,7 +1610,7 @@ msgstr " Lògica" #. odd flag on end #. type id #. type name -#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1433 fdisk/fdisk.c:1745 +#: fdisk/cfdisk.c:2010 fdisk/fdisk.c:1435 fdisk/fdisk.c:1747 #: fdisk/fdisksgilabel.c:237 fdisk/fdisksunlabel.c:689 fdisk/sfdisk.c:650 msgid "Unknown" msgstr "Desconegut" @@ -2394,11 +2395,11 @@ msgstr "Heu de definir els" msgid "heads" msgstr "capçals" -#: fdisk/fdisk.c:586 fdisk/fdisk.c:1255 fdisk/sfdisk.c:936 +#: fdisk/fdisk.c:586 fdisk/fdisk.c:1257 fdisk/sfdisk.c:936 msgid "sectors" msgstr "sectors" -#: fdisk/fdisk.c:588 fdisk/fdisk.c:1255 fdisk/fdiskbsdlabel.c:470 +#: fdisk/fdisk.c:588 fdisk/fdisk.c:1257 fdisk/fdiskbsdlabel.c:470 #: fdisk/sfdisk.c:936 msgid "cylinders" msgstr "cilindres" @@ -2441,22 +2442,24 @@ msgid "Bad offset in primary extended partition\n" msgstr "Desplaçament incorrecte en particions primàries esteses\n" #: fdisk/fdisk.c:647 -#, fuzzy, c-format -msgid "Warning: omitting partitions after %d\n" -msgstr "Atenció: S'estan suprimint les particions després de %d\n" +#, c-format +msgid "" +"Warning: omitting partitions after #%d.\n" +"They will be deleted if you save this partition table.\n" +msgstr "" -#: fdisk/fdisk.c:664 +#: fdisk/fdisk.c:666 #, c-format msgid "Warning: extra link pointer in partition table %d\n" msgstr "Atenció: Enllaç d'apuntador addicional en la taula de particions %d\n" -#: fdisk/fdisk.c:672 +#: fdisk/fdisk.c:674 #, c-format msgid "Warning: ignoring extra data in partition table %d\n" msgstr "" "Atenció: S'ignoren les dades addicionals en la taula de particions %d\n" -#: fdisk/fdisk.c:717 +#: fdisk/fdisk.c:719 msgid "" "Building a new DOS disklabel. Changes will remain in memory only,\n" "until you decide to write them. After that, of course, the previous\n" @@ -2468,16 +2471,16 @@ msgstr "" "d'aquesta operació, l'anterior contingut no podrà ser recuperat.\n" "\n" -#: fdisk/fdisk.c:761 +#: fdisk/fdisk.c:763 #, c-format msgid "Note: sector size is %d (not %d)\n" msgstr "Nota: La mida del sector és %d (no %d)\n" -#: fdisk/fdisk.c:918 +#: fdisk/fdisk.c:920 msgid "You will not be able to write the partition table.\n" msgstr "No podreu escriure la taula de particions.\n" -#: fdisk/fdisk.c:947 +#: fdisk/fdisk.c:949 msgid "" "This disk has both DOS and BSD magic.\n" "Give the 'b' command to go to BSD mode.\n" @@ -2485,7 +2488,7 @@ msgstr "" "Aquest disc té tanta màgia DOS com BSD.\n" "Empreu el comandament 'b' per anar al mode BSD.\n" -#: fdisk/fdisk.c:957 +#: fdisk/fdisk.c:959 msgid "" "Device contains neither a valid DOS partition table, nor Sun, SGI or OSF " "disklabel\n" @@ -2493,16 +2496,16 @@ msgstr "" "El dispositiu no conté una taula de particions DOS vàlida, així com tampoc " "una etiqueta de disc Sun, SGI o OSF\n" -#: fdisk/fdisk.c:974 +#: fdisk/fdisk.c:976 msgid "Internal error\n" msgstr "Error intern\n" -#: fdisk/fdisk.c:987 +#: fdisk/fdisk.c:989 #, c-format msgid "Ignoring extra extended partition %d\n" msgstr "S'ignorarà la partició estesa addicional %d\n" -#: fdisk/fdisk.c:999 +#: fdisk/fdisk.c:1001 #, c-format msgid "" "Warning: invalid flag 0x%04x of partition table %d will be corrected by w" @@ -2511,7 +2514,7 @@ msgstr "" "Atenció: Etiqueta 0x%04x no vàlida de la taula de particions %d serà " "corregida amb w(rite)\n" -#: fdisk/fdisk.c:1021 +#: fdisk/fdisk.c:1023 msgid "" "\n" "got EOF thrice - exiting..\n" @@ -2519,78 +2522,78 @@ msgstr "" "\n" "s'ha aconseguit un EOF tres vegades - sortint...\n" -#: fdisk/fdisk.c:1060 +#: fdisk/fdisk.c:1062 msgid "Hex code (type L to list codes): " msgstr "Codi hex. (escriviu L per a veure la llista de codis): " -#: fdisk/fdisk.c:1100 +#: fdisk/fdisk.c:1102 #, c-format msgid "%s (%u-%u, default %u): " msgstr "%s (%u-%u, valor per defecte %u): " -#: fdisk/fdisk.c:1167 +#: fdisk/fdisk.c:1169 #, c-format msgid "Using default value %u\n" msgstr "Usant el valor per defecte %u\n" -#: fdisk/fdisk.c:1171 +#: fdisk/fdisk.c:1173 msgid "Value out of range.\n" msgstr "El valor està fora del rang.\n" -#: fdisk/fdisk.c:1181 +#: fdisk/fdisk.c:1183 msgid "Partition number" msgstr "Nombre de partició" -#: fdisk/fdisk.c:1192 +#: fdisk/fdisk.c:1194 #, c-format msgid "Warning: partition %d has empty type\n" msgstr "Atenció: La partició %d és del tipus buit\n" -#: fdisk/fdisk.c:1214 fdisk/fdisk.c:1240 +#: fdisk/fdisk.c:1216 fdisk/fdisk.c:1242 #, c-format msgid "Selected partition %d\n" msgstr "S'ha seleccionat la partició %d\n" -#: fdisk/fdisk.c:1217 +#: fdisk/fdisk.c:1219 msgid "No partition is defined yet!\n" msgstr "No hi ha cap partició definida!\n" -#: fdisk/fdisk.c:1243 +#: fdisk/fdisk.c:1245 msgid "All primary partitions have been defined already!\n" msgstr "Ja s'han definit totes les particions primàries!\n" -#: fdisk/fdisk.c:1253 +#: fdisk/fdisk.c:1255 msgid "cylinder" msgstr "cilindre" -#: fdisk/fdisk.c:1253 +#: fdisk/fdisk.c:1255 msgid "sector" msgstr "sector" -#: fdisk/fdisk.c:1262 +#: fdisk/fdisk.c:1264 #, c-format msgid "Changing display/entry units to %s\n" msgstr "Canviant les unitats de visualització/entrada a %s\n" -#: fdisk/fdisk.c:1273 +#: fdisk/fdisk.c:1275 #, c-format msgid "WARNING: Partition %d is an extended partition\n" msgstr "ATENCIÓ: La partició %d és una partició estesa\n" -#: fdisk/fdisk.c:1284 +#: fdisk/fdisk.c:1286 msgid "DOS Compatibility flag is set\n" msgstr "L'etiqueta de compatibilitat amb DOS està establerta\n" -#: fdisk/fdisk.c:1288 +#: fdisk/fdisk.c:1290 msgid "DOS Compatibility flag is not set\n" msgstr "L'etiqueta de compatibilitat amb DOS no està establerta\n" -#: fdisk/fdisk.c:1388 +#: fdisk/fdisk.c:1390 #, c-format msgid "Partition %d does not exist yet!\n" msgstr "La partició %d encara no existeix!\n" -#: fdisk/fdisk.c:1393 +#: fdisk/fdisk.c:1395 msgid "" "Type 0 means free space to many systems\n" "(but not to Linux). Having partitions of\n" @@ -2602,7 +2605,7 @@ msgstr "" "tindre particions del tipus 0. Podeu suprimir-les\n" "amb el comandament `d'.\n" -#: fdisk/fdisk.c:1402 +#: fdisk/fdisk.c:1404 msgid "" "You cannot change a partition into an extended one or vice versa\n" "Delete it first.\n" @@ -2610,7 +2613,7 @@ msgstr "" "No podeu convertir una partició en estesa ni viceversa primer\n" "haureu d'esborrar-la.\n" -#: fdisk/fdisk.c:1411 +#: fdisk/fdisk.c:1413 msgid "" "Consider leaving partition 3 as Whole disk (5),\n" "as SunOS/Solaris expects it and even Linux likes it.\n" @@ -2621,7 +2624,7 @@ msgstr "" "Linux.\n" "\n" -#: fdisk/fdisk.c:1417 +#: fdisk/fdisk.c:1419 msgid "" "Consider leaving partition 9 as volume header (0),\n" "and partition 11 as entire volume (6)as IRIX expects it.\n" @@ -2632,52 +2635,52 @@ msgstr "" "espera.\n" "\n" -#: fdisk/fdisk.c:1430 +#: fdisk/fdisk.c:1432 #, c-format msgid "Changed system type of partition %d to %x (%s)\n" msgstr "S'ha canviat el tipus del sistema de la partició %d per %x (%s)\n" -#: fdisk/fdisk.c:1485 +#: fdisk/fdisk.c:1487 #, c-format msgid "Partition %d has different physical/logical beginnings (non-Linux?):\n" msgstr "La partició %d té diferents començaments físics/lògics (no Linux?):\n" -#: fdisk/fdisk.c:1487 fdisk/fdisk.c:1495 fdisk/fdisk.c:1504 fdisk/fdisk.c:1514 +#: fdisk/fdisk.c:1489 fdisk/fdisk.c:1497 fdisk/fdisk.c:1506 fdisk/fdisk.c:1516 #, c-format msgid " phys=(%d, %d, %d) " msgstr " físic=(%d, %d, %d) " -#: fdisk/fdisk.c:1488 fdisk/fdisk.c:1496 +#: fdisk/fdisk.c:1490 fdisk/fdisk.c:1498 #, c-format msgid "logical=(%d, %d, %d)\n" msgstr "lògic=(%d, %d, %d)\n" -#: fdisk/fdisk.c:1493 +#: fdisk/fdisk.c:1495 #, c-format msgid "Partition %d has different physical/logical endings:\n" msgstr "La partició %d té diferents finals físics/lògics:\n" -#: fdisk/fdisk.c:1502 +#: fdisk/fdisk.c:1504 #, c-format msgid "Partition %i does not start on cylinder boundary:\n" msgstr "La partició %i no comença en el límit del cilindre:\n" -#: fdisk/fdisk.c:1505 +#: fdisk/fdisk.c:1507 #, c-format msgid "should be (%d, %d, 1)\n" msgstr "ha de ser (%d, %d, 1)\n" -#: fdisk/fdisk.c:1511 +#: fdisk/fdisk.c:1513 #, c-format msgid "Partition %i does not end on cylinder boundary.\n" msgstr "La partició %i no acaba en un límit de cilindre.\n" -#: fdisk/fdisk.c:1515 +#: fdisk/fdisk.c:1517 #, c-format msgid "should be (%d, %d, %d)\n" msgstr "ha de ser (%d, %d, %d)\n" -#: fdisk/fdisk.c:1527 +#: fdisk/fdisk.c:1529 #, c-format msgid "" "\n" @@ -2686,7 +2689,7 @@ msgstr "" "\n" "Disc %s: %ld MiB, %lld octets\n" -#: fdisk/fdisk.c:1530 +#: fdisk/fdisk.c:1532 #, c-format msgid "" "\n" @@ -2695,17 +2698,17 @@ msgstr "" "\n" "Disc %s: %ld.%ld GiB, %lld octets\n" -#: fdisk/fdisk.c:1532 +#: fdisk/fdisk.c:1534 #, c-format msgid "%d heads, %d sectors/track, %d cylinders" msgstr "%d capçals, %d sectors/pista, %d cilindres" -#: fdisk/fdisk.c:1535 +#: fdisk/fdisk.c:1537 #, c-format msgid ", total %llu sectors" msgstr ", total %llu sectors" -#: fdisk/fdisk.c:1538 +#: fdisk/fdisk.c:1540 #, c-format msgid "" "Units = %s of %d * %d = %d bytes\n" @@ -2714,7 +2717,7 @@ msgstr "" "Unitats = %s de %d * %d = %d octets\n" "\n" -#: fdisk/fdisk.c:1646 +#: fdisk/fdisk.c:1648 msgid "" "Nothing to do. Ordering is correct already.\n" "\n" @@ -2722,23 +2725,23 @@ msgstr "" "Res a fer. L'ordre és correcte.\n" "\n" -#: fdisk/fdisk.c:1702 +#: fdisk/fdisk.c:1704 msgid "" "This doesn't look like a partition table\n" "Probably you selected the wrong device.\n" "\n" msgstr "" -#: fdisk/fdisk.c:1716 +#: fdisk/fdisk.c:1718 #, c-format msgid "%*s Boot Start End Blocks Id System\n" msgstr "%*s Arrenc. Comença Acaba Blocs Id Sistema\n" -#: fdisk/fdisk.c:1717 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674 +#: fdisk/fdisk.c:1719 fdisk/fdisksgilabel.c:220 fdisk/fdisksunlabel.c:674 msgid "Device" msgstr "Dispositiu" -#: fdisk/fdisk.c:1754 +#: fdisk/fdisk.c:1756 msgid "" "\n" "Partition table entries are not in disk order\n" @@ -2746,7 +2749,7 @@ msgstr "" "\n" "Les entrades en la taula de particions no estan en ordre al disc\n" -#: fdisk/fdisk.c:1764 +#: fdisk/fdisk.c:1766 #, c-format msgid "" "\n" @@ -2757,92 +2760,92 @@ msgstr "" "Disc %s: %d capçals, %d sectors, %d cilindres\n" "\n" -#: fdisk/fdisk.c:1766 +#: fdisk/fdisk.c:1768 msgid "Nr AF Hd Sec Cyl Hd Sec Cyl Start Size ID\n" msgstr "Núm IA Cab Sect Cil Cap Sect Cil Comença Mida ID\n" -#: fdisk/fdisk.c:1811 +#: fdisk/fdisk.c:1813 #, c-format msgid "Warning: partition %d contains sector 0\n" msgstr "Atenció: La partició %d conté el sector 0\n" -#: fdisk/fdisk.c:1814 +#: fdisk/fdisk.c:1816 #, c-format msgid "Partition %d: head %d greater than maximum %d\n" msgstr "Partició %d: El capçal %d supera el màxim %d\n" -#: fdisk/fdisk.c:1817 +#: fdisk/fdisk.c:1819 #, c-format msgid "Partition %d: sector %d greater than maximum %d\n" msgstr "Partició %d: El sector %d supera el màxim %d\n" -#: fdisk/fdisk.c:1820 +#: fdisk/fdisk.c:1822 #, c-format msgid "Partitions %d: cylinder %d greater than maximum %d\n" msgstr "Partició %d: El cilindre %d supera el màxim %d\n" -#: fdisk/fdisk.c:1824 +#: fdisk/fdisk.c:1826 #, c-format msgid "Partition %d: previous sectors %d disagrees with total %d\n" msgstr "Partició %d: Sectors anteriors %d difereixen del total %d\n" -#: fdisk/fdisk.c:1856 +#: fdisk/fdisk.c:1858 #, c-format msgid "Warning: bad start-of-data in partition %d\n" msgstr "Atenció: Inici de dades incorrecte en la partició %d\n" -#: fdisk/fdisk.c:1864 +#: fdisk/fdisk.c:1866 #, c-format msgid "Warning: partition %d overlaps partition %d.\n" msgstr "Atenció: La partició %d es solapa amb la partició %d.\n" -#: fdisk/fdisk.c:1884 +#: fdisk/fdisk.c:1886 #, c-format msgid "Warning: partition %d is empty\n" msgstr "Atenció: La partició %d està buida\n" -#: fdisk/fdisk.c:1889 +#: fdisk/fdisk.c:1891 #, c-format msgid "Logical partition %d not entirely in partition %d\n" msgstr "La partició lògica %d no està integrada en la partició %d\n" -#: fdisk/fdisk.c:1895 +#: fdisk/fdisk.c:1897 #, fuzzy, c-format msgid "Total allocated sectors %d greater than the maximum %lld\n" msgstr "El total de sectors assignats %d supera el màxim de %d\n" -#: fdisk/fdisk.c:1898 +#: fdisk/fdisk.c:1900 #, fuzzy, c-format msgid "%lld unallocated sectors\n" msgstr "%d sectors no assignats\n" -#: fdisk/fdisk.c:1913 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503 +#: fdisk/fdisk.c:1915 fdisk/fdisksgilabel.c:629 fdisk/fdisksunlabel.c:503 #, c-format msgid "Partition %d is already defined. Delete it before re-adding it.\n" msgstr "" "La partició %d ja està definida. Esborreu-la abans de tornar-la a afegir.\n" -#: fdisk/fdisk.c:1940 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647 +#: fdisk/fdisk.c:1942 fdisk/fdiskbsdlabel.c:284 fdisk/fdisksgilabel.c:647 #: fdisk/fdisksunlabel.c:518 #, c-format msgid "First %s" msgstr "Primer %s" -#: fdisk/fdisk.c:1955 fdisk/fdisksunlabel.c:559 +#: fdisk/fdisk.c:1957 fdisk/fdisksunlabel.c:559 #, c-format msgid "Sector %d is already allocated\n" msgstr "El sector %d ja està assignat\n" -#: fdisk/fdisk.c:1991 +#: fdisk/fdisk.c:1993 msgid "No free sectors available\n" msgstr "No hi ha cap sector lliure disponible\n" -#: fdisk/fdisk.c:2000 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570 +#: fdisk/fdisk.c:2002 fdisk/fdiskbsdlabel.c:291 fdisk/fdisksunlabel.c:570 #, c-format msgid "Last %s or +size or +sizeM or +sizeK" msgstr "Últim %s o +mida o +midaM o +midaK" -#: fdisk/fdisk.c:2065 +#: fdisk/fdisk.c:2067 msgid "" "\tSorry - this fdisk cannot handle AIX disk labels.\n" "\tIf you want to add DOS-type partitions, create\n" @@ -2854,25 +2857,25 @@ msgstr "" "\t particions DOS (Useu o).\n" "\tATENCIÓ: Això destruirà l'actual contingut del disc.\n" -#: fdisk/fdisk.c:2077 fdisk/fdiskbsdlabel.c:618 +#: fdisk/fdisk.c:2079 fdisk/fdiskbsdlabel.c:618 msgid "The maximum number of partitions has been created\n" msgstr "S'ha creat el màxim nombre de particions\n" -#: fdisk/fdisk.c:2085 +#: fdisk/fdisk.c:2087 msgid "You must delete some partition and add an extended partition first\n" msgstr "Primer heu de suprimir alguna partició i afegir-ne una d'estesa\n" -#: fdisk/fdisk.c:2088 +#: fdisk/fdisk.c:2090 #, fuzzy msgid "All logical partitions are in use\n" msgstr "les particions lògiques no estan en un ordre de disc" -#: fdisk/fdisk.c:2089 +#: fdisk/fdisk.c:2091 #, fuzzy msgid "Adding a primary partition\n" msgstr "Partició primària incorrecta" -#: fdisk/fdisk.c:2094 +#: fdisk/fdisk.c:2096 #, c-format msgid "" "Command action\n" @@ -2883,20 +2886,20 @@ msgstr "" "%s\n" " p Partició primària (1-4)\n" -#: fdisk/fdisk.c:2096 +#: fdisk/fdisk.c:2098 msgid "l logical (5 or over)" msgstr "l lògica (5 o superior)" -#: fdisk/fdisk.c:2096 +#: fdisk/fdisk.c:2098 msgid "e extended" msgstr "e estesa" -#: fdisk/fdisk.c:2115 +#: fdisk/fdisk.c:2117 #, c-format msgid "Invalid partition number for type `%c'\n" msgstr "Nombre de partició no vàlid per al tipus `%c'\n" -#: fdisk/fdisk.c:2151 +#: fdisk/fdisk.c:2153 msgid "" "The partition table has been altered!\n" "\n" @@ -2904,11 +2907,11 @@ msgstr "" "Ja s'ha modificat la taula de particions!\n" "\n" -#: fdisk/fdisk.c:2160 +#: fdisk/fdisk.c:2162 msgid "Calling ioctl() to re-read partition table.\n" msgstr "Cridant a ioctl() per a rellegir la taula de particions.\n" -#: fdisk/fdisk.c:2176 +#: fdisk/fdisk.c:2178 #, c-format msgid "" "\n" @@ -2921,7 +2924,7 @@ msgstr "" "El nucli encara usa l'antiga taula.\n" "La taula nova s'usarà després de reiniciar.\n" -#: fdisk/fdisk.c:2186 +#: fdisk/fdisk.c:2188 msgid "" "\n" "WARNING: If you have created or modified any DOS 6.x\n" @@ -2933,67 +2936,67 @@ msgstr "" "particions DOS 6.x, mireu la pàgina del manual del fdisk\n" "per a informació addicional.\n" -#: fdisk/fdisk.c:2193 +#: fdisk/fdisk.c:2195 msgid "Syncing disks.\n" msgstr "Sincronitzant els discs.\n" -#: fdisk/fdisk.c:2240 +#: fdisk/fdisk.c:2242 #, c-format msgid "Partition %d has no data area\n" msgstr "La partició %d no té cap àrea amb dades\n" -#: fdisk/fdisk.c:2245 +#: fdisk/fdisk.c:2247 msgid "New beginning of data" msgstr "Nou començament de dades" -#: fdisk/fdisk.c:2261 +#: fdisk/fdisk.c:2263 msgid "Expert command (m for help): " msgstr "Comandament expert (m per a l'ajuda): " -#: fdisk/fdisk.c:2274 +#: fdisk/fdisk.c:2276 msgid "Number of cylinders" msgstr "Nombre de cilindres" -#: fdisk/fdisk.c:2301 +#: fdisk/fdisk.c:2303 msgid "Number of heads" msgstr "Nombre de capçals" -#: fdisk/fdisk.c:2326 +#: fdisk/fdisk.c:2328 msgid "Number of sectors" msgstr "Nombre de sectors" -#: fdisk/fdisk.c:2329 +#: fdisk/fdisk.c:2331 msgid "Warning: setting sector offset for DOS compatiblity\n" msgstr "" "Atenció: Establint desplaçament del sector per a la compatibilitat amb DOS\n" -#: fdisk/fdisk.c:2401 +#: fdisk/fdisk.c:2403 #, c-format msgid "Disk %s doesn't contain a valid partition table\n" msgstr "El disc %s no conté una taula de particions vàlida\n" -#: fdisk/fdisk.c:2412 +#: fdisk/fdisk.c:2414 #, c-format msgid "Cannot open %s\n" msgstr "No es pot obrir %s\n" -#: fdisk/fdisk.c:2430 fdisk/sfdisk.c:2452 +#: fdisk/fdisk.c:2432 fdisk/sfdisk.c:2454 #, c-format msgid "cannot open %s\n" msgstr "no es pot obrir %s\n" -#: fdisk/fdisk.c:2450 +#: fdisk/fdisk.c:2452 #, c-format msgid "%c: unknown command\n" msgstr "%c: Comandament desconegut\n" -#: fdisk/fdisk.c:2518 +#: fdisk/fdisk.c:2520 msgid "This kernel finds the sector size itself - -b option ignored\n" msgstr "" "Aquest nucli cerca la mida del sector por si mateix; l'opció -b serà " "ignorada\n" -#: fdisk/fdisk.c:2522 +#: fdisk/fdisk.c:2524 msgid "" "Warning: the -b (set sector size) option should be used with one specified " "device\n" @@ -3002,18 +3005,18 @@ msgstr "" "dispositiu específic\n" #. OSF label, and no DOS label -#: fdisk/fdisk.c:2581 +#: fdisk/fdisk.c:2583 #, c-format msgid "Detected an OSF/1 disklabel on %s, entering disklabel mode.\n" msgstr "" "A l'entrar el mode d'etiqueta, s'ha detectat una etiqueta de disc OSF/1 en %" "s.\n" -#: fdisk/fdisk.c:2591 +#: fdisk/fdisk.c:2593 msgid "Command (m for help): " msgstr "Comandament (m per a l'ajuda): " -#: fdisk/fdisk.c:2607 +#: fdisk/fdisk.c:2609 #, c-format msgid "" "\n" @@ -3022,15 +3025,15 @@ msgstr "" "\n" "L'actual fitxer d'arrencada és: %s\n" -#: fdisk/fdisk.c:2609 +#: fdisk/fdisk.c:2611 msgid "Please enter the name of the new boot file: " msgstr "Si us plau entreu el nom del nou fitxer d'arrencada: " -#: fdisk/fdisk.c:2611 +#: fdisk/fdisk.c:2613 msgid "Boot file unchanged\n" msgstr "No s'ha modificat el fitxer d'arrencada\n" -#: fdisk/fdisk.c:2684 +#: fdisk/fdisk.c:2686 msgid "" "\n" "\tSorry, no experts menu for SGI partition tables available.\n" @@ -4889,48 +4892,48 @@ msgstr "" "Normalment sols necessitarieu especificar i (i potser " ").\n" -#: fdisk/sfdisk.c:2301 +#: fdisk/sfdisk.c:2303 msgid "version" msgstr "versió" -#: fdisk/sfdisk.c:2307 +#: fdisk/sfdisk.c:2309 #, c-format msgid "Usage: %s [options] device ...\n" msgstr "Ús: %s [opcions] dispositiu ...\n" -#: fdisk/sfdisk.c:2308 +#: fdisk/sfdisk.c:2310 msgid "device: something like /dev/hda or /dev/sda" msgstr "dispositiu: Semblant a /dev/hda o /dev/sda" -#: fdisk/sfdisk.c:2309 +#: fdisk/sfdisk.c:2311 msgid "useful options:" msgstr "opcions útils:" -#: fdisk/sfdisk.c:2310 +#: fdisk/sfdisk.c:2312 msgid " -s [or --show-size]: list size of a partition" msgstr " -s [o --show-size]: Mostra la mida d'una partició" -#: fdisk/sfdisk.c:2311 +#: fdisk/sfdisk.c:2313 msgid " -c [or --id]: print or change partition Id" msgstr "" " -c [o --id]: Imprimeix o canvia l'identificador de la partició" -#: fdisk/sfdisk.c:2312 +#: fdisk/sfdisk.c:2314 msgid " -l [or --list]: list partitions of each device" msgstr " -l [o --list]: Mostra les particions de cada dispositiu" -#: fdisk/sfdisk.c:2313 +#: fdisk/sfdisk.c:2315 msgid " -d [or --dump]: idem, but in a format suitable for later input" msgstr "" " -d [o --dump]: Igual, però amb un format adequat per l'entrada " "posterior" -#: fdisk/sfdisk.c:2314 +#: fdisk/sfdisk.c:2316 msgid " -i [or --increment]: number cylinders etc. from 1 instead of from 0" msgstr "" " -i [o --increment]: Nombre de cilindres, etc. des de 1 en comptes de 0" -#: fdisk/sfdisk.c:2315 +#: fdisk/sfdisk.c:2317 msgid "" " -uS, -uB, -uC, -uM: accept/report in units of sectors/blocks/cylinders/" "MB" @@ -4938,56 +4941,56 @@ msgstr "" " -uS, -uB, -uC, -uM: Accepta/reporta en unitats de sectors/blocs/" "cilindres/MB" -#: fdisk/sfdisk.c:2316 +#: fdisk/sfdisk.c:2318 msgid " -T [or --list-types]:list the known partition types" msgstr " -T [o --list-types]: Llista els tipus de particions conegudes" -#: fdisk/sfdisk.c:2317 +#: fdisk/sfdisk.c:2319 msgid " -D [or --DOS]: for DOS-compatibility: waste a little space" msgstr "" " -D [o --DOS]: Per compatibilitat amb DOS: Es perd una mica d'espai" -#: fdisk/sfdisk.c:2318 +#: fdisk/sfdisk.c:2320 msgid " -R [or --re-read]: make kernel reread partition table" msgstr "" " -R [o --re-read]: Fa que el nucli rellegeixi la taula de particions" -#: fdisk/sfdisk.c:2319 +#: fdisk/sfdisk.c:2321 msgid " -N# : change only the partition with number #" msgstr " -N# : Sols canvia la partició amb el número #" -#: fdisk/sfdisk.c:2320 +#: fdisk/sfdisk.c:2322 msgid " -n : do not actually write to disk" msgstr " -n : No escriu realment al disc" -#: fdisk/sfdisk.c:2321 +#: fdisk/sfdisk.c:2323 msgid "" " -O file : save the sectors that will be overwritten to file" msgstr "" " -O fitxer : Desa els sectors que es sobreescriuran en un fitxer" -#: fdisk/sfdisk.c:2322 +#: fdisk/sfdisk.c:2324 msgid " -I file : restore these sectors again" msgstr " -I fitxer: Restaura aquests sectors altra vegada" -#: fdisk/sfdisk.c:2323 +#: fdisk/sfdisk.c:2325 msgid " -v [or --version]: print version" msgstr " -v [o --version]: Imprimeix la versió" -#: fdisk/sfdisk.c:2324 +#: fdisk/sfdisk.c:2326 msgid " -? [or --help]: print this message" msgstr " -? [o --help]: Imprimeix aquest missatge" -#: fdisk/sfdisk.c:2325 +#: fdisk/sfdisk.c:2327 msgid "dangerous options:" msgstr "opcions perilloses:" -#: fdisk/sfdisk.c:2326 +#: fdisk/sfdisk.c:2328 msgid " -g [or --show-geometry]: print the kernel's idea of the geometry" msgstr "" " -g [o --show-geometry]: Imprimeix la idea del nucli de la geometria" -#: fdisk/sfdisk.c:2327 +#: fdisk/sfdisk.c:2329 msgid "" " -x [or --show-extended]: also list extended partitions on output\n" " or expect descriptors for them on input" @@ -4996,119 +4999,119 @@ msgstr "" "esteses\n" " o espera els seus descriptors en l'entrada" -#: fdisk/sfdisk.c:2329 +#: fdisk/sfdisk.c:2331 msgid "" " -L [or --Linux]: do not complain about things irrelevant for Linux" msgstr "" " -L [o --Linux]: No mostra avisos sobre aspectes irrellevants per " "a Linux" -#: fdisk/sfdisk.c:2330 +#: fdisk/sfdisk.c:2332 msgid " -q [or --quiet]: suppress warning messages" msgstr " -q [o --quiet]: Suprimeix els missatges d'advertència" -#: fdisk/sfdisk.c:2331 +#: fdisk/sfdisk.c:2333 msgid " You can override the detected geometry using:" msgstr " Podeu modificar la geometria detectada usant:" -#: fdisk/sfdisk.c:2332 +#: fdisk/sfdisk.c:2334 msgid " -C# [or --cylinders #]:set the number of cylinders to use" msgstr "" " -C# [o --cylinders #]: Estableix el nombre de cilindres que s'usaran" -#: fdisk/sfdisk.c:2333 +#: fdisk/sfdisk.c:2335 msgid " -H# [or --heads #]: set the number of heads to use" msgstr " -H# [o --heads #]: Estableix el nombre de capçals que s'usaran" -#: fdisk/sfdisk.c:2334 +#: fdisk/sfdisk.c:2336 msgid " -S# [or --sectors #]: set the number of sectors to use" msgstr " -S# [o --sectors #]: Estableix el nombre de sectors que s'usaran" -#: fdisk/sfdisk.c:2335 +#: fdisk/sfdisk.c:2337 msgid "You can disable all consistency checking with:" msgstr "Podeu desactivar tota comprovació de consistència amb:" -#: fdisk/sfdisk.c:2336 +#: fdisk/sfdisk.c:2338 msgid " -f [or --force]: do what I say, even if it is stupid" msgstr "" " -f [o --force]: Farà el que li digueu, encara que sigui estúpid" -#: fdisk/sfdisk.c:2342 +#: fdisk/sfdisk.c:2344 msgid "Usage:" msgstr "Ús:" -#: fdisk/sfdisk.c:2343 +#: fdisk/sfdisk.c:2345 #, c-format msgid "%s device\t\t list active partitions on device\n" msgstr "%s dispositiu\t\t enumera les particions actives del dispositiu\n" -#: fdisk/sfdisk.c:2344 +#: fdisk/sfdisk.c:2346 #, c-format msgid "%s device n1 n2 ... activate partitions n1 ..., inactivate the rest\n" msgstr "" "%s dispositiu n1 n2 ... activar particions n1 ..., desactivar la resta\n" -#: fdisk/sfdisk.c:2345 +#: fdisk/sfdisk.c:2347 #, c-format msgid "%s -An device\t activate partition n, inactivate the other ones\n" msgstr "%s -Un perifèric\t activa la partició n, desactiva la resta\n" -#: fdisk/sfdisk.c:2509 +#: fdisk/sfdisk.c:2511 msgid "no command?\n" msgstr "cap comandament?\n" -#: fdisk/sfdisk.c:2627 +#: fdisk/sfdisk.c:2629 #, fuzzy, c-format msgid "total: %llu blocks\n" msgstr "total: %d blocs\n" -#: fdisk/sfdisk.c:2664 +#: fdisk/sfdisk.c:2666 msgid "usage: sfdisk --print-id device partition-number\n" msgstr "ús: sfdisk --print-id dispositiu partició_número\n" -#: fdisk/sfdisk.c:2666 +#: fdisk/sfdisk.c:2668 msgid "usage: sfdisk --change-id device partition-number Id\n" msgstr "ús: sfdisk --change-id dispositiu número_partició Id\n" -#: fdisk/sfdisk.c:2668 +#: fdisk/sfdisk.c:2670 msgid "usage: sfdisk --id device partition-number [Id]\n" msgstr "ús: sfdisk --id dispositiu partició_número [Id]\n" -#: fdisk/sfdisk.c:2675 +#: fdisk/sfdisk.c:2677 msgid "can specify only one device (except with -l or -s)\n" msgstr "sols podeu especificar un dispositiu (excepte amb -l o -s)\n" -#: fdisk/sfdisk.c:2701 +#: fdisk/sfdisk.c:2703 #, c-format msgid "cannot open %s read-write\n" msgstr "no es pot obrir %s per a lectura-escriptura\n" -#: fdisk/sfdisk.c:2703 +#: fdisk/sfdisk.c:2705 #, c-format msgid "cannot open %s for reading\n" msgstr "no es pot obrir %s per a lectura\n" -#: fdisk/sfdisk.c:2728 +#: fdisk/sfdisk.c:2730 #, c-format msgid "%s: OK\n" msgstr "%s: Correcte\n" -#: fdisk/sfdisk.c:2745 +#: fdisk/sfdisk.c:2747 #, c-format msgid "%s: %ld cylinders, %ld heads, %ld sectors/track\n" msgstr "%s : %ld cilindres, %ld capçals, %ld sectors/pista\n" -#: fdisk/sfdisk.c:2762 +#: fdisk/sfdisk.c:2764 #, fuzzy, c-format msgid "Cannot get size of %s\n" msgstr "no es pot aconseguir la mida de %s" -#: fdisk/sfdisk.c:2840 +#: fdisk/sfdisk.c:2842 #, c-format msgid "bad active byte: 0x%x instead of 0x80\n" msgstr "octet actiu incorrecte: 0x%x en comptes de 0x80\n" -#: fdisk/sfdisk.c:2858 fdisk/sfdisk.c:2911 fdisk/sfdisk.c:2942 +#: fdisk/sfdisk.c:2860 fdisk/sfdisk.c:2913 fdisk/sfdisk.c:2944 msgid "" "Done\n" "\n" @@ -5116,7 +5119,7 @@ msgstr "" "Fet\n" "\n" -#: fdisk/sfdisk.c:2867 +#: fdisk/sfdisk.c:2869 #, c-format msgid "" "You have %d active primary partitions. This does not matter for LILO,\n" @@ -5125,35 +5128,35 @@ msgstr "" "Teniu %d particions primàries actives. Això no és important per al LILO,\n" "però el MBR del DOS sols pot arrencar discs amb una partició activa.\n" -#: fdisk/sfdisk.c:2881 +#: fdisk/sfdisk.c:2883 #, c-format msgid "partition %s has id %x and is not hidden\n" msgstr "la partició %s té l'identificador %x i no està oculta\n" -#: fdisk/sfdisk.c:2938 +#: fdisk/sfdisk.c:2940 #, c-format msgid "Bad Id %lx\n" msgstr "Identificador dolent %lx\n" -#: fdisk/sfdisk.c:2953 +#: fdisk/sfdisk.c:2955 msgid "This disk is currently in use.\n" msgstr "Aquest disc està actualment en ús.\n" -#: fdisk/sfdisk.c:2970 +#: fdisk/sfdisk.c:2972 #, c-format msgid "Fatal error: cannot find %s\n" msgstr "Error fatal: No es pot trobar %s\n" -#: fdisk/sfdisk.c:2973 +#: fdisk/sfdisk.c:2975 #, c-format msgid "Warning: %s is not a block device\n" msgstr "Atenció: %s no és un dispositiu de blocs\n" -#: fdisk/sfdisk.c:2979 +#: fdisk/sfdisk.c:2981 msgid "Checking that no-one is using this disk right now ...\n" msgstr "Comprovant que en aquest moment ningú estigui usant aquest disc...\n" -#: fdisk/sfdisk.c:2981 +#: fdisk/sfdisk.c:2983 msgid "" "\n" "This disk is currently in use - repartitioning is probably a bad idea.\n" @@ -5166,28 +5169,28 @@ msgstr "" "swapoff en totes les particions d'intercanvi del disc.\n" "Useu l'etiqueta --no-reread per a suprimir aquesta comprovació.\n" -#: fdisk/sfdisk.c:2985 +#: fdisk/sfdisk.c:2987 msgid "Use the --force flag to overrule all checks.\n" msgstr "Useu l'etiqueta --force per a obviar totes les comprovacions.\n" -#: fdisk/sfdisk.c:2989 +#: fdisk/sfdisk.c:2991 msgid "OK\n" msgstr "Correcte\n" -#: fdisk/sfdisk.c:2998 +#: fdisk/sfdisk.c:3000 msgid "Old situation:\n" msgstr "Antiga situació:\n" -#: fdisk/sfdisk.c:3002 +#: fdisk/sfdisk.c:3004 #, c-format msgid "Partition %d does not exist, cannot change it\n" msgstr "La partició %d no existeix; no es pot canviar\n" -#: fdisk/sfdisk.c:3010 +#: fdisk/sfdisk.c:3012 msgid "New situation:\n" msgstr "Nova situació:\n" -#: fdisk/sfdisk.c:3015 +#: fdisk/sfdisk.c:3017 msgid "" "I don't like these partitions - nothing changed.\n" "(If you really want this, use the --force option.)\n" @@ -5195,19 +5198,19 @@ msgstr "" "No veig aquestes particions adequades - no he canviat res.\n" "(Si realment desitgeu fer això, useu l'opció --force).\n" -#: fdisk/sfdisk.c:3018 +#: fdisk/sfdisk.c:3020 msgid "I don't like this - probably you should answer No\n" msgstr "No veig això adequat - probablement hagueu de respondre No\n" -#: fdisk/sfdisk.c:3023 +#: fdisk/sfdisk.c:3025 msgid "Are you satisfied with this? [ynq] " msgstr "Esteu satisfet amb això? [ynq] " -#: fdisk/sfdisk.c:3025 +#: fdisk/sfdisk.c:3027 msgid "Do you want to write this to disk? [ynq] " msgstr "Desitgeu escriure això al disc? [ynq] " -#: fdisk/sfdisk.c:3030 +#: fdisk/sfdisk.c:3032 msgid "" "\n" "sfdisk: premature end of input\n" @@ -5215,15 +5218,15 @@ msgstr "" "\n" "sfdisk: Final prematur de l'entrada\n" -#: fdisk/sfdisk.c:3032 +#: fdisk/sfdisk.c:3034 msgid "Quitting - nothing changed\n" msgstr "Sortint - no s'ha canviat res\n" -#: fdisk/sfdisk.c:3038 +#: fdisk/sfdisk.c:3040 msgid "Please answer one of y,n,q\n" msgstr "Si us plau responeu amb una: y,n,q\n" -#: fdisk/sfdisk.c:3046 +#: fdisk/sfdisk.c:3048 msgid "" "Successfully wrote the new partition table\n" "\n" @@ -5231,7 +5234,7 @@ msgstr "" "S'ha escrit correctament la nova taula de particions\n" "\n" -#: fdisk/sfdisk.c:3052 +#: fdisk/sfdisk.c:3054 msgid "" "If you created or changed a DOS partition, /dev/foo7, say, then use dd(1)\n" "to zero the first 512 bytes: dd if=/dev/zero of=/dev/foo7 bs=512 count=1\n" @@ -6217,8 +6220,8 @@ msgid "Password error." msgstr "Error de contrasenya." #: login-utils/chfn.c:203 login-utils/chsh.c:200 login-utils/login.c:774 -#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:293 -#: mount/lomount.c:296 +#: login-utils/newgrp.c:48 login-utils/simpleinit.c:338 mount/lomount.c:297 +#: mount/lomount.c:300 msgid "Password: " msgstr "Contrasenya: " @@ -7785,12 +7788,17 @@ msgstr ", tipus de xifrat %d\n" msgid "loop: can't get info on device %s: %s\n" msgstr "loop: No es pot obtindre informació sobre el dispositiu %s: %s\n" -#: mount/lomount.c:177 +#: mount/lomount.c:179 #, fuzzy, c-format msgid "%s: could not find any device /dev/loop#" msgstr "mount: No es pot trobar cap dispositiu /dev/loop#" -#: mount/lomount.c:180 +#: mount/lomount.c:181 +#, c-format +msgid "%s: no permission to look at /dev/loop#" +msgstr "" + +#: mount/lomount.c:184 #, fuzzy, c-format msgid "" "%s: Could not find any loop device. Maybe this kernel does not know\n" @@ -7799,36 +7807,36 @@ msgstr "" "mount: No es pot trobar cap dispositiu loop. Podria ser que el nucli no el\n" " reconeguès?. (Si es això, recompileu o feu `modprobe loop')." -#: mount/lomount.c:185 +#: mount/lomount.c:189 #, fuzzy, c-format msgid "%s: could not find any free loop device" msgstr "mount: No es pot trobar cap dispositiu loop lliure" -#: mount/lomount.c:283 +#: mount/lomount.c:287 msgid "Couldn't lock into memory, exiting.\n" msgstr "No es pot blocar en memòria, sortint.\n" -#: mount/lomount.c:337 +#: mount/lomount.c:341 #, fuzzy, c-format msgid "set_loop(%s,%s,%llu): success\n" msgstr "set_loop(%s,%s,%d): Correcte\n" -#: mount/lomount.c:348 +#: mount/lomount.c:352 #, c-format msgid "loop: can't delete device %s: %s\n" msgstr "loop: No es pot suprimir el dispositiu %s: %s\n" -#: mount/lomount.c:358 +#: mount/lomount.c:362 #, c-format msgid "del_loop(%s): success\n" msgstr "del_loop(%s): Correcte\n" -#: mount/lomount.c:366 +#: mount/lomount.c:370 msgid "This mount was compiled without loop support. Please recompile.\n" msgstr "" "Aquest mount s'ha compilat sense suport loop. Si us plau, recompileu-lo.\n" -#: mount/lomount.c:403 +#: mount/lomount.c:407 #, fuzzy, c-format msgid "" "usage:\n" @@ -7842,12 +7850,12 @@ msgstr "" " %s -d dispositiu_loop # elimina\n" " %s [ -e xifrat ] [ -o desplaça. ] disp_loop fitxer # configura\n" -#: mount/lomount.c:422 mount/sundries.c:30 mount/sundries.c:45 +#: mount/lomount.c:426 mount/sundries.c:30 mount/sundries.c:45 #: mount/sundries.c:248 msgid "not enough memory" msgstr "no hi ha prou memòria" -#: mount/lomount.c:537 +#: mount/lomount.c:541 msgid "No loop support was available at compile time. Please recompile.\n" msgstr "" "Quan es va compilar el suport loop no estava disponible. Si us plau, " @@ -8379,7 +8387,7 @@ msgstr "valor de retorn de nfs status desconegut: %d" msgid "bug in xstrndup call" msgstr "error en la crida xstrndup" -#: mount/swapon.c:64 +#: mount/swapon.c:54 #, c-format msgid "" "usage: %s [-hV]\n" @@ -8392,7 +8400,7 @@ msgstr "" " %s [-v] [-p prioritat] especial ...\n" " %s [-s]\n" -#: mount/swapon.c:74 +#: mount/swapon.c:64 #, c-format msgid "" "usage: %s [-hV]\n" @@ -8403,33 +8411,33 @@ msgstr "" " %s -a [-v]\n" " %s [-v] especial ...\n" -#: mount/swapon.c:178 mount/swapon.c:242 +#: mount/swapon.c:168 mount/swapon.c:232 #, c-format msgid "%s on %s\n" msgstr "%s en %s\n" -#: mount/swapon.c:182 +#: mount/swapon.c:172 #, c-format msgid "swapon: cannot stat %s: %s\n" msgstr "swapon: No es pot executar stat per a %s: %s\n" -#: mount/swapon.c:193 +#: mount/swapon.c:183 #, c-format msgid "swapon: warning: %s has insecure permissions %04o, %04o suggested\n" msgstr "" "swapon: Atenció: %s teniu els permisos %04o que no son segurs, es " "suggereixen %04o\n" -#: mount/swapon.c:205 +#: mount/swapon.c:195 #, c-format msgid "swapon: Skipping file %s - it appears to have holes.\n" msgstr "swapon: Saltant-se el fitxer %s - sembla que està a troços.\n" -#: mount/swapon.c:248 +#: mount/swapon.c:238 msgid "Not superuser.\n" msgstr "No és el superusuari.\n" -#: mount/swapon.c:312 mount/swapon.c:407 +#: mount/swapon.c:302 mount/swapon.c:397 #, c-format msgid "%s: cannot open %s: %s\n" msgstr "%s: No es pot obrir %s: %s\n" @@ -10010,6 +10018,10 @@ msgstr "Línia d'entrada massa llarga.\n" msgid "Out of memory when growing buffer.\n" msgstr "Memòria esgotada a l'augmentar la mida de la memòria temporal.\n" +#, fuzzy +#~ msgid "Warning: omitting partitions after %d\n" +#~ msgstr "Atenció: S'estan suprimint les particions després de %d\n" + #~ msgid "mount: fs type %s not supported by kernel" #~ msgstr "" #~ "mount: El tipus del sistema de fitxers %s no està suportat pel nucli" diff --git a/po/cat-id-tbl.c b/po/cat-id-tbl.c index 544e152a..c6738c93 100644 --- a/po/cat-id-tbl.c +++ b/po/cat-id-tbl.c @@ -1976,91 +1976,92 @@ Perhaps there is a stale lock file?\n", 1486}, {", encryption type %d\n", 1496}, {"loop: can't get info on device %s: %s\n", 1497}, {"%s: could not find any device /dev/loop#", 1498}, + {"%s: no permission to look at /dev/loop#", 1499}, {"\ %s: Could not find any loop device. Maybe this kernel does not know\n\ - about the loop device? (If so, recompile or `modprobe loop'.)", 1499}, - {"%s: could not find any free loop device", 1500}, - {"Couldn't lock into memory, exiting.\n", 1501}, - {"set_loop(%s,%s,%llu): success\n", 1502}, - {"loop: can't delete device %s: %s\n", 1503}, - {"del_loop(%s): success\n", 1504}, - {"This mount was compiled without loop support. Please recompile.\n", 1505}, + about the loop device? (If so, recompile or `modprobe loop'.)", 1500}, + {"%s: could not find any free loop device", 1501}, + {"Couldn't lock into memory, exiting.\n", 1502}, + {"set_loop(%s,%s,%llu): success\n", 1503}, + {"loop: can't delete device %s: %s\n", 1504}, + {"del_loop(%s): success\n", 1505}, + {"This mount was compiled without loop support. Please recompile.\n", 1506}, {"\ usage:\n\ %s loop_device # give info\n\ %s -d loop_device # delete\n\ %s -f # find unused\n\ - %s [-e encryption] [-o offset] {-f|loop_device} file # setup\n", 1506}, - {"not enough memory", 1507}, - {"No loop support was available at compile time. Please recompile.\n", 1508}, - {"[mntent]: warning: no final newline at the end of %s\n", 1509}, - {"[mntent]: line %d in %s is bad%s\n", 1510}, - {"; rest of file ignored", 1511}, - {"mount: according to mtab, %s is already mounted on %s", 1512}, - {"mount: according to mtab, %s is mounted on %s", 1513}, - {"mount: can't open %s for writing: %s", 1514}, - {"mount: error writing %s: %s", 1515}, - {"mount: error changing mode of %s: %s", 1516}, - {"%s looks like swapspace - not mounted", 1517}, - {"mount failed", 1518}, - {"mount: only root can mount %s on %s", 1519}, - {"mount: loop device specified twice", 1520}, - {"mount: type specified twice", 1521}, - {"mount: skipping the setup of a loop device\n", 1522}, - {"mount: going to use the loop device %s\n", 1523}, - {"mount: failed setting up loop device\n", 1524}, - {"mount: setup loop device successfully\n", 1525}, - {"mount: can't open %s: %s", 1526}, - {"mount: argument to -p or --pass-fd must be a number", 1527}, - {"mount: cannot open %s for setting speed", 1528}, - {"mount: cannot set speed: %s", 1529}, - {"mount: cannot fork: %s", 1530}, - {"mount: this version was compiled without support for the type `nfs'", 1531}, - {"mount: failed with nfs mount version 4, trying 3..\n", 1532}, - {"\ -mount: I could not determine the filesystem type, and none was specified", 1533}, - {"mount: you must specify the filesystem type", 1534}, - {"mount: mount failed", 1535}, - {"mount: mount point %s is not a directory", 1536}, - {"mount: permission denied", 1537}, - {"mount: must be superuser to use mount", 1538}, - {"mount: %s is busy", 1539}, - {"mount: proc already mounted", 1540}, - {"mount: %s already mounted or %s busy", 1541}, - {"mount: mount point %s does not exist", 1542}, - {"mount: mount point %s is a symbolic link to nowhere", 1543}, - {"mount: special device %s does not exist", 1544}, + %s [-e encryption] [-o offset] {-f|loop_device} file # setup\n", 1507}, + {"not enough memory", 1508}, + {"No loop support was available at compile time. Please recompile.\n", 1509}, + {"[mntent]: warning: no final newline at the end of %s\n", 1510}, + {"[mntent]: line %d in %s is bad%s\n", 1511}, + {"; rest of file ignored", 1512}, + {"mount: according to mtab, %s is already mounted on %s", 1513}, + {"mount: according to mtab, %s is mounted on %s", 1514}, + {"mount: can't open %s for writing: %s", 1515}, + {"mount: error writing %s: %s", 1516}, + {"mount: error changing mode of %s: %s", 1517}, + {"%s looks like swapspace - not mounted", 1518}, + {"mount failed", 1519}, + {"mount: only root can mount %s on %s", 1520}, + {"mount: loop device specified twice", 1521}, + {"mount: type specified twice", 1522}, + {"mount: skipping the setup of a loop device\n", 1523}, + {"mount: going to use the loop device %s\n", 1524}, + {"mount: failed setting up loop device\n", 1525}, + {"mount: setup loop device successfully\n", 1526}, + {"mount: can't open %s: %s", 1527}, + {"mount: argument to -p or --pass-fd must be a number", 1528}, + {"mount: cannot open %s for setting speed", 1529}, + {"mount: cannot set speed: %s", 1530}, + {"mount: cannot fork: %s", 1531}, + {"mount: this version was compiled without support for the type `nfs'", 1532}, + {"mount: failed with nfs mount version 4, trying 3..\n", 1533}, + {"\ +mount: I could not determine the filesystem type, and none was specified", 1534}, + {"mount: you must specify the filesystem type", 1535}, + {"mount: mount failed", 1536}, + {"mount: mount point %s is not a directory", 1537}, + {"mount: permission denied", 1538}, + {"mount: must be superuser to use mount", 1539}, + {"mount: %s is busy", 1540}, + {"mount: proc already mounted", 1541}, + {"mount: %s already mounted or %s busy", 1542}, + {"mount: mount point %s does not exist", 1543}, + {"mount: mount point %s is a symbolic link to nowhere", 1544}, + {"mount: special device %s does not exist", 1545}, {"\ mount: special device %s does not exist\n\ - (a path prefix is not a directory)\n", 1545}, - {"mount: %s not mounted already, or bad option", 1546}, + (a path prefix is not a directory)\n", 1546}, + {"mount: %s not mounted already, or bad option", 1547}, {"\ mount: wrong fs type, bad option, bad superblock on %s,\n\ - missing codepage, or too many mounted file systems", 1547}, - {"mount table full", 1548}, - {"mount: %s: can't read superblock", 1549}, - {"mount: %s: unknown device", 1550}, - {"mount: unknown filesystem type '%s'", 1551}, - {"mount: probably you meant %s", 1552}, - {"mount: maybe you meant 'iso9660'?", 1553}, - {"mount: maybe you meant 'vfat'?", 1554}, - {"mount: %s has wrong device number or fs type %s not supported", 1555}, - {"mount: %s is not a block device, and stat fails?", 1556}, + missing codepage, or too many mounted file systems", 1548}, + {"mount table full", 1549}, + {"mount: %s: can't read superblock", 1550}, + {"mount: %s: unknown device", 1551}, + {"mount: unknown filesystem type '%s'", 1552}, + {"mount: probably you meant %s", 1553}, + {"mount: maybe you meant 'iso9660'?", 1554}, + {"mount: maybe you meant 'vfat'?", 1555}, + {"mount: %s has wrong device number or fs type %s not supported", 1556}, + {"mount: %s is not a block device, and stat fails?", 1557}, {"\ mount: the kernel does not recognize %s as a block device\n\ - (maybe `insmod driver'?)", 1557}, - {"mount: %s is not a block device (maybe try `-o loop'?)", 1558}, - {"mount: %s is not a block device", 1559}, - {"mount: %s is not a valid block device", 1560}, - {"block device ", 1561}, - {"mount: cannot mount %s%s read-only", 1562}, - {"mount: %s%s is write-protected but explicit `-w' flag given", 1563}, - {"mount: %s%s is write-protected, mounting read-only", 1564}, - {"mount: no type was given - I'll assume nfs because of the colon\n", 1565}, - {"mount: no type was given - I'll assume smbfs because of the // prefix\n", 1566}, - {"mount: backgrounding \"%s\"\n", 1567}, - {"mount: giving up \"%s\"\n", 1568}, - {"mount: %s already mounted on %s\n", 1569}, + (maybe `insmod driver'?)", 1558}, + {"mount: %s is not a block device (maybe try `-o loop'?)", 1559}, + {"mount: %s is not a block device", 1560}, + {"mount: %s is not a valid block device", 1561}, + {"block device ", 1562}, + {"mount: cannot mount %s%s read-only", 1563}, + {"mount: %s%s is write-protected but explicit `-w' flag given", 1564}, + {"mount: %s%s is write-protected, mounting read-only", 1565}, + {"mount: no type was given - I'll assume nfs because of the colon\n", 1566}, + {"mount: no type was given - I'll assume smbfs because of the // prefix\n", 1567}, + {"mount: backgrounding \"%s\"\n", 1568}, + {"mount: giving up \"%s\"\n", 1569}, + {"mount: %s already mounted on %s\n", 1570}, {"\ Usage: mount -V : print version\n\ mount -h : print this help\n\ @@ -2082,291 +2083,291 @@ or move a subtree:\n\ A device can be given by name, say /dev/hda1 or /dev/cdrom,\n\ or by label, using -L label or by uuid, using -U uuid .\n\ Other options: [-nfFrsvw] [-o options] [-p passwdfd].\n\ -For many more details, say man 8 mount .\n", 1570}, - {"mount: only root can do that", 1571}, - {"mount: no %s found - creating it..\n", 1572}, - {"mount: no such partition found", 1573}, - {"mount: mounting %s\n", 1574}, - {"nothing was mounted", 1575}, - {"mount: cannot find %s in %s", 1576}, - {"mount: can't find %s in %s or %s", 1577}, - {"\ -mount: could not open %s, so UUID and LABEL conversion cannot be done.\n", 1578}, - {"mount: bad UUID", 1579}, - {"mount: error while guessing filesystem type\n", 1580}, - {"mount: you didn't specify a filesystem type for %s\n", 1581}, - {" I will try all types mentioned in %s or %s\n", 1582}, - {" and it looks like this is swapspace\n", 1583}, - {" I will try type %s\n", 1584}, - {"Trying %s\n", 1585}, - {"mount: excessively long host:dir argument\n", 1586}, - {"mount: warning: multiple hostnames not supported\n", 1587}, - {"mount: directory to mount not in host:dir format\n", 1588}, - {"mount: can't get address for %s\n", 1589}, - {"mount: got bad hp->h_length\n", 1590}, - {"mount: excessively long option argument\n", 1591}, - {"Warning: Unrecognized proto= option.\n", 1592}, - {"Warning: Option namlen is not supported.\n", 1593}, - {"unknown nfs mount parameter: %s=%d\n", 1594}, - {"Warning: option nolock is not supported.\n", 1595}, - {"unknown nfs mount option: %s%s\n", 1596}, - {"mount: got bad hp->h_length?\n", 1597}, - {"NFS over TCP is not supported.\n", 1598}, - {"nfs socket", 1599}, - {"nfs bindresvport", 1600}, - {"nfs server reported service unavailable", 1601}, - {"used portmapper to find NFS port\n", 1602}, - {"using port %d for nfs deamon\n", 1603}, - {"nfs connect", 1604}, - {"unknown nfs status return value: %d", 1605}, - {"bug in xstrndup call", 1606}, +For many more details, say man 8 mount .\n", 1571}, + {"mount: only root can do that", 1572}, + {"mount: no %s found - creating it..\n", 1573}, + {"mount: no such partition found", 1574}, + {"mount: mounting %s\n", 1575}, + {"nothing was mounted", 1576}, + {"mount: cannot find %s in %s", 1577}, + {"mount: can't find %s in %s or %s", 1578}, + {"\ +mount: could not open %s, so UUID and LABEL conversion cannot be done.\n", 1579}, + {"mount: bad UUID", 1580}, + {"mount: error while guessing filesystem type\n", 1581}, + {"mount: you didn't specify a filesystem type for %s\n", 1582}, + {" I will try all types mentioned in %s or %s\n", 1583}, + {" and it looks like this is swapspace\n", 1584}, + {" I will try type %s\n", 1585}, + {"Trying %s\n", 1586}, + {"mount: excessively long host:dir argument\n", 1587}, + {"mount: warning: multiple hostnames not supported\n", 1588}, + {"mount: directory to mount not in host:dir format\n", 1589}, + {"mount: can't get address for %s\n", 1590}, + {"mount: got bad hp->h_length\n", 1591}, + {"mount: excessively long option argument\n", 1592}, + {"Warning: Unrecognized proto= option.\n", 1593}, + {"Warning: Option namlen is not supported.\n", 1594}, + {"unknown nfs mount parameter: %s=%d\n", 1595}, + {"Warning: option nolock is not supported.\n", 1596}, + {"unknown nfs mount option: %s%s\n", 1597}, + {"mount: got bad hp->h_length?\n", 1598}, + {"NFS over TCP is not supported.\n", 1599}, + {"nfs socket", 1600}, + {"nfs bindresvport", 1601}, + {"nfs server reported service unavailable", 1602}, + {"used portmapper to find NFS port\n", 1603}, + {"using port %d for nfs deamon\n", 1604}, + {"nfs connect", 1605}, + {"unknown nfs status return value: %d", 1606}, + {"bug in xstrndup call", 1607}, {"\ usage: %s [-hV]\n\ %s -a [-e] [-v]\n\ %s [-v] [-p priority] special ...\n\ - %s [-s]\n", 1607}, + %s [-s]\n", 1608}, {"\ usage: %s [-hV]\n\ %s -a [-v]\n\ - %s [-v] special ...\n", 1608}, - {"%s on %s\n", 1609}, - {"swapon: cannot stat %s: %s\n", 1610}, - {"swapon: warning: %s has insecure permissions %04o, %04o suggested\n", 1611}, - {"swapon: Skipping file %s - it appears to have holes.\n", 1612}, - {"Not superuser.\n", 1613}, - {"%s: cannot open %s: %s\n", 1614}, - {"umount: compiled without support for -f\n", 1615}, - {"umount: cannot fork: %s", 1616}, - {"host: %s, directory: %s\n", 1617}, - {"umount: can't get address for %s\n", 1618}, - {"umount: got bad hostp->h_length\n", 1619}, - {"umount: %s: invalid block device", 1620}, - {"umount: %s: not mounted", 1621}, - {"umount: %s: can't write superblock", 1622}, - {"umount: %s: device is busy", 1623}, - {"umount: %s: not found", 1624}, - {"umount: %s: must be superuser to umount", 1625}, - {"umount: %s: block devices not permitted on fs", 1626}, - {"umount: %s: %s", 1627}, - {"no umount2, trying umount...\n", 1628}, - {"could not umount %s - trying %s instead\n", 1629}, - {"umount: %s busy - remounted read-only\n", 1630}, - {"umount: could not remount %s read-only\n", 1631}, - {"%s umounted\n", 1632}, - {"umount: cannot find list of filesystems to unmount", 1633}, + %s [-v] special ...\n", 1609}, + {"%s on %s\n", 1610}, + {"swapon: cannot stat %s: %s\n", 1611}, + {"swapon: warning: %s has insecure permissions %04o, %04o suggested\n", 1612}, + {"swapon: Skipping file %s - it appears to have holes.\n", 1613}, + {"Not superuser.\n", 1614}, + {"%s: cannot open %s: %s\n", 1615}, + {"umount: compiled without support for -f\n", 1616}, + {"umount: cannot fork: %s", 1617}, + {"host: %s, directory: %s\n", 1618}, + {"umount: can't get address for %s\n", 1619}, + {"umount: got bad hostp->h_length\n", 1620}, + {"umount: %s: invalid block device", 1621}, + {"umount: %s: not mounted", 1622}, + {"umount: %s: can't write superblock", 1623}, + {"umount: %s: device is busy", 1624}, + {"umount: %s: not found", 1625}, + {"umount: %s: must be superuser to umount", 1626}, + {"umount: %s: block devices not permitted on fs", 1627}, + {"umount: %s: %s", 1628}, + {"no umount2, trying umount...\n", 1629}, + {"could not umount %s - trying %s instead\n", 1630}, + {"umount: %s busy - remounted read-only\n", 1631}, + {"umount: could not remount %s read-only\n", 1632}, + {"%s umounted\n", 1633}, + {"umount: cannot find list of filesystems to unmount", 1634}, {"\ Usage: umount [-hV]\n\ umount -a [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]\n\ - umount [-f] [-r] [-n] [-v] special | node...\n", 1634}, - {"Trying to umount %s\n", 1635}, - {"Could not find %s in mtab\n", 1636}, - {"umount: %s is not mounted (according to mtab)", 1637}, - {"umount: it seems %s is mounted multiple times", 1638}, - {"umount: %s is not in the fstab (and you are not root)", 1639}, - {"umount: %s mount disagrees with the fstab", 1640}, - {"umount: only %s can unmount %s from %s", 1641}, - {"umount: only root can do that", 1642}, - {"You must be root to set the Ctrl-Alt-Del behaviour.\n", 1643}, - {"Usage: ctrlaltdel hard|soft\n", 1644}, + umount [-f] [-r] [-n] [-v] special | node...\n", 1635}, + {"Trying to umount %s\n", 1636}, + {"Could not find %s in mtab\n", 1637}, + {"umount: %s is not mounted (according to mtab)", 1638}, + {"umount: it seems %s is mounted multiple times", 1639}, + {"umount: %s is not in the fstab (and you are not root)", 1640}, + {"umount: %s mount disagrees with the fstab", 1641}, + {"umount: only %s can unmount %s from %s", 1642}, + {"umount: only root can do that", 1643}, + {"You must be root to set the Ctrl-Alt-Del behaviour.\n", 1644}, + {"Usage: ctrlaltdel hard|soft\n", 1645}, {"\ File %s, For threshold value %lu, Maximum characters in fifo were %d,\n\ -and the maximum transfer rate in characters/second was %f\n", 1645}, +and the maximum transfer rate in characters/second was %f\n", 1646}, {"\ File %s, For threshold value %lu and timrout value %lu, Maximum characters \ in fifo were %d,\n\ -and the maximum transfer rate in characters/second was %f\n", 1646}, - {"Invalid interval value: %s\n", 1647}, - {"Invalid set value: %s\n", 1648}, - {"Invalid default value: %s\n", 1649}, - {"Invalid set time value: %s\n", 1650}, - {"Invalid default time value: %s\n", 1651}, +and the maximum transfer rate in characters/second was %f\n", 1647}, + {"Invalid interval value: %s\n", 1648}, + {"Invalid set value: %s\n", 1649}, + {"Invalid default value: %s\n", 1650}, + {"Invalid set time value: %s\n", 1651}, + {"Invalid default time value: %s\n", 1652}, {"\ Usage: %s [-q [-i interval]] ([-s value]|[-S value]) ([-t value]|[-T value]) \ -[-g|-G] file [file...]\n", 1652}, - {"Can't open %s: %s\n", 1653}, - {"Can't set %s to threshold %d: %s\n", 1654}, - {"Can't set %s to time threshold %d: %s\n", 1655}, - {"Can't get threshold for %s: %s\n", 1656}, - {"Can't get timeout for %s: %s\n", 1657}, - {"%s: %ld current threshold and %ld current timeout\n", 1658}, - {"%s: %ld default threshold and %ld default timeout\n", 1659}, - {"Can't set signal handler", 1660}, - {"gettimeofday failed", 1661}, - {"Can't issue CYGETMON on %s: %s\n", 1662}, - {"\ -%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n", 1663}, - {" %f int/sec; %f rec, %f send (char/sec)\n", 1664}, - {"\ -%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n", 1665}, - {" %f int/sec; %f rec (char/sec)\n", 1666}, - {"Usage: %s [-c] [-n level] [-s bufsize]\n", 1667}, - {"invalid id: %s\n", 1668}, - {"cannot remove id %s (%s)\n", 1669}, - {"deprecated usage: %s {shm | msg | sem} id ...\n", 1670}, - {"unknown resource type: %s\n", 1671}, - {"resource(s) deleted\n", 1672}, +[-g|-G] file [file...]\n", 1653}, + {"Can't open %s: %s\n", 1654}, + {"Can't set %s to threshold %d: %s\n", 1655}, + {"Can't set %s to time threshold %d: %s\n", 1656}, + {"Can't get threshold for %s: %s\n", 1657}, + {"Can't get timeout for %s: %s\n", 1658}, + {"%s: %ld current threshold and %ld current timeout\n", 1659}, + {"%s: %ld default threshold and %ld default timeout\n", 1660}, + {"Can't set signal handler", 1661}, + {"gettimeofday failed", 1662}, + {"Can't issue CYGETMON on %s: %s\n", 1663}, + {"\ +%s: %lu ints, %lu/%lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n", 1664}, + {" %f int/sec; %f rec, %f send (char/sec)\n", 1665}, + {"\ +%s: %lu ints, %lu chars; fifo: %lu thresh, %lu tmout, %lu max, %lu now\n", 1666}, + {" %f int/sec; %f rec (char/sec)\n", 1667}, + {"Usage: %s [-c] [-n level] [-s bufsize]\n", 1668}, + {"invalid id: %s\n", 1669}, + {"cannot remove id %s (%s)\n", 1670}, + {"deprecated usage: %s {shm | msg | sem} id ...\n", 1671}, + {"unknown resource type: %s\n", 1672}, + {"resource(s) deleted\n", 1673}, {"\ usage: %s [ [-q msqid] [-m shmid] [-s semid]\n\ - [-Q msgkey] [-M shmkey] [-S semkey] ... ]\n", 1673}, - {"%s: illegal option -- %c\n", 1674}, - {"%s: illegal key (%s)\n", 1675}, - {"permission denied for key", 1676}, - {"already removed key", 1677}, - {"invalid key", 1678}, - {"unknown error in key", 1679}, - {"permission denied for id", 1680}, - {"invalid id", 1681}, - {"already removed id", 1682}, - {"unknown error in id", 1683}, - {"%s: %s (%s)\n", 1684}, - {"%s: unknown argument: %s\n", 1685}, - {"usage : %s -asmq -tclup \n", 1686}, - {"\t%s [-s -m -q] -i id\n", 1687}, - {"\t%s -h for help.\n", 1688}, - {"\ -%s provides information on ipc facilities for which you have read access.\n", 1689}, + [-Q msgkey] [-M shmkey] [-S semkey] ... ]\n", 1674}, + {"%s: illegal option -- %c\n", 1675}, + {"%s: illegal key (%s)\n", 1676}, + {"permission denied for key", 1677}, + {"already removed key", 1678}, + {"invalid key", 1679}, + {"unknown error in key", 1680}, + {"permission denied for id", 1681}, + {"invalid id", 1682}, + {"already removed id", 1683}, + {"unknown error in id", 1684}, + {"%s: %s (%s)\n", 1685}, + {"%s: unknown argument: %s\n", 1686}, + {"usage : %s -asmq -tclup \n", 1687}, + {"\t%s [-s -m -q] -i id\n", 1688}, + {"\t%s -h for help.\n", 1689}, + {"\ +%s provides information on ipc facilities for which you have read access.\n", 1690}, {"\ Resource Specification:\n\ \t-m : shared_mem\n\ -\t-q : messages\n", 1690}, +\t-q : messages\n", 1691}, {"\ \t-s : semaphores\n\ -\t-a : all (default)\n", 1691}, +\t-a : all (default)\n", 1692}, {"\ Output Format:\n\ \t-t : time\n\ \t-p : pid\n\ -\t-c : creator\n", 1692}, +\t-c : creator\n", 1693}, {"\ \t-l : limits\n\ -\t-u : summary\n", 1693}, - {"-i id [-s -q -m] : details on resource identified by id\n", 1694}, - {"kernel not configured for shared memory\n", 1695}, - {"------ Shared Memory Limits --------\n", 1696}, - {"max number of segments = %lu\n", 1697}, - {"max seg size (kbytes) = %lu\n", 1698}, - {"max total shared memory (pages) = %lu\n", 1699}, - {"min seg size (bytes) = %lu\n", 1700}, - {"------ Shared Memory Status --------\n", 1701}, - {"segments allocated %d\n", 1702}, - {"pages allocated %ld\n", 1703}, - {"pages resident %ld\n", 1704}, - {"pages swapped %ld\n", 1705}, - {"Swap performance: %ld attempts\t %ld successes\n", 1706}, - {"------ Shared Memory Segment Creators/Owners --------\n", 1707}, - {"%-10s %-10s %-10s %-10s %-10s %-10s\n", 1708}, - {"shmid", 1709}, - {"perms", 1710}, - {"cuid", 1711}, - {"cgid", 1712}, - {"uid", 1713}, - {"gid", 1714}, - {"------ Shared Memory Attach/Detach/Change Times --------\n", 1715}, - {"%-10s %-10s %-20s %-20s %-20s\n", 1716}, - {"owner", 1717}, - {"attached", 1718}, - {"detached", 1719}, - {"changed", 1720}, - {"------ Shared Memory Creator/Last-op --------\n", 1721}, - {"%-10s %-10s %-10s %-10s\n", 1722}, - {"cpid", 1723}, - {"lpid", 1724}, - {"------ Shared Memory Segments --------\n", 1725}, - {"%-10s %-10s %-10s %-10s %-10s %-10s %-12s\n", 1726}, - {"key", 1727}, - {"bytes", 1728}, - {"nattch", 1729}, - {"status", 1730}, - {"Not set", 1731}, - {"dest", 1732}, - {"locked", 1733}, - {"kernel not configured for semaphores\n", 1734}, - {"------ Semaphore Limits --------\n", 1735}, - {"max number of arrays = %d\n", 1736}, - {"max semaphores per array = %d\n", 1737}, - {"max semaphores system wide = %d\n", 1738}, - {"max ops per semop call = %d\n", 1739}, - {"semaphore max value = %d\n", 1740}, - {"------ Semaphore Status --------\n", 1741}, - {"used arrays = %d\n", 1742}, - {"allocated semaphores = %d\n", 1743}, - {"------ Semaphore Arrays Creators/Owners --------\n", 1744}, - {"semid", 1745}, - {"------ Shared Memory Operation/Change Times --------\n", 1746}, - {"%-8s %-10s %-26.24s %-26.24s\n", 1747}, - {"last-op", 1748}, - {"last-changed", 1749}, - {"------ Semaphore Arrays --------\n", 1750}, - {"%-10s %-10s %-10s %-10s %-10s\n", 1751}, - {"nsems", 1752}, - {"kernel not configured for message queues\n", 1753}, - {"------ Messages: Limits --------\n", 1754}, - {"max queues system wide = %d\n", 1755}, - {"max size of message (bytes) = %d\n", 1756}, - {"default max size of queue (bytes) = %d\n", 1757}, - {"------ Messages: Status --------\n", 1758}, - {"allocated queues = %d\n", 1759}, - {"used headers = %d\n", 1760}, - {"used space = %d bytes\n", 1761}, - {"------ Message Queues: Creators/Owners --------\n", 1762}, - {"msqid", 1763}, - {"------ Message Queues Send/Recv/Change Times --------\n", 1764}, - {"%-8s %-10s %-20s %-20s %-20s\n", 1765}, - {"send", 1766}, - {"recv", 1767}, - {"change", 1768}, - {"------ Message Queues PIDs --------\n", 1769}, - {"lspid", 1770}, - {"lrpid", 1771}, - {"------ Message Queues --------\n", 1772}, - {"%-10s %-10s %-10s %-10s %-12s %-12s\n", 1773}, - {"used-bytes", 1774}, - {"messages", 1775}, +\t-u : summary\n", 1694}, + {"-i id [-s -q -m] : details on resource identified by id\n", 1695}, + {"kernel not configured for shared memory\n", 1696}, + {"------ Shared Memory Limits --------\n", 1697}, + {"max number of segments = %lu\n", 1698}, + {"max seg size (kbytes) = %lu\n", 1699}, + {"max total shared memory (pages) = %lu\n", 1700}, + {"min seg size (bytes) = %lu\n", 1701}, + {"------ Shared Memory Status --------\n", 1702}, + {"segments allocated %d\n", 1703}, + {"pages allocated %ld\n", 1704}, + {"pages resident %ld\n", 1705}, + {"pages swapped %ld\n", 1706}, + {"Swap performance: %ld attempts\t %ld successes\n", 1707}, + {"------ Shared Memory Segment Creators/Owners --------\n", 1708}, + {"%-10s %-10s %-10s %-10s %-10s %-10s\n", 1709}, + {"shmid", 1710}, + {"perms", 1711}, + {"cuid", 1712}, + {"cgid", 1713}, + {"uid", 1714}, + {"gid", 1715}, + {"------ Shared Memory Attach/Detach/Change Times --------\n", 1716}, + {"%-10s %-10s %-20s %-20s %-20s\n", 1717}, + {"owner", 1718}, + {"attached", 1719}, + {"detached", 1720}, + {"changed", 1721}, + {"------ Shared Memory Creator/Last-op --------\n", 1722}, + {"%-10s %-10s %-10s %-10s\n", 1723}, + {"cpid", 1724}, + {"lpid", 1725}, + {"------ Shared Memory Segments --------\n", 1726}, + {"%-10s %-10s %-10s %-10s %-10s %-10s %-12s\n", 1727}, + {"key", 1728}, + {"bytes", 1729}, + {"nattch", 1730}, + {"status", 1731}, + {"Not set", 1732}, + {"dest", 1733}, + {"locked", 1734}, + {"kernel not configured for semaphores\n", 1735}, + {"------ Semaphore Limits --------\n", 1736}, + {"max number of arrays = %d\n", 1737}, + {"max semaphores per array = %d\n", 1738}, + {"max semaphores system wide = %d\n", 1739}, + {"max ops per semop call = %d\n", 1740}, + {"semaphore max value = %d\n", 1741}, + {"------ Semaphore Status --------\n", 1742}, + {"used arrays = %d\n", 1743}, + {"allocated semaphores = %d\n", 1744}, + {"------ Semaphore Arrays Creators/Owners --------\n", 1745}, + {"semid", 1746}, + {"------ Shared Memory Operation/Change Times --------\n", 1747}, + {"%-8s %-10s %-26.24s %-26.24s\n", 1748}, + {"last-op", 1749}, + {"last-changed", 1750}, + {"------ Semaphore Arrays --------\n", 1751}, + {"%-10s %-10s %-10s %-10s %-10s\n", 1752}, + {"nsems", 1753}, + {"kernel not configured for message queues\n", 1754}, + {"------ Messages: Limits --------\n", 1755}, + {"max queues system wide = %d\n", 1756}, + {"max size of message (bytes) = %d\n", 1757}, + {"default max size of queue (bytes) = %d\n", 1758}, + {"------ Messages: Status --------\n", 1759}, + {"allocated queues = %d\n", 1760}, + {"used headers = %d\n", 1761}, + {"used space = %d bytes\n", 1762}, + {"------ Message Queues: Creators/Owners --------\n", 1763}, + {"msqid", 1764}, + {"------ Message Queues Send/Recv/Change Times --------\n", 1765}, + {"%-8s %-10s %-20s %-20s %-20s\n", 1766}, + {"send", 1767}, + {"recv", 1768}, + {"change", 1769}, + {"------ Message Queues PIDs --------\n", 1770}, + {"lspid", 1771}, + {"lrpid", 1772}, + {"------ Message Queues --------\n", 1773}, + {"%-10s %-10s %-10s %-10s %-12s %-12s\n", 1774}, + {"used-bytes", 1775}, + {"messages", 1776}, {"\ \n\ -Shared memory Segment shmid=%d\n", 1776}, - {"uid=%d\tgid=%d\tcuid=%d\tcgid=%d\n", 1777}, - {"mode=%#o\taccess_perms=%#o\n", 1778}, - {"bytes=%ld\tlpid=%d\tcpid=%d\tnattch=%ld\n", 1779}, - {"att_time=%-26.24s\n", 1780}, - {"det_time=%-26.24s\n", 1781}, - {"change_time=%-26.24s\n", 1782}, +Shared memory Segment shmid=%d\n", 1777}, + {"uid=%d\tgid=%d\tcuid=%d\tcgid=%d\n", 1778}, + {"mode=%#o\taccess_perms=%#o\n", 1779}, + {"bytes=%ld\tlpid=%d\tcpid=%d\tnattch=%ld\n", 1780}, + {"att_time=%-26.24s\n", 1781}, + {"det_time=%-26.24s\n", 1782}, + {"change_time=%-26.24s\n", 1783}, {"\ \n\ -Message Queue msqid=%d\n", 1783}, - {"uid=%d\tgid=%d\tcuid=%d\tcgid=%d\tmode=%#o\n", 1784}, - {"cbytes=%ld\tqbytes=%ld\tqnum=%ld\tlspid=%d\tlrpid=%d\n", 1785}, - {"send_time=%-26.24s\n", 1786}, - {"rcv_time=%-26.24s\n", 1787}, +Message Queue msqid=%d\n", 1784}, + {"uid=%d\tgid=%d\tcuid=%d\tcgid=%d\tmode=%#o\n", 1785}, + {"cbytes=%ld\tqbytes=%ld\tqnum=%ld\tlspid=%d\tlrpid=%d\n", 1786}, + {"send_time=%-26.24s\n", 1787}, + {"rcv_time=%-26.24s\n", 1788}, {"\ \n\ -Semaphore Array semid=%d\n", 1788}, - {"uid=%d\t gid=%d\t cuid=%d\t cgid=%d\n", 1789}, - {"mode=%#o, access_perms=%#o\n", 1790}, - {"nsems = %ld\n", 1791}, - {"otime = %-26.24s\n", 1792}, - {"ctime = %-26.24s\n", 1793}, - {"semnum", 1794}, - {"value", 1795}, - {"ncount", 1796}, - {"zcount", 1797}, - {"pid", 1798}, - {"usage: rdev [ -rv ] [ -o OFFSET ] [ IMAGE [ VALUE [ OFFSET ] ] ]", 1799}, - {"\ - rdev /dev/fd0 (or rdev /linux, etc.) displays the current ROOT device", 1800}, - {" rdev /dev/fd0 /dev/hda2 sets ROOT to /dev/hda2", 1801}, - {" rdev -R /dev/fd0 1 set the ROOTFLAGS (readonly status)", 1802}, - {" rdev -r /dev/fd0 627 set the RAMDISK size", 1803}, - {" rdev -v /dev/fd0 1 set the bootup VIDEOMODE", 1804}, - {" rdev -o N ... use the byte offset N", 1805}, - {" rootflags ... same as rdev -R", 1806}, - {" ramsize ... same as rdev -r", 1807}, - {" vidmode ... same as rdev -v", 1808}, - {"\ -Note: video modes are: -3=Ask, -2=Extended, -1=NormalVga, 1=key1, 2=key2,...", 1809}, - {" use -R 1 to mount root readonly, -R 0 for read/write.", 1810}, - {"missing comma", 1811}, - {"out of memory", 1812}, +Semaphore Array semid=%d\n", 1789}, + {"uid=%d\t gid=%d\t cuid=%d\t cgid=%d\n", 1790}, + {"mode=%#o, access_perms=%#o\n", 1791}, + {"nsems = %ld\n", 1792}, + {"otime = %-26.24s\n", 1793}, + {"ctime = %-26.24s\n", 1794}, + {"semnum", 1795}, + {"value", 1796}, + {"ncount", 1797}, + {"zcount", 1798}, + {"pid", 1799}, + {"usage: rdev [ -rv ] [ -o OFFSET ] [ IMAGE [ VALUE [ OFFSET ] ] ]", 1800}, + {"\ + rdev /dev/fd0 (or rdev /linux, etc.) displays the current ROOT device", 1801}, + {" rdev /dev/fd0 /dev/hda2 sets ROOT to /dev/hda2", 1802}, + {" rdev -R /dev/fd0 1 set the ROOTFLAGS (readonly status)", 1803}, + {" rdev -r /dev/fd0 627 set the RAMDISK size", 1804}, + {" rdev -v /dev/fd0 1 set the bootup VIDEOMODE", 1805}, + {" rdev -o N ... use the byte offset N", 1806}, + {" rootflags ... same as rdev -R", 1807}, + {" ramsize ... same as rdev -r", 1808}, + {" vidmode ... same as rdev -v", 1809}, + {"\ +Note: video modes are: -3=Ask, -2=Extended, -1=NormalVga, 1=key1, 2=key2,...", 1810}, + {" use -R 1 to mount root readonly, -R 0 for read/write.", 1811}, + {"missing comma", 1812}, + {"out of memory", 1813}, {"\ %s: Usage: \"%s [options]\n\ \t -m (defaults: \"%s\" and\n\ @@ -2380,77 +2381,77 @@ Note: video modes are: -3=Ask, -2=Extended, -1=NormalVga, 1=key1, 2=key2,...", 1 \t -s print individual counters within functions\n\ \t -r reset all the counters (root only)\n\ \t -n disable byte order auto-detection\n\ -\t -V print version and exit\n", 1813}, - {"%s version %s\n", 1814}, - {"Sampling_step: %i\n", 1815}, - {"%s: %s(%i): wrong map line\n", 1816}, - {"%s: can't find \"_stext\" in %s\n", 1817}, - {"%s: profile address out of range. Wrong map file?\n", 1818}, - {"total", 1819}, - {"\ -usage: renice priority [ [ -p ] pids ] [ [ -g ] pgrps ] [ [ -u ] users ]\n", 1820}, - {"renice: %s: unknown user\n", 1821}, - {"renice: %s: bad value\n", 1822}, - {"getpriority", 1823}, - {"setpriority", 1824}, - {"%d: old priority %d, new priority %d\n", 1825}, - {"usage: %s program [arg ...]\n", 1826}, +\t -V print version and exit\n", 1814}, + {"%s version %s\n", 1815}, + {"Sampling_step: %i\n", 1816}, + {"%s: %s(%i): wrong map line\n", 1817}, + {"%s: can't find \"_stext\" in %s\n", 1818}, + {"%s: profile address out of range. Wrong map file?\n", 1819}, + {"total", 1820}, + {"\ +usage: renice priority [ [ -p ] pids ] [ [ -g ] pgrps ] [ [ -u ] users ]\n", 1821}, + {"renice: %s: unknown user\n", 1822}, + {"renice: %s: bad value\n", 1823}, + {"getpriority", 1824}, + {"setpriority", 1825}, + {"%d: old priority %d, new priority %d\n", 1826}, + {"usage: %s program [arg ...]\n", 1827}, {"\ Usage: %s [ -i | -t