Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Kevin Hinault
Le 23 décembre 2008 21:34, Jacques L'helgoualc'h lhh+no_s...@free.fr a écrit : Jacques L'helgoualc'h a écrit, mardi 23 décembre 2008, à 18:53 : sed -ne '1h;2,25H;26,${H;g;P;s/^[^\n]*\n//;h};$aLe mot de la fin.' .- un - - deux -- - trois - 66 caractères, contre

Re: IP reversing

2008-12-24 Thread François Boisson
Le Tue, 23 Dec 2008 10:08:40 +0100 Jean-Michel Schelcher jm...@schelcher.net a écrit: Je ne sais pas du tout comment ils font, mais la solution la plus simple serait amha celle du moteur de recherche. En gros ils connaissent tous les sites du web, résolvent leurs IP et la stockent dans une

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Arnaud Delobelle
On 23 Dec 2008, at 20:34, Jacques L'helgoualc'h wrote: Jacques L'helgoualc'h a écrit, mardi 23 décembre 2008, à 18:53 : [...] chercher l'émulation de tail. Tout bêtement dans « info sed »... Il me semble que dans les trésors de http://sed.sf.net on peut trouver une méthode de fenêtre

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Jacques L'helgoualc'h
Arnaud Delobelle a écrit, mercredi 24 décembre 2008, à 10:39 : [...] Personne n'a mentionné awk (pas testé): awk '{r[i++%25]=$0;if(i=25)print r[i%25]}END{printLe mot de la fin}' C'est plus long que sed mais au moins c'est lisible... Tu as oublié le point final --- mais i24, et ton compte est

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Mathieu JANIN
Le mercredi 24 décembre 2008, Kevin Hinault a écrit : Le 23 décembre 2008 21:34, Jacques L'helgoualc'h lhh+no_s...@free.fr a écrit : Jacques L'helgoualc'h a écrit, mardi 23 décembre 2008, à 18:53 : sed -ne '1h;2,25H;26,${H;g;P;s/^[^\n]*\n//;h};$aLe mot de la fin.' .- un - -

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Jean-Baptiste Hétier
On Wed, 24 Dec 2008 10:39:45 +, Arnaud Delobelle Personne n'a mentionné awk (pas testé): awk '{r[i++%25]=$0;if(i=25)print r[i%25]}END{printLe mot de la fin}' C'est plus long que sed mais au moins c'est lisible... C'est moins long que perl *et* c'est lisible :) Et pourquoi pas vim

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Kevin Hinault
Le 24 décembre 2008 12:07, Mathieu JANIN matto...@orange.fr a écrit : Ben oui, mais finalement, on est encore en dessous en faisant bêtement: tail -n25 fichier echo Le mot de la fin. Ca ne dépasse pas 35 caractères sans compter le nom du fichier (40 si on se met à égalité par rapport aux

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread François Boisson
Le but était de garder tout sauf les 25 dernières lignes pas de garder les 25 dernières et c'est justement pour ça qu'on fait tous mumuse depuis hier ^^ head -n-25 fichier echo lemotdelafin François Boisson Je remarque d'ailleurs que personne n'a encore proposé de le faire avec php ;)

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Jacques L'helgoualc'h
Arnaud Delobelle a écrit, mercredi 24 décembre 2008, à 10:39 : Personne n'a mentionné awk (pas testé): awk '{r[i++%25]=$0;if(i=25)print r[i%25]}END{printLe mot de la fin}' awk '{r[i++%26]=$0}i25{print r[i%26]}END{printLe mot de la fin.}' (à la dernière impression, le tableau contient les 25

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Etienne CROMBEZ
Le 24 décembre 2008 12:18, Jean-Baptiste Hétier cont...@djib.fr a écrit : Et pourquoi pas vim tant qu'on y est :D vim +$-25,$s/\_.*/nouveaumot/g +wq test Moi c'est ce que je trouve le plus lisible, court et naturel ! Joyeux noël! Je prefere toujours tail et diff c'est ce qui me semble

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Philippe Merlin
Le mercredi 24 décembre 2008, Kevin Hinault a écrit : Le 24 décembre 2008 12:07, Mathieu JANIN matto...@orange.fr a écrit : Ben oui, mais finalement, on est encore en dessous en faisant bêtement: tail -n25 fichier echo Le mot de la fin. Ca ne dépasse pas 35 caractères sans compter le

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Jacques L'helgoualc'h
Mathieu JANIN a écrit, mercredi 24 décembre 2008, à 12:07 : [...] Ben oui, mais finalement, on est encore en dessous en faisant bêtement: tail -n25 fichier echo Le mot de la fin. Ah que non, tu ne conserves que les 25 dernières lignes, celles qu'il faut effacer : ~ $ echo {1..42}|sed 's/

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Philippe Merlin
Le mercredi 24 décembre 2008, François Boisson a écrit : Le but était de garder tout sauf les 25 dernières lignes pas de garder les 25 dernières et c'est justement pour ça qu'on fait tous mumuse depuis hier ^^ head -n-25 fichier echo lemotdelafin François Boisson Je remarque

Re: sed: remplacer les dernieres lignes de fichiers par un mot...

2008-12-24 Thread Arnaud Delobelle
On 24 Dec 2008, at 12:29, François Boisson wrote: head -n-25 fichier echo lemotdelafin OK mais je soupçonne que head -n{nombre négatif} soit spécifique à GNU head donc pas très portable. -- Arnaud -- Lisez la FAQ de la liste avant de poser une question :

Re: Compatiblité Samsung Q1 et Linux...

2008-12-24 Thread yann
Le Sun, 21 Dec 2008 15:40:01 +0100, Yann Cohen y...@ianco.org a écrit : Bonsoir, Pour compléter le sujet, le comment j'ai fait est disponible à l'adresse suivante : http://blog.ianco.homelinux.org/ianco/?post/2008/12/23/MTP-Gnomad2-et-Rhythmbox Merci et bonnes fêtes Yann. PS ce lecteur MP3

Re: OCR à documents écr its à la machine à écrire

2008-12-24 Thread Alexandre
(3ème envoi du même mail... je ne comprends pas que je n'arrive pas à poster sur la liste...) Le mardi 23 décembre de l'année 2008, vers 10 heures et 22 minutes, Daniel Caillibaud écrivait: Gaëtan PERRIER a écrit : [...] je viens de prouver le *tesseract* français et le résultat a été

Re: Immigration

2008-12-24 Thread Revolver Onslaught
Eric MC wrote: Immigration La question suivante a été demandée dans un récent sondage: 'Y-a-t-il trop d'immigrants en France?' 21% ont répondu : Oui 17% ont répondu: Non 62% ont répondu: عهد الأمن العالمي بواشنط Eric MC Hello, Après vérification des

Re: Immigration

2008-12-24 Thread mouss
Revolver Onslaught a écrit : Eric MC wrote: Immigration La question suivante a été demandée dans un récent sondage: 'Y-a-t-il trop d'immigrants en France?' 21% ont répondu : Oui 17% ont répondu: Non 62% ont répondu: عهد الأمن العالمي بواشنط Eric MC

Re: Sobre NetInstall Amd64 y VmWare en 32 Bits

2008-12-24 Thread Javier
2008/12/24 ciracusa cirac...@gmail.com: Buenas Lista. Estoy haciendo algunas pruebas con una NetInstall AMD 64 y hasta ahora todo perfecto. La pregunta es: - Este servidor lo quiero utilizar virtualizado con VMWARE (sobre Debian Lenny), existe algún problema en que el host sea 64bits y

Sobre votación de los firmware propietarios.

2008-12-24 Thread javier martín pastor
Saludos: Desearía saber cual es la situación actual de la votación ya que acabo de enterarme que la votación se amplía hasta el próximo 28 de Diciembre. ¿Cual ha sido la razón de dicha ampliación? Muchas gracias por adelantado. -- ¿Por qué pagar la licencia del Office 2007 si OpenOffice ofrece

Re: Sobre NetInstall Amd64 y VmWare en 32 Bits

2008-12-24 Thread ciracusa
Javier wrote: 2008/12/24 ciracusa cirac...@gmail.com: Buenas Lista. Estoy haciendo algunas pruebas con una NetInstall AMD 64 y hasta ahora todo perfecto. La pregunta es: - Este servidor lo quiero utilizar virtualizado con VMWARE (sobre Debian Lenny), existe algún problema en que el host

automontar pen drives falla luego de instalar un paquete de lenny en etch

2008-12-24 Thread Calabaza
Amigos, tengo un sistema etch con varios paquetes de lenny, instale el paquete pgadmin3 desde lenny y el automontado de los pen drives empezó a fallar :( actualmente al darle dmesg muestra que reconoce el pen, pero no lo monta automatico, donde puedo mirar alguna configuracion para que se vuelvan

Re: Instalar Dreamweaver

2008-12-24 Thread David Francos (XayOn)
On 12/24/08, David Francos (XayOn) yo.o...@gmail.com wrote: On 12/24/08, superusuario jaime.la...@gmail.com wrote: Pues, la demostración la vi en la Universidad Francisco Gavidia de El Salvador en una presentación de la migración de microsoft windows a linux (debian) y no pude hablar con el

Re: Sobre votación de los firmware propietarios.

2008-12-24 Thread debian azul
El 24/12/08, javier martín pastor jmpastor...@gmail.com escribió: Saludos: Desearía saber cual es la situación actual de la votación ya que acabo de enterarme que la votación se amplía hasta el próximo 28 de Diciembre. ¿Cual ha sido la razón de dicha ampliación? Muchas gracias por

Re: Instalar Dreamweaver

2008-12-24 Thread debian azul
2008/12/24, David Francos (XayOn) yo.o...@gmail.com: On 12/24/08, David Francos (XayOn) yo.o...@gmail.com wrote: On 12/24/08, superusuario jaime.la...@gmail.com wrote: Pues, la demostración la vi en la Universidad Francisco Gavidia de El Salvador en una presentación de la migración de

Re: Sobre votació n de los firmware propietarios.

2008-12-24 Thread Mauro Lizaur
On Wed, 24 Dec 2008, debian azul wrote: El 24/12/08, javier martín pastor jmpastor...@gmail.com escribió: Saludos: Desearía saber cual es la situación actual de la votación ya que acabo de enterarme que la votación se amplía hasta el próximo 28 de Diciembre. ¿Cual ha sido la razón de

Re: Instalar Dreamweaver

2008-12-24 Thread David Francos (XayOn)
2008/12/24 David Francos (XayOn) yo.o...@gmail.com: On Wed, Dec 24, 2008 at 2:07 PM, debian azul debianis...@gmail.com wrote: On 12/24/08, superusuario jaime.la...@gmail.com wrote: Pues, la demostración la vi en la Universidad Francisco Gavidia de El Salvador en una presentación de la migración

Re: sobre apache 1.3.x

2008-12-24 Thread Liuber Hdez
El mar, 23-12-2008 a las 20:08 -0200, Luis Lezcano Airaldi escribió: debian-user-spanish@lists.debian.org Ok, luis un abrazo y las felicitaciones en este fin de año, doy por cerrado este hilo hasta el proximo año, nos veremos... sld2. liuber's Cuba. ---

Re: Sobre votación de los firmware propietarios.

2008-12-24 Thread haldrik
El día 24 de diciembre de 2008 8:13, Mauro Lizaur lavaram...@debian-community.org escribió: On Wed, 24 Dec 2008, debian azul wrote: El 24/12/08, javier martín pastor jmpastor...@gmail.com escribió: Saludos: Desearía saber cual es la situación actual de la votación ya que acabo de

Reproductor upnp

2008-12-24 Thread Hector Oron
Hola listeros, Tengo en mi intranet un servidor upnp (mediatomb) desde el cual puedo reproducir contenidos multimedia en la PS3. El caso es que tengo otros equipos en la red y quisiera que fueran capaces de reproducir igualmente estos contenidos via upnp. En concreto, tengo un equipo de

OT las felicidades

2008-12-24 Thread Liuber Hdez
Feliz fin de año tengan todos aca en la lista, un abrazo, liuber's --- Red Telematica de Salud - Cuba CNICM - Infomed -- To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: Sobre votació n de los firmware propietarios.

2008-12-24 Thread Blu
On Wed, Dec 24, 2008 at 12:55:51PM +, debian azul wrote: El 24/12/08, javier martín pastor jmpastor...@gmail.com escribió: Saludos: Desearía saber cual es la situación actual de la votación ya que acabo de enterarme que la votación se amplía hasta el próximo 28 de Diciembre. ¿Cual

Re: Consulta sobre hotswap en Debian GNU/Linux

2008-12-24 Thread Pablo Jiménez
On Tue, Dec 23, 2008 at 01:47:22PM -0200, Daniel Bareiro wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hola! Les escribo para consultarle si alguien usa Debian GNU/Linux Etch con equipos HP Proliants. En particular, se trata de un DL380 G5 con cuatro discos SAS en RAID 5. Mi

Re: compatibiliadad con mplayer y debian

2008-12-24 Thread Luis A. R. Paz
David Reese escribió: 2008/12/19 Luis A. R. Paz l...@azunet.minaz.cu: David Reese escribió: 2008/12/19 Luis A. R. Paz l...@azunet.minaz.cu mailto:l...@azunet.minaz.cu David Reese escribió: 2008/12/19 Luis A. R. Paz l...@azunet.minaz.cu mailto:l...@azunet.minaz.cu

Re: OT las felicidades

2008-12-24 Thread Felix Perez
El día 24 de diciembre de 2008 6:58, Liuber Hdez liu...@fts.vcl.sld.cu escribió: Feliz fin de año tengan todos aca en la lista, un abrazo, liuber's Igualmente a todas y todos los integrantes de esta gran lista que con altibajos siempre avanza. Un abrazo desde acá abajo en el sur. --

Re: compatibiliadad con mplayer y debian

2008-12-24 Thread Luis A. R. Paz
Jorge R. escribió: Bueno acabo de actualizar el kernel a la 2.6.26-1-686 y nada copie unos videos pero lo unico que veo en mi televisor es ROOT nada mas veo dentro de esa carpeta donde deposite los videos alguna sugerencia ? Monta el disco en debian , y dale permisos al

como quedo la distro para computadoras antiguas?

2008-12-24 Thread Luis A. R. Paz
Hola amigos estaba revisando los sitios que recomendaron hace un tiempo y bueno creo que no encontré una distribución que pesara menos de 700 mb alguna sugerencia para una distro basada en debian para computadoras viejas ? o sea pI pII o pIII Intel para ser mas específico :) o similares

Re: Congelar SO Linux, ¿es esto posible con algún paquete o software?

2008-12-24 Thread Fernando Avila Martinez
El 10 de diciembre de 2008 11:28, Xoan Sampaiño xoansampai...@gmail.comescribió: 2008/12/10 Xoan Sampaiño xoansampai...@gmail.com: On Wed, Dec 10, 2008 at 17:51, Carlos Carrero Gutierrez mgd...@gmail.com wrote: Buenas, me gustaría saber si algún paquete ofrce la posibilidad de congelar

Re: como quedo la distro para computadoras antiguas?

2008-12-24 Thread Julian Daich
Hola Luis, El mié, 24-12-2008 a las 11:53 -0500, Luis A. R. Paz escribió: Hola amigos estaba revisando los sitios que recomendaron hace un tiempo y bueno creo que no encontré una distribución que pesara menos de 700 mb ¿ Cual es específicamente tu problema con que la imagen pese 700 MB?

monitorear trafico por snmp

2008-12-24 Thread Luis A. R. Paz
hola amigos en debian existe alguna aplicacion que por snmp me muestre el trafico por ip de un router remoto accediendo solo lectura?? algo parecido al mrtg pero me muestre las ip que egneran trafico y desde donde vienen pues es un router remoto que tengo en no se donde y el unico acceso que

Re: como quedo la distro para computadoras antiguas?

2008-12-24 Thread haldrik
El día 24 de diciembre de 2008 14:21, Julian Daich julia...@gmail.com escribió: Hola Luis, El mié, 24-12-2008 a las 11:53 -0500, Luis A. R. Paz escribió: Hola amigos estaba revisando los sitios que recomendaron hace un tiempo y bueno creo que no encontré una distribución que pesara menos de

Re: automontar pen drives falla luego de instalar un paquete de lenny en etch

2008-12-24 Thread haldrik
2008/12/24 Calabaza calali...@gmail.com: Amigos, tengo un sistema etch con varios paquetes de lenny, instale el paquete pgadmin3 desde lenny y el automontado de los pen drives empezó a fallar :( actualmente al darle dmesg muestra que reconoce el pen, pero no lo monta automatico, donde puedo

Re: Amule se desconecta

2008-12-24 Thread haldrik
El día 23 de diciembre de 2008 16:33, Felipe Portales felipe.porta...@gmail.com escribió: El día 23 de diciembre de 2008 12:27, Luis Lezcano Airaldi luislezc...@gmail.com escribió: El lun, 22-12-2008 a las 18:07 -0500, haldrik escribió: 2008/12/22 xploiting xploit...@gmail.com: Hola a

Re: Duda con escritorio remoto (tightvnc)

2008-12-24 Thread haldrik
El día 23 de diciembre de 2008 3:18, davidr daver...@hotmail.com escribió: On 23 dic, 00:20, haldrik hald...@gmail.com wrote: 2008/12/22 davidr daver...@hotmail.com: Hola foreros, planteó una duda que tengo con los escritorios remotos y que me llevanun poco de cabeza. Estoy probando con

Re: OT las felicidades

2008-12-24 Thread Felipe Portales
2008/12/24 Felix Perez felix.listadeb...@gmail.com El día 24 de diciembre de 2008 6:58, Liuber Hdez liu...@fts.vcl.sld.cu escribió: Feliz fin de año tengan todos aca en la lista, un abrazo, liuber's Igualmente a todas y todos los integrantes de esta gran lista que con altibajos

Re: OT las felicidades

2008-12-24 Thread Luis Lezcano Airaldi
El jue, 25-12-2008 a las 02:01 -0300, Felipe Portales escribió: 2008/12/24 Felix Perez felix.listadeb...@gmail.com El día 24 de diciembre de 2008 6:58, Liuber Hdez liu...@fts.vcl.sld.cu escribió: Feliz fin de año tengan todos aca en la lista, un abrazo, liuber's

Re: como liberar 1 pasta no proftp para varios usuários

2008-12-24 Thread Flamarion Jorge
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 não funciona com link. tente fazer assim dentro do home do camarada tu monta a pasta do suporte com a opção --bind pode ser com o usuário normal. tu cria la a pasta suporte dentro do home do figura depois monta o suporte la. mount --bind

FELIZ NATAL a todo grupo

2008-12-24 Thread gunix
Pra todos auqeles que participam desta lista, e que ajuda uns aos outros nos momentos dificeis, principalmente a mim :) um feliz natal. Que deus ilimine a todos Att Gunix

Re: iPod

2008-12-24 Thread Daniel Burrows
On Tue, Dec 23, 2008 at 11:43:33PM -0500, JoeHill joeh...@teksavvy.com was heard to say: I'm just not sure why I would have to install kdesktop, kicker, kamera, and konqueror for an app that syncs with my iPod. On lenny/unstable, blame amarok-konqsidebar: dan...@emurlahn:~$ aptitude why

Re: How to stop squirrelmail temporarily

2008-12-24 Thread Yuriy Kuznetsov
Try to run the following on on your box and see what processes are listen to those ports: # netstat -lnp Normally these ports are used by imapd - normal and secure connections. On Wed, Dec 24, 2008 at 4:52 AM, Stephen Liu sati...@yahoo.com wrote: On Wed, 2008-12-24 at 11:38 +0800, Stephen

Re: How to install chinese fonts for ps output file?

2008-12-24 Thread Osamu Aoki
On Tue, Dec 23, 2008 at 05:23:32PM +, Rodolfo Medina wrote: With Emacs, I correctly open a file including chinese characters. The characters are correctly displayed in the text file, but when I try to create the ps file, with `C-u M-x pr-ps-print-buffer-preview' or `C-u M-x

Which CD?

2008-12-24 Thread Koh Choon Lin
Dear all I am planning to move 4.0r5 to 4.0r6. Which of the ISOs should I be burning? 1. debian-40r6-i386-CD-1.iso 2. debian-update-4.0r6-i386-CD-1.iso -- Regards Koh Choon Lin -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble?

Re: How to stop squirrelmail temporarily

2008-12-24 Thread Stephen Liu
--- Yuriy Kuznetsov yuriy.kuznet...@gmail.com wrote: Try to run the following on on your box and see what processes are listen to those ports: # netstat -lnp Normally these ports are used by imapd - normal and secure connections. Hi Yuriy, On domU1 - the routing mail server #

Re: Con[cat]enate two video files

2008-12-24 Thread Rodolfo Medina
Rodolfo Medina wrote: [...] I tried to `cat' a file with no audio in it with another with audio in it, and what happens is that the audio of the second one is shifted back at the beginning of the `total' file (cat file1 file2 total). Apart from that, it's fine. But, how to avoid this

Re: How to install chinese fonts for ps output file?

2008-12-24 Thread Rodolfo Medina
Rodolfo Medina wrote: With Emacs, I correctly open a file including chinese characters. The characters are correctly displayed in the text file, but when I try to create the ps file, with `C-u M-x pr-ps-print-buffer-preview' or `C-u M-x pr-ps-print-buffer-print', they are not displayed. I

Re: Which CD?

2008-12-24 Thread Tzafrir Cohen
On Wed, Dec 24, 2008 at 03:06:43AM -0800, Koh Choon Lin wrote: Dear all I am planning to move 4.0r5 to 4.0r6. Which of the ISOs should I be burning? 1. debian-40r6-i386-CD-1.iso 2. debian-update-4.0r6-i386-CD-1.iso None. aptitude update aptitude upgrade You probably have packages

Re: Which CD?

2008-12-24 Thread Koh Choon Lin
1. debian-40r6-i386-CD-1.iso 2. debian-update-4.0r6-i386-CD-1.iso None. Thanks for the answer, will do as such. I am interested to know the difference between the two though. -- Regards Koh Choon Lin -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of

Re: Con[cat]enate two video files

2008-12-24 Thread Vincent Lefevre
On 2008-12-23 23:47:49 -0600, Anoop Aryal wrote: do you have debian multimedia in your /etc/apt/sources.list ? i've got: deb http://www.debian-multimedia.org lenny main But it doesn't have a security team, has it? -- Vincent Lefèvre vinc...@vinc17.org - Web: http://www.vinc17.org/ 100%

Re: Bug Buddy doesn'r know about firefox/iceweasel

2008-12-24 Thread Hugo Vanwoerkom
Ron Johnson wrote: On 12/23/08 17:32, Hugo Vanwoerkom wrote: Dennis Wicks wrote: Greetings; Everytime, which is often, Iceweasel crashes it runs Bug Buddy but B-B doesn't know where to send the dump, etc. snip My iceweasel [1] never crashes. It's your addons. [1] Mozilla/5.0 (X11; U;

Re: Which CD?

2008-12-24 Thread Steve McIntyre
Koh Choon Lin wrote: 1. debian-40r6-i386-CD-1.iso 2. debian-update-4.0r6-i386-CD-1.iso None. Thanks for the answer, will do as such. I am interested to know the difference between the two though. http://www.debian.org/CD/faq/#update-cd -- Steve McIntyre, Cambridge, UK.

unable to burn DVD

2008-12-24 Thread Paul Cartwright
I'm not sure when this started, I don't burn that many discs of any type.. started up braseros, to burn a DVD that was only 1.8Gb. got this error: SNIP roGrowisofs stderr: Done with: The File(s) Block(s)713532 BraseroGrowisofs stderr: Writing: UDF Anchor end

Re: Bug Buddy doesn'r know about firefox/iceweasel

2008-12-24 Thread Ron Johnson
On 12/24/08 06:17, Hugo Vanwoerkom wrote: Ron Johnson wrote: On 12/23/08 17:32, Hugo Vanwoerkom wrote: Dennis Wicks wrote: Greetings; Everytime, which is often, Iceweasel crashes it runs Bug Buddy but B-B doesn't know where to send the dump, etc. snip My iceweasel [1] never crashes. It's

Re: How do I get the japanese font back that is broken since the last update? (2)

2008-12-24 Thread Osamu Aoki
Hi, On Tue, Dec 23, 2008 at 10:48:39AM -0600, Boyd Stephen Smith Jr. wrote: On Tuesday 2008 December 23 09:45:42 Osamu Aoki wrote: The document by Estival Guillaume found by Dirk is about Etch (i.e., old stable) as it is written there. It links to updated page for Sarge (current stable)

Re: Which CD?

2008-12-24 Thread Ron Johnson
On 12/24/08 06:10, Koh Choon Lin wrote: 1. debian-40r6-i386-CD-1.iso 2. debian-update-4.0r6-i386-CD-1.iso None. Thanks for the answer, will do as such. I am interested to know the difference between the two though. Right on the http://www.debian.org/ is a link dated 18 Dec 2008: Debian

Re: How to install chinese fonts for ps output file?

2008-12-24 Thread Osamu Aoki
On Wed, Dec 24, 2008 at 12:56:40PM +, Rodolfo Medina wrote: I apt-get installed the following: ttf-arphic-bkai00mp ttf-arphic-bsmi00lp ttf-arphic-gbsn00lp , but that didn't help. What else should I install? It should although it may be not so nice looking. Rodolfo Hmmm... current

Re: unable to burn DVD

2008-12-24 Thread Ron Johnson
On 12/24/08 09:05, Paul Cartwright wrote: I'm not sure when this started, I don't burn that many discs of any type.. started up braseros, to burn a DVD that was only 1.8Gb. got this error: SNIP roGrowisofs stderr: Done with: The File(s) Block(s)713532

Re: How to install chinese fonts for ps output file?

2008-12-24 Thread H.S.
Osamu Aoki wrote: Hmmm... current unstable lacks Chinese tasks??? No no it is under: * Simplified Chinese desktop * Traditional Chinese desktop e.g. Here: i ttf-arphic-ukai 0.2.200802 0.2.200802 i ttf-arphic-uming

Re: tcpip stops working after some time

2008-12-24 Thread Micha Feigin
On Sun, 21 Dec 2008 22:10:46 + Bob Cox debian-u...@lists.bobcox.com wrote: On Sun, Dec 21, 2008 at 23:51:02 +0200, Micha Feigin (mi...@post.tau.ac.il) wrote: [...] I have no idea on how to read this. It seems that regular traceroute fails (-n) tcp traceroute works (-n -T) and

Re: tcpip stops working after some time

2008-12-24 Thread Ron Johnson
On 12/24/08 10:28, Micha Feigin wrote: [snip] vivalunalitshi:tuxonice-head# traceroute -I www.yahoo.com traceroute to www.yahoo.com (87.248.113.14), 30 hops max, 60 byte packets 1 * * * 2 * * * 3 * * * 4 * * * 5 * * * 6 * * * 7 * * * 8 * * * 9 f1.us.www.vip.ird.yahoo.com

Re: unable to burn DVD

2008-12-24 Thread Paul Cartwright
On Wed December 24 2008, Ron Johnson wrote: BraseroGrowisofs stderr: :-( write failed: Input/output error This seems to be the key.  Are you running out of disk space, maybe? paulandcilla:/home/pbc# df -h FilesystemSize Used Avail Use% Mounted on /dev/sda6 20G 11G

Re: Chrony with real-time scheduler uploaded to Experimental

2008-12-24 Thread Andrei Popescu
On Sat,20.Dec.08, 10:45:40, John Hasler wrote: I have uploaded a version of Chrony (chrony_1.23-6rt) with support for the SCHED_FIFO real-time scheduler to Experimental. Running Chronyd with this feature enabled should result in decreased (and more consistent) latency. Please test, especially

Re: How to install chinese fonts for ps output file?

2008-12-24 Thread Rodolfo Medina
Rodolfo Medina wrote: With Emacs, I correctly open a file including chinese characters. The characters are correctly displayed in the text file, but when I try to create the ps file, with `C-u M-x pr-ps-print-buffer-preview' or `C-u M-x pr-ps-print-buffer-print', they are not displayed. I

Re: No sound on a Thinkpad T61 w/ ALSA and AS1984 sound card (redux)

2008-12-24 Thread Nigel Henry
On Wednesday 24 December 2008 04:31, Kyle Barbour wrote: Hello everyone, A while back (http://lists.debian.org/debian-user/2008/01/msg02415.html), I was having trouble getting sound to work on my Thinkpad T61. Although that was resolved and everything worked wonderfully, a few days ago

Re: No sound on a Thinkpad T61 w/ ALSA and AS1984 sound card (redux)

2008-12-24 Thread Nigel Henry
On Wednesday 24 December 2008 06:25, Rob Starling wrote: On Tue, Dec 23, 2008 at 07:31:12PM -0800, Kyle Barbour wrote: A while back (http://lists.debian.org/debian-user/2008/01/msg02415.html), I was having trouble getting sound to work on my Thinkpad T61. Although that was resolved and

ffmpeg: `buffer underflow' error

2008-12-24 Thread Rodolfo Medina
I posted the problem to the ffmpeg-user mailing list getting no reply. I want to merge an audio and a video file into an mpeg file, and do: $ ffmpeg -i minpian.wav -i minpian.m2v -target dvd -acodec pcm_s16be \ -b 8000k -s 720x576 -ab 1536k -ac 2 -r 25 minpian.mpg , but get the following:

Re: No sound on a Thinkpad T61 w/ ALSA and AS1984 sound card (redux)

2008-12-24 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I also have a T61-7658. Sound works fine here. So, some output.. $ lsmod | grep snd_hda_intel snd_hda_intel 434776 1 snd_pcm81672 2 snd_hda_intel,snd_pcm_oss snd63688 10

Re: No sound on a Thinkpad T61 w/ ALSA and AS1984 sound card (redux)

2008-12-24 Thread Rob Starling
On Wed, Dec 24, 2008 at 07:47:49PM +0100, Nigel Henry wrote: On Wednesday 24 December 2008 06:25, Rob Starling wrote: On Tue, Dec 23, 2008 at 07:31:12PM -0800, Kyle Barbour wrote: lsmod | grep snd_hda_intel returns: snd_hdsnd_hda_intel 324248 2 snd_pcm

Re: tcpip stops working after some time

2008-12-24 Thread Ken Irving
On Wed, Dec 24, 2008 at 06:28:01PM +0200, Micha Feigin wrote: On Sun, 21 Dec 2008 22:10:46 + Bob Cox debian-u...@lists.bobcox.com wrote: Just a thought... what does traceroute -I www.yahoo.com (as root) give you? It seems that this works, ping works telnet www.yahoo.com 80 mostly

Re: No sound on a Thinkpad T61 w/ ALSA and AS1984 sound card (redux)

2008-12-24 Thread Nigel Henry
On Wednesday 24 December 2008 19:59, Daryl Styrk wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I also have a T61-7658. Sound works fine here. So, some output.. $ lsmod | grep snd_hda_intel snd_hda_intel 434776 1 snd_pcm81672 2

Re: No sound on a Thinkpad T61 w/ ALSA and AS1984 sound card (redux)

2008-12-24 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Daryl. Did you have to set model options for snd-hda-intel on your T61 so as to get the sounds working? I ask because the ALSA-configuration.txt file for the 1.0.16 alsa driver shows 3 options for the AD1984 codec, as below. AD1984

Re: tcpip stops working after some time

2008-12-24 Thread Micha Feigin
On Wed, 24 Dec 2008 10:38:23 -0900 Ken Irving fn...@uaf.edu wrote: On Wed, Dec 24, 2008 at 06:28:01PM +0200, Micha Feigin wrote: On Sun, 21 Dec 2008 22:10:46 + Bob Cox debian-u...@lists.bobcox.com wrote: Just a thought... what does traceroute -I www.yahoo.com (as root) give you?

starting/stopping compositing in xfce4 from the command line

2008-12-24 Thread Micha Feigin
Is it possible to start and stop compositing under xfce4 from the command line? I trying to use screen rotation with the nvidia plugin and I found out that if compositing is enabled when rotating the screen then part of it is unusable at the rotated state (after doing xrandr -o left the I can move

Re: Bug Buddy doesn'r know about firefox/iceweasel

2008-12-24 Thread Dennis Wicks
On 12/23/08 17:32, Hugo Vanwoerkom wrote: Dennis Wicks wrote: Greetings; Every time, which is often, Iceweasel crashes it runs Bug Buddy but B-B doesn't know where to send the dump, etc. snip My iceweasel [1] never crashes. It's your addons. Thanks for that tip, but what is the secret

Re: exim4 question

2008-12-24 Thread Andrei Popescu
On Sat,20.Dec.08, 16:28:20, Eduardo M KALINOWSKI wrote: In this specific case, the same result should have been possible by reconfiguring the exim4-config. Perhaps specifying the option to ask all questions, not only those that would be shown with the default priority. Just for the archives,

Re: tcpip stops working after some time

2008-12-24 Thread Ken Irving
On Wed, Dec 24, 2008 at 10:25:07PM +0200, Micha Feigin wrote: On Wed, 24 Dec 2008 10:38:23 -0900 Ken Irving fn...@uaf.edu wrote: On Wed, Dec 24, 2008 at 06:28:01PM +0200, Micha Feigin wrote: On Sun, 21 Dec 2008 22:10:46 + Bob Cox debian-u...@lists.bobcox.com wrote: Just a

Re: Bug Buddy doesn'r know about firefox/iceweasel

2008-12-24 Thread Bob Cox
On Wed, Dec 24, 2008 at 14:27:50 -0600, Dennis Wicks (w...@mgssub.com) wrote: Thanks for that tip, but what is the secret incantation needed to figure out which add-on is causing the problem? If Iceweasel crashed withing a minute or two after starting it would be relatively easy, but it

Re: Release Cycle

2008-12-24 Thread Andrei Popescu
On Tue,23.Dec.08, 07:37:18, Mark Allums wrote: Release schedule for Debian seems to be, whenever they feel like it. Maybe it's because I'm not a native speaker, but this sounds to me as if Debian Developers would release according to their mood :) Regards, Andrei -- If you can't explain it

Re: Release Cycle

2008-12-24 Thread Daryl Styrk
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Andrei Popescu wrote: On Tue,23.Dec.08, 07:37:18, Mark Allums wrote: Release schedule for Debian seems to be, whenever they feel like it. Maybe it's because I'm not a native speaker, but this sounds to me as if Debian Developers would

Re: Bug Buddy doesn'r know about firefox/iceweasel

2008-12-24 Thread Dennis Wicks
Bob Cox wrote the following on 12/24/2008 02:46 PM: On Wed, Dec 24, 2008 at 14:27:50 -0600, Dennis Wicks (w...@mgssub.com) wrote: Thanks for that tip, but what is the secret incantation needed to figure out which add-on is causing the problem? If Iceweasel crashed withing a minute or two

Re: Release Cycle

2008-12-24 Thread Andrei Popescu
On Wed,24.Dec.08, 16:21:41, Daryl Styrk wrote: Andrei Popescu wrote: On Tue,23.Dec.08, 07:37:18, Mark Allums wrote: Release schedule for Debian seems to be, whenever they feel like it. Maybe it's because I'm not a native speaker, but this sounds to me as if Debian Developers would

post doesn't show up

2008-12-24 Thread Hugo Vanwoerkom
Hi, I've tried now about 5 times to post a thread on an OCR that is opensource a Debian package and works fantastic. But the post does not show up. What's up? Hugo -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: post doesn't show up

2008-12-24 Thread Boyd Stephen Smith Jr.
On Wednesday 2008 December 24 15:49:46 Hugo Vanwoerkom wrote: But the post does not show up. What's up? Trouble? Contact listmas...@lists.debian.org -- Boyd Stephen Smith Jr. ,= ,-_-. =. b...@iguanasuicide.net ((_/)o o(\_)) ICQ: 514984 YM/AIM:

Re: unable to burn DVD

2008-12-24 Thread A. F. Cano
On Wed, Dec 24, 2008 at 11:54:31AM -0500, Paul Cartwright wrote: On Wed December 24 2008, Ron Johnson wrote: BraseroGrowisofs stderr: :-( write failed: Input/output error This seems to be the key.  Are you running out of disk space, maybe? paulandcilla:/home/pbc# df -h Filesystem

Re: tcpip stops working after some time

2008-12-24 Thread owens
Original Message From: fn...@uaf.edu To: debian-user@lists.debian.org Subject: Re: tcpip stops working after some time Date: Wed, 24 Dec 2008 11:44:45 -0900 On Wed, Dec 24, 2008 at 10:25:07PM +0200, Micha Feigin wrote: On Wed, 24 Dec 2008 10:38:23 -0900 Ken Irving fn...@uaf.edu

Re: tcpip stops working after some time

2008-12-24 Thread Ken Irving
On Wed, Dec 24, 2008 at 02:16:26PM -0800, ow...@netptc.net wrote: From: fn...@uaf.edu On Wed, Dec 24, 2008 at 10:25:07PM +0200, Micha Feigin wrote: Ken Irving fn...@uaf.edu wrote: ... A too-big MTU setting can give odd results in some cases. but how would it change on a running

Re: tcpip stops working after some time

2008-12-24 Thread Boyd Stephen Smith Jr.
On Wednesday 2008 December 24 16:16:26 ow...@netptc.net wrote: AFAIK the MTU is set by the initiator of the IP connection and any intermediate router can't change it. Larry Not exactly. The MTU is really a link-level property that's immutable. However, path MTU discovery is not required for

get list of config files (with aptitude) tha were manually changed

2008-12-24 Thread A. F. Cano
I know that this is checked somehow as I have been asked which config file to install or leave alone when upgrading various packages with aptitude. What I would like is a command line (not interactive) that would give me a list of all the config files in all installed packages that were modified

need help with net configuration

2008-12-24 Thread raman narasimhan
sir, me and a friend of mine had installed debian etch together. i configured my Internet while installing itself but my friend didn't. both of us have ADSL broadband connections. i'm now able to browse the net freely but his net settings haven't been set. how can we connect his system to the

problem with Internet configuration

2008-12-24 Thread raman narasimhan
sir, me and a friend of mine had installed debian etch together. i configured my Internet while installing itself but my friend didn't. both of us have ADSL broadband connections. i'm now able to browse the net freely but his net settings haven't been set. how can we connect his system to the

need help with net configuration

2008-12-24 Thread raman narasimhan
sir, me and a friend of mine had installed debian etch together. i configured my Internet while installing itself but my friend didn't. both of us have ADSL broadband connections. i'm now able to browse the net freely but his net settings haven't been set. how can we connect his system to the

  1   2   >