Config du client subversion

2010-12-03 Thread nicolas
Bonjour, J'utilise le client subversion sur mes debian et je constate que par défaut la variable store-passwords est à yes. Cela implique que le client subversion stock les identifiants de connexion aux serveurs svn dans ~/.subversion/auth/svn.simple (pour une authentification basique par

Re: Probleme de partitions avec un raid soft

2010-12-03 Thread Frédéric Massot
Le 02/12/2010 21:08, Eric GUIRBAL a écrit : Bonjour, Je dispose d'une station sunblade 1000 (ultrasparc III) sur laquelle était déjà installé une Debian Lenny sparc64. J'ai ajouté un second disque SCSI identique pour configurer un raid 1 logiciel sur cette installation. La configuration est

Re: Xen sous lenny et noyau 2.6.32 de squeeze

2010-12-03 Thread Jean Baptiste Favre
Bonjour, Pour les domU en revanche, le noyau étant mappé en mémoire, il faudra rebooter le domU pour autant que je sache. Je ne suis pas sûr que des outils comme KSplice gère le cas des domU en paravirtualisation. La migration peut être tentée après l'upgrade du noyau domU sur le dom0, si les

Re: Probleme de partitions avec un raid soft

2010-12-03 Thread Sylvain L. Sauvage
[Remis sur la liste.] Le vendredi 3 décembre 2010 à 05:46:53, Eric GUIRBAL a écrit : Sylvain L. Sauvage a écrit : Le jeudi 2 décembre 2010 à 21:08:15, Eric GUIRBAL a écrit : […] Ce que j’ai du mal à comprendre, c’est pourquoi tu fais une patition dans tes md puisque tu as déjà plusieurs

Re: ethertool avec une carte wifi

2010-12-03 Thread Jérôme
Le jeudi 02 décembre 2010 à 22:30 +0100, rk a écrit : Bonsoir, J'ai essayé de configurer une carte wifi pour l'utilisation de wol mais j'ai un message inquiétant qui me fait pensé qui la carte n'est pas compatible avec le wol. Je ne suis pas très sûr que le wifi soit compatible wakeonlan.

Re: ethertool avec une carte wifi

2010-12-03 Thread Sylvain L. Sauvage
Le vendredi 3 décembre 2010 à 12:13:30, Jérôme a écrit : […] Je ne suis pas très sûr que le wifi soit compatible wakeonlan. D'une part il faudrait que la carte reste alimentée et active, d'autre part il doit y avoir un problème au niveau sécurité pour accepter le paquet. Je n'ai pas

[shell] additions

2010-12-03 Thread Frédéric Boiteux
Bonjour, Je cherche le moyen simple dans une commande shell (bash) d'additionner des nombres lus sur l'entrée standard, par exemple la sortie de la commande ls -l | awk '{print $5}'. Auriez-vous une idée ? Fred. -- Lisez la FAQ de la liste avant de poser une question :

Re: [shell] additions

2010-12-03 Thread Sylvain L. Sauvage
Le vendredi 3 décembre 2010 à 16:05:23, Frédéric Boiteux a écrit : Bonjour, ’jour, Je cherche le moyen simple dans une commande shell (bash) d'additionner des nombres lus sur l'entrée standard, par exemple la sortie de la commande ls -l | awk '{print $5}'. Auriez-vous une idée ? awk

Re: [shell] additions

2010-12-03 Thread Frédéric Boiteux
Le Fri, 3 Dec 2010 16:23:37 +0100, Sylvain L. Sauvage sylvain.l.sauv...@free.fr a écrit : awk 'BEGIN {s = 0} {s += $5} END {print s}' Ah, oui, mais awk, c'est de la triche ;-P Merci, Fred. -- Lisez la FAQ de la liste avant de poser une question :

Re: [shell] additions

2010-12-03 Thread Yves Rutschle
On Fri, Dec 03, 2010 at 04:29:06PM +0100, Frédéric Boiteux wrote: Le Fri, 3 Dec 2010 16:23:37 +0100, Sylvain L. Sauvage sylvain.l.sauv...@free.fr a écrit : awk 'BEGIN {s = 0} {s += $5} END {print s}' Ah, oui, mais awk, c'est de la triche ;-P Et Perl? ls -l | awk '{print $5}' | perl -nle

Re: [shell] additions

2010-12-03 Thread Sylvain L. Sauvage
Le vendredi 3 décembre 2010 à 16:29:06, Frédéric Boiteux a écrit : awk 'BEGIN {s = 0} {s += $5} END {print s}' Ah, oui, mais awk, c'est de la triche ;-P Tu l’utilisais déjà dans ton exemple :oP Sinon, tu as … | { s=0; while read i; s=$[ $s + $i ]; done; echo $s; } Mais $[] ne connaît que

Re: [shell] additions

2010-12-03 Thread Sylvain L. Sauvage
Le vendredi 3 décembre 2010 à 16:45:46, Yves Rutschle a écrit : On Fri, Dec 03, 2010 at 04:29:06PM +0100, Frédéric Boiteux wrote: […] On peut faire ça aussi: ls -l | awk '{print $5}' | while read n; do c=$(( c + n )); echo $c; done | tail -n 1 (on devrait pouvoir faire mieux, en imprimant

Re: [shell] additions

2010-12-03 Thread Jean-Yves F. Barbier
On Fri, 3 Dec 2010 16:05:23 +0100, Frédéric Boiteux fboit...@calistel.com wrote: Je cherche le moyen simple dans une commande shell (bash) d'additionner des nombres lus sur l'entrée standard, par exemple la sortie de la commande ls -l | awk '{print $5}'. Auriez-vous une idée ? pour ce cas

Re: [shell] additions

2010-12-03 Thread Yves Rutschle
On Fri, Dec 03, 2010 at 05:17:40PM +0100, Sylvain L. Sauvage wrote: Parce que ton c n'est pas connu en dehors de la boucle. D'où, en plus de bien initialiser c, mon c=0; boucle; echo $c; et l'enrobage dans une liste { ... }. Je me doutais d'un truc de ce genre là, j'avais bein essayer

Re: [shell] additions

2010-12-03 Thread Erwan David
On Fri, Dec 03, 2010 at 04:05:23PM CET, Frédéric Boiteux fboit...@calistel.com said: Bonjour, Je cherche le moyen simple dans une commande shell (bash) d'additionner des nombres lus sur l'entrée standard, par exemple la sortie de la commande ls -l | awk '{print $5}'. Auriez-vous une

Re: Probleme de partitions avec un raid soft

2010-12-03 Thread Eric GUIRBAL
Le 3 décembre 2010 12:11, Sylvain L. Sauvage sylvain.l.sauv...@free.fr a écrit : [Remis sur la liste.] Oups, toutes mes excuses. Un réflexe, j'utilise rarement le webmail de Google. Le vendredi 3 décembre 2010 à 05:46:53, Eric GUIRBAL a écrit : Sylvain L. Sauvage a écrit : Le jeudi 2

Re: [shell] additions

2010-12-03 Thread Sylvain L. Sauvage
Le vendredi 3 décembre 2010 à 17:20:42, Yves Rutschle a écrit : On Fri, Dec 03, 2010 at 05:17:40PM +0100, Sylvain L. Sauvage wrote: Parce que ton c n'est pas connu en dehors de la boucle. D'où, en plus de bien initialiser c, mon c=0; boucle; echo $c; et l'enrobage dans une

Re: Probleme de partitions avec un raid soft

2010-12-03 Thread Sylvain L. Sauvage
Le vendredi 3 décembre 2010 à 17:55:33, Eric GUIRBAL a écrit : […] trouvées ici et là. J'ai essentiellement (sauf pour le clonage de la table des partitions de sda avec dd qui n'a rien donné vu que cfdisk ne m'affichait aucune partition sur sdb) Tu avais forcé la relecture de la table

Re: ethertool avec une carte wifi

2010-12-03 Thread moi-meme
Le Thu, 02 Dec 2010 22:40:02 +0100, rk a écrit : J'ai essayé de configurer une carte wifi pour l'utilisation de wol mais j'ai un message inquiétant qui me fait pensé qui la carte n'est pas compatible avec le wol. ethtool - Display or change ethernet card settings pas compatible avec le Wifi

Re: Probleme de partitions avec un raid soft

2010-12-03 Thread Eric GUIRBAL
Sylvain L. Sauvage a écrit : Le vendredi 3 décembre 2010 à 17:55:33, Eric GUIRBAL a écrit : […] trouvées ici et là. J'ai essentiellement (sauf pour le clonage de la table des partitions de sda avec dd qui n'a rien donné vu que cfdisk ne m'affichait aucune partition sur sdb) Tu avais forcé

Re: Probleme de partitions avec un raid soft

2010-12-03 Thread Eric GUIRBAL
Sylvain L. Sauvage a écrit : Tu avais forcé la relecture de la table entretemps ? Non. -- Eric -- Lisez la FAQ de la liste avant de poser une question : http://wiki.debian.org/fr/FrenchLists Pour vous DESABONNER, envoyez un message avec comme objet unsubscribe vers

Re: default ACL czy tak ma działłać

2010-12-03 Thread R.M.M
Witam! Zobacz tutaj: http://pl.wikipedia.org/wiki/Setuid -- R.M.M W dniu 2 grudnia 2010 09:27 użytkownik Andrzej Kosmala kos...@cyberia.plnapisał: W katalogu innego usera (ela) chcę mieć prawo czytania i pisania katalog ma uprawnienia: getfacl doc # file: doc # owner: ela # group:

Jumbo Frames na Debianie

2010-12-03 Thread TENEG - Tomasz Gołębiewski
Witam, chciałbym wiedzieć, bo może ktoś z Was z tego korzysta - czy są jakieś korzyści z użycia Jumbo Frames? Zwłaszcza chodzi mi o transfery przy użyciu iSCSI, CIFS... i mniejsze obciążenie CPU. Przy założeniu, że wszystkie switche / karty / urządzenia po drodze obsługują MTU 9000.

[OT] 3camp#23 i tech.3camp#4.

2010-12-03 Thread Krzysztof Zubik
Witam. Tym razem wyjatowo pisze o tego typu spotkaniu - a, to ze wzgledu na jego agende glownie tu mam n a mysli tech.3camp Oto wybrany fragment z witryny pod http://www.3camp.pl * Serdecznie zapraszamy w najbliższy wtorek, 7

Re: Nota sobre el SO

2010-12-03 Thread Camaleón
El 2010-12-03 a las 04:31 -0300, Lobo Oscuro escribió: (reenvío a la lista) El 3 de diciembre de 2010 04:10, Camaleón escribió: El Fri, 03 Dec 2010 00:47:17 -0300, Lobo Oscuro escribió: Bueno chicos, llevo casi una semana en este sistema operativo y es como que las opciones y

Re: Nota sobre el SO

2010-12-03 Thread Felix Perez
El día 3 de diciembre de 2010 00:47, Lobo Oscuro lobooscu...@gmail.com escribió: Bueno chicos, llevo casi una semana en este sistema operativo y es como que las opciones y paciencia se me acaban, en este momento no tengo ningun SO al que me caiga bien, si esto sigue asi me dedicare a mirar

Re: Nota sobre el SO

2010-12-03 Thread Marc Aymerich
2010/12/3 Felix Perez felix.listadeb...@gmail.com El día 3 de diciembre de 2010 00:47, Lobo Oscuro lobooscu...@gmail.com escribió: Bueno chicos, llevo casi una semana en este sistema operativo y es como que las opciones y paciencia se me acaban, en este momento no tengo ningun SO al que

Re: Nota sobre el SO

2010-12-03 Thread hector hector
El día 3 de diciembre de 2010 11:11, Marc Aymerich glicer...@gmail.com escribió: 2010/12/3 Felix Perez felix.listadeb...@gmail.com El día 3 de diciembre de 2010 00:47, Lobo Oscuro lobooscu...@gmail.com escribió: Bueno chicos, llevo casi una semana en este sistema operativo y es como que

Re: variables entre PHP y Javascript

2010-12-03 Thread juan alejandro martines linares
El jue, 02-12-2010 a las 23:52 -0600, Jorge Luis Hernández C. escribió: Podrías hacer esto en javascript: var session = ?php echo $_SESSION[misesion] ? Recuerda que el documento en PHP debe iniciar con session_start() Por cierto, esta lista es de Usuarios Debian y debiste poner [OT] al

Re: [OT] Re: variables entre PHP y Javascript

2010-12-03 Thread juan alejandro martines linares
El vie, 03-12-2010 a las 07:17 +, Camaleón escribió: El Fri, 03 Dec 2010 00:22:43 -0500, islanis escribió: Hola amigos tengo una duda de programacion web y necesito que quien pueda me la aclare se que no encaja aca pero no tengo a quien acudir y estoy seguro que alguno de ustedes

Re: [OT] Re: variables entre PHP y Javascript

2010-12-03 Thread Camaleón
El Fri, 03 Dec 2010 09:42:57 +0100, juan alejandro martines linares escribió: El vie, 03-12-2010 a las 07:17 +, Camaleón escribió: No sé si las nuevas versiones de PHP habrán incluido algún procedimiento o función para trabajar con las variables de sesión directamente desde el cliente

Re: [OT] Re: variables entre PHP y Javascript

2010-12-03 Thread islanis
Camaleón noela...@gmail.com escribió: El Fri, 03 Dec 2010 09:42:57 +0100, juan alejandro martines linares escribió: El vie, 03-12-2010 a las 07:17 +, Camaleón escribió: No sé si las nuevas versiones de PHP habrán incluido algún procedimiento o función para trabajar con las variables de

Problemas con placa de red Sis190 en debian Lenny

2010-12-03 Thread Mauro Sánchez
Hola a todos. Tengo problemas con la placa de red SIS190 en Debian Lenny. Seguí la siguiente guía para solucionarlo: http://www.esdebian.org/trucos/27165/sis-190191-ethernet-controler-asus-p5sd2-vm Compilo el modulo de la siguiente manera: - Descargo el codigo fuente del kernel. - Ejecuto: make

Re: Nota sobre el SO

2010-12-03 Thread Arele
On Fri, Dec 03, 2010 at 11:36:02AM -0300, hector hector wrote: El día 3 de diciembre de 2010 11:11, Marc Aymerich glicer...@gmail.com escribió: 2010/12/3 Felix Perez felix.listadeb...@gmail.com El día 3 de diciembre de 2010 00:47, Lobo Oscuro lobooscu...@gmail.com escribió: Bueno

Re: Nota sobre el SO

2010-12-03 Thread C.
El vie, 03-12-2010 a las 11:36 -0300, hector hector escribió: El día 3 de diciembre de 2010 11:11, Marc Aymerich glicer...@gmail.com escribió: 2010/12/3 Felix Perez felix.listadeb...@gmail.com El día 3 de diciembre de 2010 00:47, Lobo Oscuro lobooscu...@gmail.com escribió: Bueno

Re: variables entre PHP y Javascript

2010-12-03 Thread C.
El vie, 03-12-2010 a las 09:41 +0100, juan alejandro martines linares escribió: El jue, 02-12-2010 a las 23:52 -0600, Jorge Luis Hernández C. escribió: Podrías hacer esto en javascript: var session = ?php echo $_SESSION[misesion] ? Recuerda que el documento en PHP debe iniciar con

Re: [OT] Re: variables entre PHP y Javascript

2010-12-03 Thread Camaleón
El Fri, 03 Dec 2010 10:38:28 -0500, islanis escribió: Camaleón escribió: ¿No tienes los manuales de referencia de PHP y JavaScript? Nop no los tengo puediras hacermelos llegar por favor,y gracias nuevamente Enviados... pero tu buzón está lleno y me ha rebotado unos cuantos correos. Ya

Re: Nota sobre el SO

2010-12-03 Thread Javier San Roman
El Viernes, 3 de Diciembre de 2010, hector hector escribió: El día 3 de diciembre de 2010 11:11, Marc Aymerich glicer...@gmail.com escribió: 2010/12/3 Felix Perez felix.listadeb...@gmail.com El día 3 de diciembre de 2010 00:47, Lobo Oscuro lobooscu...@gmail.com escribió: Bueno

Re: Nota sobre el SO

2010-12-03 Thread Victor H De la Luz
monton de cosas menos lindos, y pone las respuestas malas como pruebas, nunca pone lo que el escribe para que se lo mande a pasear.- Puede que sea una coincidencia de nick, pero a mi también me suena de eso. -- Usuario Linux: #156817 Debian Squeeze/Sid - Kernel 2.6.36 Ademas de que

Re: Problemas con placa de red Sis190 en debian Lenny

2010-12-03 Thread Camaleón
El Fri, 03 Dec 2010 14:51:13 -0300, Mauro Sánchez escribió: Tengo problemas con la placa de red SIS190 en Debian Lenny. Seguí la siguiente guía para solucionarlo: http://www.esdebian.org/trucos/27165/sis-190191-ethernet-controler-asus- p5sd2-vm Compilo el modulo de la siguiente manera: -

Re: entrar en la bios

2010-12-03 Thread Ni Te
 Con mucho cuidado. -Mensaje original- From: jaiolvg Sent: Thursday, December 02, 2010 10:33 PM To: debian-user-spanish@lists.debian.org Subject: entrar en la bios Tengo linux debian 5.0, ¿como puedo acceder a la bios? -- To UNSUBSCRIBE, email to

Re: Re: entrar en la bios

2010-12-03 Thread Javier
H.P.

Re: Re: entrar en la bios

2010-12-03 Thread Aurelio Diaz-Ufano
On Fri, Dec 03, 2010 at 11:36:08PM +0100, Javier wrote: H.P. Sobrentendiendo lo que quieres deir, no tienes ningún derecho a insultar a nadie. En esta lista la ayuda es voluntaria y hay unas normas. De entrada, como te han dicho, tu pregunta es OT: entrar en la BIOS no tiene nada que ver

Re: Nota sobre el SO

2010-12-03 Thread Angel Claudio Alvarez
El vie, 03-12-2010 a las 00:47 -0300, Lobo Oscuro escribió: Bueno chicos, llevo casi una semana en este sistema operativo y es como que las opciones y paciencia se me acaban, en este momento no tengo ningun SO al que me caiga bien, si esto sigue asi me dedicare a mirar cielos... No estoy echo

Re: Nota sobre el SO

2010-12-03 Thread Juan Lavieri
El 03/12/10 18:27, Angel Claudio Alvarez escribió: El vie, 03-12-2010 a las 00:47 -0300, Lobo Oscuro escribió: Bueno chicos, llevo casi una semana en este sistema operativo y es como que las opciones y paciencia se me acaban, en este momento no tengo ningun SO al que me caiga bien, si esto

Re: orca, åter igen orca, på linux debian på usb.

2010-12-03 Thread Anders Jackson
Jag fortsätter på listan. Mitt fel... Den 3 december 2010 10:25 skrev Bardia Zakeri bardiazak...@gmail.com: anders använder du oskcå också orca eller ? Nej, jag har bara provat den av ren nyfikenhet. Paketet heter gnome-orca, om du vill installera det. Sök paket på

Digitalt ljud ut på nVidia MCP55

2010-12-03 Thread Ivar Edebro
Har grävt, testat och fixat, men kommer ingen vart... Hoppas att listan kan hjälpa till. Har ett itegrerat ljudkort på mitt nVidia MCP55. Alla förhoppningsvis relevanta loggar finns nedan. Mitt problem är att jag endast får analogt ljud ut. Kortet har en digital optisk utgång S/PDIF, men den

Re: Dúvidas quanto a Processador

2010-12-03 Thread Moksha Tux
Grande Eden Muito obrigado pela sua resposta. quando eu fiz o processo de primeira vez eu havia detectado aquele valor de 1 GHz mas quando eu reiniciei a máquina e entrei no setup da BIOS o sistema mostrou o valor corretamente de 2600 GHz essa placa mãe já está me apresentando problemas há um

Unable to load repositories as IPV6 (97 address family not supported)

2010-12-03 Thread Flávio Barros
Bom dia. Alguém já recebeu esse mensagem quando executa um apt-get update ? -- Desde já agradeço, +++ Flávio de Oliveira Barros Manaus - Amazonas - Brasil Copiar é bom! Seja Legal Use Software Livre Ubuntu User number is # 28558 Linux Registered User# 278223

Velocidade de conexão ao mysql

2010-12-03 Thread Roberto Torres
Tenho um Debian Lenny rodando um servidor MySql. Quando vou acessar o MySql do meu note (Windows) ou qualquer outra maquina da rede através de algum cliente (Mysql-admin ou Navicat) ele demora uns 60 segundos ou mais. Essa demora é normal ? Segue conf do meu my.cnf # # The

Re: Velocidade de conexão ao mysql

2010-12-03 Thread Eden Caldas
Você está tentando acessar via IP ou via nome? Tenta via IP. Eden Caldas Consultor de TI e...@linuxfacil.srv.br (81) 9653 7220 LINUX FÁCIL – Consultoria e Serviços em TI Em 3 de dezembro de 2010 16:04, Roberto Torres jrtor...@bol.com.brescreveu: Tenho um Debian Lenny rodando um servidor

Re: Res: Configuração de dois monitores

2010-12-03 Thread Edson - PMSS
Agradeço a todos que me responderam. Consegui resolver meu problema com a preciosa colaboração de todos vocês. Meu muito obrigado! Edson Em 02/12/2010 18:00, Gerson Haus escreveu: Outra opção é instalar os drivers fornecidos em http://www.nvidia.com/Download. Comigo funcionam bem com dois

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Andrei Popescu
On Vi, 03 dec 10, 02:44:20, Doug wrote: It seems to me that Eric should be making covers for Squeeze, since it has now been finalized. At this point, I would think that anyone who wants to load a Debian distro would immediately use the latest stable version, which is Squeeze. Did I miss some

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Boyd Stephen Smith Jr.
On Friday, December 03, 2010 01:35:21 you wrote: Boyd Stephen Smith Jr. writes: ] In 87r5dz4eta@ixian.com, Eric De Mund wrote: ] Hello. Jewelcase insert made for myself so that the disc's SHA512 ] checksum and size were both right on the front, easy for me to see. ] ] Have you considered

Re: To make use of rtorrent with torrent-proxies.

2010-12-03 Thread Camaleón
On Fri, 03 Dec 2010 03:44:39 +0700, Sthu Deus wrote: How I can use torrent proxy by a rtorrent client - when its ports are blocked? That's what I set in version 0.7.9-2.2 .rtorrent.rc file: http_proxy = 75.191.174.18:6724 but without luck. As suggested here:

Re: [OT] Making CPU fans spin [was: Re: Seeking advice...]

2010-12-03 Thread Doug
On 12/02/2010 09:17 AM, ow...@netptc.net wrote: Original Message From: go...@dobosevic.com To: debian-user@lists.debian.org Subject: Re: [OT] Making CPU fans spin [was: Re: Seeking advice...] Date: Wed, 01 Dec 2010 23:11:42 +0100 /snip/ While WD-40 is good for some things it is

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Boyd Stephen Smith Jr.
In 20101203080012.gi3...@think.homelan, Andrei Popescu wrote: On Vi, 03 dec 10, 02:44:20, Doug wrote: It seems to me that Eric should be making covers for Squeeze, since it has now been finalized. At this point, I would think that anyone who wants to load a Debian distro would immediately use

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread John Jason Jordan
On Fri, 03 Dec 2010 02:43:30 -0500 Doug dmcgarr...@optonline.net dijo: I have found that Light-Scribe is a surer way to know what's on a disk, and if you're into jewel cases, you can read right thru the empty top. Your idea of distributing them alongside the distro is a good one, but the problem

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Andrei Popescu
On Vi, 03 dec 10, 02:06:56, Boyd Stephen Smith Jr. wrote: On Friday, December 03, 2010 01:35:21 you wrote: Boyd Stephen Smith Jr. writes: ] In 87r5dz4eta@ixian.com, Eric De Mund wrote: ] Hello. Jewelcase insert made for myself so that the disc's SHA512 ] checksum and size were both right

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Boyd Stephen Smith Jr.
In 4cf89fa2.2010...@optonline.net, Doug wrote: I have found that Light-Scribe is a surer way to know what's on a disk, and if you're into jewel cases, you can read right thru the empty top. While a LightScribe image would be nice, I prefer a jewel case insert. Last time I checked LightScribe

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Klistvud
Dne, 03. 12. 2010 09:11:44 je John Jason Jordan napisal(a): Regarding Lightscribe, I built myself a desktop a couple years ago and paid a couple bucks extra for DVD drives with Lightscribe. Eventually I got them working under Linux. And then I discovered that they do only grayscale, and at a

Re: Ability to write to CD-R went away?

2010-12-03 Thread Phil Requirements
On 2010-12-02 13:58:00 -0700, lbml...@hethcote.com wrote: Hi all, I have a problem that is causing me difficulty debugging and/or deciding where to send a bug report. Under lenny with 2.6.26-2-amd64 I can write both CD-R and CD-RW media on the Pioneer and Plextor drives on my system.

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Klistvud
Dne, 03. 12. 2010 09:12:48 je Boyd Stephen Smith Jr. napisal(a): Getting in contact with the release team might get Eric a SHA before the official release date though, so that the jewel case inserts can be prepared and released at the same time as the images. ??? Isn't SHA bound to

Рaбoта ЧП в 2011

2010-12-03 Thread Все для чаcтного предпpинимателя
-- | ВСE ДЛЯ ЧAСТHОГО ПPEДПРИНИМАТЕЛЯ. | | Kак pабoтать ЧАCТHОМУ ПPEДПРИНИМАТЕЛЮ в 2011 гoду: | | кoдекc пpинят c пoпpавками Прeзидента: в 2011 г. | | будeт пpoдолжать действoвать

Re: acroread trouble on Sqeeze

2010-12-03 Thread Camaleón
On Thu, 02 Dec 2010 15:57:34 -0500, Celejar wrote: On Thu, 02 Dec 2010 09:48:16 +0100 Andreas Weber wrote: On 2010-11-30 13:48, Jerome BENOIT wrote: Any idea ? Try evince? It even works great and simple without fuss on my M$ box. If we're looking for Acroread replacements, I suggest

Re: To make use of rtorrent with torrent-proxies.

2010-12-03 Thread Sthu Deus
Thank You for Your time and answer, Camaleón: You may also need to set: proxy_address = 75.191.174.18:6724 Ah.. it s did not solve my problem. Here is my rc file turned on options: max_uploads = 0 upload_rate = 0 download_rate = 0 directory = /srv/pub session = ~/.rtorrent/session

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Boyd Stephen Smith Jr.
In 1291365913.1496...@compax, Klistvud wrote: Dne, 03. 12. 2010 09:12:48 je Boyd Stephen Smith Jr. napisal(a): Getting in contact with the release team might get Eric a SHA before the official release date though, so that the jewel case inserts can be prepared and released at the same time

Re: acroread trouble on Sqeeze

2010-12-03 Thread Boyd Stephen Smith Jr.
In pan.2010.12.03.09.08...@gmail.com, Camaleón wrote: On Thu, 02 Dec 2010 15:57:34 -0500, Celejar wrote: On Thu, 02 Dec 2010 09:48:16 +0100 Andreas Weber wrote: On 2010-11-30 13:48, Jerome BENOIT wrote: Any idea ? Try evince? If we're looking for Acroread replacements, I suggest also

Re: need help on recovering Windows partition

2010-12-03 Thread teddieeb
Finding the data is coincidence because you have created partitions with same sizes, still you have corrupted some entries in the partition table and you need to repair it. partition magick and alike tools do it. -- What I don't get is this, if you are able to access the data, doesn't

Re: acroread trouble on Sqeeze

2010-12-03 Thread Camaleón
On Fri, 03 Dec 2010 03:26:01 -0600, Boyd Stephen Smith Jr. wrote: In pan.2010.12.03.09.08...@gmail.com, Camaleón wrote: We (at linux side) still lack a 1:1 full-featured PDF solution that can be considered a complete replacement for Acrobat Reader (the same it happens with Adobe Flash Player).

Re: acroread trouble on Sqeeze

2010-12-03 Thread Doug
On 12/3/2010 4:08 AM, Camaleón wrote: On Thu, 02 Dec 2010 15:57:34 -0500, Celejar wrote: On Thu, 02 Dec 2010 09:48:16 +0100 Andreas Weber wrote: On 2010-11-30 13:48, Jerome BENOIT wrote: Any idea ? Try evince? It even works great and simple without fuss on my M$ box. If we're looking

Re: To make use of rtorrent with torrent-proxies.

2010-12-03 Thread Camaleón
On Fri, 03 Dec 2010 16:10:38 +0700, Sthu Deus wrote: You may also need to set: proxy_address = 75.191.174.18:6724 Ah.. it s did not solve my problem. Here is my rc file turned on options: max_uploads = 0 upload_rate = 0 download_rate = 0 directory = /srv/pub session =

Re: Towards a working initrd.img file

2010-12-03 Thread Tom H
On Fri, Dec 3, 2010 at 1:12 AM, Peter Tenenbaum peter.g.tenenb...@gmail.com wrote: I've been having a problem since migrating my file system to RAID-1, which is that when I run update-initramfs, it produces an initrd.img file which doesn't work correctly; when I replace it with the initrd.img

C Developer community

2010-12-03 Thread Jamie White
Hey Does anyone know where there are some C development communities? Jamie

Re: C Developer community

2010-12-03 Thread George
On Fri, Dec 3, 2010 at 2:46 PM, Jamie White jatos.softw...@gmail.com wrote: Hey Does anyone know where there are some C development communities? The most useful one by far is the comp.lang.c newsgroup. Please read the faq at http://c-faq.com/ before you post. You can also try the excellent #c

RE: Towards a working initrd.img file

2010-12-03 Thread Mike Viau
On Fri, 3 Dec 2010 07:15:38 -0500 tomh0...@gmail.com wrote: On Fri, Dec 3, 2010 at 1:12 AM, Peter Tenenbaum wrote: I've been having a problem since migrating my file system to RAID-1, which is that when I run update-initramfs, it produces an initrd.img file which doesn't work

Re: To make unreadable a functional system.

2010-12-03 Thread Sthu Deus
Thank You for Your time and answer, Mike: Let us know what the product was, and maybe we can work from there. All right, I got the point. Though still an idea remains - a read pass can be encrypted each time the host boots - depending on hardware - then check w/ the one saved in OS. :) I do

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Joey Hess
John Jason Jordan wrote: I'm not suggesting that Debian needs to be on a fancy, professional CD, because Debian is not really aiming at the newbie Linux user like Ubuntu. I'm just saying that a professionally created CD enhances your credibility. http://www.debian.org/CD/artwork/ -- see shy

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Ken Heard
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 John Jason Jordan wrote: As a university graduate student I come in contact with a lot of people who see my computer running Linux. This gives me an opportunity to introduce them to Linux. In the past I always carried an Ubuntu-32 live CD to hand

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread Eduardo M KALINOWSKI
On Sex, 03 Dez 2010, Ken Heard wrote: So it is all in the packaging? Your sharpie they did not trust, but a CD made by you but with the pretty Ubuntu picture put there by you on the same CD download as the one with the sharpie they did trust. How naive can people be? They're so naive in this

Print two pages per sheet, one side

2010-12-03 Thread Rodolfo Medina
Hi to all Debian users. I wish to print a large pdf document two pages per A4 sheet one side only, but: 1) I want that the text side is not reduced, since I checked it is small enough to fit in the sheet the size it is; 2) I want to print it first into another pdf file before sending it to a

Re: To make use of rtorrent with torrent-proxies.

2010-12-03 Thread Sthu Deus
Thank You for Your time and answer, Camaleón: Nope, sorry :-( All right, I will go farther on investigation rtorrent and proxy. But for now - as the time is important to me - do You a torrent client that is capable or easy to use w/ torrents proxy - that is when direct torrent use is blocked

Debian Version for download 2.4

2010-12-03 Thread culser1242
Dear sir/ mam do you know a link where I can down load an older Debian Version Image? Linux DEB1 2.4.27-2-386 #1 Wed Aug 17 09:33:35 UTC 2005 i686 GNU/Linux -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: jewelcase insert for 5.0.7 Lenny Official i386 xfce+lxde-CD

2010-12-03 Thread John Jason Jordan
On Fri, 03 Dec 2010 11:24:01 -0500 Ken Heard k...@heard.name dijo: John Jason Jordan wrote: Windows users (especially) are terrified of malware. As well they ought to be, considering the OS they run. My CD with Ubuntu-32 written on it with a sharpie did not impress them. But later I acquired

Re: Print two pages per sheet, one side

2010-12-03 Thread Johan Grönqvist
2010-12-03 17:42, Rodolfo Medina skrev: 1) I want that the text side is not reduced, since I checked it is small enough to fit in the sheet the size it is; 2) I want to print it first into another pdf file before sending it to a printer. I needed this recently, and I believe the

Re: Print two pages per sheet, one side

2010-12-03 Thread Camaleón
On Fri, 03 Dec 2010 16:42:51 +, Rodolfo Medina wrote: I wish to print a large pdf document two pages per A4 sheet one side only, but: 1) I want that the text side is not reduced, since I checked it is small enough to fit in the sheet the size it is; 2) I want to print it first

Re: To make use of rtorrent with torrent-proxies.

2010-12-03 Thread Camaleón
On Sat, 04 Dec 2010 00:25:35 +0700, Sthu Deus wrote: Thank You for Your time and answer, Camaleón: Nope, sorry :-( All right, I will go farther on investigation rtorrent and proxy. But for now - as the time is important to me - do You a torrent client that is capable or easy to use w/

Re: Debian Version for download 2.4

2010-12-03 Thread Pascal Hambourg
Hello, culser1242 a écrit : do you know a link where I can down load an older Debian Version Image? http://cdimage.debian.org/cdimage/archive/ A repository is also available at http://archive.debian.org/ Linux DEB1 2.4.27-2-386 #1 Wed Aug 17 09:33:35 UTC 2005 i686 GNU/Linux IIRC this

Application problems associated with missing libGLcore.so.1 file

2010-12-03 Thread AG
Dear list I have come across a problem that I seem to be going in circles to try to resolve. I'd appreciate any help you might be able to offer. I am unable to launch various apps (e.g. chromium, amarok, ...) apparently because I lack a given library file - libGLcore.so.1 I couldn't find

Strange problem with DNS resolving on Squeeze

2010-12-03 Thread Andrew Wood
Im experiencing strange DNS resolution problems with a Squeeze desktop system on our simple LAN which has an internal DNS server for local hosts, and which also proxies DNS requests for public IP addresses needed by internal clients. The other clients on our network can resolve names fine.

Re: building initramfs also as root filesystem problem

2010-12-03 Thread Toan Pham
Hi all, I got this resolved, the trick when building ramfs as rootfs os is to: 1. Use busybox (symlink all neccessary tools and package all busybox dependencies with ramfs) 2. bootup into busybox bash, which should be /bin/sh symlinked to /bin/busybox 3. You may get nothing (no stardard

Re: Strange problem with DNS resolving on Squeeze

2010-12-03 Thread Stan Hoeppner
Andrew Wood put forth on 12/3/2010 3:00 PM: Im experiencing strange DNS resolution problems with a Squeeze desktop system on our simple LAN which has an internal DNS server for local hosts, and which also proxies DNS requests for public IP addresses needed by internal clients. ... Im totally

Re: Strange problem with DNS resolving on Squeeze

2010-12-03 Thread Pascal Hambourg
Hello, Andrew Wood a écrit : First of all, if I try and SSH into one of our internal servers (which works from other clients) I get: and...@debian:/$ ssh a...@sambatest1.wrinehillvilla.local ssh: Could not resolve hostname sambatest1.wrinehillvilla.local: Name or service not known

flash crashes when switching to full screen mode in iceweasel and chrome

2010-12-03 Thread Adam Hardy
Hi All, it looks like this has happened to a few people but I haven't found any fix which works. I recently upgraded my libflashplayer package and since then I can't maximize any flash video to full screen - it just takes out iceweasel completely. The same with chrome - but the browser

please correct me on my code?

2010-12-03 Thread hadi motamedi
Dear All On my Debian server, I need to separate the individual logs coming from various modules concurrently. Please find below a sample of the logs: ' IPTR .. Read Subscript: 153 Write Subscript: 154 Port: 4972 Current time: Tue Nov 23 15:33:53 2010 Sent packet to 172.18.99.1 4972 #0 packet is

Re: flash crashes when switching to full screen mode in iceweasel and chrome

2010-12-03 Thread Artur Frydel
Day Sat, 04 Dec 2010 01:50:01 +0100, Adam Hardy wrote: Hi All, it looks like this has happened to a few people but I haven't found any fix which works. I recently upgraded my libflashplayer package and since then I can't maximize any flash video to full screen - it just takes out

Re: Systeem overbelast bij printen vanuit OOo.

2010-12-03 Thread Arjen Bax
Op 2 december 2010 22:28 heeft Paul van der Vlis het volgende geschreven: Het is ondertussen duidelijk dat het probleem in een logo zit, een simpel plaatje. We gaan het vervangen en waarschijnlijk is het probleem dan opgelost. Maar wel een hele rare zaak die eigenlijk best een bug waard is.