Re: mp3 player with adjustable speed and pitch correction

2008-06-30 Thread Cédric Lucantis
it too, even allowing negative speeds for your satanic parties :) -- Cédric Lucantis -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: Minicom : Tuer le processus avec top

2008-06-28 Thread Cédric Lucantis
PROTECTED]:~] killall minicom Mais oui, killall est probablement suffisant pour ça. -- Cédric Lucantis -- Lisez la FAQ de la liste avant de poser une question : http://wiki.debian.org/DebFrFrenchLists Vous pouvez aussi ajouter le mot ``spam'' dans vos champs From et Reply-To: To UNSUBSCRIBE

Re: emacs: renaming files in a programming project

2008-06-27 Thread Cédric Lucantis
. The tags-query-replace command is just done for that. -- Cédric Lucantis -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

Re: printf

2007-07-20 Thread Cédric Lucantis
les paramètres ne correspondent pas au format alors il y a peut être mieux... -- Cédric Lucantis

Re: installing X libraries?? -- need your help!

2007-05-07 Thread Cédric Lucantis
. -- Cédric Lucantis

Re: Copie d'une image iso sur un disque USB

2007-05-06 Thread Cédric Lucantis
a des erreurs (je vérifie avec md5sum). Ma question est donc : comment copier ces gros fichiers sans erreur ? A verifier, mais je crois bien que FAT32 ne supporte pas les fichiers de cette taille (la limite doit être autour de 2G). -- Cédric Lucantis

Re: Copie d'une image iso sur un disque USB

2007-05-06 Thread Cédric Lucantis
. -- Cédric Lucantis

Re: How to create boost libraries for cross compile?

2007-05-04 Thread Cédric Lucantis
that. -- Cédric Lucantis

Re: How to cross compile Debian - Windows ???

2007-05-03 Thread Cédric Lucantis
-mingw32msvc' but you should only set the host and not the target (others are autodetected), so simply try this : ./configure --host=i586-mingw32msvc it will emit a warning which you can ignore for now. I'm not sure this is the conventional way of doing it, but it works for me. -- Cédric Lucantis

Re: [SID] pas de mise à jour ?

2007-05-02 Thread Cédric Lucantis
vraiment en manque de problemes, t'as qu'à essayer windows update ;) -- Cédric Lucantis

Re: kernel recompile compile

2007-05-02 Thread Cédric Lucantis
, -- Cédric Lucantis

Re: GCC compiler

2007-04-29 Thread Cédric Lucantis
are you looking for libimlib ? (an image manipulation lib, replacement for libxpm) There is no debian package that contains im.h or libim.a or libim.so Only reference I found is national language support for AIX which is a proprietary UNIX by IBM Regards, iuri sampaio -- Cédric

Re: GCC compiler

2007-04-29 Thread Cédric Lucantis
, but it's also often useful. This is documented in the make info page, under section 6.5 How to use variables/Setting. I don't know if this is specific to gnu make or not. -- Cédric Lucantis

Re: Système de sauvegarde avec serveur debian et clients windows?

2007-04-27 Thread Cédric Lucantis
pour les clients windows, mais pour ssh je ne sais pas, je n'y connais rien... Je ne connais pas non plus backuppc, alors je ne sais pas si l'un est meilleur que l'autre. -- Cédric Lucantis

Re: aide pour config imprimante sous SARGE

2007-04-11 Thread Cédric Lucantis
simple pour ça est d'utiliser aptitude). -- Cédric Lucantis

Re: sed command spanning multiple lines

2007-04-11 Thread Cédric Lucantis
can put your commands in a separate file (one by line) and use -f command-file instead of -e in both cases, you can put several commands on the same line by separating them with a ';' -- Cédric Lucantis

Re: sed command spanning multiple lines

2007-04-11 Thread Cédric Lucantis
sed -e 's/\.//g' -e 's/\,//g' -e 's/\\//g' $1 ... but also note that this can be done with a single command (escaping is useless here) : 's/[,/.]//g' -- Cédric Lucantis

Re: [OT] Graphics programming

2007-04-05 Thread Cédric Lucantis
you want to do if you want good performances. If you don't really care about it, some scripting language like python may be better (they all generally provide an image manipulation module). -- Cédric Lucantis

Re: probleme autoconf automake

2007-04-04 Thread Cédric Lucantis
automake-autoconf-libtool et autotools? les premiers font-ils partie du second? en gros oui, autotools est seulement un nom donné à l'ensemble des outils de compilation GNU (automake, autoconf, libtool, m4) -- Cédric Lucantis

Re: probleme autoconf automake

2007-04-03 Thread Cédric Lucantis
chose comme ca: # bibliothèque principale lib_LTLIBRARIES = libmain.la libmain_LIBADD = -lltdl libmain_SOURCES = ... # module modulesdir = ... modules_LTLIBRARIES = module1.la module1_la_LDFLAGS = -module module1_SOURCES = ... -- Cédric Lucantis

Re: probleme autoconf automake

2007-04-01 Thread Cédric Lucantis
xx_LTLIBRARIES et d'utiliser l'extension .la au lieu de .a. Automake va ensuite créer des librairies statiques ou dynamiques (ou les deux) selon ce que veut l'utilisateur et ce qui est possible. a part ça, il y'a une liste pour automake :) http://lists.gnu.org/mailman/listinfo/automake -- Cédric

Re: probleme autoconf automake

2007-04-01 Thread Cédric Lucantis
selon ce que veut l'utilisateur et ce qui est possible sur la plate-forme. libtool offre aussi un mécanisme pour gérer les modules externes et plugins de façon portable : libltdl (voir info libtool). Ca a l'air d'être ce que tu cherches... -- Cédric Lucantis

Re: keeping tar quiet in script

2007-04-01 Thread Cédric Lucantis
can simply avoid this particular one with something like this : tar -cf archive -C/ . another trick is to redirect the whole script to some log file (or /dev/null if you're fearless) by putting this at its beggining : LOGFILE=... exec $LOGFILE 21 -- Cédric Lucantis

Re: Accessing windows partition through debian etch

2007-04-01 Thread Cédric Lucantis
make this permanent by adding a line in your fstab file (see man mount and fstab for more infos). And no, reinstalling windows shouldn't touch the debian's partitions, unless you ask for it, but it will replace your boot loader and you'll have to reinstall it... -- Cédric Lucantis

Re: System Rescue CD sur clef usb

2007-03-22 Thread Cédric Lucantis
Il y a là quelques infos + une liste d'autres systèmes (Pen Drive Linux a l'air interessant...) -- Cédric Lucantis

Re: Home Directory on External Drive

2007-03-22 Thread Cédric Lucantis
time. -- Cédric Lucantis

Re: no /etc/mtab and mount bind

2007-03-22 Thread Cédric Lucantis
/mount, but the bind option doesn't seem to appear there. The only solution I can see is to check for the device inode (stat -c '%d') of all your mount points, looking for duplicate ones, but there's probably simpler... -- Cédric Lucantis

Re: Copie hda-hdb : taille différente

2007-03-20 Thread Cédric Lucantis
Src=${partition[$i]} Dest=/mnt/hdb$i cp -ax $Src/* $Dest ?? Pour finir, je ne sais pas trop si c'est une bonne idée de faire ça sur un système qui tourne, peut être que tu aurais moins de problèmes à partir d'un système live? -- Cédric Lucantis

Re: [HS] mc-like script shell

2007-03-20 Thread Cédric Lucantis
comportement est assez bizarre et pas très intuitif... dialog --title TITRE --fselect /path 25 40 voir man dialog et /usr/share/doc/dialog/examples pour plus d'infos... -- Cédric Lucantis

Re: tar syntax and backing up

2007-03-19 Thread Cédric Lucantis
them both. Enjoy :) -- Cédric Lucantis

Re: scripting

2007-03-16 Thread Cédric Lucantis
functions often used in startup scripts. -- Cédric Lucantis

Re: scripting

2007-03-16 Thread Cédric Lucantis
. Is there is typo here or is there some other repository to add to sources.list? It's in non-free; you have to add non-free in your sources.list. Celejar there's also an online version which seems to be a little bit more up to date: http://www.tldp.org/LDP/abs/html -- Cédric Lucantis

Re: Using quotes in bash script parameters

2007-03-14 Thread Cédric Lucantis
echo $WARNMSG | $WARNCMD sorry for the noise -- Cédric Lucantis

Re: [cron] Soucis d'execution de shell

2007-03-13 Thread Cédric Lucantis
essaye d'ajouter set -x au début du script. Et juste au hasard, est-ce que ton script est executable par l'utilisateur propriétaire de la crontab? -- Cédric Lucantis

Fwd: Re: lancer un prog avec une priorité basse mm si ca prend plus de temps

2007-03-13 Thread Cédric Lucantis
, pourquoi vouloir mieux? (Il y a aussi renice pour changer la priorité d'un processus en cours) -- Cédric Lucantis

Re: [HS] Logiciels de récupération

2007-03-13 Thread Cédric Lucantis
ça: mount fichier dir -tvfat -oloop -- Cédric Lucantis

Re: avoir la valeur absolue d'une difference avec bc

2007-03-13 Thread Cédric Lucantis
entiers, pas besoin de bc) -- Cédric Lucantis

Re: Installation sur un espace minimal

2007-03-13 Thread Cédric Lucantis
://lists.alioth.debian.org/pipermail/debian-live-devel/2007-March/000933.html peut être aussi qu'un système compressé comme squashfs ferait mieux l'affaire? -- Cédric Lucantis

Re: Problème de VFS: devfs et procfs

2007-03-13 Thread Cédric Lucantis
l'espace occupé. -- Cédric Lucantis

Re: Using quotes in bash script parameters

2007-03-13 Thread Cédric Lucantis
the trick: SUBJECT=This is a test mail WARNMSG=An error occurred WARNCMD=mail -s \${SUBJECT}\ root echo echo $WARNMSG | $WARNCMD eval $WARNMSG | $WARNCMD -- Cédric Lucantis

Re: Using quotes in bash script parameters

2007-03-13 Thread Cédric Lucantis
Le mercredi 14 mars 2007 02:07, Cédric Lucantis a écrit : Le mercredi 14 mars 2007 01:04, Marco De Vitis a écrit : Hi, this is not strictly Debian-related, but I'm doing it on Etch, so... :) Let's say I'm writing a script like this: #! /bin/bash SUBJECT=This is a test mail

Re: qemu et windows sur une partition

2007-03-12 Thread Cédric Lucantis
c'est dangereux :) -- Cédric Lucantis

Re: [HS] Logiciels de récupération

2007-03-12 Thread Cédric Lucantis
depend du type de système de fichier. Si c'est ext2/ext3, essaye debugfs (paquet e2fsprogs). -- Cédric Lucantis

Re: core dumps

2007-03-12 Thread Cédric Lucantis
core file Intel 80386, version 1 (SYSV), SVR4-style But gdb -batch did the trick, thanks! -- Cédric Lucantis

Re: filename case

2007-03-11 Thread Cédric Lucantis
/to/source -cf - . | ( cd /path/to/dest; tar -xf -; ) -- Cédric Lucantis

Re: filename case

2007-03-11 Thread Cédric Lucantis
-; ) stupid me :) I never realized I could simply do this: tar -C /path/to/source -cf - . | tar -C /path/to/dest -xf - (you also have to add -h to the first tar if there are symlinks in your files) -- Cédric Lucantis

Re: filename case

2007-03-11 Thread Cédric Lucantis
Le dimanche 11 mars 2007 18:10, L.V.Gandhi a écrit : On 3/11/07, Cédric Lucantis [EMAIL PROTECTED] wrote: Le dimanche 11 mars 2007 14:43, L.V.Gandhi a écrit: When I copy files to vfat drives , filenames case is changed to lower case. Is there any way to keep them as they are ie

Re: debian charset howto help

2007-03-11 Thread Cédric Lucantis
/console-tools/config -- Cédric Lucantis

Re: Empty crontab

2007-03-10 Thread Cédric Lucantis
. If I remember well, this restriction exists on other systems but Debian is not concerned. -- Cédric Lucantis

Re: Groups, Permissions and /Share

2007-03-10 Thread Cédric Lucantis
permissions' explains all this in details, and 'changing files attributes' describes chmod and chown. -- Cédric Lucantis

Re: Sarge to Etch upgrade report

2007-03-10 Thread Cédric Lucantis
distributions? To its credit, aptitude handled the hotplug - udev transition correctly, I wonder what else it didn't handle... Try the cruft package Well, overall, no major problems. I'm happy with the way the upgrade turned out. Kudos to the developers!!! +1 :) -- Cédric Lucantis

Re: [etch] plus de tube etc ...

2007-03-09 Thread Cédric Lucantis
était fortement déconseillé parce que knoppix utilise un tas de configs bizarres qui font qu'un upgrade te donne un système tout cassé. Je ne sais pas si c'est toujours le cas... Pourquoi ne pas installer une debian officielle? -- Cédric Lucantis

Re: Installation sur un espace minimal

2007-03-09 Thread Cédric Lucantis
}' | sort -rn liste tous les paquets installés triés par taille. A part ça je ne sais pas si il y a moyen de demander une installation minimale, les seuls cas que j'ai vu étaient des bidouillages horribles, du genre supprimer manuellement toutes les locales, les docs etc... -- Cédric Lucantis

core dumps

2007-03-09 Thread Cédric Lucantis
Hi, I'd like to know how to find which program produced a particular core dump file, any idea? thanks, -- Cédric Lucantis

Re: problems with apt-get update

2007-03-08 Thread Cédric Lucantis
-- Cédric Lucantis

Re: problems with apt-get update

2007-03-08 Thread Cédric Lucantis
by apt. Try either APT { Cache-Limit ... } or APT::Cache-Limit outside of the braces. -- Cédric Lucantis

Re: now the solution is nearer:

2007-03-08 Thread Cédric Lucantis
(1) sorry, I don't speak castilian :) as Mathias said, you should send the output of something like LC_ALL=C apt-get upgrade but maybe you should first check that you have enough space left in /var. Then try apt-get -f install and apt-get dist-upgrade. -- Cédric Lucantis

Re: Question about using anacron with cron

2007-03-08 Thread Cédric Lucantis
can't answer your cron/anacron questions directly, but why not just wrap your cron jobs in a script that runs them sequentially? then you can just run that script from cron/anacron and not worry about it. seems to be a good solution too -- Cédric Lucantis

Re: How do I list all users in a group?

2007-03-07 Thread Cédric Lucantis
advice, I'd do this: group=group-name grep ^${group}: /etc/group | awk -F ':' '{print $4}' It produces a comma separated list of users -- Cédric Lucantis

Re: How do I list all users in a group?

2007-03-07 Thread Cédric Lucantis
it with group name as first param) : list_group_users() { ( grep ^${1}: /etc/group | awk -F ':' '{print $4}' | sed -e 's/,/\n/g'; grep ^${1}: /etc/passwd | awk -F ':' '{print $1}'; ) | sort -u } sorry if I misunderstood what you want... -- Cédric Lucantis

wodim sans graveur

2007-03-06 Thread Cédric Lucantis
Bonjour, je suis en train d'écrire un script de sauvegarde sur DVD qui utilisera wodim mais je n'ai pas encore le graveur :) Je voudrais donc savoir si il y a un moyen de simuler un péripherique pour pouvoir faire des tests tout de suite. Merci, -- Cédric Lucantis

Re: profiler

2007-03-06 Thread Cédric Lucantis
I am looking for a profiler to easily profile a C program of mine on my Etch box (amd64): any suggestions are welcome. Hi, I like gprof, part of the binutils package (I guess you're using gcc), but there are probably many other choices. See man gprof and gcc. -- Cédric Lucantis

Re: Where to put scripts

2007-03-06 Thread Cédric Lucantis
. -- Cédric Lucantis

Re: [HS]parametre de script

2007-03-05 Thread Cédric Lucantis
éviter ça en utilisant basename/dirname une autre avec sed (même probleme) : nom=`echo $1 | sed 's,\..*$,,g'` si le fichier à toujours l'extension rm, tu peux aussi faire nom=`basename $1 '.rm'` -- Cédric Lucantis

Re: question technique azerty et fr

2007-03-04 Thread Cédric Lucantis
) voir aussi man loadkeys et set-language-env personellement, je m'étais un peu perdu dans tous ces outils alors je ne peux pas vraiment en dire plus :) -- Cédric Lucantis

Re: (La)Tex : questions

2007-02-27 Thread Cédric Lucantis
notamment http://www.latex-project.org/guides/usrguide.pdf -- Cédric Lucantis

Re: konqueror is slow

2007-02-27 Thread Cédric Lucantis
helped me a lot: - add the following in your /etc/environment (create the file if you don't have one) : KDE_NO_IPV6=TRUE - install the nscd package and make sure it's running (installing it should be enough) and please, don't ask me why :) -- Cédric Lucantis

Re: Config réseau et IPv6

2007-02-23 Thread Cédric Lucantis
tunneling driver sit0: unknown hardware address type 776 sit0: unknown hardware address type 776 eth0: duplicate address detected! merci quand même :) -- Cédric Lucantis

Re: Config réseau et IPv6

2007-02-22 Thread Cédric Lucantis
) { printf(getaddrinfo(%s) with AF_INET failed: %s\n, hostname, gai_strerror(result)); } else { printf(getaddrinfo(%s) with AF_INET succeeded\n, hostname); } } --- merci, -- Cédric Lucantis

Re: Config réseau et IPv6

2007-02-22 Thread Cédric Lucantis
') /etc/hosts: 127.0.0.1 localhost.localdomain localhost pc-cedric -- Cédric Lucantis

Config réseau et IPv6

2007-02-19 Thread Cédric Lucantis
vraiment pas grand chose en réseau:) Je suis sous Debian unstable avec un noyau 2.6.18 personnalisé, mais le problème persiste avec un noyau pré-compilé. merci beaucoup, -- Cédric Lucantis