Re: Nvidia ION et drivers privateurs

2011-06-09 Thread moi-meme
Le Thu, 09 Jun 2011 08:00:02 +0200, Anthony Bourguignon a écrit : Vu la taille de la dalle, il s'agit probablement de la résolution native de ton écran. Tu ne pourras pas aller au dela. De toute façon, cela aurait entraîné une dégradation de la qualité de l'affichage (à cause de

Re: code de retour dans un xterm

2011-06-09 Thread Jérémie Courrèges-Anglas
Si xterm est débile tu n'as qu'à le punir : $ xterm -e bash -c 'false || kill $PPID' $ echo $? 15 $ C'est pas joli joli mais bon... Sinon, y'a la liste shellscript-fr pour ce genre de questions. Bonne journée. -- Lisez la FAQ de la liste avant de poser une question :

Script bash

2011-06-09 Thread Nahliel Steinberg
Bonjour, J'ai besoin de récupérer une liste d'ip une à une depuis un fichier pour passer une commande snmp. Avez-vous une idée de comment je peux faire ça ? J'ai fait un mail pour un subcribe à la liste scriptbash, je n'ai eu aucune réponse. -- Nahliel -- Lisez la FAQ de la liste avant de

Re : Script bash

2011-06-09 Thread gnafou
la commande apply ( à compiler depuis openbsd.org ) est géniale pour ce genre de choses F. -- 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: Script bash

2011-06-09 Thread Raphaël RIGNIER
Le 09/06/2011 10:55, Nahliel Steinberg a écrit : Bonjour, J'ai besoin de récupérer une liste d'ip une à une depuis un fichier pour passer une commande snmp. Avez-vous une idée de comment je peux faire ça ? J'ai fait un mail pour un subcribe à la liste scriptbash, je n'ai eu aucune réponse.

Re: Avoir une fenetre terminal qui crache les logs

2011-06-09 Thread Jérôme
Le mardi 07 juin 2011 à 22:01 +0200, Nahliel Steinberg a écrit : Bonsoir, Je cherche le moyen d'avoir une console sur un de mes écrans avec les logs de syslog dedans en temps réel. C'est possible de faire ça ? -- Nahliel Extrait de Formation Debian GNU/Linux

Re: Script bash

2011-06-09 Thread Nahliel Steinberg
Bonjour, admettons que dans ton fichier tu aies une adresse ip par ligne #!/bin/bash FICHIP=monfichier.txt while read a do snmpget -c public $a done $FICHIP Merci ça marche, je complique : iso.3.6.1.2.1.43.10.2.1.4.1.1 = Counter32: 12990 iso.3.6.1.2.1.43.10.2.1.4.1.1 = Counter32: 17265

Re: Script bash

2011-06-09 Thread Bernard Schoenacker
Le Thu, 9 Jun 2011 14:02:30 +0200, Nahliel Steinberg nahliel.steinb...@gmail.com a écrit : Bonjour, admettons que dans ton fichier tu aies une adresse ip par ligne #!/bin/bash FICHIP=monfichier.txt while read a do snmpget -c public $a done $FICHIP Merci ça marche, je

Re: Script bash

2011-06-09 Thread Bruno Muller
Hello, Le jeudi 09 juin 2011 à 14:02 +0200, Nahliel Steinberg a écrit : Merci ça marche, je complique : iso.3.6.1.2.1.43.10.2.1.4.1.1 = Counter32: 12990 iso.3.6.1.2.1.43.10.2.1.4.1.1 = Counter32: 17265 iso.3.6.1.2.1.43.10.2.1.4.1.1 = Counter32: 7294 iso.3.6.1.2.1.43.10.2.1.4.1.1 =

Re: Nvidia ION et drivers privateurs

2011-06-09 Thread Jérôme
Le jeudi 09 juin 2011 à 07:57 +0200, Anthony Bourguignon a écrit : Ça fait pas mal de versions que xorg n'a plus besoin de ce fichier de configuration et que tout se fait via udev, xrandr et compagnie. Mis à part cas très spécifiques (ce qui n'est pas le cas ici), ce fichier ne devrait plus

Re: Nvidia ION et drivers privateurs

2011-06-09 Thread giggzounet
Le 09/06/2011 07:32, Cazzaniga Sandro a écrit : Bonjour, J'ai un soucis sur un eeepc 12 de 2010. J'ai installé le driver privateur Nvidia (Squeeze) et j'ai un soucis de résolution: impossible de monter plus haut que 1366x768 avec l'outil de Nvidia ou celui intégré à debian. Une idée?

Votre Annonce

2011-06-09 Thread kifkifnet
Salut, Votre Annonce Sur: http://www.kif-kif.net/fr/ Merci. -- 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 debian-user-french-requ...@lists.debian.org En cas de

Re: Script bash

2011-06-09 Thread Nahliel Steinberg
Exemple avec awk, ajoute | awk 'BEGIN {s=0} {s=s+$4} END {print s}' à la fin de ta commande. Bruno Genial Bruno ca marche. En fait ce script va me chercher les compteurs de pages imprimees sur les imprimantes. Mon but est de faire le calcul du nombre de pages imprimees pour tous les types d

Re: Script bash

2011-06-09 Thread Nahliel Steinberg
De nombreuses façons de faire... Exemple avec awk, ajoute | awk 'BEGIN {s=0} {s=s+$4} END {print s}' à la fin de ta commande. Bruno Je viens de verifier, a priori le total n est pas juste ;-( -- Nahliel -- Lisez la FAQ de la liste avant de poser une question :

Re: Script bash

2011-06-09 Thread Nahliel Steinberg
Je viens de m'appercevoir que le dernier {print s} n'est pas afficher. -- Nahliel -- 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: Re : Avoir une fenetre terminal qui crache les logs

2011-06-09 Thread Shutdown76
A lire aussi le récent article sur la centralisation des logs: http://www.monitoring-fr.org/2011/06/nouveautes-gestion-logs/ --- Shutdown76 http://www.mynooblife.org/ On Wed, 08 Jun 2011 14:57:02 +0200, Jeremy MAURO wrote: Bonjour, Personnellement, j'utilise un petit utilitaire

Re: Script bash

2011-06-09 Thread peric
Le 09/06/2011 19:06, Nahliel Steinberg a écrit : .../... Genial Bruno ca marche. En fait ce script va me chercher les compteurs de pages imprimees sur les imprimantes. Mon but est de faire le calcul du nombre de pages imprimees pour tous les types d imprimantees, pour quantifier le papier

Re: code de retour dans un xterm

2011-06-09 Thread mouss
Le 09/06/2011 10:08, Jérémie Courrèges-Anglas a écrit : Si xterm est débile tu n'as qu'à le punir : $ xterm -e bash -c 'false || kill $PPID' $ echo $? 15 j'comprends pas. tu peux esplicationner stp? pour rappel: on veut lancer un 'ls /joe' dans un xterm et on veut récuoérer le retour de

Re: Script bash

2011-06-09 Thread mouss
Le 09/06/2011 14:02, Nahliel Steinberg a écrit : Bonjour, admettons que dans ton fichier tu aies une adresse ip par ligne #!/bin/bash FICHIP=monfichier.txt while read a do snmpget -c public $a done $FICHIP Merci ça marche, je complique : iso.3.6.1.2.1.43.10.2.1.4.1.1 =

Re: Script bash

2011-06-09 Thread Samuel Cifuentes
Le 09/06/2011 10:55, Nahliel Steinberg a écrit : Bonjour, J'ai besoin de récupérer une liste d'ip une à une depuis un fichier pour passer une commande snmp. Avez-vous une idée de comment je peux faire ça ? J'ai fait un mail pour un subcribe à la liste scriptbash, je n'ai eu aucune réponse.

Re: proftpd logi

2011-06-09 Thread Raf Czlonka
On Tue, Jun 07, 2011 at 01:12:47PM BST, Michał Leon Grzegorczyk wrote: Witam. Potrzebuję jakiegoś skryptu/programu do analizy logów proftpd. Głównie chodzi mi o informację jaki username co i kiedy pobrał. Próbowałem webalizera oraz awstats ale nie mogę znaleźć tam tej informacji. Czy

aula de formación homes de los usuarios en el server

2011-06-09 Thread BasaBuru
aupa: No encuentro docu sobre como montar un aula de formación donde los ordenadores de los alumnos procesen la info. Y que sus homes esten en el server. De forma que cualquier alumno se pueda logear en cualquier máquina del aula de formación y tenga su home. Los de edubuntu tienen algo

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread Juan Sierra Pons
Buenos dias Creo que lo que estas buscando es: - NFS o Samba (homes en el servidor y compartidos por red) - Ldap como punto de autentificacion unico (un login/passwors para todos los usuario independientemente del pc donde se loguen) - automount para montar los homes de los usuarios

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread Edgar Antonio Palma de la Cruz
El día 9 de junio de 2011 04:02, Juan Sierra Pons j...@elsotanillo.net escribió: Buenos dias Creo que lo que estas buscando es: - NFS o Samba (homes en el servidor y compartidos por red) - Ldap como punto de autentificacion unico (un login/passwors para todos los usuario independientemente

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread BasaBuru
On Jueves, 9 de Junio de 2011 11:02:03 Juan Sierra Pons escribió: Buenos dias Creo que lo que estas buscando es: - NFS o Samba (homes en el servidor y compartidos por red) - Ldap como punto de autentificacion unico (un login/passwors para todos los usuario independientemente del pc donde se

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread BasaBuru
On Jueves, 9 de Junio de 2011 11:08:11 Edgar Antonio Palma de la Cruz escribió: Que tal, tal vez esto te pueda servir: http://www.tcosproject.org/ Gracias, lo miro. Un saludo BasaBuru -- To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org with a subject of unsubscribe.

Re: Problemas con flashplugin-nonfree.

2011-06-09 Thread Camaleón
El Wed, 08 Jun 2011 21:09:19 +0200, SM Baby Siabef escribió: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=629417 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=629417Por lo visto, el problema lleva desde ayer... así que esperaré algunos días, si no, pues usaré los repos de

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread Camaleón
El Thu, 09 Jun 2011 10:51:54 +0200, BasaBuru escribió: No encuentro docu sobre como montar un aula de formación donde los ordenadores de los alumnos procesen la info. Y que sus homes esten en el server. De forma que cualquier alumno se pueda logear en cualquier máquina del aula de

Ya teneis kde 4.6 en wheezy

2011-06-09 Thread BasaBuru
Aupa: Pues eso que ya podeís disfrutar todos los wheezys de kde 4.6. Y flipar un poco tambien 8=} Mirar la chorradita de las identidades, eso para picaros ;-) Un saludo BasaBuru -- To UNSUBSCRIBE, email to debian-user-spanish-requ...@lists.debian.org with a subject of unsubscribe. Trouble?

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread BasaBuru
On Jueves, 9 de Junio de 2011 12:26:44 Camaleón escribió: El Thu, 09 Jun 2011 10:51:54 +0200, BasaBuru escribió: No encuentro docu sobre como montar un aula de formación donde los ordenadores de los alumnos procesen la info. Y que sus homes esten en el server. De forma que cualquier

Re: Ya teneis kde 4.6 en wheezy

2011-06-09 Thread Sergio Bessopeanetto
El 09/06/11 12:06, BasaBuru escribió: Aupa: Pues eso que ya podeís disfrutar todos los wheezys de kde 4.6. Y flipar un poco tambien 8=} Mirar la chorradita de las identidades, eso para picaros ;-) Un saludo BasaBuru Hola BasaBuru: Acabo de actualizarlo. Veremos qué tal anda. Ya de movida

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread Marcos Delgado
El día 9 de junio de 2011 10:10, BasaBuru basab...@basatu.org escribió: On Jueves, 9 de Junio de 2011 12:26:44 Camaleón escribió: El Thu, 09 Jun 2011 10:51:54 +0200, BasaBuru escribió: No encuentro docu sobre como montar un aula de formación donde los ordenadores de los alumnos procesen la

Re: Ya teneis kde 4.6 en wheezy

2011-06-09 Thread BasaBuru
aupa. Hola BasaBuru: Acabo de actualizarlo. Veremos qué tal anda. Ya de movida parece que no se lleva bien con el kernel 2.6.32 así que inicié Wheeze con el 2.6.38. ¿Cómo es eso de las identidades? KDE 4.6.2 ya lo tenía en Wheeze porque le agregué el repo de Debian KDE y se veía muy

Re: aula de formación homes de los usuarios en el server

2011-06-09 Thread BasaBuru
On Jueves, 9 de Junio de 2011 17:40:55 Marcos Delgado escribió: Creo recordar que NX de NoMachine, te permite hacer eso. Yo use freenx, para usar openoffice.org en maquinas con pocos recursos, pero verifica si puede hacer lo que quieres. http://www.nomachine.com/ Muchas gracias.. mas pa

Re: [OT] Nokia N8 como modem. Debian Wheezy

2011-06-09 Thread JulHer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 El 09/06/11 06:45, Hector Garcia escribió: network-manager (0.8.4-1) hizo ésta vez bien su tarea, y me permitió agregar la conexión en el apartado mobile broadband, para telcel, desde la cual escribo. Pues ahora a disfrutar la conexión desde tu

Creaciones de sitios web / publicidad

2011-06-09 Thread Paginas Web
Le ofrecemos todas las variantes en servicios orientados a la web: Diseńo de páginas web. Desarrollo de páginas web. Sistemas web a medida. Posicionamiento web. Hosting. Registro de dominios. Tenemos planes de alojamiento que se ajustan a sus necesidades, y registro de dominios desde $US

Squid

2011-06-09 Thread Diego Sanchez
Estimados. Existe alguna tabla donde pueda ver los requerimientos de un squid cache, en base a cantidad de usuarios? -- Diego http://about.me/diegors/bio

RE: Squid

2011-06-09 Thread LiC . YaSnIeL LóPeZ ArGüEz
Cantidad usuarios? Bueno no se exactamente a lo que te refieres, pero para darte una idea yo llegue a tener es squid trabajando para aproximadamente 1700 o 1800 usuarios. Salu2 - Lic. Yasniel López Argüez. J´ Departamento Asistencia Técnica. C.M. Abel Santamaría Cuadrado. Cayo La

Re: Squid

2011-06-09 Thread Diego Sanchez
El 9 de junio de 2011 11:39, LiC. YaSnIeL LóPeZ ArGüEz yasn...@ipilhas.rimed.cu escribió: Cantidad usuarios? Bueno no se exactamente a lo que te refieres, pero para darte una idea yo llegue a tener es squid trabajando para aproximadamente 1700 o 1800 usuarios. Salu2 - Lic.

RE: Squid

2011-06-09 Thread LiC . YaSnIeL LóPeZ ArGüEz
De: Diego Sanchez [mailto:dieg...@gmail.com] Enviado el: Thursday, June 09, 2011 9:03 PM Para: debian-user-spanish Asunto: Re: Squid El 9 de junio de 2011 11:39, LiC. YaSnIeL LóPeZ ArGüEz yasn...@ipilhas.rimed.cu escribió: Cantidad usuarios? Bueno no se exactamente a lo que te refieres, pero

l7 filter en debian

2011-06-09 Thread Alberto Corona
Que tal Amigos alguno de ustedes tiene corriendo los filtros de capa 7 junto a iptables en Debian 6 yo uso la version estable pues al paracer para Debian aun esta muy inmaduro y me estoy dando de topes contra el teclado para ponerlo saludos -- To UNSUBSCRIBE, email to

Error con Mysql al dar dist-upgrade

2011-06-09 Thread Alberto Corona
que tal Amigos el dia de hoy le di a un servidor LAMP un apt-get dist-upgrade en el tengo una Joomla el que me dice que no se puede conectar con la base de datos de mysql despues de actualizar la distro pero el Mysql si se instalo alguna idea? saludos -- To UNSUBSCRIBE, email to

modificar un video con FFmpeg

2011-06-09 Thread Alejandro
Hola lista! Tengo un vídeo de unos 20 minutos y lo que quería hacer es acelerarlo asi: http://www.youtube.com/watch?v=bT6AEV0P0f8 con ffmpeg (versión 0.6.2) usando este comando ffmpeg -i MVI_0299.MOV -r 720 -g 60 -vcodec msmpeg4v2 -acodec pcm_u8 -sameq MVI_0299_1.avi pero solo se acelera un

Re: Error con Mysql al dar dist-upgrade

2011-06-09 Thread Dámaso Payares
On 09/06/11 18:25, Alberto Corona wrote: que tal Amigos el dia de hoy le di a un servidor LAMP un apt-get dist-upgrade en el tengo una Joomla el que me dice que no se puede conectar con la base de datos de mysql despues de actualizar la distro pero el Mysql si se instalo alguna idea? saludos

Debian Squeeze 6.0.1a Kernel 2.6.32-5-686 32 bits nao reconhece 4GB RAM

2011-06-09 Thread Fernando Cesario
Senhores, bom dia. Estou tendo um problemas com o Debian Squeeze 2.6.32-5-686 32 bits Xeon nao reconhecendo 4GB RAM somente 3GB de RAM, abaixo vo postar as evidencias: # free -m total used free sharedbuffers cached Mem: 3041 2572469

Re: Debian Squeeze 6.0.1a Kernel 2.6.32-5-686 32 bits nao reconhece 4GB RAM

2011-06-09 Thread Fábio Rabelo
Bom dia ... Em primeiro lugar, o seu kernel não permite o que o Sr. deseja, instale - kernel : linux-image-2.6.32-5-686-bigmem E em segundo lugar, qual o chipset da sua motherboard ? Existem alguns chipsets que mesmo com este kernel não enchergarão mais que 3.5 GB de RAM, limitação do chipset

Re: Script no lugar do bash

2011-06-09 Thread hamacker
Edita o arquivo /home/fulano/.bashrc e na ultima linha, você acrescenta : - INICIO - exec /home/fulano/mainmenu.sh logout - FIM - Isso lhe dá a possibilidade de carregar o ambiente do usuário (variaveis de ambiente e afins), porém sem a possibilidade de usar o

web cam

2011-06-09 Thread manoel araujo
Olá, Debians, Gostaria que vcs fizessem um reparo na configuração da web cam do amsn, emesene. pois nao estaou conseguindo usá-la. abraço

Re: web cam

2011-06-09 Thread Gunther Furtado
Qui, 09062011, manoel araujo disse: Olá, Debians, Gostaria que vcs fizessem um reparo na configuração da web cam do amsn, emesene. pois nao estaou conseguindo usá-la. Oi, Não é bem assim que funciona... Dê uma olhada em: www.debian.org att., -- ...agora, só nos sobrou o futuro...,

Re: web cam

2011-06-09 Thread P. J.
Olá Manoel, Em 9 de junho de 2011 10:38, manoel araujo mpedro.ara...@gmail.com escreveu: Olá, Debians, Gostaria que vcs fizessem um reparo na configuração da web cam do amsn, emesene. pois nao estaou conseguindo usá-la. abraço Por suas colocações e dúvidas suspeito que vc seja novato no

Re: Acesso remoto

2011-06-09 Thread Nathaniel Simch de Morais
Usa o freenx!!! Acessa o site ( http://www.nomachine.com/download-package.php?Prod_Id=2961), baixa 3 arquivos (node, client e server) e uma pasta separada. Aí para instalar entra no terminal como root e dá um dpkg -i *.deb Em outra máquina, pode até ser Ruindows, basta instalar o nxclient,

Re: Acesso remoto

2011-06-09 Thread Tiago Saboga
On Thu, Jun 09, 2011 at 01:27:35PM -0300, Nathaniel Simch de Morais wrote: Usa o freenx!!! Acessa o site ( http://www.nomachine.com/download-package.php?Prod_Id=2961), baixa 3 arquivos (node, client e server) e uma pasta separada. Como já disse, também recomendo. Mas esclareço que esse não é o

Re: Script no lugar do bash

2011-06-09 Thread Fabricio Cannini
Em quinta-feira 09 junho 2011, às 10:44:09, hamacker escreveu: Edita o arquivo /home/fulano/.bashrc e na ultima linha, você acrescenta : - INICIO - exec /home/fulano/mainmenu.sh logout - FIM - Isso lhe dá a possibilidade de carregar o ambiente do usuário

Re: Acesso remoto

2011-06-09 Thread Nathaniel Simch de Morais
Como defensor do software livre reconheço minha falha. No papel de gestor de TI continuo recomendando o NX Server, pois resolverá o problema do Fernando. Em 9 de junho de 2011 14:51, Tiago Saboga tiagosab...@gmail.com escreveu: On Thu, Jun 09, 2011 at 01:27:35PM -0300, Nathaniel Simch de Morais

Compilação de Kernel para firewall

2011-06-09 Thread Bruno Francisco Rodrigues
Boa tarde pessoal da lista. Gostaria de saber se vocês poderiam me passar algumas dicas quanto à compilação do kernel para um firewall. Pensando nas funcionalidades mais novas como layer-7 e velocidade de boot. Att. -- Bruno F. Rodrigues +55 11 66583064

Cursos Online + Certificado.

2011-06-09 Thread Daniel Alves
Ola pessoal, gostaria que repasasem esse email. http://www.cursos24horas.com.br/parceiro.asp?cod=promocao39334id=39645url=cursos.asp Minha indicação. Muito Obrigado! =) -- To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Cursos Online + certificado

2011-06-09 Thread Daniel
Ola pessoal, gostaria que repasasem esse email. http://www.cursos24horas.com.br/parceiro.asp?cod=promocao39334id=39645url=cursos.asp Minha indicação. Muito Obrigado! =)

iceape 1.0.9 and IPv6 compatibility

2011-06-09 Thread Bret Busby
Hello. I am running iceape 1.0.9 on Debian 5, and I am wondering whether anyone can tell me whether it is compatible with IPv6. Similarly with the version of iceape that is available for Debian 6. Thank you in anticipation. -- Bret Busby Armadale West Australia .. So once you

Re: File URIs; was Re (6): Capability of Iceweasel to open a local file.

2011-06-09 Thread Scott Ferguson
On 09/06/11 02:11, peasth...@shaw.ca wrote: Scott others, From: Scott Ferguson prettyfly.producti...@gmail.com Date: Wed, 08 Jun 2011 12:07:01 +1000 I seem to remember a number of URL handling exploits that could cause a problem (if they still exist). All the admonitions about security

Re: Midnight commander parse errors

2011-06-09 Thread Scott Ferguson
On 09/06/11 04:43, Sven Joachim wrote: On 2011-06-08 19:51 +0200, Brian wrote: On Wed 08 Jun 2011 at 11:58:42 -0400, Frank McCormick wrote: Am I the only one still seeing Midnight Commander parse errors when trying to look inside deb files ? This has been going on , in my case for two

[OT]: curlftpfs seems somewhat slower than e.g. clients

2011-06-09 Thread Lorenzo Sutton
I find mounting an ftp with curlftpfs very handy because I can work as if it were a local mount, but it seems quite slower than ordinary ftp clients e.g. in responsiveness and upload. It also looks generally slower than sshfs which I use on another server. Maybe it can be tweaked for imporved

Re: is this hard disk failure?

2011-06-09 Thread Scott Ferguson
On 09/06/11 13:46, Ron Johnson wrote: On 06/07/2011 08:02 AM, Miles Fidelman wrote: [snip] - install SMART utilities and run smartctl -A /dev/your drive -- the first line is usually the raw read error rate -- if the value (last entry on the line) is anything except 0, that's the sign that

Re: Set Up a server using Public IP Addresses on debian

2011-06-09 Thread Christian Simo
Good Morning all eth0 it's not working so I'm using eth1! I asked to my ISP to open all ports at the moment! I also sent them a LAN IPs from 10.0.0.80 to 10.0.0.84 so that they can NAT to my public IPs 41.134.19.90 to 41.134.19.94: 10.0.0.80 41.134.19.90 10.0.0.81 41.134.19.91

Re: iceape 1.0.9 and IPv6 compatibility

2011-06-09 Thread Scott Ferguson
On 09/06/11 16:25, Bret Busby wrote: Hello. I am running iceape 1.0.9 on Debian 5, and I am wondering whether anyone can tell me whether it is compatible with IPv6. Similarly with the version of iceape that is available for Debian 6. Thank you in anticipation. -- Bret Busby

Re: Midnight commander parse errors

2011-06-09 Thread Sven Joachim
On 2011-06-09 09:19 +0200, Scott Ferguson wrote: As I don't have any problems - does that mean this only affects Wheezy builds? It only affects Wheezy installs, more precisely systems with perl 5.12 or later. Sven -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a

Åker du bil eller båt i sommar ?

2011-06-09 Thread Epostarna
Alla företagare söker nya vägar att utveckla sitt företag. Vi hjälper dig! Visa detta e-postmeddelande somwebbsida. http://www2.carmamail.com/mail/OBS?muid=1WL89u909699538 Nyhetsbrev | Juni 2011 epostarna.se Post: Box 3535 | 114 09 Stockholm Besök: Baltzar von Platens gata 12 | 112 42

Re: Synaptic options will not tick

2011-06-09 Thread Lisi
I've done it again - twice. I clearly need some dark black coffee to wake me up. :-( So sorry, Mark. On Thursday 09 June 2011 08:07:16 Lisi wrote: From: Lisi lisi.re...@gmail.com To: mark.pa...@gmail.com Date: Today 08:07:16 On Thursday 09 June 2011 03:20:32 Mark Panen wrote:

Re: Setting up networking on eth0

2011-06-09 Thread Lisi
On Thursday 09 June 2011 03:26:23 Mark Panen wrote: I am using KDE on 6.0.0, knetworkmanager uses auto eth0 to get a DHCP address. I have added a wired connection for a static address, but each time i reboot it uses the auto eth0 auto eth0 does not set the IP. It tells the system to start

Re: Synaptic options will not tick

2011-06-09 Thread Mark Panen
On Thu, Jun 9, 2011 at 10:26 AM, Lisi lisi.re...@gmail.com wrote: I've done it again - twice.  I clearly need some dark black coffee to wake me up. :-( So sorry, Mark. On Thursday 09 June 2011 08:07:16 Lisi wrote: From: Lisi lisi.re...@gmail.com   To: mark.pa...@gmail.com   Date: Today

Re: Setting up networking on eth0 [SOLVED]

2011-06-09 Thread Mark Panen
On Thu, Jun 9, 2011 at 10:33 AM, Lisi lisi.re...@gmail.com wrote: On Thursday 09 June 2011 03:26:23 Mark Panen wrote: I am using KDE on 6.0.0, knetworkmanager uses auto eth0 to get a DHCP address. I have added a wired connection for a static address, but each time i reboot it uses the auto

Re: Synaptic options will not tick

2011-06-09 Thread Lisi
On Thursday 09 June 2011 09:35:16 Mark Panen wrote: On Thu, Jun 9, 2011 at 10:26 AM, Lisi lisi.re...@gmail.com wrote: I've done it again - twice.  I clearly need some dark black coffee to wake me up. :-( So sorry, Mark. On Thursday 09 June 2011 08:07:16 Lisi wrote: From: Lisi

Re: x-terminal-emulator does not appear to accept comand line args

2011-06-09 Thread Jon Dowland
On Tue, Jun 07, 2011 at 10:04:02PM -0700, bri...@aracnet.com wrote: x-terminal-emulator --geometry=80x50 it doesn't seem to work. x-terminal-emulator should implement the 'xterm' command-line arguments. xterm doesn't accept --geometry=80x50: Doesn't work: x-terminal-emulator

Re: [OT] Native Oberon

2011-06-09 Thread Ralf Mardorf
On Wed, 2011-06-08 at 17:10 -0500, Ron Johnson wrote: On 06/08/2011 02:41 PM, Ralf Mardorf wrote: On Wed, 2011-06-08 at 14:07 -0500, Ron Johnson wrote: ETHNO can easily be installed from a diskette in an evening. I experienced having a disk notcher at hand is very comfortable

Re: Debian Questions on apt-get

2011-06-09 Thread Jon Dowland
On Wed, Jun 08, 2011 at 10:08:45PM +0300, Andrei POPESCU wrote: Just out of curiosity: is there an equivalent for 'apt-get update' (checking for updates without actually installing them)? apt-get update doesn't check for updates without actually installing them: it updates the local cache of

Re: [OT] Mice

2011-06-09 Thread Ralf Mardorf
On Wed, 2011-06-08 at 17:21 -0500, Ron Johnson wrote: On 06/08/2011 06:32 AM, Camaleón wrote: [snip] I use alcohol to clean the ball and internal rollers. But I'm afraid laser based mice get also dirty (bottom surface has also to be cleaned for fast sliding). Once a year. Maybe.

Re: PS/2 mouse vs USB mouse

2011-06-09 Thread Ralf Mardorf
On Wed, 2011-06-08 at 21:45 -0400, Stephen Powell wrote: On Mon, 06 Jun 2011 19:05:30 -0400 (EDT), Ralf Mardorf wrote: ... Does Debian drop valid hardware, that isn't brand new? I use a PS/2 mouse with Debian, but it does not have a wheel; so I can't address your specific situation. But

Re: Synaptic options will not tick

2011-06-09 Thread Lisi
On Thursday 09 June 2011 10:01:00 Lisi wrote: On Thursday 09 June 2011 09:35:16 Mark Panen wrote: On Thu, Jun 9, 2011 at 10:26 AM, Lisi lisi.re...@gmail.com wrote: I've done it again - twice.  I clearly need some dark black coffee to wake me up. :-( So sorry, Mark. On Thursday

Re: Synaptic options will not tick

2011-06-09 Thread Mark Panen
On Thu, Jun 9, 2011 at 11:50 AM, Lisi lisi.re...@gmail.com wrote: On Thursday 09 June 2011 10:01:00 Lisi wrote: On Thursday 09 June 2011 09:35:16 Mark Panen wrote: On Thu, Jun 9, 2011 at 10:26 AM, Lisi lisi.re...@gmail.com wrote: I've done it again - twice.  I clearly need some dark black

Re: How to stop receiving xorg-related mails

2011-06-09 Thread Tshepang Lekhonkhobe
I get just the bug reports for xterm and xserver-xorg. I used to be subscribed to debian-x, and have now stopped the receiving the mails since unsubscription. I've unsubscribed from both xorg and xterm from the PTS, but am still getting these bug reports. I looked at BTS info, and it appears

Re: [OT] Mice

2011-06-09 Thread Scott Ferguson
On 09/06/11 19:39, Ralf Mardorf wrote: On Wed, 2011-06-08 at 17:21 -0500, Ron Johnson wrote: On 06/08/2011 06:32 AM, Camaleón wrote: [snip] snipped Not the Microsoft Basic Optical Mouse. It's just... a plain old, boring standard sized mouse.

Re: [OT] Mice

2011-06-09 Thread Ralf Mardorf
On Thu, 2011-06-09 at 20:29 +1000, Scott Ferguson wrote: On 09/06/11 19:39, Ralf Mardorf wrote: On Wed, 2011-06-08 at 17:21 -0500, Ron Johnson wrote: On 06/08/2011 06:32 AM, Camaleón wrote: [snip] snipped Not the Microsoft Basic Optical Mouse. It's just... a plain old, boring

Re: PS/2 mouse vs USB mouse

2011-06-09 Thread Scott Ferguson
On 09/06/11 19:44, Ralf Mardorf wrote: On Wed, 2011-06-08 at 21:45 -0400, Stephen Powell wrote: On Mon, 06 Jun 2011 19:05:30 -0400 (EDT), Ralf Mardorf wrote: ... Does Debian drop valid hardware, that isn't brand new? I use a PS/2 mouse with Debian, but it does not have a wheel; so I can't

Re: [OT] Mice

2011-06-09 Thread Camaleón
On Wed, 08 Jun 2011 17:21:23 -0500, Ron Johnson wrote: On 06/08/2011 06:32 AM, Camaleón wrote: [snip] I use alcohol to clean the ball and internal rollers. But I'm afraid laser based mice get also dirty (bottom surface has also to be cleaned for fast sliding). Once a year. Maybe. Me

Re: iceape 1.0.9 and IPv6 compatibility

2011-06-09 Thread Camaleón
On Thu, 09 Jun 2011 17:45:46 +1000, Scott Ferguson wrote: On 09/06/11 16:25, Bret Busby wrote: I am running iceape 1.0.9 on Debian 5, and I am wondering whether anyone can tell me whether it is compatible with IPv6. Similarly with the version of iceape that is available for Debian 6.

Re: iceape 1.0.9 and IPv6 compatibility

2011-06-09 Thread Scott Ferguson
On 09/06/11 21:07, � wrote: The sender I see ^ is a question mark character - usually a part of Camaleón's name what character set are you using? On Thu, 09 Jun 2011 17:45:46 +1000, Scott Ferguson wrote: On 09/06/11 16:25, Bret Busby wrote: I am running iceape 1.0.9 on Debian 5, and

Re: x-terminal-emulator does not appear to accept comand line args

2011-06-09 Thread Camaleón
On Wed, 08 Jun 2011 18:40:03 -0700, briand wrote: On Wed, 8 Jun 2011 14:59:03 + (UTC) Camaleón noela...@gmail.com wrote: if you try, for example, x-terminal-emulator --geometry=80x50 it doesn't seem to work. bug ? Hum... here (lenny) neither works (gnomer-terminal

Re: PS/2 mouse vs USB mouse

2011-06-09 Thread Ralf Mardorf
On Thu, 2011-06-09 at 20:54 +1000, Scott Ferguson wrote: On 09/06/11 19:44, Ralf Mardorf wrote: On Wed, 2011-06-08 at 21:45 -0400, Stephen Powell wrote: On Mon, 06 Jun 2011 19:05:30 -0400 (EDT), Ralf Mardorf wrote: ... Does Debian drop valid hardware, that isn't brand new? I use a

Re: iceape 1.0.9 and IPv6 compatibility

2011-06-09 Thread Camaleón
On Thu, 09 Jun 2011 21:26:38 +1000, Scott Ferguson wrote: On 09/06/11 21:07, � wrote: The sender I see ^ is a question mark character - usually a part of Camaleón's name what character set are you using? That should be an error from Icedove when it converts from 7bit to

Re: Set Up a server using Public IP Addresses on debian

2011-06-09 Thread Camaleón
On Thu, 09 Jun 2011 09:42:38 +0200, Christian Simo wrote: Good Morning all eth0 it's not working so I'm using eth1! No problem, but why is not working? Device malfunction? I asked to my ISP to open all ports at the moment! Good! Well, sort of... You mean that all ports are now opened?

Re: iceape 1.0.9 and IPv6 compatibility

2011-06-09 Thread Scott Ferguson
On 09/06/11 21:41, � wrote: On Thu, 09 Jun 2011 21:26:38 +1000, Scott Ferguson wrote: On 09/06/11 21:07, � wrote: The sender I see ^ is a question mark character - usually a part of Camaleón's name what character set are you using? That should be an error from Icedove when it

Re: aptitude/apt-get hangs during update (plus) on IPv6

2011-06-09 Thread Jeffrey B. Green
Rick Thomas writes: On Jun 5, 2011, at 9:46 AM, Pascal Hambourg wrote: Rick Thomas a écrit : On Jun 3, 2011, at 10:46 AM, Jeffrey B. Green wrote: The RFCs say that any conforming implementation MUST handle an MTU of 1280, and may not necessarily handle anything larger. What is your point in

is sabertooth X58 compatible?

2011-06-09 Thread Pol Hallen
Hi folks :-) I'd like buy this mb http://uk.asus.com/Motherboards/Intel_Socket_1366/SABERTOOTH_X58/ is this mb compatible with debian 6? any experience? thanks :-) Pol -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact

Re: Synaptic options will not tick

2011-06-09 Thread Lisi
Putting this back on list where it ought to be. On Thursday 09 June 2011 12:52:41 Mark Panen wrote: On Thu, Jun 9, 2011 at 1:12 PM, Lisi lisi.re...@gmail.com wrote: On Thursday 09 June 2011 10:53:41 Mark Panen wrote: On Thu, Jun 9, 2011 at 11:50 AM, Lisi lisi.re...@gmail.com wrote: On

[OT] Bad characters on e-mail headers (was iceape 1.0.9 and IPv6 compatibility)

2011-06-09 Thread Camaleón
On Thu, 09 Jun 2011 22:31:14 +1000, Scott Ferguson wrote: On 09/06/11 21:41, � wrote: On Thu, 09 Jun 2011 21:26:38 +1000, Scott Ferguson wrote: On 09/06/11 21:07, � wrote: The sender I see ^ is a question mark character - usually a part of Camaleón's name what character set are you

Re: [OT] Mice

2011-06-09 Thread Go Linux
FWIW, the wheel on my PS2 two-button mouse works just fine without any tweaking. The specs are: Manufacturer: Dell DP/N: H2871 0W1668 P/N: 851841- Maybe I missed something along the way in the discussion. All those untrimmed posts and bottom posting were a bit much to deal with . . .

Re: Midnight commander parse errors

2011-06-09 Thread Frank McCormick
On Thu, 09 Jun 2011 17:19:19 +1000 Scott Ferguson prettyfly.producti...@gmail.com wrote: On 09/06/11 04:43, Sven Joachim wrote: On 2011-06-08 19:51 +0200, Brian wrote: On Wed 08 Jun 2011 at 11:58:42 -0400, Frank McCormick wrote: Am I the only one still seeing Midnight Commander

Re: Synaptic options will not tick

2011-06-09 Thread Lisi
On Thursday 09 June 2011 14:21:12 Mark Panen wrote: On Thu, Jun 9, 2011 at 3:18 PM, Lisi lisi.re...@gmail.com wrote: On Thursday 09 June 2011 12:52:41 Mark Panen wrote: And at the risk of seeming even more repetitious: Could you run apt-get update followed by apt-get dist-upgrade and post

Re: [OT] Bad characters on e-mail headers (was iceape 1.0.9 and IPv6 compatibility)

2011-06-09 Thread Ralf Mardorf
On Thu, 2011-06-09 at 13:30 +, Camaleón wrote: From: Ralf Mardorf snipped snipped Content-Type: text/plain; charset=UTF-8 snipped Mime-Version: 1.0 X-Mailer: Evolution 2.32.3 Content-Transfer-Encoding: 7bit This one looks right. :) For this mail I switched to ISO-8859-15 and

Re: x-terminal-emulator does not appear to accept comand line args

2011-06-09 Thread briand
On Thu, 9 Jun 2011 10:24:14 +0100 Jon Dowland j...@debian.org wrote: On Tue, Jun 07, 2011 at 10:04:02PM -0700, bri...@aracnet.com wrote: x-terminal-emulator --geometry=80x50 it doesn't seem to work. x-terminal-emulator should implement the 'xterm' command-line arguments. xterm doesn't

Re: x-terminal-emulator does not appear to accept comand line args

2011-06-09 Thread briand
On Thu, 9 Jun 2011 11:29:10 + (UTC) Camaleón noela...@gmail.com wrote: On Wed, 08 Jun 2011 18:40:03 -0700, briand wrote: On Wed, 8 Jun 2011 14:59:03 + (UTC) Camaleón noela...@gmail.com wrote: if you try, for example, x-terminal-emulator --geometry=80x50 it

  1   2   >