Re: Threaded versions of cp, mv, ls for high latency / parallel filesystems?

2008-11-12 Thread Phillip Susi
James Youngman wrote: This version should be race-free: find -type f -print0 | xargs -0 -n 8 --max-procs=16 md5sum ~/md5sums 21 I think that writing into a pipe should be OK, since pipes are non-seekable. However, with pipes in this situation you still have a problem if processes try to

coreutils-7.0 df test failures

2008-11-12 Thread Jim Meyering
Today Ondřej reported that this koji build detected two df failures: http://koji.fedoraproject.org/koji/getfile?taskID=928155name=build.log Both failed like this: FAIL: df/total.log (exit: 1) ... + fail=0 + umask 22 + RE_TOTAL='^total(

sobre RSS

2008-11-12 Thread IDEA PUBLICIDAD - webmaster
Hola, buenos días: Necesito borrar vía SSH el archivo que se encuentra en $QMAIL_ROOT_D/qmail/control/ pero como soy novata no se como hacerlo, ¿me podrías decir que he de escribir en la linea de comandos ? o algún enlace en español que me indique como hacerlo?? Gracias y un saludo

Re: [PATCH]: chmod - do inform about using different mode than requested with SGID/SUID/sticky bits without permissions to change them

2008-11-12 Thread Jim Meyering
Ondřej Vašík [EMAIL PROTECTED] wrote: as reported in https://bugs.launchpad.net/ubuntu/+source/coreutils/+bug/187315 by Aaron Toponce , chmod could display confusing messages when used for SGID/SUID/sticky bits without permissions to change them. e.g. with non-root sudoers user following

Re: Threaded versions of cp, mv, ls for high latency / parallel filesystems?

2008-11-12 Thread James Youngman
[ CC ++ [EMAIL PROTECTED] ] On Tue, Nov 11, 2008 at 2:58 PM, Andrew McGill [EMAIL PROTECTED] wrote: What would you expect this to do --: find -type f -print0 | xargs -0 -n 8 --max-procs=16 md5sum ~/md5sums Produce a race condition :)It generates 16 parallel processes, each