[HS] - Script

2011-11-02 Thread Nahliel Steinberg
Bonjour, Je dois ecrire un script qui test si des fichiers sont vides ou pas. (ça je vois comment faire le test, deplus j'en ai pas beaucoup que 8 à tester) En suite ce script doit les copiers à un endroit mais seulement si il n'y en a aucun qui est vide. si j'en ai au moins un de vide je ne

Re: [HS] - Script

2011-11-02 Thread Julien Valroff
Le mercredi 02 nov. 2011 à 10:37:52 (+0100 CET), Nahliel Steinberg a écrit : Bonjour, Je dois ecrire un script qui test si des fichiers sont vides ou pas. Quel language ? Je présume en shell script d'après l'utilisation ? (ça je vois comment faire le test, deplus j'en ai pas beaucoup que 8

Re: [HS] - Script

2011-11-02 Thread Grégory Bulot
Bonjour, Bonsoir, Le Wed, 2 Nov 2011 10:37:52 +0100, Nahliel Steinberg, vous avez écrit : Bonjour, Je dois ecrire un script qui test si des fichiers sont vides ou pas. (ça je vois comment faire le test, deplus j'en ai pas beaucoup que 8 à tester) En suite ce script doit les copiers

Re: [HS] - Script

2011-11-02 Thread Nahliel Steinberg
Quel language ? Je présume en shell script d'après l'utilisation ? Tu présume bien ;-) [ -s fichier ] echo Fichier non vide Oui ça je sais faire mais pour un fichier Il te suffit par exemple d'initialiser une variable à 0 en début de script, incrémentée à chaque fois qu'un fichier vide est

Re: [HS] - Script

2011-11-02 Thread Nahliel Steinberg
LesFichiers= [debut de ma boucle] if [ -s $MonFichier ]; then break ou exit 0 fi LesFichiers=$LesFichiers $MonFichier [fin de ma boucle] #si on arrive ici c'est qu'il n'y a pas de fichiers vide cp $LesFichiers MaDestination Je dois lister 8 fichiers dans un repertoire, si au moins un

Re: [HS] - Script

2011-11-02 Thread Jean-Yves F. Barbier
On Wed, 2 Nov 2011 11:19:08 +0100 Nahliel Steinberg nahliel.steinb...@gmail.com wrote: myfiles=toto.txt titi.txt tata.txt tonton.txt toto2.txt titi2.txt tata2.txt tonton2.txt if [ -s $fileresult ]; then envoi mail car pas ok fi en dehors de la boucle?? myfiles=$myfiles $filesresult

Re: [HS] - Script

2011-11-02 Thread David Dumortier
Bonjour, Le mer. nov. 02 2011 � 11:12:09 +0100, Nahliel Steinberg dit : Quel language ? Je présume en shell script d'après l'utilisation ? Tu présume bien ;-) [ -s fichier ] echo Fichier non vide Oui ça je sais faire mais pour un fichier Il te suffit par exemple d'initialiser une

Re: [HS] - Script

2011-11-02 Thread Nahliel Steinberg
Le 02/11/11 at 11:33, Jean-Yves F. Barbier a ecrit: On Wed, 2 Nov 2011 11:19:08 +0100 Nahliel Steinberg nahliel.steinb...@gmail.com wrote: myfiles=toto.txt titi.txt tata.txt tonton.txt toto2.txt titi2.txt tata2.txt tonton2.txt if [ -s $fileresult ]; then envoi mail car pas ok fi en

Re: [HS] - Script

2011-11-02 Thread Grégory Bulot
Bonjour, Bonsoir, Je reprends , en modifiant (j'ai pas optimisé la condition pour lisibilité sinon c'est plus court avec : [ -s fileresult ] echo fichier pas vide || echo fichier vide ) #!/bin/bash LesFichiers= myfiles=toto.txt titi.txt tata.txt tonton.txt toto2.txt titi2.txt tata2.txt

Re: [HS] - Script

2011-11-02 Thread Grégory Bulot
Bonjour, Bonsoir, Le Wed, 2 Nov 2011 11:44:00 +0100, Grégory Bulot, vous avez écrit : MonFichier s%/MonFichier/fileresult/g -- Cordialement Grégory BULOT -- Lisez la FAQ de la liste avant de poser une question : http://wiki.debian.org/fr/FrenchLists Pour vous DESABONNER, envoyez un

Re: [HS] - Script

2011-11-02 Thread Nahliel Steinberg
Merci beaucoup pour ton aide Gregory. J'ai donc réecrit le script en suivant test conseils, mais j'ai cette erreur ./testficvide.sh: line 10: `$FILESRESULT': not a valid identifier on peut copier les fichiers Voici ce que j'ai réecrit propre en suivant tes derniers mails. myfiles=toto.txt

Re: [HS] - Script

2011-11-02 Thread Grégory Bulot
Bonjour, Bonsoir, Le Wed, 2 Nov 2011 11:53:20 +0100, Nahliel Steinberg, vous avez écrit : myfiles=toto.txt titi.txt tata.txt tonton.txt toto2.txt titi2.txt inutile -- Cordialement Grégory BULOT -- Lisez la FAQ de la liste avant de poser une question : http://wiki.debian.org/fr/FrenchLists

Re: [HS] - Script

2011-11-02 Thread Julien Valroff
Le mercredi 02 nov. 2011 à 11:12:09 (+0100 CET), Nahliel Steinberg a écrit : Quel language ? Je présume en shell script d'après l'utilisation ? Tu présume bien ;-) Alors je continue à présumer que ce sera en bash ;) [ -s fichier ] echo Fichier non vide Oui ça je sais faire mais pour un

Re: [HS] - Script

2011-11-02 Thread Nahliel Steinberg
#/bin/bash EMPTY=0 for fichier in ~/test/*; do [ -s $fichier ] || EMPTY=`expr $EMPTY + 1` done [ $EMPTY 0 ] echo $EMPTY fichiers vides ont été trouvés C'est parfait Julien Merci -- Nahliel -- Lisez la FAQ de la liste avant de poser une question :

Re: [HS] - Script

2011-11-02 Thread Nahliel Steinberg
#!/bin/bash for FILESRESULT in /app/crunch/temp/* do if [ -s $FILESRESULT ]; then echo Au moins un fichier a une taille null fi MYFILES=$MYFILES $FILESRESULT done echo on peut copier les fichiers Je n'ai plus d'erreur, par contre aucuns test n'est fait j'ai l'impression. J'ai ça en retour à

Re: [HS] - Script

2011-11-02 Thread Nahliel Steinberg
Bonjour, Je viens de finir mon test, et j'ai opté pour la solution de Julien. J'ai rajouté une condition EMPTY=0 for fichier in /app/crunch/temp/*; do [ -s $fichier ] || EMPTY=`expr $EMPTY + 1` done #[ $EMPTY 0 ] echo $EMPTY fichiers vides ont été trouvés if [ $EMPTY -eq 0 ]; then

Re: [HS] - Script

2011-11-02 Thread Grégory Bulot
Bonjour, Bonsoir, Le Wed, 2 Nov 2011 13:02:28 +0100, Nahliel Steinberg, vous avez écrit : #!/bin/bash for FILESRESULT in /app/crunch/temp/* do if [ -s $FILESRESULT ]; then echo Au moins un fichier a une taille null Il manque le exit 0 initialement, mais vu la direction prise ce script

Re: [HS] - Script

2011-11-02 Thread Grégory Bulot
Bonjour, Bonsoir, Le Wed, 2 Nov 2011 13:20:44 +0100, Nahliel Steinberg, vous avez écrit : Bonjour, Je viens de finir mon test, et j'ai opté pour la solution de Julien. Gregory, j'ai repris quelques éléments de ton script, tout ça pour dire que tu ne m'as pas si gentillement aidé pour

Re: [HS] - Script

2011-11-02 Thread Yves Rutschle
On Wed, Nov 02, 2011 at 11:12:09AM +0100, Nahliel Steinberg wrote: Quel language ? Je présume en shell script d'après l'utilisation ? Tu présume bien ;-) C'est domage, en Perl on pouvait le faire de façon rigolote: eval join ' ', ((map -s '$_' , @ARGV), '`cp @ARGV cible`'); Y. -- Lisez

Re: Bonnes pratique Mailing Listes

2011-11-02 Thread Guillaume Seren
Grâce à vos diverses contributions, j'ai pu découvrir/améliorer certaines idées, sur la gestion des Mailing listes, et ainsi (essayer) d'optimiser mes flux mails. D'abord les concepts : En étudiant mon utilisation, j'ai pu définir 4 niveaux, d'utilisation d'une mailing liste. 1. Découverte :

Re: Eclipse 3.6 et Squeeze

2011-11-02 Thread Guillaume Seren
Pour ma part, l'option 2, installer eclipse et dépendances, depuis les sources fournies sur eclipse.org. Pour le pinning, cela peut effectivement, te fournir une version d'eclipse plus récente, mais cela n'est pas nécessairement celle qui te conviens le plus, et surtout impliquer un impact

[HS] Qemu-kvm et passthrough

2011-11-02 Thread Vincent Besse
Bonjour, J' ai un WinXP virtualisé dans un fichier qcow2. Ce que j' aimerais par-dessus tout ce serait pourvoir dédier certains ports USB à qemu-kvm de façon à pouvoir brancher/débrancher des périph' exactement comme sur un vrai PC, à défaut ce que j' aimerais quand même ce serait retrouver un

Apt-file et paquets installés - besoin d'aide pour comprendre.

2011-11-02 Thread j.seq
Bonjour la liste, j'ai un petit soucis avec une wheezy/sid amd64 fraîchement installée par cd netinstall (Linux debian 3.0.0-1-amd64 #1 SMP Sat Aug 27 16:21:11 UTC 2011 x86_64 GNU/Linux) à l'origine de la découverte du pbm. file-roller n'ouvre pas les fichiers avec mots de passe. C'est un bug

Re: Apt-file et paquets installés - besoin d'aide pour comprendre.

2011-11-02 Thread Bernard Schoenacker
Le Wed, 02 Nov 2011 20:19:34 +0100, j.seq j@laposte.net a écrit : Bonjour la liste, j'ai un petit soucis avec une wheezy/sid amd64 fraîchement installée par cd netinstall (Linux debian 3.0.0-1-amd64 #1 SMP Sat Aug 27 16:21:11 UTC 2011 x86_64 GNU/Linux) à l'origine de la découverte du

problème bash et fenêtre

2011-11-02 Thread moi-meme
un problème pas typiquement Debian mais script BASH : je veux afficher une commande dans une fenêtre console. la commande : fichier commande (avec un chmod 777 pour garantir) #!/bin/bash ls * echo taper RETURN pour finir read Le fichier d'appel prog : (avec un chmod 777 pour garantir)

Re: problème bash et fenêtre

2011-11-02 Thread JF Straeten
Re, On Wed, Nov 02, 2011 at 08:11:12PM +, moi-meme wrote: [...] xterm -e ./prog_sync echo prog read Quand je lance ./prog : une fenêtre clignote puis disparaît instantanément. Seul le prog apparaît, pas le taper RETURN pour finir. la commande : xterm -e ./prog_sync

Re: problème bash et fenêtre

2011-11-02 Thread moi-meme
Le Wed, 02 Nov 2011 21:50:01 +0100, JF Straeten a écrit : Classique... Essaie un peu : xterm -e bash -c ./prog_sync ben heu ! je ne suis pas standard : ça ne marche pas : aucun changement. Ya pas autre chose que /var/log/wtmp pour voir ce qui se passe ? -- Lisez la FAQ de la liste

Re: problème bash et fenêtre

2011-11-02 Thread Jean-Yves F. Barbier
On 02 Nov 2011 21:17:22 GMT moi-meme chie...@free.fr wrote: ben heu ! je ne suis pas standard : ça ne marche pas : aucun changement. Ya pas autre chose que /var/log/wtmp pour voir ce qui se passe ? Les yeux, et man xterm. -- Matz's Law: A conclusion is the place where you got

Re: Apt-file et paquets installés - besoin d'aide pour comprendre.

2011-11-02 Thread giggzounet
Le mercredi 02 novembre 2011 à 20:19 +0100, j.seq a écrit : Bonjour la liste, j'ai un petit soucis avec une wheezy/sid amd64 fraîchement installée par cd netinstall (Linux debian 3.0.0-1-amd64 #1 SMP Sat Aug 27 16:21:11 UTC 2011 x86_64 GNU/Linux) à l'origine de la découverte du pbm.

Re: Apt-file et paquets installés - besoin d'aide pour comprendre.

2011-11-02 Thread j.seq
Message du 02/11/11 22:54 De : giggzounet A : debian-user-french@lists.debian.org Copie à : Objet : Re: Apt-file et paquets installés - besoin d'aide pour comprendre. Le mercredi 02 novembre 2011 à 20:19 +0100, j.seq a écrit : Bonjour la liste, j'ai un petit soucis avec une

Re: Resolución de conflictos con Debian Squeeze (parte 1)

2011-11-02 Thread BasaBuru
On Miércoles, 2 de Noviembre de 2011 00:19:59 Miguel Matos escribió: Vamos a ver. Tienes el netinstal y tienes el manual de instalación. Instalas de nuevo y cuando te pida despues de la detección del hardware de red la inalambrica suele aparecer como wlan0 o eth1. o sea la que no sea

Sugerencias LDAP o Samba_como_PDC

2011-11-02 Thread AV
Saludos amigos, Yo tengo toda mi entidad montada sobre LINUX/Debian Squeeze, excepto el Dpto de Economía, que por las características del software que utilizan no me es posible por el momento migrar las estaciones de trabajo hacia Debian. Yo quiero implementar un Directorio Activo, para de esta

Este sabado BSDDay + BSDxLosChicos en Medrano!

2011-11-02 Thread Darío
Hola reenvío a la lista por si a alguien le interesa y son de Argentina. Saludos -- Mensaje reenviado -- De: Juan Martin Muguerza jua...@gnutn.org.ar Fecha: 2 de noviembre de 2011 05:15 Asunto: [GNUTN] Este sabado BSDDay + BSDxLosChicos en Medrano! Para: gn...@gnutn.org.ar

Re: Resolución de conflictos con Debian Squeeze (parte 1)

2011-11-02 Thread Camaleón
El Tue, 01 Nov 2011 18:49:59 -0430, Miguel Matos escribió: El 1 de noviembre de 2011 12:49, Camaleón noela...@gmail.com escribió: No hace falta que bajes otro medio de instalación, simplemente configura los repositorios para que apunten a un servidor en línea de Debian e instala el entorno

Re: MySQL y sus datos

2011-11-02 Thread Camaleón
El Tue, 01 Nov 2011 21:49:28 -0600, Gerardo Rogelio Flores escribió: 1o. Mysql como una aplicacion abierta deja la seguridad por default y es responsabilidad del Administrador Servidor, DBA, Usuario , implementar la seguridad en la medida que sea necesaria. (...) Lo dices como si fuera algo

Re: Sugerencias LDAP o Samba_como_PDC

2011-11-02 Thread Camaleón
El Wed, 02 Nov 2011 07:52:40 -0400, AV escribió: Yo tengo toda mi entidad montada sobre LINUX/Debian Squeeze, excepto el Dpto de Economía, que por las características del software que utilizan no me es posible por el momento migrar las estaciones de trabajo hacia Debian. Yo quiero

lvm2 relayout stripeado

2011-11-02 Thread sSeBBaSs
Buenas gente... una cortita y al pie como decimos en Argentina... Es posible con lvm2 realizar un relayout de un volumen lógico estripeado?, Ej: Supongamos que tengo el vg01 que esta compuesto por 4 pv (sdb1 sdc1 sde1 sdf1), y dentro de ese vg tengo el volumen lógico lv00 que fue creado estripeado

Red 100% Linux

2011-11-02 Thread Orlando Nuñez
Saludos. En el poco tiempo que llevo utilizando Software Libre, he visto Redes hibridas, Servidores con GNU/Linux (Debian y Ubuntu) y estaciones de trabajo con Windows XP, ya que dependen de X o Y aplicacion, tengo la oportunidad de implementar una Red 100% GNU/Linux tanto Servidor como

Re: Red 100% Linux

2011-11-02 Thread Gonzalo Rivero
El mié, 02-11-2011 a las 09:24 -0430, Orlando Nuñez escribió: Saludos. En el poco tiempo que llevo utilizando Software Libre, he visto Redes hibridas, Servidores con GNU/Linux (Debian y Ubuntu) y estaciones de trabajo con Windows XP, ya que dependen de X o Y aplicacion, tengo la

Re: Accidente del ex mandatario colombiano Alvaro uribe velez da la vuelta al mundo.

2011-11-02 Thread Darío
El 2 de noviembre de 2011 11:20, latin msn latinamer...@msnvideous.comescribió: ** *[image: msn videos]* * Accidente del ex mandatario colombiano Alvaro uribe velez da la vuelta**al mundo * Alvaro uribe velez **sufrio un accidente automovilistisco a las 04.00 A.M. del dia de hoy en

Re: Red 100% Linux

2011-11-02 Thread Gonzalo Rivero
El mié, 02-11-2011 a las 11:56 -0300, Gonzalo Rivero escribió: El mié, 02-11-2011 a las 09:24 -0430, Orlando Nuñez escribió: Saludos. En el poco tiempo que llevo utilizando Software Libre, he visto Redes hibridas, Servidores con GNU/Linux (Debian y Ubuntu) y estaciones de trabajo

Re: [ot] problemas con aplicaciones gtk

2011-11-02 Thread Carlos Albornoz
2011/10/24 Matías Bellone matiasbell...@gmail.com: 2011/10/24 Carlos Albornoz caralborn...@gmail.com: Estimados Me gustaria saber si a algunos de ustedes les sucede el mismo comportamiento de algunas aplicaciones con gtk, los sintomas son lo siguientes: Por ejemplo en Terminator al querer

Configuracion de koha-common en debian 6

2011-11-02 Thread Ricardo Mendoza
Saludos, he instalado koha-common por medio de paquetes deb en debian 6, agregando los repositorio de koha para debian, a mi lista de repositorios. Me he guiado por la pagina wiki de koha 3.4 para debian 6, la instalacion se ha realizado sin ningun problema, al parecer hay una nueva version de

DRBD sobre Raid1

2011-11-02 Thread Maxi
Hola lista, Queria consultarles si se puede realizar un drbd entre 2 servers donde cada uno de ellos ya tiene un raid1 por soft? El raid por soft lo genero cuando instalo Debian, donde a md0 le asignare por ejemplo /dev/sda3 /dev/sdb3 En este caso drbd.conf, tendra en lugar de disk /dev/sda3

Re: Instalador de múltiples versiones en un solo CD

2011-11-02 Thread skeksi thra
Javier Argentina escribió, El 31/10/11 13:30: Estimados: Para mí siempre es un placer leer la columna de Pablo Castagnino, pues está llena de esas cosas raras que tiene el mundo libre y que no siempre son fáciles de encontrar. Mejor aún, muchas veces tiene respuesta para aquellas cosas que

Re: MySQL y sus datos

2011-11-02 Thread Gerardo Rogelio Flores
El 02/11/2011 06:34 a.m., Camaleón escribió: El Tue, 01 Nov 2011 21:49:28 -0600, Gerardo Rogelio Flores escribió: 1o. Mysql como una aplicacion abierta deja la seguridad por default y es responsabilidad del Administrador Servidor, DBA, Usuario , implementar la seguridad en la medida que sea

Re: [PROBLEMA PLACA DE VÍDEO - CHIPSET VIA]

2011-11-02 Thread Rodolfo
Pode mostrar aqui como ficou após as alterações ? Em 1 de novembro de 2011 22:13, João Paulo Ferreira jferreira...@gmail.comescreveu: Olá Rodolfo, Eu fiz as devidas alterações porém continua a mesma coisa. Quem puder me ajudar fico agradecido. On 31 out, 11:40, Rodolfo rof20...@gmail.com

Wireless no Debian Squeeze

2011-11-02 Thread Rafael
Caros amigos da lista boa tarde. Gostaria mais uma vez da ajuda de você para resolver um problema, que descreverei a baixo, após o objetivo e oque foi feito, então vamos la. Objetivo instalar driver da placa wireless no debian squueze, deixo os resultados dos comandos, lshw -C network e

[OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Sergio Pereira
Boa tarde. Estou tentando rodar o VirtualBox 4.0 no Squeeze mas está apresentando erro na hora de iniciar a máquina virtual. A msg de erro está abaixo: = RTR3Init failed with rc=-1912 (rc=-1912) The VirtualBox kernel modules do not match this version of

Re: [PROBLEMA PLACA DE VÍDEO - CHIPSET VIA]

2011-11-02 Thread João Paulo Ferreira
Olá Rodolfo, Muito obrigado pela ajuda. Conseguir resolver o problema da seguinte forma: Section Screen Identifier Screen0 Device Card0 MonitorMonitor0 SubSection Display Modes 1366x768 1280x960 1024x768 800x600 640x480

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Rodrigo Lira
Executa esse comando que deve resolver. /etc/init.d/vboxdrv setup * * *Rodrigo Lira* *(83) 8754-5490/9906-2552* * * Em 2 de novembro de 2011 14:35, Sergio Pereira stgpere...@sein.com.brescreveu: Boa tarde. Estou tentando rodar o VirtualBox 4.0 no Squeeze mas está apresentando erro na hora

Re: [PROBLEMA PLACA DE VÍDEO - CHIPSET VIA]

2011-11-02 Thread Rodolfo
Parabéns. Em 2 de novembro de 2011 14:34, João Paulo Ferreira jferreira...@gmail.comescreveu: Olá Rodolfo, Muito obrigado pela ajuda. Conseguir resolver o problema da seguinte forma: Section Screen Identifier Screen0 Device Card0 MonitorMonitor0

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Professor Quesada
Boa noite Já tive alguns problemas como Virtual Box 4.0 no Debian e obtive sucesso quando ao invés de baixar pelo apt-get eu abaixei o .run http://download.virtualbox.org/virtualbox/4.1.4/VirtualBox-4.1.4-74291-Linux_x86.run Se for 64 bit

Problemas MySQL

2011-11-02 Thread Marlon Willrich
Pessoal, Não sei se posso enviar pra esta lista, ou vocês tem alguma pra me recomendar, a questão é que de ontem pra cá tenho um servidor MySQL que ficou meio biruta. - Alguns servidores Web que acessam este servidor Mysql estão com a conexão lenta (quando digo lenta é coisa de 3 minutos para

Re: Firewall no Debian 6

2011-11-02 Thread Rafael Henrique da Silva Correia
Dicas http://comunidade.cdtc.org.br/ Neste site basta criar um login e estudar... estão disponíveis diversos cursos entre eles o de Iptables. Caso seu tempo seja escasso e precise aprender antes que o curso de Iptables esteja disponível (pois ele é disponibilizado por um prazo X) você poderá

Re: Problemas MySQL

2011-11-02 Thread davi vidal
Você tentou otimizar alguma coisa no banco? Posta o teu my.cnf. davi Em 2 de novembro de 2011 18:45, Marlon Willrich uala...@gmail.com escreveu: Pessoal, Não sei se posso enviar pra esta lista, ou vocês tem alguma pra me recomendar, a questão é que de ontem pra cá tenho um

Re: Problemas MySQL

2011-11-02 Thread Marlon Willrich
Sim, um tempo atrás tive problemas com meu postfix que estava tendo muitas requisicoes de conexao.. entao dei uma aumentada.. segue o my.cf [client] port= 3306 socket = /var/run/mysqld/mysqld.sock [mysqld_safe] socket = /var/run/mysqld/mysqld.sock nice=

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Rafael Henrique da Silva Correia
Cara quando você executa: /etc/init.d/vboxdrv setup Aparece o que?? -- Rafael Henrique da Silva Correia http://abraseucodigo.com.br Administrador de Sistemas Linux Certificado pela LPIC - 101 ID: LPI000160699

Re: Wireless no Debian Squeeze

2011-11-02 Thread Rafael Henrique da Silva Correia
Qual versão do kernel você está usando?? Aqui eu uso dois pacotes: b43-fwcutter firmware-b43-installer Será que estes pacotes não te ajudam também?? Minha placa é: # lspci -v | grep -i wlan 05:00.0 Network controller: Broadcom Corporation BCM4311 802.11b/g WLAN (rev 01) Subsystem: Dell

Re: [1/2 OFF] como controlar trafego de internet

2011-11-02 Thread Rafael Henrique da Silva Correia
Boa tarde! Cara deve ter outra forma com certeza mas se fosse eu usaria Squid + Shaperd (o qual testei recentemente) + Iptables para BARRAR as portas que você não quer acessar. Sobre o Shaperd você encontrará um artigo muito bom aqui:

Re: [PROBLEMA PLACA DE VÍDEO - CHIPSET VIA]

2011-11-02 Thread Rafael Henrique da Silva Correia
Cara como ficou a aceleração 3D ??? Tem um amigo que tem a mesma placa que a sua.. e em um passado recente tentamos deixar a aceleração funcionando mais não rolou nem a pau. Até+ Em 2 de novembro de 2011 17:26, Rodolfo rof20...@gmail.com escreveu: Parabéns. Em 2 de novembro de 2011 14:34,

Re: Wireless no Debian Squeeze

2011-11-02 Thread Rafael
Caro Rafael Henrique, como me foi perguntado meu kernel é: root@PC-02:/home/rafael# uname -r 2.6.32-5-686 Com relação a instalação dos seguintes pacotes: b43-fwcutter firmware-b43-installer Não deram resultados. Mesmo assim obrigado Em 02-11-2011 19:13, Rafael Henrique da Silva Correia

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Sergio Pereira
Em 02-11-2011 16:59, Rodrigo Lira escreveu: Executa esse comando que deve resolver. /etc/init.d/vboxdrv setup */ /* */Rodrigo Lira/* *(83) 8754-5490/9906-2552* * * Já tentei, porém sem sucesso. Mais alguma sugestão? Sérgio -- Linux User #426387 / Ubuntu User #13964 Linux: A liberdade da

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Sergio Pereira
Em 02-11-2011 18:39, Professor Quesada escreveu: Boa noite Já tive alguns problemas como Virtual Box 4.0 no Debian e obtive sucesso quando ao invés de baixar pelo apt-get eu abaixei o .run http://download.virtualbox.org/virtualbox/4.1.4/VirtualBox-4.1.4-74291-Linux_x86.run Se for 64 bit

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Sergio Pereira
Em 02-11-2011 19:07, Rafael Henrique da Silva Correia escreveu: Cara quando você executa: /etc/init.d/vboxdrv setup Aparece o que?? -- Rafael Henrique da Silva Correia http://abraseucodigo.com.br Administrador de Sistemas Linux Certificado pela LPIC - 101 ID: LPI000160699 Saída docomando:

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Rafael Henrique da Silva Correia
Puts cara realmente não esclarece nada obtive a mesma saída aqui... # /etc/init.d/vboxdrv setup Stopping VirtualBox kernel modules:. Uninstalling old VirtualBox DKMS kernel modules:. Trying to register the VirtualBox kernel modules using DKMS:. Starting VirtualBox kernel modules:. Estou

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Fabricio Cannini
Saída docomando: = Stopping VirtualBox kernel modules:. Uninstalling old VirtualBox DKMS kernel modules:. Trying to register the VirtualBox kernel modules using DKMS:. Starting VirtualBox kernel modules:. = Esclarece alguma coisa? Essa mensagem

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Sergio Pereira
Em 02-11-2011 22:06, Fabricio Cannini escreveu: Essa mensagem quer dizer que a compilação dos módulos do vbox foi bem sucedida. Tu deves conseguir iniciar o programa sem problema agora. Se não, manda as mensagens de erro. [ ]'s Continua na mesma: quando tento iniciar a vm, retorna o erro:

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Cleber Ianes
Reinicia o computador e tenta novamente. Posta se funcionou. Em 02-11-2011 22:30, Sergio Pereira escreveu: Em 02-11-2011 22:06, Fabricio Cannini escreveu: Essa mensagem quer dizer que a compilação dos módulos do vbox foi bem sucedida. Tu deves conseguir iniciar o programa sem problema

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Israel Pereira da Silva
Em 02-11-2011 22:30, Sergio Pereira escreveu: Continua na mesma: quando tento iniciar a vm, retorna o erro: = RTR3Init failed with rc=-1912 (rc=-1912) The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was

Re: [OT] Instalação do VirtualBox no Squeeze

2011-11-02 Thread Fabricio Cannini
Em 2 de novembro de 2011 22:37, Cleber Ianes cleberia...@yahoo.com.br escreveu: Reinicia o computador e tenta novamente. Posta se funcionou. Eu diria pra dar um 'aptitude purge ...' e começar do zero. ;) -- To UNSUBSCRIBE, email to debian-user-portuguese-requ...@lists.debian.org with a

Re: Wireless no Debian Squeeze

2011-11-02 Thread P. J.
Oi, Link: http://wiki.debian.org/rtl819x#Squeeze Após segui-los não consegui visualizar o driver instalado com o camando iwconfig, a interface wlan0 nem aparece listada, O cenário está cada vez mais sombrio... =O Velho até aonde eu saiba: iwconfig - configure a wireless network interface

Re: podemos ter skype com video ?

2011-11-02 Thread Helio Loureiro
Rpz ao invés de fazer esse armengue para o protocolo proprietário do Skype, porém prefiro experimentar o bigbluebutton... o que me falta é tempo... rs Não conhecia tb. E gostei. Vou dar uma brincada. Outra alternativa é o Google Talk. Abs, Helio Loureiro http://helio.loureiro.eng.br

Re: Package/program popularity weblist.

2011-11-02 Thread Raf Czlonka
On Wed, Nov 02, 2011 at 04:46:42AM GMT, Sthu Deus wrote: Good time of the day. Any time of the day is good ;^) I'm looking for a Debian package/program user popularity rating list on the WWW. Can You share one w/ me/us? Look at popularity-contest package. Regards, -- Raf -- To

Re: Package/program popularity weblist.

2011-11-02 Thread Christofer C. Bell
On Wed, Nov 2, 2011 at 2:53 AM, Raf Czlonka r...@linuxstuff.pl wrote: On Wed, Nov 02, 2011 at 04:46:42AM GMT, Sthu Deus wrote: Good time of the day. Any time of the day is good ;^) I'm looking for a Debian package/program user popularity rating list on the WWW. Can You share one w/ me/us?

Re: ethernet bonding with severak machines

2011-11-02 Thread Stan Hoeppner
On 11/1/2011 12:08 PM, Jesus arteche wrote: Sorry, maybe trhe description it is too vague...my problem it is that I have my servers virtualized, and I want to create and environment of high availability. For example in http traffic, the problem is I can create a load balancer that balance the

Which gnome file to delete before changing distros

2011-11-02 Thread Richard
Hi, I've fallen foul of this a few times. When moving between distros and using gnome DM, which of the gnome config files need to be deleted. I've been forced a few times to add a new user on install and copy files from my user directory in to it . Which is a pain there is .gnome2 or .gnome3,

required ip package for debian

2011-11-02 Thread Muhammad Fahad
Hello How to install ip package for debian, apt-get install is not working kindly help me to download the ip package for debian -- Muhammad Fahad.k +919844164764 +919663385645 Knowledge is not what is memorised. Knowledge is what benefits.

Font Webkeepass vserver

2011-11-02 Thread Olivier BATARD
Hi, I've just stop a squeeze server with a standard vserver kernel. So I want to use a vserver to host the webkeepass tool, which uses a tomcat server. Everything works fine when I use webkeepass on the main server, the display is alright in French. But When I use it in a verser with same

php 5.2 as cgi not working in debian 6.0

2011-11-02 Thread J. Bakshi
Dear list, I am now confused and need some enlightenment. I am trying to have php 5.2.7 as cgi module so that when require.. I can also use php 5.2 with some old php sites on this debian 6.0 server. I am following

Re: required ip package for debian

2011-11-02 Thread Victor Nitu
On 11/02/2011 01:16 PM, Muhammad Fahad wrote: Hello How to install ip package for debian, apt-get install is not working kindly help me to download the ip package for debian -- Muhammad Fahad.k +919844164764 +919663385645 Knowledge is not what is memorised. Knowledge is what benefits. Go to

Re: required ip package for debian

2011-11-02 Thread Darac Marjal
On Wed, Nov 02, 2011 at 04:46:04PM +0530, Muhammad Fahad wrote: Hello   How to install ip package for debian, apt-get install is not working  kindly help me to download the ip package for debian  If you are looking for the /bin/ip program, the package you want is called iproute. You

firegpg is dead long live cr-gpg

2011-11-02 Thread Mathieu Malaterre
Hi, Has anyone tried out cr-gpg ? ref: http://thinkst.com/tools/cr-gpg/ Thanks -- Mathieu -- To UNSUBSCRIBE, email to debian-user-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive:

Re: [Semi-OT] Automatic subscription to self-opened bug reports

2011-11-02 Thread Camaleón
On Tue, 01 Nov 2011 14:17:01 -0400, Tom H wrote: On Sun, Oct 30, 2011 at 2:28 PM, Camaleón noela...@gmail.com wrote: (...) This script and the BTS aren;t tied in to the box from which you report a script. As long as you have a Debian or Ubuntu or other Debian derivative box with devscripts

Re: Which gnome file to delete before changing distros

2011-11-02 Thread Camaleón
On Wed, 02 Nov 2011 09:36:05 +, Richard wrote: I've fallen foul of this a few times. When moving between distros and using gnome DM, which of the gnome config files need to be deleted. I've been forced a few times to add a new user on install and copy files from my user directory in to it

Re: Font Webkeepass vserver

2011-11-02 Thread Camaleón
On Wed, 02 Nov 2011 12:54:17 +0100, Olivier BATARD wrote: Hi, Hi... please, keep text based formatted messages because html code renders very badly on some e-mail readers :-) I've just stop a squeeze server with a standard vserver kernel. So I want to use a vserver to host the webkeepass

Re: php 5.2 as cgi not working in debian 6.0

2011-11-02 Thread Camaleón
On Wed, 02 Nov 2011 17:24:53 +0530, J. Bakshi wrote: I am now confused and need some enlightenment. I am trying to have php 5.2.7 as cgi module so that when require.. I can also use php 5.2 with some old php sites on this debian 6.0 server. Okay, I won't ask you why are you using an

Re: RESOLVED: Learning ifpludg in CLI, WAS Re: laptop wireless setup, wpa_supplicant.conf, etc

2011-11-02 Thread Brian
On Tue 01 Nov 2011 at 09:05:36 -0700, kei...@strucktower.com wrote: Below are some references. This post is a continuation of the postings there. http://lists.debian.org/debian-user/2011/10/msg02257.html http://lists.debian.org/debian-user/2011/10/msg02567.html Here's the pertinent stanza from

Re: Which gnome file to delete before changing distros

2011-11-02 Thread Richard
On Wed, 2 Nov 2011 14:16:44 + (UTC) Camaleón noela...@gmail.com wrote: On Wed, 02 Nov 2011 09:36:05 +, Richard wrote: I've fallen foul of this a few times. When moving between distros and using gnome DM, which of the gnome config files need to be deleted. I've been forced a few

Re: Wifi with squeeze on Lenovo X61s laptop - difficulties

2011-11-02 Thread Sian Mountbatten
poenik...@operamail.com wrote: On Oct 31, 12:50 am, John Hasler jhas...@debian.org wrote: Sian writes: The drawback to a newsreader is that one has to PAY for the use of a Usenet server. Not true: http://www.eternal-september.org/ http://aioe.org/ http://albasani.net/index.html.en I

Re: firegpg is dead long live cr-gpg

2011-11-02 Thread Camaleón
On Wed, 02 Nov 2011 14:14:58 +0100, Mathieu Malaterre wrote: There's an interesting discontinuation notice: http://blog.getfiregpg.org/2010/06/07/firegpg-discontinued/ *** (...) Gmail support was too hackish and I’m not using Gmail for a long time, so… I’m tired of constantly adapt FireGPG for

KDE package manager

2011-11-02 Thread Sian Mountbatten
Having installed Debian/GNU wheezy onto my desktop, I am now looking for some KDE applications. The only package manager provided on wheezy is aptitude which is not the world's easiest program to use. Is there a KDE package manager available? -- Sian -- To UNSUBSCRIBE, email to

Re: KDE package manager

2011-11-02 Thread J. Bakshi
On Wed, 02 Nov 2011 16:22:14 + Sian Mountbatten poenik...@operamail.com wrote: Having installed Debian/GNU wheezy onto my desktop, I am now looking for some KDE applications. The only package manager provided on wheezy is aptitude which is not the world's easiest program to use.

Re: KDE package manager

2011-11-02 Thread Camaleón
On Wed, 02 Nov 2011 16:22:14 +, Sian Mountbatten wrote: Having installed Debian/GNU wheezy onto my desktop, I am now looking for some KDE applications. The only package manager provided on wheezy is aptitude which is not the world's easiest program to use. Is there a KDE package

Re: Wifi with squeeze on Lenovo X61s laptop - difficulties

2011-11-02 Thread Sian Mountbatten
poenik...@operamail.com wrote: Thank you for your tip. I set wlan0 as the wireless device, but wicd still said no wireless connection. I have decided to download the latest 3.0.4 stable kernel source from www.kernel.org and try using make-kpkg to make a new Debian package with the new

Re: Package/program popularity weblist.

2011-11-02 Thread Sthu Deus
Thank You for Your time and answer, Raf: Good time of the day. Any time of the day is good ;^) That's pretty good! :) I'm looking for a Debian package/program user popularity rating list on the WWW. Can You share one w/ me/us? Look at popularity-contest package. Well, I have checked the

Re: Package/program popularity weblist.

2011-11-02 Thread Sthu Deus
Thank You for Your time and answer, Christofer: On Wed, Nov 2, 2011 at 2:53 AM, Raf Czlonka r...@linuxstuff.pl wrote: The site that provides the aggregated statistics generated by popularity-contest is here: http://popcon.debian.org/ Please, look at my response to Raf. -- To UNSUBSCRIBE,

Re: Package/program popularity weblist.

2011-11-02 Thread Camaleón
On Thu, 03 Nov 2011 00:27:46 +0700, Sthu Deus wrote: I'm looking for a Debian package/program user popularity rating list on the WWW. Can You share one w/ me/us? Look at popularity-contest package. Well, I have checked the web page of the package but did not find what I'm looking for -

Re: (partial solution) VLC?

2011-11-02 Thread Hendrik Boom
On Sun, 30 Oct 2011 17:15:54 +, Hendrik Boom wrote: On Sun, 30 Oct 2011 15:34:11 +, Hendrik Boom wrote: OK. Copying the DVD to my hard drive works, provided I do it as root. I need root because the top-level directory on my DVD has *no permissions whatsoever*. The files within

Re: KDE package manager

2011-11-02 Thread Sian Mountbatten
Camaleón wrote: On Wed, 02 Nov 2011 16:22:14 +, Sian Mountbatten wrote: Having installed Debian/GNU wheezy onto my desktop, I am now looking for some KDE applications. The only package manager provided on wheezy is aptitude which is not the world's easiest program to use. Is

  1   2   >