Re: Exim + mail

2001-09-22 Thread Stephane Leclerc

J'utilise cette méthode pour une gestion mutualisée.

Le Return-Path: ne peut pas être récrit directement avec une règle donc je
biaise. Le Return-Path:  définie dans php n'est jamais repris (???). Je n'ai
pas aussi trouvé comment reprendre le From: directement.

Rewrite Flags:
  E   rewrite all envelope fields
  F   rewrite the envelope From field
  T   rewrite the envelope To field
  b   rewrite the Bcc: header
  c   rewrite the Cc: header
  f   rewrite the From: header
  h   rewrite all headers
  r   rewrite the Reply-To: header
  s   rewrite the Sender: header
  t   rewrite the To: header

- donc mettre cette règle dans le bloc de REWRITE de exim.conf :

[EMAIL PROTECTED]  $reply_address Ffr

Par sécurité, je pense qu'il est mieux de remplacer le * par le nom de la
machine. Ne jamais faire un rewrite du sender (s), sinon tout utilisateur de
php pourra se faire passer pour n'importe qui.

- quand on programme du php ou tout ce qui tourne sous www-data, il est
possible de construire le header de mail en définissant le Reply-To: et le
X-Sender: pour plus de finesse. Le Return-Path: quand a lui est pris sur le
From: ou le Reply-To: si il est défini.


?php

/* recipients */
$recipient .= Stephane Leclerc [EMAIL PROTECTED] . ,  ;
$recipient .= [EMAIL PROTECTED];

/* subject */
$subject = Test;

/* message */
$message = Ceci est un message de test\n;

/* additional header pieces for errors, From cc's, bcc's, etc */

$headers .= From: sleclerc [EMAIL PROTECTED]\n;
$headers .= X-Sender: [EMAIL PROTECTED]\n;
$headers .= X-Mailer: PHP\n; // mailer
$headers .= X-Priority: 1\n; // Urgent message!
$headers .= Reply-to: [EMAIL PROTECTED]\n;
$headers .= Return-Path: [EMAIL PROTECTED]\n;

$headers .= cc:[EMAIL PROTECTED]; // CC to
$headers .= bcc:[EMAIL PROTECTED], [EMAIL PROTECTED]; // BCCs to

/* and now mail it */
mail($recipient, $subject, $message, $headers);

?

Si tu regardes dans les logs exim, tu verras que le mail par bien avec le
bon header.

2001-09-22 10:29:00 15ki9k-0002He-00 = [EMAIL PROTECTED] U=www-data P=local
2001-09-22 10:29:37 15ki9k-0002He-00 = [EMAIL PROTECTED] R=smarthost
2001-09-22 10:29:37 15ki9k-0002He-00 - [EMAIL PROTECTED] R=smarthost
2001-09-22 10:29:37 15ki9k-0002He-00 - [EMAIL PROTECTED] R=smarthost
2001-09-22 10:29:37 15ki9k-0002He-00 Completed


Et on obtient ceci si il y a un retour :

--
This message was created automatically by mail delivery software (Exim).

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  [EMAIL PROTECTED]
SMTP error from remote mailer after RCPT TO:[EMAIL PROTECTED]:
host mail.isdnet.net [194.149.160.8]: 550 [EMAIL PROTECTED]... User 
unknown

-- This is a copy of the message, including all the headers. --

Return-path: [EMAIL PROTECTED]
Received: from adsl163-97.mangoosta.fr ([217.11.163.97] helo=actionweb.fr)
by actionweb.fr with asmtp (Exim 3.31 #1 (Debian))
id 15khrT-0001H2-00; Sat, 22 Sep 2001 10:10:07 +0200
Received: from www-data by actionweb.fr with local (Exim 3.32 #1 (Debian))
id 15ki9k-0002He-00; Sat, 22 Sep 2001 10:29:00 +0200
To: Stephane Leclerc [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Test
From: sleclerc [EMAIL PROTECTED]
X-Sender: [EMAIL PROTECTED]
X-Mailer: PHP
X-Priority: 1
Reply-to: [EMAIL PROTECTED]
cc:[EMAIL PROTECTED]
Message-Id: [EMAIL PROTECTED]
Sender: www-data [EMAIL PROTECTED]
Date: Sat, 22 Sep 2001 10:29:00 +0200
--

Et voilà. 

Pour les process lancés en shell sous un UID, c'est la même histoire dès
qu'il faut gérer les retours (donc faire un uid@  $reply_address Ffr si non
rendre indépendant les retours du uid).

Si quelqu'un a quelque chose de plus simple et de plus efficace, je prend.

Stef...


 Je suis moi aussi en train de configurer l'envoi de mail via exim. Cela
 marche parfaitement, jusqu'à l'envoi de mail via apache/php (fonction
 mail()). En effet, 2 lignes me gènent dans le header des mails envoyés :
 
 Return-Path: [EMAIL PROTECTED]
 Sender: www-data [EMAIL PROTECTED]
 
 www-data n'est ici que le username du processus apache. Certes, mais mon
 fichier /etc/email-adresses contient pourtant :
 
 www-data: [EMAIL PROTECTED]
 
 Y-a-t-il un moyen d'alimenter ces champs d'une manière autre que de modifier
 le username du processus apache ?


..
.  Linux - Debian - php4 - Apache - MySQL - Infogerance  .
.   email: [EMAIL PROTECTED] - http://www.actionweb.fr   .
. Tel: (0)141 906 100-Fax: (0)141 906 101.
..



Unidentified subject!

2001-09-22 Thread Philippe Monroux
Bonjour,
Voilà, j'ai juste une petite application dos, cabri-géomètre pour ne
pas la nommer et dont je ne trouve pas l'équivalent sous linux. Donc
j'ai pensé à dosemu. Le package dosemu de debian installe
freedos. Donc à priori pas grand chose à faire...
Aussi sous console et sous X apparaît bien le prompt du dos C:\.
Bon mais voilà et après comment faire pour installer puis lancer
cabri.exe ?? J'ai bien lu les docs mais n'y ai rien trouvé de concret.
Voici tout de même ce que j'ai compris. Il faut un hdimage (un disque virtuel) 
dans
/var/lib/dosemu/. Moi pour l'instant j'ai un
/var/lib/dosemu/hdimage.first. Passons...

Là ou je butte c'est où et comment installer mon exécutable dos à
savoir cabri.exe.

Si qqun avait une expérience de dosemu cela m'aiderait.
merci



dosemu

2001-09-22 Thread Philippe Monroux
scusez le manque de sujet

Bonjour,
Voilà, j'ai juste une petite application dos, cabri-géomètre pour ne
pas la nommer et dont je ne trouve pas l'équivalent sous linux. Donc
j'ai pensé à dosemu. Le package dosemu de debian installe
freedos. Donc à priori pas grand chose à faire...
Aussi sous console et sous X apparaît bien le prompt du dos C:\.
Bon mais voilà et après comment faire pour installer puis lancer
cabri.exe ?? J'ai bien lu les docs mais n'y ai rien trouvé de concret.
Voici tout de même ce que j'ai compris. Il faut un hdimage (un disque virtuel) 
dans
/var/lib/dosemu/. Moi pour l'instant j'ai un
/var/lib/dosemu/hdimage.first. Passons...

Là ou je butte c'est où et comment installer mon exécutable dos à
savoir cabri.exe.

Si qqun avait une expérience de dosemu cela m'aiderait.
merci











Re: dosemu

2001-09-22 Thread Serge Stinckwich
At Sat, 22 Sep 2001 15:35:38 +0400,
Philippe Monroux wrote:
 
 scusez le manque de sujet
 
 Bonjour,
 Voilà, j'ai juste une petite application dos, cabri-géomètre pour ne
 pas la nommer et dont je ne trouve pas l'équivalent sous linux. Donc

Il y a un logiciel du même genre que Cabri-géomètre nommé Isard écrit
par Jean-Sébastien Roy et qui tourne sous Linux : 
http://www.jeannot.org/~js/isard/index.html
Il nécessite Smalltalk VisualWorks disponible gratuitement sous Linux (avec la
dernière version 5.4, cela marche sans problème).

Cordialement,

-- 
Serge Stinckwich   - )  http://multiagent.com/
CNRS UMR 6072GREYCI3SMILE/~\  http://squeak.org/
Université de CaenIUT de CaenCampus 3Dept Info  (/  | http://smalltalk.org/
http://www.iutc3.unicaen.fr/~stincs/   _|_/  http://zope.org/
JID : [EMAIL PROTECTED]http://debian.org/



Re: dosemu

2001-09-22 Thread Jean-Philippe Georget
Serge Stinckwich [EMAIL PROTECTED] writes:

 At Sat, 22 Sep 2001 15:35:38 +0400,
 Philippe Monroux wrote:
  
  Voilà, j'ai juste une petite application dos, cabri-géomètre pour ne
  pas la nommer et dont je ne trouve pas l'équivalent sous linux. Donc
 
 Il y a un logiciel du même genre que Cabri-géomètre nommé Isard écrit
 par Jean-Sébastien Roy et qui tourne sous Linux : 
 http://www.jeannot.org/~js/isard/index.html
 Il nécessite Smalltalk VisualWorks disponible gratuitement sous Linux (avec la
 dernière version 5.4, cela marche sans problème).
[...]

Il y a aussi DrGenius.

-- 
Jean-Philippe Georget
[EMAIL PROTECTED] - http://jpgeorget.ouvaton.org/



Siguen los problemas del cable modem

2001-09-22 Thread heissu
Antes que nada, agradecer las respuestas que me han dado sobre el
tema de la tarjeta. Aunque sigo sin poder hacerlo funcionar.

He descubierto que con otra tarjeta que no sea la que me
pusieron ellos, no funciona. Esta tarjeta era la rtl8139, por lo que
gracias a las respuestas, ya instalé el módulo. Pero lo de conseguir el
número IP mediante dhcp, me parece que no va tan bien. Por que no logra
cogerme un número IP. Y sigo sin comprender mucho lo del DNS automático,
me refiero a configurarlo. ¿Alguien lo tiene instalado en su casa?



Re: Siguen los problemas del cable modem

2001-09-22 Thread cesar
heissu wrote:
 
 Antes que nada, agradecer las respuestas que me han dado sobre el
 tema de la tarjeta. Aunque sigo sin poder hacerlo funcionar.
 
 He descubierto que con otra tarjeta que no sea la que me
 pusieron ellos, no funciona. Esta tarjeta era la rtl8139, por lo que
 gracias a las respuestas, ya instalé el módulo. Pero lo de conseguir el
 número IP mediante dhcp, me parece que no va tan bien. Por que no logra
 cogerme un número IP. Y sigo sin comprender mucho lo del DNS automático,
 me refiero a configurarlo. ¿Alguien lo tiene instalado en su casa?
 
 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


 Hola.

 Yo llevo año y medio con DHCP en casa.
 Tengo dos tarjets de red en el equipo, LAN en eth0 e inet en eth1.
 A mi me instalaron 3COM tanto la tarjeta como el cable-modem.
 De la configuración de Windows sácate los nameserver.
 Prueba a arrancarlo con pump  o con dhcpc-client.

 Yo no tuve excesivos problemas para instalarlo.

 Asegúrate de tener :

antioco:~/.sec# cat /etc/resolv.conf
search dominio.es
nameserver 212.xxx.xxx.xxx
nameserver 212.xxx.xxx.xxx

además del

 antioco:~/.sec# cat /etc/network/interfaces
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

# The loopback interface
iface lo inet loopback

iface eth0 inet static
address 192.168.1.1
netmask 255.255.255.0
network 192.168.1.0
broadcast 255.255.255.0

# The first network card - this entry was created during the Debian
installation

iface eth1 inet dhcp 


  Un saludo.
  César.
 Insallah.



Re: Siguen los problemas del cable modem

2001-09-22 Thread heissu
cesar wrote:

 heissu wrote:
 
  Antes que nada, agradecer las respuestas que me han dado sobre el
  tema de la tarjeta. Aunque sigo sin poder hacerlo funcionar.
 
  He descubierto que con otra tarjeta que no sea la que me
  pusieron ellos, no funciona. Esta tarjeta era la rtl8139, por lo que
  gracias a las respuestas, ya instalé el módulo. Pero lo de conseguir el
  número IP mediante dhcp, me parece que no va tan bien. Por que no logra
  cogerme un número IP. Y sigo sin comprender mucho lo del DNS automático,
  me refiero a configurarlo. ¿Alguien lo tiene instalado en su casa?
 
  --
  To UNSUBSCRIBE, email to [EMAIL PROTECTED]
  with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

  Hola.

  Yo llevo año y medio con DHCP en casa.
  Tengo dos tarjets de red en el equipo, LAN en eth0 e inet en eth1.
  A mi me instalaron 3COM tanto la tarjeta como el cable-modem.
  De la configuración de Windows sácate los nameserver.
  Prueba a arrancarlo con pump  o con dhcpc-client.

  Yo no tuve excesivos problemas para instalarlo.

  Asegúrate de tener :

 antioco:~/.sec# cat /etc/resolv.conf
 search dominio.es
 nameserver 212.xxx.xxx.xxx
 nameserver 212.xxx.xxx.xxx

 además del

  antioco:~/.sec# cat /etc/network/interfaces
 # /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)

 # The loopback interface
 iface lo inet loopback

 iface eth0 inet static
 address 192.168.1.1
 netmask 255.255.255.0
 network 192.168.1.0
 broadcast 255.255.255.0

 # The first network card - this entry was created during the Debian
 installation

 iface eth1 inet dhcp

   Un saludo.
   César.
  Insallah.

Cesar, gracias por la ayuda. Ahora intentaré otra vez proseguir con las arduas
configuraciones de este nuevo método (para mí). Pero envío este mensaje, no sólo
para agradecerte la ayuda, sino para comentarte algo de lo que dijiste en tu
mensaje. Y es que la importancia que le diste a la configuración del DNS en
/etc/resolv.conf, me dejo un tanto parado. Te explico: quizá no te fijaste en la
pregunta que hice, pero hay un pequeño detalle que es uno de los que me tiene 
más
preocupado. El DNS en Windows, también lo pusieron de forma automática. He 
mirado
en la ayuda del Manual lo del archivo resolv.conf, y no he visto ninguna
instrucción para que sea automática también la busqueda del DNS.

Gracias...



Sobre el cable modem... ¡Por fin, RESUELTO!

2001-09-22 Thread heissu
Muchas gracias a todos por vuestra ayuda. El Cable modem está
configurado correctamente. Así que, ...


QmSf...



Re: Procmail

2001-09-22 Thread Enrique de la Torre

Buena.

  
  Cuando corro el procmail corre en primer plano y me impide el uso de la
  terminal.
  Yo quisiera que corra como un demonio, o por lo menos, que ande solamnte
  cuando corro mi fetchmail...
 
 Uy, esta me la se.
 
 Te creas un fichero $HOME/.forward que contenga esto:
 
 |IFS=' 'exec /usr/bin/procmail -f-||exit 75

  Puedes evitar esto, y especificar a tu MTA que todo correo que pase
por él lo filtre con procmail, por ejemplo, para exim tenemos:

# This transport is used for procmail

procmail_pipe:
  driver = pipe
  command = /usr/bin/procmail -d ${local_part}
  return_path_add
  delivery_date_add
  envelope_to_add
  check_string = From 
  escape_string = From 
  user = $local_part
  group = mail

  Y eso, a partir de aquí el uso de procmail es completamente
transparente.   


Un saludo,
   Enrique

-- 

Nombre: Enrique de la Torre
Email:  [EMAIL PROTECTED]



Re: Siguen los problemas del cable modem

2001-09-22 Thread Carles Pina i Estany

Hola


 pregunta que hice, pero hay un pequeño detalle que es uno de los que me tiene 
 más
 preocupado. El DNS en Windows, también lo pusieron de forma automática. He 
 mirado
 en la ayuda del Manual lo del archivo resolv.conf, y no he visto ninguna

el dhcp te pondrá las dns que toquen el /etc/resolv.conf, así que lo dejas
vacio y ya te lo pondrá solo cuando hagas pump -i eth0

cuando uso pump me parece que me va mejor con la interfície abajo:
ifconfig eth0 down

pero quizás son manias mias...

suerte...



Carles Pina i Estany | Nick: Pinux / Pine / Teufeus
http://www.salleURL.edu/~is08139/

   -Dime con quién andas, y si está buena me la mandas.



Gracias a todos por la ayuda

2001-09-22 Thread Akualo
Gracias a todos por la ayuda

Mi problema con Lilo era debido a una mala partición de disco

y el problema de mi kernel se solucionó haciendo el bzImage

--
AKUALO


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Sonido?

2001-09-22 Thread Akualo
Alguien ha configurado la tarjeta de sonido opti 930 o alguien me puede
ayudar a configurarla??

Bueno, resulta que ya compile mi kernel con el driver de la tarjeta de
sonido pero no reproduce bien el sonido, al arrancar me da estos mensajes

MAD16 WSS (82C930) at 0x534 irc 11 dma 3,0
Mad16/Mozart at 0x330 irq 9 dma 0
Sound Initialization complete

Esto me hace pensar que voy bien, pero despues aparece esto 13 veces.

Sound: DMA (output) timed out - IRQ/DRQ config error?

Eso me hace pensar que los datos del IRQ y/o el DMA estan mal ¿Como los
configuro? ¿Tengo que compilar el Kernel de nuevo con los datos correctos?
¿Cuales son los datos correctos? ¿Porque me pide 2 IRQs y 2 DMAs si solo
tengo una tarjeta?

Al arrancar mi PC antes de que arranque linux sale...

Card No.Device No.IRQDMA
11   53,6OPTi Audio
16

Disculpen que sea tan pregunton pero soy nuevo en Linux y no lo veo nada
facil pero si muy interesante espero me puedan ayudar contestando aunque sea
solo algunas de mis dudas y les envio mis gracias anticipadas.

--
AKUALO


_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Konqueror no imprime y me da este error

2001-09-22 Thread 31
Ocurrió un error de impresion. Mensaje de error recibido del sistema:


Falló la ejecución de /usr/bin/lpr -P 'lp|bjc240|Cannon BJC-240' '-#1'
/home/borxa/.kde/tmp-xuvenka/kdeprint_6zf1h5o con el mensaje:

Status Information: sending job '[EMAIL PROTECTED]' to lp|bjc240|Cannon 
[EMAIL PROTECTED] connecting to 'localhost', attempt 1 connected to 
'localhost' requesting printer lp|bjc240|Cannon [EMAIL PROTECTED] job 
'[EMAIL PROTECTED]' transfer to lp|bjc240|Cannon [EMAIL PROTECTED] failed 
error 'NONZERO RFC1179 ERROR CODE FROM SERVER' with ack 'ACK_FAIL' sending 
str '^Blp|bjc240|Cannon BJC-240' to lp|bjc240|Cannon [EMAIL PROTECTED] error 
msg: 'bad command line'

y si pongo en una consola lpr unarchivo, si lo imprime



Procmail Round2 =)

2001-09-22 Thread DIOS
Bueno, como veran no puedoi darle al procmail

Ahora, me filtra los mails, pero yo uso el pine.

Cuando creo la carpeta debian-list y me llegan los mails, en vez de crear
mails separados, me aparece un solo mail, el cual contiene todos los datos
de todos los mails que recibi..

Miren este ej:

Date: Sat, 22 Sep 2001 11:48:05 -0300
From: debian-user-spanish@lists.debian.org
Message-Id: [EMAIL PROTECTED]
Return-Path: debian-user-spanish@lists.debian.org
Bcc:

dd
d
ddd


Date: Sat, 22 Sep 2001 11:53:23 -0300
From: debian-user-spanish@lists.debian.org
Message-Id: [EMAIL PROTECTED]
Return-Path: debian-user-spanish@lists.debian.org
Bcc:

cc
c
c


y asi sigye.

Que puedo hacer para ver los mails separaditos uno por uno??

desda ya millones de gracias



Sesiones remotas X Window

2001-09-22 Thread Carlos López
Buenas a todos.

ya esoty de vuelta después de las vaciones (aunque se-
guramente no se notó mucho).
Me gustaría poder capturar desde un cliente linux la
consola gráfica de un Solaris. Se que se puede
realizar
a través del ejecutable X, el mismo que lanza el
servidor.
¿Alguien lo ha probado y sabe como se hace?.

Gracias.


_
Do You Yahoo!?
Obtenga su dirección de correo-e gratis @yahoo.com
en http://correo.espanol.yahoo.com



[OT] vncserver compartiendo el escritorio actual

2001-09-22 Thread Andres Seco Hernandez
Hola

Ya hace tiempo probé en potato y ahora en testing a compartir un
escritorio con vncserver, pero siempre me creaba el de potato y ahora el
de testing un nuevo display X, no puedo compartir el :0.

En windows vnc comparte el escritorio actual, ¿como hay que lanzar
vncserver para que comparta el escritorio actual, el del display :0?

-- 
Andres Seco Hernandez- [EMAIL PROTECTED]
MCP ID 445900 - http://andressh.alamin.org
GnuPG public information:  pub  1024D/3A48C934
E61C 08A9 EBC8 12E4 F363  E359 EDAC BE0B 3A48 C934
--
Alamin GSM SMS Gateway   -   http://www.alamin.org
Debian GNU/Linux -   http://www.debian.org
Grupo de Usuarios de GNU/Linux  de  Guadalajara  y
alrededores  -  http://gulalcarria.sourceforge.net
--


pgpJBsFXACcQO.pgp
Description: PGP signature


Re: everybuddy

2001-09-22 Thread Felinux
El Jue 20 Sep 2001 12:52, heissu escribió:
 Illera wrote:
  Hola a todos. Estoy intentando entrar con everybuddy
  en la cuenta msn de mi hermana pero no hay manera,
  me dice:
  unable to autheticate user
  y en la consola:
  Unable to login to MSN
 
  He probado con y sin @hotmail.com.
  ¿A alguien le ha pasado lo mismo? Venga, que ya he
  conseguido entrar en el chat de ya con wine y mirc
  y sólo queda esto para que deje windows de una vez :o)
  Saludos y gracias.
 
  --
  To UNSUBSCRIBE, email to [EMAIL PROTECTED]
  with a subject of unsubscribe. Trouble? Contact
  [EMAIL PROTECTED]

 ¿Has probado a poner el nombre en mayúsculas?

¿Has probado el gaim?, tiene un modulo para el msn y realmente me esta 
funcionando bien desde que lo probe.
 

Felinux- Gáldar - Gran Canaria - Islas Canarias
Red Hat 7.1 Kernel 2.4.7 Amd Athlon 1300 Kde 2.2
Gulic http://www.gulic.org  Canary ON Ltd. http://www.canaryon.f2s.com
=



Re: Sesiones remotas X Window

2001-09-22 Thread Roberto Meyer
On Sat, Sep 22, 2001 at 10:49:31AM -0500, Carlos López wrote:

 Buenas a todos.
 
 ya esoty de vuelta después de las vaciones (aunque se-
 guramente no se notó mucho).
 Me gustaría poder capturar desde un cliente linux la
 consola gráfica de un Solaris. Se que se puede
 realizar
 a través del ejecutable X, el mismo que lanza el
 servidor.
 ¿Alguien lo ha probado y sabe como se hace?.

No exactamente eso... pero sí una PC sin disco para correr KDE, fue realmente 
interesante.

Volviendo a lo tuyo, desconozco Solaris absolutamente.  Si cuenta con un 
servidor X debes habilitar las peticiones desde otras máquinas en el server X y 
en el administrador de ventanas... recuerdo que Xaccess era uno de los 
archivos.  A mi me resultaron suficientes las pistas que encontre en dichos 
archivos.

Luego, salteándome el proceso de arranque con diskette que no es tu caso 
simplemente debí correr X -query [hostname del servidor X] (bueno, ya se que es 
el cliente y no el servidor pero creo que se entiende no?)

Espero que con ésto alcance.

Suerte,

--
Roberto



iptables

2001-09-22 Thread Nicolas Fillon
alguien tiene ide de como consigo esta lib que es oara iptable.
libipt_string.so



Re: Sesiones remotas X Window

2001-09-22 Thread Renato Alarcon
 Me gustaría poder capturar desde un cliente linux la
 consola gráfica de un Solaris. 
No tengo idea de solaris osea que no se si le sirva

Se que se puede
 realizar
 a través del ejecutable X, el mismo que lanza el
 servidor.
 ¿Alguien lo ha probado y sabe como se hace?.

Siempre se me ha hecho como complicado, ademas que tampoco es que hayan 
muchos clientes como para windows y otros sistemas. En alguna ocasion 
puse a funcionar el mio en debian pero no recuerdo. 

Ultimamente lo que hecho es utilizar el VNC server. Se integra con X, y 
ademas existen una gran cantidad de clientes. Es de ATT, me imagino que 
existe una version para solaris. Es bastante facil de configurar. Lo 
corres como un usuario comun y corriente y simplemente redirecciona la 
salida de la sesion de X a el VNC client.

Suerte




Re: Sesiones remotas X Window

2001-09-22 Thread Manuel García
 Me gustaría poder capturar desde un cliente linux la
 consola gráfica de un Solaris. 
Se que se puede
 realizar
 a través del ejecutable X, el mismo que lanza el
 servidor.
 ¿Alguien lo ha probado y sabe como se hace?.
 
Hola, no sé si te servirá pero mira el programa import, viene en el
paquete imagemagick.

Un saludo, Manuel



compilacion del kernel

2001-09-22 Thread al-lists




estoy intentando compilar el kernel 2.2.19 pero
al-list:/usr/src/linux# make menuconfigrm -f include/asm( cd include 
; ln -sf asm-i386 asm)make -C scripts/lxdialog allmake[1]: Cambiando a 
directorio `/usr/src/linux/scripts/lxdialog'gcc -Wall -Wstrict-prototypes 
-O2 -fomit-frame-pointer -DLOCALE -DCURSES_LOC="curses.h" -c -o 
lxdialog.o lxdialog.cIn file included from lxdialog.c:22:dialog.h:29: 
curses.h: No existe el fichero o el directoriomake[1]: *** [lxdialog.o] 
Error 1make[1]: Saliendo directorio 
`/usr/src/linux/scripts/lxdialog'make: *** [menuconfig] Error 2

Y no puedo seguir :(me podrian decir cual es el problema y como 
solucionarlo.creo que anda por las ncurses, no semuchas gracias 
lista


RE: Versiones debian

2001-09-22 Thread al-lists

- Original Message -
From: Fabian Arias [EMAIL PROTECTED]
To: al-lists [EMAIL PROTECTED]
Cc: debian-user-spanish@lists.debian.org
Sent: Saturday, September 22, 2001 12:58 AM
Subject: Re: Versiones debian


 On Fri, 21 Sep 2001, al-lists wrote:

  hola, mi pregunta es la siguiente:
  si yo en mi sources.list para actualizarme a woody pongo
  http.xxx.xxx/debian woody
  o
  http.xxx.xxx/debian stable
Perdon, me equivoque no quize escribir esa linea asi, sino asi
http.xxx.xxx/debian testing
entonces quedaria
http.xxx.xxx/debian woody
 o
http.xxx.xxx/debian testing
  hay alguna diferencia?
  y con:
  http.xxx.xxx/debian potato
  http.xxx.xxx/debian stable
  alguna diferemcia?
  y si yo en mi sources.list dejo siempre stable cuando woody sea
estable,
  automaticamente con el apt-get dist-upgrade tendria a woody?
  espero que se entiendan las preguntas y sepan las respuestas
 
  gracias por todo
 



Re: Problemas accediendo a FTP (era Compartir Packages entrecomputadoras)

2001-09-22 Thread Dr. Aldo Medina
:(. Bueno ahi va otra vez:

En mi máquina de escritorio tengo Woody con mi firewall configurado con
pmfirewall y con wu-ftpd sirviendo mis paquetes debian. Bloquea todo
menos los puertos 20 y 21. En la laptop tengo potato con el sources.list
apuntando a la de escritorio.

Si el firewall no está puesto (o sea limpio ipchains) apt-get update en
la laptop funciona perfectamente. Pero si pongo el firewall, apt-get
intenta ininterrumpidamente conectarse sin éxito, aunque al mismo tiempo
un acceso directo con ncftp a la máquina de escritorio me muestra y baja
los deb que le pida (instalados en
/home/ftp/dists/woody/main/binary-i386/)

¿Creo que podría resumir todo en como le digo a apt-get que use o no el
modo pasivo de FTP?. O sí alguien conoce pmfirewall ¿como lo configuro
para que acepte la conexión a FTP de cualquier forma?

Gracias por la paciencia.

MaX wrote:
 
 ???  puede espicar un poco mejor?  no entiendo lo que esta pidiendo.
 
 ciao,
 MaX
 
 On Fri, 2001-09-21 at 19:38, Dr. Aldo Medina wrote:
  Continuando con mis deseos de compartir un solo /var/cache/apt/archive
  entre dos máquinas, me ha funcionado perfectamente aquello de usar
  wu-ftpd en la principal, y agregarla al source.list de la laptop. Sin
  embargo, cuando hago esto con el firewall (uso pmfirewall) arriba en la
  principal, apt-get no baja nada, pero un ncftp puede ver todo. Creo que
  el problema es que apt-get intenta utilizar puertos diferentes, y ncftp
  sólo usa el 20 y 21. Alguna idea de como corregir esto? Muchas gracias.

-- 
Linux User #98419 -o)| El alcohol produce amnesia, y otras
http://counter.li.org  /\| cosas que no recuerdo  
ICQ 94335020  _\_v   |

_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




RE: Siguen los problemas del cable modem

2001-09-22 Thread al-lists

- Original Message -
From: heissu [EMAIL PROTECTED]
To: usuarios debian en castellano debian-user-spanish@lists.debian.org
Sent: Saturday, September 22, 2001 6:37 AM
Subject: Siguen los problemas del cable modem


 Antes que nada, agradecer las respuestas que me han dado sobre el
 tema de la tarjeta. Aunque sigo sin poder hacerlo funcionar.

 He descubierto que con otra tarjeta que no sea la que me
 pusieron ellos, no funciona. Esta tarjeta era la rtl8139, por lo que
 gracias a las respuestas, ya instalé el módulo. Pero lo de conseguir el
 número IP mediante dhcp, me parece que no va tan bien. Por que no logra
 cogerme un número IP. Y sigo sin comprender mucho lo del DNS automático,
 me refiero a configurarlo. ¿Alguien lo tiene instalado en su casa?


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]

no puedes configurar el cablemodem en tu casa?
usas dhcp?
http://freshmeat.net/search/?site=Freshmeatq=dhcpcdsection=projects
el primero de la lista, osea dhcpcd
suerte




Re: compilacion del kernel

2001-09-22 Thread Antonio Luque Estepa
El Sáb 22 Sep 2001 18:36, al-lists escribió:
 estoy intentando compilar el kernel 2.2.19 pero
 ...
 dialog.h:29: curses.h: No existe el fichero o el directorio
 make[1]: *** [lxdialog.o] Error 1
 make[1]: Saliendo directorio `/usr/src/linux/scripts/lxdialog'
 make: *** [menuconfig] Error 2

Instala el paquete libncurses5-dev.

-- 
Antonio Luque Estepa 
  Escuela Superior de Ingenieros de Sevilla
 [EMAIL PROTECTED]
 http://woody.us.es/~aluque



RE: Sobre el cable modem... ¡Por fin, RESUELTO!

2001-09-22 Thread al-lists

- Original Message -
From: heissu [EMAIL PROTECTED]
To: usuarios debian en castellano debian-user-spanish@lists.debian.org
Sent: Saturday, September 22, 2001 8:11 AM
Subject: Sobre el cable modem... ¡Por fin, RESUELTO!


 Muchas gracias a todos por vuestra ayuda. El Cable modem está
 configurado correctamente. Así que, ...


 QmSf...


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]

Perdon que me meta, pero cual es el problema, esto tal vez ayuda a otras
personas
:)
gracias



Re: iptables

2001-09-22 Thread Celso Gonzalez
On Sat, Sep 22, 2001 at 12:57:14PM -0300, Nicolas Fillon wrote:
 alguien tiene ide de como consigo esta lib que es oara iptable.
 libipt_string.so
 

Hola

Mira en http://packages.debian.org en el último cuadro de busqueda
(textualmente Búsquedas en los contenidos de la liberación más reciente) 

En concreto lo que tu buscas no lo encuentro por ningun sitio (puede ser
libipt_state.so en vez de string?) pero miraría si tengo instalado el
paquete iptables. (ojo que solo está en woody y sid)

Un saludo
Celso González
[EMAIL PROTECTED]


pgpAcjzCnrGIY.pgp
Description: PGP signature


Re: Problemas accediendo a FTP (era Compartir Packages entrecomputadoras)

2001-09-22 Thread MaX
On Sat, 2001-09-22 at 18:42, Dr. Aldo Medina wrote:
 :(. Bueno ahi va otra vez:
 
 En mi máquina de escritorio tengo Woody con mi firewall configurado con
 pmfirewall y con wu-ftpd sirviendo mis paquetes debian. Bloquea todo
 menos los puertos 20 y 21. En la laptop tengo potato con el sources.list
 apuntando a la de escritorio.


a!*  ahora intiendo.. :-)

claro, no puede funcionar porqué apt por defecto usa el PASSV mode... y
no se como se desactiva...

Hay un workaround... usa dselect y mira a la primera voz. 
Se puede elegir de usar un servidor ftp... y te pide si se tiene que
usar el passv mode...

En esta forma no tendrá que modificar la configuracción de tu firewalll
y al mismo tiempo dselect funcionerá perfectamente.

ciao,

MaX

* Típica espressión italiana

 
 Si el firewall no está puesto (o sea limpio ipchains) apt-get update en
 la laptop funciona perfectamente. Pero si pongo el firewall, apt-get
 intenta ininterrumpidamente conectarse sin éxito, aunque al mismo tiempo
 un acceso directo con ncftp a la máquina de escritorio me muestra y baja
 los deb que le pida (instalados en
 /home/ftp/dists/woody/main/binary-i386/)
 
 ¿Creo que podría resumir todo en como le digo a apt-get que use o no el
 modo pasivo de FTP?. O sí alguien conoce pmfirewall ¿como lo configuro
 para que acepte la conexión a FTP de cualquier forma?
 
 Gracias por la paciencia.
 
 MaX wrote:
  
  ???  puede espicar un poco mejor?  no entiendo lo que esta pidiendo.
  
  ciao,
  MaX
  
  On Fri, 2001-09-21 at 19:38, Dr. Aldo Medina wrote:
   Continuando con mis deseos de compartir un solo /var/cache/apt/archive
   entre dos máquinas, me ha funcionado perfectamente aquello de usar
   wu-ftpd en la principal, y agregarla al source.list de la laptop. Sin
   embargo, cuando hago esto con el firewall (uso pmfirewall) arriba en la
   principal, apt-get no baja nada, pero un ncftp puede ver todo. Creo que
   el problema es que apt-get intenta utilizar puertos diferentes, y ncftp
   sólo usa el 20 y 21. Alguna idea de como corregir esto? Muchas gracias.
 



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




RE: compilacion del kernel

2001-09-22 Thread al-lists

- Original Message -
From: Antonio Luque Estepa [EMAIL PROTECTED]
To: debian-user-spanish@lists.debian.org
Sent: Saturday, September 22, 2001 1:46 PM
Subject: Re: compilacion del kernel


 El Sáb 22 Sep 2001 18:36, al-lists escribió:
  estoy intentando compilar el kernel 2.2.19 pero
  ...
  dialog.h:29: curses.h: No existe el fichero o el directorio
  make[1]: *** [lxdialog.o] Error 1
  make[1]: Saliendo directorio `/usr/src/linux/scripts/lxdialog'
  make: *** [menuconfig] Error 2

 Instala el paquete libncurses5-dev.

 --
 Antonio Luque Estepa
   Escuela Superior de Ingenieros de Sevilla
  [EMAIL PROTECTED]
  http://woody.us.es/~aluque


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]

muchisimas gracias
gracias a eso, estoy compilando el kernel




Re: [OT] vncserver compartiendo el escritorio actual

2001-09-22 Thread MaX
Hola,

esto no es un bug, esta escrito así, el problema es que window no es
realmente multiususario... bueno pero para resolver tu ptoblema es
bastante buscar en 

http://www.uk.research.att.com/vnc/extras.html#x0rfbserver

ciao,
MaX

On Sat, 2001-09-22 at 17:52, Andres Seco Hernandez wrote:
 Hola
 
 Ya hace tiempo probé en potato y ahora en testing a compartir un
 escritorio con vncserver, pero siempre me creaba el de potato y ahora el
 de testing un nuevo display X, no puedo compartir el :0.
 
 En windows vnc comparte el escritorio actual, ¿como hay que lanzar
 vncserver para que comparta el escritorio actual, el del display :0?
 



_
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com




Re: iptables

2001-09-22 Thread Nicolas Fillon
es que quiero poner esta regla y me sa el siguiente erro

telemetrybox:~# iptables  -I INPUT -p tcp --dport 80 -m string --string .exe? 
 -m state --state ESTABLISHED -j REJECT --reject-with tcp-reset
iptables v1.2.3: Couldn't load match `string':/lib/iptables/libipt_string.so: 
cannot open shared object file: No such file or directory

El Sáb 22 Sep 2001 13:56, Celso Gonzalez escribió:
 On Sat, Sep 22, 2001 at 12:57:14PM -0300, Nicolas Fillon wrote:
  alguien tiene ide de como consigo esta lib que es oara iptable.
  libipt_string.so

 Hola

 Mira en http://packages.debian.org en el último cuadro de busqueda
 (textualmente Búsquedas en los contenidos de la liberación más reciente)

 En concreto lo que tu buscas no lo encuentro por ningun sitio (puede ser
 libipt_state.so en vez de string?) pero miraría si tengo instalado el
 paquete iptables. (ojo que solo está en woody y sid)

 Un saludo
 Celso González
 [EMAIL PROTECTED]



Acentos y ñ

2001-09-22 Thread aiToR
Hola a todos.

Tengo una Debian 2.2 r3 desde hace sólo 2 o 3 días. Por el momento no he
tenido casi ningún problema, pero al actualizar a XFree 4.0.1 tanto las X
como la consola han dejado de mostrarme los acentos y las ñ. Ambos me dejan
escribirlos, vamos, que el teclado está configurado correctamente como
español, pero son incapaces de mostrarlos después es los textos que los
contengan.

He modificado el /etc/locale.gen poniendo es_ES ISO-8859-1, he
modificado el inputrc para que acepte caracteres de 8 bits y he añadido al
/etc/profile todos los exports que habrían de españolizar mi sistema.

No sé si tendrá que ver, pero he actualizado a kernel 2.4.9, no tengo
claro si alguna opción de compilación controla esto.

Ya no sé que hacer, y harto de buscar documentación sin resultados y que
en el IRC la gente no sea capaz de aportarme una solución he acudido a
vosotros :)

Gracias por todo.




Sistema de ficheros raiz en modo loopback

2001-09-22 Thread lacius
¿Alguien conoce cómo cargar con loadlin u otro cargador de linux un 
sistema de ficheros en modo loopback sin usar el initrd de ramdisk?.

Un saludo.
José Francisco.
[EMAIL PROTECTED]



Re: No me van los dominios virtuales en apache

2001-09-22 Thread Hue-Bond
Hue-Bond, miércoles 19 de septiembre de 2001 a la(s) 23:37:50 +0200:

 Por si sirve de algo, tengo adsl y la IP visible desde internet
 la lleva el  desastroso router 3com

 El tema al final estaba aquí. Poniendo los servidores virtuales
 en la  IP que  lleva el Linux  ya funciona. Gracias  por el  par de
 respuestas.


-- 
 David Serrano [EMAIL PROTECTED] - Linux Registered User #87069


pgp00yD5LW0IN.pgp
Description: PGP signature


Re: Duda Adsl

2001-09-22 Thread Hue-Bond
MaX, jueves 20 de septiembre de 2001 a la(s) 22:27:31 +0200:

Se puede pedir esto a terra? o hay otra elección en BCN al mismo precio?

 Sólo una cosa: no lo hagas con retevision (iddeo, eresmas).


-- 
 David Serrano [EMAIL PROTECTED] - Linux Registered User #87069


pgpI4Ry6aFcbk.pgp
Description: PGP signature


REENCUENTRO

2001-09-22 Thread Egresados
¿QUERES REENCONTRARTE CON TUS COMPAÑEROS DE LA SECUNDARIA? 
 
DE LA PRIMARIA?
DE LA FACULTAD?
 
 
Completá los datos al pie y reenvíanoslo  a [EMAIL PROTECTED] luego te
incorporaremos en nuestra base de datos y a la brevedad, te notificaremos de
la dirección de alguno de tus compañeros.
Hace ya algunos meses que estamos abocados a acrecentar nuestra base de
datos, por lo que muy pronto tendremos nuestra página web para que puedas
consultar de las novedades que van surgiendo con respecto a tu año de egreso.
 
 
NOMBRE: 
APELLIDO: 
E-MAIL: 
NOMBRE COLEGIO: 
LOCALIDAD:
PROVINCIA: 
AÑO DE EGRESO: 
DIVISION:

Esperamos tu pronta respuesta. 



Re: Problema con el cable modem

2001-09-22 Thread Juan Rafael Alvarez Correa
On Fri, Sep 21, 2001 at 06:16:50PM -0500, Gunnar Wolf wrote:
  El caso es que para conectarse lo que hacen es dejar todo
  automático: IP automática, y DNS automática. He estado leyendo sobre el
  tema, pero no he encontrado nada para dejar tantas cosas de forma
  automática. Y me pregunto si alguien de la lista sabe donde puedo
  informarme de ese caso en particular. Entrando un poco más en
  especificaciones la conexión comienza desde mi ordenador, mediante una
  tarjeta de red (que ya está configurada) luego ésta, va conectada a
  dicho MODEM especial, y éste, para la calle.
 
 Casi seguramente te dan estos datos a través del protocolo DHCP. En Debian
 tienes todo lo necesario para usar DHCP - Si no me equivoco, basta con
 poner la siguiente definición en tu /etc/network/interfaces:
 
 auto eth0
 iface eth0 inet dhcp

iface eth0 inet dymanic

  Y otra cosa, porque me trajeron una tarjeta muy mona, aunque intenté
  configurarla en linux, pero no he visto manera. Es una Realtek
  RTL8139(A) PCI Fast Ethernet. Si alguien sabe de algún sitio donde
  encontrar un módulo que la soporte, etc... que también me lo haga saber,
  por favor...
 
 Tengo una similar en casa... Si no me equivoco, el módulo se llama rt8139.
 Es parte del árbol principal del kernel, pero (al menos en 2.2.19) tienes
 que habilitar Support for experimental drivers para que aparezca la
 opción, y claro, debes activarla antes de compilar tu kernel. Funciona
 bastante decentemente.
 
 Saludos,
 
 
 Gunnar Wolf - [EMAIL PROTECTED] - (+52)5623-1118
 Desarrollo y Admon. de Sistemas en Red - FES Iztacala - UNAM
 Departamento de Seguridad en Computo   -   DGSCA-   UNAM
 
 Quidquid latine dictum sit, altum viditur.

-- 
Juan Rafael Alvarez CorreaMobile: +573-4269221
CTO Fluid Signal S.A.   Medellin, Colombia
mailto:[EMAIL PROTECTED]http://www.fluidsignal.com/
Key fingerprint: 15C4 0986 A174 862A B607 8EEA 934F 8649 07E2 EA40


pgptKTiyx8fCU.pgp
Description: PGP signature


Configurando Windowmaker.

2001-09-22 Thread El Debianita User
Saludos Debianitas!!
Configurando el Windowmaker a mi gusto personal me encuentro con el siguiente 
problema,quiero quitar de la barra de menus ciertas aplicaciones que he 
sacado con el dselect estuve viendo por las mias y ejecute el Windowmakerconf 
buscando esta opcion(sacar los menus de los programas eliminados) hay un 
cuadrado que dice Menu,pues ahi me dirijo y veo:

aplication menu configuration requires that your menu file
/home/juan/GNUstep/Defaults/WM Root Menu
is in the new format.
___
convert current menu  |  start whit empty menu | use predifined menu


cualquiera de estos menus que elija no me produce ningin resultado
cual sera el cuadro para configurar esto?,si algun usuario de windowmaker me 
lo puede decir se lo voy a agredecer...
Los saluda..
Juan Ortiz



Re: Acentos y

2001-09-22 Thread Martínez
El Sat, Sep 22, 2001 at 08:04:04PM +0200, aiToR garabateó:
 He modificado el /etc/locale.gen poniendo es_ES ISO-8859-1, he
 modificado el inputrc para que acepte caracteres de 8 bits y he añadido al
 /etc/profile todos los exports que habrían de españolizar mi sistema.


hola...

aprovechando que yo posteé un correo similar hace quince días, me hago el listo 
:)
. Descomenta la expresión set convert-meta off en el fichero /etc/inputrc y ya 
verás como todo funciona de nuevo...


saludos
diego

-- 
Diego Martínez Castañeda
[EMAIL PROTECTED]
Responsable Técnico CDSAT Valnalón
-
C e n t r o   S A T   V a l n a l ó n
Ciudad Industrial Valnalón
C/ Altos Hornos, s/n
33930 La Felguera - Langreo
Asturias - España
Tel. +34 985 69 22 27 (ext 413)
Fax. +34 985 68 31 93
Videoconferencia +34 985 67 87 58
Web: www.astursat.net
E-mail: [EMAIL PROTECTED]



Paquetes con errores

2001-09-22 Thread Gustavo Conradi
Hi !!

Desde hace unos dias he estado intentando bajar 
unos paquetes con apt-get y luego, al instalarlos,
me tira un informe de errores (ver mas abajo).

El caso me preocupa por el echo de que
ya van varias veses que lo intento y siempre
termina dando los mismos errores.

A alguien tambien le ocurre lo mismo ?

Agradezco cualquier respuesta o recomendaciones

Saludos
CG

-
Fetched 385kB in 3m37s (1766B/s)
(Leyendo la base de datos ...
48369 ficheros y directorios instalados actualmente.)

Preparando para reemplazar libbonobo2 1.0.7-ximian.2 (usando 
.../libbonobo2_1.0.8-1_i386.deb) ...
Desempaquetando el reemplazo de libbonobo2 ...
dpkg: error al procesar /var/cache/apt/archives/libbonobo2_1.0.8-1_i386.deb 
(--unpack):
 intentando sobreescribir /usr/lib/bonobo/monikers/libmoniker_std.so.0.0.0', 
que está también en el paquete bonobo

Preparando para reemplazar libzvt2 1.2.13-ximian.11 (usando 
.../libzvt2_1.4.1.1-1_i386.deb) ...
Desempaquetando el reemplazo de libzvt2 ...
dpkg: error al procesar /var/cache/apt/archives/libzvt2_1.4.1.1-1_i386.deb 
(--unpack):
 intentando sobreescribir /usr/sbin/gnome-pty-helper', que está también en el 
paquete gnome-bin

dpkg-deb: el subproceso paste fue terminado por la señal (Tubería rota)

Se encontraron errores al procesar:
 /var/cache/apt/archives/libbonobo2_1.0.8-1_i386.deb
 /var/cache/apt/archives/libzvt2_1.4.1.1-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Vger:~#
--



Configurando el Mutt.

2001-09-22 Thread El Debianita User
Saludos Debianitas!!
Me encuentro en pleno proceso de configuracion del mutt y si bien e conseguido
un manual en la red no he encontrado lo siguiente:como crear una nueva 
carpeta,resulta,que por ahora estoy usando el kmail y el correo lo tengo 
organizado y filtrado por carpetas asi la lista de Debian por ejemplo tiene 
su carpeta llamada Debian y asi sucesivamente pues bien quiero llegar a hacer 
esto con el mutt pero no vi en el manual que diga como se hace para crear una 
nueva carpeta,otra pregunta es si el mutt tiene fitros o tendre que usar 
procmail?
Luego observe que al salir del mutt me da la opcion de mover los mensajes a 
mbox puedo volver a leer los mensajes que se fueron ahi?,si puedo,como?.
Los saluda y agradece...
Juan Ortiz



wine para debian

2001-09-22 Thread David Felipe Arias Ochoa
http://www.codeweavers.com/technology/wine/download.php

alguien a instalado este programa para debian, quiero si es posible que
alguien me explique como hago para
poder instalar un rpm en debian con alien, ya que la verda lo he intentado
varias veces pero pocas pero muy pocas veces lo he intentado


gracias



pregunta de novato: actualizar kernel.

2001-09-22 Thread txemitron


He instalado sid y con la instalación limpia lo primero 
que he intentado hasido actualizar a la versión de kernel 2.4. Para ello he 
usado laherramienta dselect que automáticamente baja e instala la 
imagen.Los scripts de configuración se quejan porque no tengo una imagen 
initrd,que es necesaria para el paquete de kernel que estoy instalando. No 
entiendoporqué es necesaria una imagen initrd en este caso, y porqué no me 
la puedecrear el programa de instalación. ¿Que tengo que hacer para terminar 
deinstalar el nuevo kernel? ¿Que estoy haciendo mal? Y si no es mucho 
pedir...¿en qué casos se suele usar la imagen initrd y para qué 
sirve?gracias,tx.



Re: Linguagem de programacao (Banco de Dados)

2001-09-22 Thread Emerson Val

Eu criei uma biblioteca pra quebrar um galho no acesso a banco de dados em C. 
Uso em meus projetos e vocês já sabem (GTK DBC). A Documentação ainda não foi 
providenciada mas quem quiser me contatar diretamente sobre como utilizar...
A biblioteca funciona da seguinte forma: São três classes GTK+ (GtkDBDriver, 
GtkDBQuery e GtkDBForm). Uma acessa o driver e conecta com o banco de dados, 
outra executa e armazena resultados SQL (SQL nativo passado pro driver que é 
passado pro servidor de banco de dados) e o outro dá acesso aos dados pelos 
componentes do GTK+. Criei um driver pra PostgreSQL e outro pra MySQL. 
Pretendo depois criar um pra ODBC e outro pra InterBase, e estou portando pra 
Windows com o mingw. Em http://feiraba.virtualave.net vocês podem pegar o 
fonte, e em breve disponibilizarei documentação, mas antes devo trabalhar no 
porte pra Windows com fontes e binários pré-compilados pra facilitar as 
coisas. Já disponibilizei os binários .deb pra potato no site.

Estou criando os programas com auxílio do Glade, libglade (pra carregar os 
forms em tempo de rodagem) e GTK DBC pra acessar os dados.
Talvêz vocês se perguntem porque criar algo assim já que existem tantas 
opções, mas tantas opções não serviram pra mim então resolvi criar o GTK DBC.
Como só eu desenvolvo a biblioteca então preciso da ajuda de desenvolvedores 
pra certificarem a funcionalidade das funções e revisões no código, já que 
somos uma comunidade.

Pretendo resolver os problemas acima pra logo depois criar duas ferramentas, 
sendo uma pra Acesso e gerenciamento de Banco de Dados de forma independente 
e outra pra criação e integração de formulários do Glade pra geração de 
código fonte automático fazendo um RAD com Glade+libglade+GTK DBC+Gerenciador 
de Dados+Ambiente Gerador de Código.

O Kov já deu uma olhada, mas acredito que isso possa crescer e um projeto 
desse coordenado por brasileiros seria muito bom. 

Tenho um software grande aqui funcionando perfeitamente, mas tenho uma 
preocupação especial quanto ao aproveitamento de memória.

Quando estiver disponível a documentação colocarei manuais de como 
desenvolver mais eficientemente com as ferramentas mencionadas.

GTK DBC acessa os widgets derivados de GtkEntry e GtkCheckButton e atualmente 
não tem acesso a campos BLOB Binários e não tem mecanismos pra gerenciar 
Tabelas Mestre/Filho e esquema lookup como no Delphi, mas espero que a ajuda 
de vocês possa melhorar esse panorama. A criação de mecanismos pra acesso 
lookup e gerenciamento Mestre/Filho estão dentro dos meus planos. 
GTK DBC não faz diferenciação entre os tipos de dados SQL e trata todos os 
dados como Strings já que são passados via SQL pros drivers e enviados pros 
servidores de banco de dados.

Desculpem a mensagem longa, mas creio que isso ajude muita gente.



Re: Modem Conexant no Debian

2001-09-22 Thread Emerson Val
Em Sex 21 Set 2001 22:08, Luiz Carlos B. Vessosa Jr escreveu:
 Eae pessoal

 Tenho um notebook Compaq Presario 1200 12XL311 e resolvi instalar o
 Debian aqui (em breve irei fazer um tutorial). Jah consegui fazer
 pegar quase tudo.

 O meu problema é o modem, que segundo o windows é um Compaq 56K V.90
 HSF Mini PCI Modem e seguindo o linux é um CONEXANT HSP MicroModem
 56K
 Peguei jah os drivers da olitec para kernel 2.2.17 e instalei
 normal.. quando entro no minicom e digito AT ele responde OK normal!
 O Problema é que quando tento dar um ATDT123456 (ou usar outro
 programa pra discar) eu recebo a resposta NO DIALTONE.

Tenta inicializar o modem com ATX1 ou ATX3 e disca pra ver se dá.



Re: Modem Conexant no Debian

2001-09-22 Thread synthespian
On Sat, Sep 22, 2001 at 12:02:46AM -0300, Emerson Val wrote:
 Em Sex 21 Set 2001 22:08, Luiz Carlos B. Vessosa Jr escreveu:
  Eae pessoal
 
  Tenho um notebook Compaq Presario 1200 12XL311 e resolvi instalar o
  Debian aqui (em breve irei fazer um tutorial). Jah consegui fazer
  pegar quase tudo.
 
  O meu problema é o modem, que segundo o windows é um Compaq 56K V.90
  HSF Mini PCI Modem e seguindo o linux é um CONEXANT HSP MicroModem
  56K
  Peguei jah os drivers da olitec para kernel 2.2.17 e instalei
  normal.. quando entro no minicom e digito AT ele responde OK normal!
  O Problema é que quando tento dar um ATDT123456 (ou usar outro
  programa pra discar) eu recebo a resposta NO DIALTONE.
 
 Tenta inicializar o modem com ATX1 ou ATX3 e disca pra ver se dá.
 

ATX são para terminais PABX.
ATDT*
e ATDP* onde astericos = número discado são para pulso
e tom.
Se tua linha é comum, você precisa esperar a pausa. Para
esperar o tom de discagem (dial tone), digite:
ATDT 0,**
Cada vírgula representa uma pequena pausa, talvez vc necessite
aumentar o número delas.
Para desligar:
+++ ~~~ATH0

+++ é seqüência de escape e o H0 pendura no gancho.

[ ]s
henry
[EMAIL PROTECTED]




ola

2001-09-22 Thread Margarida Espirito Santo
Olá,

Sei que és uma pessoa interessante, inteligente e ambiciosa.
Deves estar a pensar: quem será ela?...

Também sei que gostas de te divertir (como eu), por isso vou-te dar uma 
sugestão:
Um sitio onde podes jogar jogos de casino como em Las Vegas, ganhar dinheiro de 
verdade instantaneamente, aqui mesmo no teu computador ligado à Internet.
Os prémios serão pagos no teu cartão de crédito ou por cheques internacionais 
enviados pelo correio.
Todos os novos jogadores recebem US$30 bônus com a primeira compra das fichas 
de jogo por se juntarem ao Casino Elegance ou Casino-Portugal. 
Podes também treinar jogando apenas com fichas de brincar.

Deixo-te uma dica para nunca perderes no casino e seres uma pessoa milionária 
como eu:
Técnica do dobrar:
 - Faz uma aposta de 50% de probabilidade de ganhar.
 - Por exemplo aposta $1 (1 dollar) na cor vermelha da roleta (só há vermelho e 
preto).
 - Se sair vermelho acabas de ganhar $1. Se sair preto perdeste, mas calma...
 - Dobra a primeira aposta e coloca $2 no vermelho de novo.
 - Se sair vermelho acabas de ganhar $2 (como perdeste $1 na 1ª aposta... 
ganhas $1!).
 - Se sair preto perdeste novamente ($1 na 1ª aposta e $2 na segunda aposta.)
 - Não desesperes pk recuperas facilmente... dobra a aposta de novo.
 - Dobra novamente e aposta $4 no vermelho.
 - Se sair vermelho acabas de ganhar $4, como perdeste $3 nas apostas 
anteriores, ganhas $1!
 - Se voltares a perder pela terceira vez dobra a aposta e assim sucessivamente 
ate ganhares.
 - Chega a um ponto que ganhas e tirando o $$ perdido nas apostas anteriores, 
ganhas sempre $1!.

Resumindo: Faz uma aposta inicial minima e vai dobrando sempre até ganhares...
Ganhas sempre a aposta inicial que fizeste!! 
Apenas tens de ter $$ suficiente para dobrares o maior numero de vezes 
possivel...
Seria muito azar estar a jogar 6 ou 7 vezes no vermelho e sair sempre preto nao 
achas? 

* CASINO ELEGANCE (ganha $$ 24 horas por dia e diverte-te)
http://go.to/casinoelegance

* CASINO-PORTUGAL (roleta, poker, black jack, slot machines, etc)
http://www.casinorequest.com:8085/11ed/Casino-Portugal.exe

* WEBMASTERS (coloca ou promove um casino no teu site e ganha % lucros)
http://jump.to/webmasters
 
Beijos e espero que tenha sido util...
Uma amiga.



Traduções - alhuém leu isso na debian-doc?

2001-09-22 Thread synthespian
Pessoal-

Sobre as traduções:

Ok aí vai um forward da questão da tradução.
Eu sei que eu estou sempre tocando no assunto e nunca fazendo nada de
prético (sim, sim, autocrítica!), mas, como eu digo abaixo, da úlltima
vez que eu iniciei algo, eu descobri que a página
http://auric.debian.org/~grisu/debian_translation estava pra lá de
desatualizada...
Quando eu escrevi para a debian-doc sobre isso, o mantenedor da página
respondeu com algumas críticas...Vamos refletir sobre elas...



- Forwarded message from Michael Bramer [EMAIL PROTECTED] -

X-From_: root  Sun Sep 16 17:53:38 2001
Resent-Date: Sun, 16 Sep 2001 17:53:37 -0300 (BRT)
X-Envelope-Sender: [EMAIL PROTECTED]
Date: Sun, 16 Sep 2001 22:51:55 +0200
From: Michael Bramer [EMAIL PROTECTED]
To: debian-doc@lists.debian.org
Subject: Re: translation support
Mail-Followup-To: Michael Bramer [EMAIL PROTECTED],
debian-doc@lists.debian.org
User-Agent: Mutt/1.3.15i
In-Reply-To: [EMAIL PROTECTED]; from [EMAIL PROTECTED] on Sun, Sep 16, 2001 
at 01:32:58PM -0300
Resent-Message-ID: [EMAIL PROTECTED]
Resent-From: debian-doc@lists.debian.org
X-Mailing-List: debian-doc@lists.debian.org archive/latest/2298
X-Loop: debian-doc@lists.debian.org
Precedence: list
Resent-Sender: [EMAIL PROTECTED]

On Sun, Sep 16, 2001 at 01:32:58PM -0300, [EMAIL PROTECTED] wrote:
  
  but some other things:
   - translate some debconf templates (see
 http://auric.debian.org/~grisu/debian_translation/)
 
 Last time I tried to translate something, I ended up working on
 something somebody already had taken as a job, because the URL above
 was totally out of sync with reality, it was _so_ outdated.

first I am the maintainer of this page.

second, The page don't watch the bts! (I don't write this, or don't I?)

I am not the delay. If someone send me a bug report number, I include
this number in one day (as max time).

The german part are _not_ outdated. I get from the german translators
mails and I add this all. 

 I'm way too busy to have time to spend like that...

I understand this problem. Some translators don't coordinate their
work. Some maintainer don't include translations bugs. sorry, but am
not the problem.

Because of this, I start the ddtp and use a _server_ for the
coordination of the translation of the descriptions...

 I suggest that a formal mechanism of submitting and checking which
 translations are being done has to be set up.
 Submitting your choices do the L10N lists is kind of messy, and makes
 you loose some time. I feel translations at my L10N are a bit out of
 control in the sense that nobody knows who's translating what.
 I've suggeste using wiki pages, at least to go there and say hey, I
 got this template here, I'll do it, but since there's already a web
 page that's supposed to be monitoring this, it would just be
 forking-out to use anothe resource like a wiki web.

maybe someone can write some code (have we a perl-lib for this?) and
watch the bug reports... 

Gruss
Grisu
-- 
Michael Bramer  -  a Debian Linux Developer http://www.debian.org
PGP: finger [EMAIL PROTECTED]  -- Linux Sysadmin   -- Use Debian Linux
Betriebsysteme kommen und gehen, aber nur Unix ist seit Anfang an
dabei.



- End forwarded message -


Essa questão do método de coordenação se resolveu?
A página do grisu está atualizada?


E uma última coisa: alguém recebe a debian-L10N-portuguese na
caixa de correio? Ou ela não funciona assim?


[ ]s
Henry, já devidamente protegido com manta térmica
[EMAIL PROTECTED]







Re: ola

2001-09-22 Thread ..::Nitrogen::..
Quem é que deixa esse tipo de gente entrar na lista?


- Original Message -
From: Margarida Espirito Santo [EMAIL PROTECTED]
To: debian-user-portuguese@lists.debian.org
Sent: Saturday, September 22, 2001 1:11 PM
Subject: ola


 Olá,

 Sei que és uma pessoa interessante, inteligente e ambiciosa.
 Deves estar a pensar: quem será ela?...

 Também sei que gostas de te divertir (como eu), por isso vou-te dar uma
sugestão:
 Um sitio onde podes jogar jogos de casino como em Las Vegas, ganhar
dinheiro de verdade instantaneamente, aqui mesmo no teu computador ligado à
Internet.
 Os prémios serão pagos no teu cartão de crédito ou por cheques
internacionais enviados pelo correio.
 Todos os novos jogadores recebem US$30 bônus com a primeira compra das
fichas de jogo por se juntarem ao Casino Elegance ou Casino-Portugal.
 Podes também treinar jogando apenas com fichas de brincar.

 Deixo-te uma dica para nunca perderes no casino e seres uma pessoa
milionária como eu:
 Técnica do dobrar:
  - Faz uma aposta de 50% de probabilidade de ganhar.
  - Por exemplo aposta $1 (1 dollar) na cor vermelha da roleta (só há
vermelho e preto).
  - Se sair vermelho acabas de ganhar $1. Se sair preto perdeste, mas
calma...
  - Dobra a primeira aposta e coloca $2 no vermelho de novo.
  - Se sair vermelho acabas de ganhar $2 (como perdeste $1 na 1ª aposta...
ganhas $1!).
  - Se sair preto perdeste novamente ($1 na 1ª aposta e $2 na segunda
aposta.)
  - Não desesperes pk recuperas facilmente... dobra a aposta de novo.
  - Dobra novamente e aposta $4 no vermelho.
  - Se sair vermelho acabas de ganhar $4, como perdeste $3 nas apostas
anteriores, ganhas $1!
  - Se voltares a perder pela terceira vez dobra a aposta e assim
sucessivamente ate ganhares.
  - Chega a um ponto que ganhas e tirando o $$ perdido nas apostas
anteriores, ganhas sempre $1!.

 Resumindo: Faz uma aposta inicial minima e vai dobrando sempre até
ganhares...
 Ganhas sempre a aposta inicial que fizeste!!
 Apenas tens de ter $$ suficiente para dobrares o maior numero de vezes
possivel...
 Seria muito azar estar a jogar 6 ou 7 vezes no vermelho e sair sempre
preto nao achas?

 * CASINO ELEGANCE (ganha $$ 24 horas por dia e diverte-te)
 http://go.to/casinoelegance

 * CASINO-PORTUGAL (roleta, poker, black jack, slot machines, etc)
 http://www.casinorequest.com:8085/11ed/Casino-Portugal.exe

 * WEBMASTERS (coloca ou promove um casino no teu site e ganha % lucros)
 http://jump.to/webmasters

 Beijos e espero que tenha sido util...
 Uma amiga.


 --
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact
[EMAIL PROTECTED]




Re: ola

2001-09-22 Thread Pablo Lorenzzoni
Isso eh permitido pela politica de listas do Debian.
Se naum me engano, por cada email comercial que a lista receber o 
projeto recebe 1000 dolares, ou algo assim.

Espero que estejam pagando.

[]s

Pablo

Em Sab 22 Set 2001 15:53, ..::Nitrogen::.. escreveu:
| Quem é que deixa esse tipo de gente entrar na lista?
snip

-- 
Pablo Lorenzzoni (Spectra) [EMAIL PROTECTED]
GnuPG PubKey at search.keyserver.net (Key ID: 268A084D)
Webpage: http://people.debian.org/~spectra/ 



Re: ola

2001-09-22 Thread Ricardo Sandrin
On Sat, 22 Sep 2001 16:04:53 -0300
Pablo Lorenzzoni [EMAIL PROTECTED] wrote:

heheh eu dúvido

 Isso eh permitido pela politica de listas do Debian.
 Se naum me engano, por cada email comercial que a lista receber o 
 projeto recebe 1000 dolares, ou algo assim.
 
 Espero que estejam pagando.
 
 []s
 
   Pablo
 
 Em Sab 22 Set 2001 15:53, ..::Nitrogen::.. escreveu:
 | Quem é que deixa esse tipo de gente entrar na lista?
 snip
 
 -- 
 Pablo Lorenzzoni (Spectra) [EMAIL PROTECTED]
 GnuPG PubKey at search.keyserver.net (Key ID: 268A084D)
 Webpage: http://people.debian.org/~spectra/ 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED]
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


-- 
Ricardo Sandrin - strange - http://strg.be.tf
**
|  .''`.  | Debian GNU/Linux: http://www.debian.org|
| : :'  : | Debian-BR...: http://debian-br.sourceforge.net |
| `. `'`  |  Be Happy! Be FREE!  |
|   `-| Think globally, act locally!   |
**



instalacao do woody

2001-09-22 Thread cosmo
all

Estou tendo problemas para instalar a verso woody do debian via net.

Possuo speed entao resolvi fazer a instalaco via net. Para fazer a
instalacao fiz o seguinte :

- fiz o download dos seis arquivos .bin do diretorio ftp.debian.
org/debian/dists/woody/main/disks-i386/3.0.13-2001-08-25/images-1.44

- gerei os 6 discos, rescue, root e driver-1,2,3,4.

Com os seis discos comecei a instalacao. Configurei a placa de rede, estava
fazendo tudo igual quando instalei aversao stable do debian. O problema eh
quando o debain vai fazer o download do arquivo Packages.gz no diretorio ftp.
us.debian.org. Comeca a fazer o download do arquivo e depois para e nao faz
mais nada.

Algume por acaso tem alguma ideia do que pode estar ocorrendo ?!? Fiz o
download dos arquivos .bin corretos ?!?!?



Problemas com VPN

2001-09-22 Thread Rodrigo Araujo
Olá pessoal, estou tendo uma dificudade um pouco estranha de entender,
mas vou tentar descrever aqui para ver se alguem pode me ajudar.
Instalei uma máquina com o woody, que usa a internet por rede
condominal por meio de VPN. Apliquei o patch no kernel, peguei um ppp
com patch também, instalei o pptp-linux e consegui finalmente conectar
recebendo ip e tudo mais. Agora não consigo resolver nomes (meu
resolve.conf está correto), já tentei até resolver usando o host e
passando o servidor de nomes para ele e nada! Já tentei até dar telnet
para a porta 53 do servidor e ele atendeu a conexão. O interessante e
que consigo navegar e tudo (botando o ip do google por exemplo). Não sei
mais o que fazer, o proximo passo é apelar para a instalação de um bind
na máquina para ver se funcina.

[]'s

-- 

:::  .''`.  ::: 
::: : :'  : ::: Rodrigo Araujo (rma) [EMAIL PROTECTED]
::: `. `'`  ::: UIN: 101720839
:::   `-::: 



Erro de Login no Debian

2001-09-22 Thread Gustavo Bertoli



Oi todosate esses dias atras eu tava 
conseguindo me logar como usuario normal e root a pouco tempo vem apresentando o 
seguinte erro, eu logo como root da certo, mas ae eu tento como usuario normal e 
da incorrect login, ja tentei alterar a senha, criar dinovo o usuario, colocar a 
mesma senha que o root e ainda da erro, a unica coisa que da certo é se eu der 
um comando su [usuario], queria saber como arrumar esse erro? 
Grato,Gustavo bertoli


problema com o WvDIAL

2001-09-22 Thread Gustavo Bertoli



Oi todos,Eu ja tentei de tudo que eu possa 
imaginar, mas quando eu digito wvdial pra conectar da tudo certo só que no final 
da:-- PPP negotiation detected.-- Starting pppd at Fri Sep 21 
01:26:31 2001-- PPP daemon has died! (exit code = 2)-- 
Disconnecting at Fri Sep 21 01:26:32 2001-- Auto Reconnect will be 
attempted in 5 seconds-- pppd error! Look at files in /var/log for 
an explanation.Alguem poderia me ajudar? 


Re: Problemas com VPN

2001-09-22 Thread Pablo Lorenzzoni
Olah

Em Sab 22 Set 2001 18:44, Rodrigo Araujo escreveu:
| Olá pessoal, estou tendo uma dificudade um pouco estranha de
| entender, mas vou tentar descrever aqui para ver se alguem pode me
| ajudar. Instalei uma máquina com o woody, que usa a internet por
| rede condominal por meio de VPN. Apliquei o patch no kernel, peguei
| um ppp com patch também, instalei o pptp-linux e consegui
| finalmente conectar recebendo ip e tudo mais. Agora não consigo
| resolver nomes (meu resolve.conf está correto)

O nome eh resolv.conf
Por via das duvidas, manda ele aih. O probloma eh, definitivamente 
com ele.

| , já tentei até
| resolver usando o host e passando o servidor de nomes para ele e
| nada! Já tentei até dar telnet para a porta 53 do servidor e ele
| atendeu a conexão. O interessante e que consigo navegar e tudo
| (botando o ip do google por exemplo).

Isso me diz q o seu problema eh o resolv.conf.

| Não sei mais o que fazer, o
| proximo passo é apelar para a instalação de um bind na máquina para
| ver se funcina.

Neh vamos resolver sem bind!! Bind sucks :-P

[]s

Pablo
-- 
Pablo Lorenzzoni (Spectra) [EMAIL PROTECTED]
GnuPG PubKey at search.keyserver.net (Key ID: 268A084D)
Webpage: http://people.debian.org/~spectra/ 



Re: Erro de Login no Debian

2001-09-22 Thread Pablo Lorenzzoni
Olah

Em Sab 22 Set 2001 19:35, Gustavo Bertoli escreveu:
| Oi todos
| ate esses dias atras eu tava conseguindo me logar como usuario
| normal e root a pouco tempo vem apresentando o seguinte erro, eu
| logo como root da certo, mas ae eu tento como usuario normal e da
| incorrect login, ja tentei alterar a senha, criar dinovo o usuario,
| colocar a mesma senha que o root e ainda da erro, a unica coisa que
| da certo é se eu der um comando su [usuario], queria saber como
| arrumar esse erro?

Sei lah. Mas jah reinstalou o login? Uma vez eu tive um problema 
parecido... era um cracker q colocou um backdoor tipo fake login no 
lugar do meu login. Reintalar resolveu.
Estah faltando muita informacao...
Vc mexeu em alguma outra coisa... tipo configuração do PAM, etc?
Como estah o seu passwd? O usuario normal aparece lah? E o shadow? 
Tah com as senhas criptografadas? Vc usa MD5?

[]s

Pablo


Content-Type: text/html; charset=iso-8859-1; name=Anexo: 1
Content-Transfer-Encoding: quoted-printable
Content-Description: 


-- 
Pablo Lorenzzoni (Spectra) [EMAIL PROTECTED]
GnuPG PubKey at search.keyserver.net (Key ID: 268A084D)
Webpage: http://people.debian.org/~spectra/ 



Re: problema com o WvDIAL

2001-09-22 Thread Pablo Lorenzzoni
Olah

Em Sab 22 Set 2001 19:35, Gustavo Bertoli escreveu:
| Oi todos,
| Eu ja tentei de tudo que eu possa imaginar, mas quando eu digito
| wvdial pra conectar da tudo certo só que no final da: -- PPP
| negotiation detected.
| -- Starting pppd at Fri Sep 21 01:26:31 2001
| -- PPP daemon has died! (exit code = 2)
| -- Disconnecting at Fri Sep 21 01:26:32 2001
| -- Auto Reconnect will be attempted in 5 seconds
| -- pppd error!  Look at files in /var/log for an explanation.

Vc jah viu os files in /var/log for an explanation?

| Alguem poderia me ajudar?

As informacoes que precisamos estaum nos arquivos de log.

[]s

Pablo


Content-Type: text/html; charset=iso-8859-1; name=Anexo: 1
Content-Transfer-Encoding: quoted-printable
Content-Description: 


-- 
Pablo Lorenzzoni (Spectra) [EMAIL PROTECTED]
GnuPG PubKey at search.keyserver.net (Key ID: 268A084D)
Webpage: http://people.debian.org/~spectra/ 



Re: Problemas com VPN

2001-09-22 Thread Rodrigo Araujo
On S_, 2001-09-22 at 20:02, Pablo Lorenzzoni wrote:
 Olah
 
 Em Sab 22 Set 2001 18:44, Rodrigo Araujo escreveu:
 | Olá pessoal, estou tendo uma dificudade um pouco estranha de
 | entender, mas vou tentar descrever aqui para ver se alguem pode me
 | ajudar. Instalei uma máquina com o woody, que usa a internet por
 | rede condominal por meio de VPN. Apliquei o patch no kernel, peguei
 | um ppp com patch também, instalei o pptp-linux e consegui
 | finalmente conectar recebendo ip e tudo mais. Agora não consigo
 | resolver nomes (meu resolve.conf está correto)
 
   O nome eh resolv.conf
   Por via das duvidas, manda ele aih. O probloma eh, definitivamente 
 com ele.

Desculpe, o problema foi de digitação mesmo (só um e a mais), estava
com um pouco de pressa, o problema definitivamente não é o resolv.conf!
São tres anos de experiencia com esse tipo de coisa e não iria chegar a
postar uma mensagem para uma lista afirmando que tinho certeza que o
problema não é com uma coisa que não conheço muito bem.

 
 | , já tentei até
 | resolver usando o host e passando o servidor de nomes para ele e
 | nada! Já tentei até dar telnet para a porta 53 do servidor e ele
 | atendeu a conexão. O interessante e que consigo navegar e tudo
 | (botando o ip do google por exemplo).
 
   Isso me diz q o seu problema eh o resolv.conf.

E o que lhe diz isso:

$ host www.uol.com.br 200.249.243.1

Isso devia responder algo não? Mas isso não acontece!

E disso:

$ telnet 200.249.243.1 53
Trying 200.249.243.1...
Connected to 200.249.243.1.
Escape character is '^]'.

Por isso digo que o problema não é com o resolv.conf, pois tentei até
sem usá-lo e mesmo assim continua o problema.

 
 | Não sei mais o que fazer, o
 | proximo passo é apelar para a instalação de um bind na máquina para
 | ver se funcina.
 
   Neh vamos resolver sem bind!! Bind sucks :-P
 

Concordo que não é nescessario usar o bind em um desktop, mas em bind
não é sucks!


   []s
 
   Pablo

[]'s

-- 

:::  .''`.  ::: 
::: : :'  : ::: Rodrigo Araujo (rma) [EMAIL PROTECTED]
::: `. `'`  ::: UIN: 101720839
:::   `-::: 



modem

2001-09-22 Thread marcos arruda lima

ola amigos
a pouco eu consegui fazer meu modem pctel hsp funcionar mas ainda não 
coloquei o na net por ter dado alguns problemas
eu abro o kppp e clico em perguntar ao modem ele diss que o modem esta 
pronto, mas não consigo conectar.

quando eu vou para o linuxconf e tento conectar ai vem o problema .
Diss que o sistema não esta em aconcordancia.
então eu dou o comando modprobe pctel ele me informa que o insmod pctel 
falhou.

como é que pode sendo que o modem esta pronto e não me conecto?
como é que modprobe informa que insmod falhou ?
ou será que não soube configurar corretamente kppp?
e será que é porisso que quando eu tento conectar pelo kppp apos ter discado 
e ao conectar a ligaçao cai!

se alguem puder me ajudar eu agradeço!
valeu!

_
Chegou o novo MSN Explorer. Instale já. É gratuito! 
http://explorer.msn.com.br




Re: Linguagem de programacao

2001-09-22 Thread Gustavo Noronha Silva
Em Fri, 21 Sep 2001 12:47:30 -0300
Leandro Guimarães Faria Corsetti Dutra  [EMAIL PROTECTED] escreveu:

   Esse é classe, *apesar* de ter substituído o QUEL pelo SQL e ter se 
 confundido 
 ao tentar impor a orientação a objetos ao modelo relacional.
 
   Outros livres e bons são FireBird (InterBase), SAP DB, GNU SQL 
 (experimental).
firebird é uma implementação livre do interbase?

   Não, esse é o significado da palavra inglesa assume.  Em Português 
 assumir 
 significa avocar, responsabilizar-se, adotar, adquirir, admitir (só em 
 Filosofia), declarar, entrar em exercício, endireitar-se.
hmmm... interessante... mas todos sabemos que somos nós que fazemos o idioma
e esse sentido já está na boca e nas redações de todos, então eu a reconheço
como palavra do meu idioma =)

[]s!

-- 
Gustavo Noronha Silva - kov http://www.metainfo.org/kov
**
|  .''`.  | Debian GNU/Linux: http://www.debian.org|
| : :'  : | Debian BR...: http://debian-br.sourceforge.net |
| `. `'`  |  Be Happy! Be FREE!  |
|   `-| Think globally, act locally!   |
**



Re: Parceria

2001-09-22 Thread Gustavo Noronha Silva
Em Fri, 21 Sep 2001 14:11:19 -0300
[EMAIL PROTECTED] escreveu:

 técnico e o que mais seja preciso. Há também o Comitê de Incentivo à Produção
 de Software Gratuito e Alternativo -- CIPSGA, cujo cabeça vive no Rio também,
  
não é Gratuito, é GNU... =)

[]s!

-- 
Gustavo Noronha Silva - kov http://www.metainfo.org/kov
**
|  .''`.  | Debian GNU/Linux: http://www.debian.org|
| : :'  : | Debian BR...: http://debian-br.sourceforge.net |
| `. `'`  |  Be Happy! Be FREE!  |
|   `-| Think globally, act locally!   |
**



Re: ola

2001-09-22 Thread Gustavo Noronha Silva
Em Sat, 22 Sep 2001 16:04:53 -0300
Pablo Lorenzzoni [EMAIL PROTECTED] escreveu:

 Isso eh permitido pela politica de listas do Debian.
 Se naum me engano, por cada email comercial que a lista receber o 
 projeto recebe 1000 dolares, ou algo assim.
nah, não existe isso... isso é caracterizado como spam mesmo, a política
de listas do debian diz que qualquer pessoa tem o direito de postar, se
for um email criminoso, como esse, pode-se multar o autor e indenizar
o Debian, mas acho que nunca aconteceu...

 Espero que estejam pagando.
com certeza nào, eu recebi dois... nos meus emails pessoais...

[]s!

-- 
Gustavo Noronha Silva - kov http://www.metainfo.org/kov
**
|  .''`.  | Debian GNU/Linux: http://www.debian.org|
| : :'  : | Debian BR...: http://debian-br.sourceforge.net |
| `. `'`  |  Be Happy! Be FREE!  |
|   `-| Think globally, act locally!   |
**



Re: Problemas com VPN

2001-09-22 Thread Rodrigo Araujo
On S_, 2001-09-22 at 21:16, Christoph Simon wrote:
 On 22 Sep 2001 21:01:07 -0300
 Rodrigo Araujo [EMAIL PROTECTED] wrote:
 
  E o que lhe diz isso:
  
  $ host www.uol.com.br 200.249.243.1
  
  Isso devia responder algo não? Mas isso não acontece!
  
  E disso:
  
  $ telnet 200.249.243.1 53
  Trying 200.249.243.1...
  Connected to 200.249.243.1.
  Escape character is '^]'.
 
 OK. Tente fazer isso:
 
   $ nslookup 
server resolver3.sao.terra.com.br
   Default server: resolver3.sao.terra.com.br
   Address: 200.177.250.10#53
www.cnn.com
   Server: resolver3.sao.terra.com.br
   Address:200.177.250.10#53
 
   Non-authoritative answer:
   www.cnn.com canonical name = cnn.com.
   Name:   cnn.com
   Address: 64.12.50.217
   ...
 
 Se isto não funcionar, você tem um problema com a rede, possivelmente
 com algum firewall. Se isto funcionar, é bem provável que o seu DNS
 não está fucnionando corretamente.

Não funciona... e firewall não é... acabei de instalar o woody... não
configurei nada desse tipo... e (detesto dizer isso) no rWin funciona.

 
 Ah, sou usuário da terra e pode ser que o servidor de acima só serve
 para aqueles que tem um IP da terra (mas é improvável). Tente com
 algum servidor que você sabe que funciona.
 
 Note que a prova com o telnet não quer dizer muito, porque telnet
 sempre usa o TCP e os queries de DNS normalmente usam UDP. No seu
 caso, isto parece indicar um problema de um packet filter. Talvez você
 declarou um bloqueio por padrão e abriu a porta 53 com o protocolo tcp
 só.
 

Sei disso, mas é só para ver se tah alcançando o destino e se ele tah
aceitando conexão.

 --
 Christoph Simon
 [EMAIL PROTECTED]
 ---
 ^X^C
 q
 quit
 :q
 ^C
 end
 x
 exit
 ZZ
 ^D
 ?
 help
 NO CARRIER
 .
-- 

:::  .''`.  ::: 
::: : :'  : ::: Rodrigo Araujo (rma) [EMAIL PROTECTED]
::: `. `'`  ::: UIN: 101720839
:::   `-::: 



Re: Erro de Login no Debian

2001-09-22 Thread Rafael Avila de Espindola
Da uma olhada no /etc/passwd e no /etc/shadow, apaga toda referencia
que tiver do teu usuario e cria ele de novo, talvez algum desses arquivos
estaja com problemas.
Boa Sorte.



Re: Linguagem de programacao

2001-09-22 Thread Leandro Guimarães Faria Corsetti Dutra

Gustavo Noronha Silva wrote:


Em Fri, 21 Sep 2001 12:47:30 -0300
Leandro Guimarães Faria Corsetti Dutra  [EMAIL PROTECTED] escreveu:


Outros livres e bons são FireBird (InterBase), SAP DB, GNU SQL 
(experimental).


firebird é uma implementação livre do interbase?



	É uma bifurcação... o InterBase mesmo já foi liberado, mas aí um grupo de 
usuários reclamou que a Borland não estava se comunicando nem ouvindo a 
comunidade direito, e bifurcou com o FireBird.




	Não, esse é o significado da palavra inglesa assume.  Em Português assumir 
significa avocar, responsabilizar-se, adotar, adquirir, admitir (só em 
Filosofia), declarar, entrar em exercício, endireitar-se.



hmmm... interessante... mas todos sabemos que somos nós que fazemos o idioma
e esse sentido já está na boca e nas redações de todos, então eu a reconheço
como palavra do meu idioma =)


E é assim que nossa pobre Língua Portuguesa vai se empobrecendo.


E é feio p'ra cubu.



--
 _
/ \ Leandro Guimarães Faria Corsetti Dutra   +55 (11) 246 96 07
\ / http://homepage.mac.com./leandrod/ BRASIL+55 (43) 322 89 71
 X  http://tutoriald.sourceforge.net./ mailto:[EMAIL PROTECTED]
/ \ Campanha fita ASCII, contra correio HTMLmailto:[EMAIL PROTECTED]



Re: mp3 --- wav

2001-09-22 Thread Dan Born
By default mpg123 plays the mp3.  Use the -s option to have it send its data 
to stdout.  See the manpage for more info.

On Saturday 22 September 2001 09:53 am, John Griffiths wrote:
 At 08:37 PM 9/21/01 -0700, Craig Dickson wrote:
 John Griffiths wrote:
  does anyone know a good tool for converting mp3's back to .wav for
  burning to audio cd?
 
 Sure. mpg321 -w. XMMS will do it too, I think, if you specify the Disk
 Output plugin.
 
 Craig

 ok i think u were referring to mpg123?

 now here's the bit where i'm a real pain in the ass, the machine i'm doing
 this on doesn't have the couns card configured.. and mpg123 -w is asking
 for /dev/dsp

 anyway to do this without a sound card configured? it's not like i want to
 play the music on this thing...



Re: mp3 --- wav

2001-09-22 Thread John Griffiths
At 12:03 AM 9/22/01 -0400, Dan Born wrote:
By default mpg123 plays the mp3.  Use the -s option to have it send its data 
to stdout.  See the manpage for more info.


found a somewhat ugly way to fake it, seems to be working though with -w

the -s option talks about headerless data in the man page:

The  decoded  audio samples are written to standard output, instead of playing 
them through  the  audio device.   This  option  must  be used if your audio 
hardware is not supported by  mpg123.   The  output format  is  raw 
(headerless) linear PCM audio data, 16 bit, stereo, host byte order.

forgive my ignorance, is that a .wav file?



Re: GTK Fonts

2001-09-22 Thread Charles Baker
The real problem seems to have been that I had some
XFree86 3.x and some 4.x. The fonts were 4.x, while
the running server was 3.x! It was probably my fault,
as I had x running when I did the apt-get upgrade.

So, I did apt-get remove on all the 3.x stuff, apt-get
install --reinstall on all the 4.x stuff. Actually
took the time to read some 4.x documentation. I found
this NHF to be most helpful:

http://www.linuxnewbie.org/nhf/intel/x-windows/xfree_4-gettingstarted.html

along with some more careful searching of the
debian-user list, particularly a thread, one of whose
paths ended here:

http://lists.debian.org/debian-user/2001/debian-user-200108/msg01396.html

to be most helpful. Now my fonts are back to normal in
the GTK apps, plus I have the benefits of XFree4.

Thanks to all who replied. It took a few hours over a
couple of days to figure it all out, but I learned a
lot in the process. I feel more comfortable w/ apt-get
and XFree86 now.

--- David Purton [EMAIL PROTECTED] wrote:
 On Thu, 20 Sep 2001, Charles Baker wrote:
 
  I did an `apt-get update` and `apt-get upgrade`
  the other night and ever since the fonts on any of
 my
  gtk apps ( everybuddy, gftp, gnumeric, etc. ) have
  been showing as little blocks. I've been doing a
  little searching on debian-users but can't really
 find
  an answer. I've tried rearranging the font lines
 in
  XF86Config which helped Netscape but did nothing
 for
  GTK apps. BTW, I'm using a machine that started
 out as
  potato and has been upgraded to woody.
  
 
 I think this has been discussed in the archives -
 but I gather it can be
 fixed by checking
 
 /usr/doc/libgnomeprint-data/run-gnome-font-install
 contains a line to
 where ghostscript fonts are located on your box.
 
 or maybe this was a different problem... I can't
 remember :(
 

SNIP

=
-
[EMAIL PROTECTED]
Hacking is a Good Thing!
See http://www.tuxedo.org/~esr/faqs/hacker-howto.html

__
Do You Yahoo!?
Get email alerts  NEW webcam video instant messaging with Yahoo! Messenger. 
http://im.yahoo.com



help please - kppp connection wont work

2001-09-22 Thread todd mansill

Hi All,

I have an urgent problem and I need some help please:

I can't get kppp to work -
when I try to connect I get the following error message in the log window:

The remote server is required to authenticate itself but I couldn't find any 
suitable secret(password) for it to use to do so.

(None of the available passwords would let it use an IP address.)

How do I fix this problem - I am very new to this please help.

Thanks heaps
Todd

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp



Re: mp3 --- wav

2001-09-22 Thread Mike McGuire
On Sat, Sep 22, 2001 at 02:09:19PM +, John Griffiths wrote:
 
 found a somewhat ugly way to fake it, seems to be working though with -w
 
 the -s option talks about headerless data in the man page:
 
 The  decoded  audio samples are written to standard output, instead of 
 playing them through  the  audio device.   This  option  must  be used if 
 your audio hardware is not supported by  mpg123.   The  output format is
 raw (headerless) linear PCM audio data, 16 bit, stereo, host byte order.
 
 forgive my ignorance, is that a .wav file?

nope. WAV's have headers. So headerless wouldn't be it.

Although I think a .wav is just a fairly simple header tacked on to 
that raw PCM data; it's possible to generate a .wav header. Also, I 
think some cd-burning software (quite likely if it's linux :) can 
burn WAV or PCM or some other format. WAV should always work, tho.

Short answer: if -w works, go with it. :)

HTH,
Mike McGuire



Re: tiger reports

2001-09-22 Thread Joey Hess
Craig Dickson wrote:
 I found a discussion in debian-devel for June 2000 that was mildly
 informative. There was a proposal then to add information about the
 standard uids to /usr/share/doc/base-passwd/README, but this does
 not seem to have happened.

We had a thread just last month about the standard users and groups and
what they were all used for. Wichert indicated someone had sent him a
good summary, which was going in the next rev of base-passwd.

Where is it, Wichert?

-- 
see shy jo



Re: X Oracle client

2001-09-22 Thread Sam Varghese
On Fri, Sep 21, 2001 at 01:30:46PM +, Vittorio wrote:
 To those using an Oracle client in a network:
 
 In www.globecom.net/tora you'll find a very nice GUI interface to deal
 with you're Oracle server.
 
 I had a go at it and it's phantastic!
 
 Vittorio

Are you running it on potato or woody? I tried running it
on potato after making a .deb out of the available rpm. 
It installs but when I start it up, I get the following error
message:

Qt: Locales not supported on X server
qstring_to_xtp result code -2
qstring_to_xtp result code -2
qstring_to_xtp result code -2
Unhandled exception:

ORACLE_HOME environment variable not set
qstring_to_xtp result code -2


It runs fine on Red Hat 6.1, though.

Sam
-- 
(Sam Varghese)
http://www.gnubies.com



Re: offtopic: which text language to use?

2001-09-22 Thread Julio Merino
On Wed, Sep 19, 2001 at 04:58:18PM -0400, David Z Maze wrote:
 Julio Merino [EMAIL PROTECTED] writes:
 JM Is SGML a good choice?
 
 SGML/DocBook is probably a good choice, if those are your criteria.
 You can reasonably easily get from SGML to TeX DVI (and from there to
 PostScript and PDF), HTML, and RTF using jade.  There is some amount
 of customizability possible here.  You actually can do arbitrary
 things, but that means that the formatting language is Turing-complete
 (it's actually a dialect of Scheme), and so it's kind of tricky to do
 things that the stylesheet authors didn't anticipate you trying to do.
 
 LaTeX:
 -- Possible to define arbitrarily complicated macros; this can be good
or bad
 -- Converts to DVI or PDF, with DVI-PS conversion possible
 -- Several okay converters to text or HTML
 
 DocBook:
 -- Locked into structure of DTD
 -- Somewhat clumsier text structure
 -- Converts to JadeTeX (-DVI or PDF), HTML, RTF directly, with
customizable stylesheets
 
 LaTeX seems to be somewhat better supported in the academic community,
 at least; a lot of places seem to have people who have heard of and
 can use LaTeX, but are really squeamish about DocBook because it isn't
 particularly established.

Ok, thanks for your tips. About LaTeX, I know the basics, but I'm not
an expert. About DocBook, I'm trying to learn it now.

I think I'll go with DocBook/XML. But I can't get jade working... It is
giving me errors. I'll post the errors here, because I think it is a
problem from my debian installation :?...

BTW, I prefer the XML structure to the latex one (to me, it is
clearer)... Maybe because I'm more used to it... ;)

Thanks.

 
 -- 
 David Maze [EMAIL PROTECTED]  http://people.debian.org/~dmaze/
 Theoretical politics is interesting.  Politicking should be illegal.
   -- Abra Mitchell
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 

-- 
Make a better partition table: http://www.jmmv.f2s.com/ept

Julio Merino [EMAIL PROTECTED] ICQ: 18961975


pgpicNpOYhtxp.pgp
Description: PGP signature


nv driver causes strange mouse cursor

2001-09-22 Thread Anthony Campbell
If I use the nvidia driver my Riva 128 card works correctly. If I use
the nv driver, however, the mouse cursor appears as a little coloured
square. Has anyone seen this? Any cure?

Anthony

-- 
Anthony Campbell - running Debian GNU/Linux (Windows-free zone).
For electronic books (Homeomythology and The Assassins of Alamut), skeptical 
essays, and over 130 book reviews, go to http://www.acampbell.org.uk/

Better say nothing at all. Language is worth a thousand pounds a word!
 [Lewis Carroll]



removing xdm??

2001-09-22 Thread Dale Morris
Upgrading from potato to woody xdm was installed with X. When I removed
it, X starts back up using my .xsession file, but there are no window
managers or terminals on the menu in fvwm2. Those selections have
disappeared. What can I do to get them back? Is there more recent
or more understandable documentation that explains how this xinit
process works? 

thanks



Re: removing xdm??

2001-09-22 Thread Dale Morris
On Sat, 22 Sep 2001, Dale Morris wrote:

 Upgrading from potato to woody xdm was installed with X. When I removed
 it, X starts back up using my .xsession file, but there are no window
 managers or terminals on the menu in fvwm2. Those selections have
 disappeared. What can I do to get them back? Is there more recent
 or more understandable documentation that explains how this xinit
 process works? 
 
aaggh!! Now I see that Netscape has also disappeared from the menu,
too. update-menus does nothing.



Re: removing xdm??

2001-09-22 Thread Erik Steffl
Dale Morris wrote:
 
 On Sat, 22 Sep 2001, Dale Morris wrote:
 
  Upgrading from potato to woody xdm was installed with X. When I removed
  it, X starts back up using my .xsession file, but there are no window
  managers or terminals on the menu in fvwm2. Those selections have
  disappeared. What can I do to get them back? Is there more recent
  or more understandable documentation that explains how this xinit
  process works?
 
 aaggh!! Now I see that Netscape has also disappeared from the menu,
 too. update-menus does nothing.

  that probably means that the debian menus are not used.

  your problem is not related to xdm, check the configuration of fvwm,
check the menus etc.

  is the menu structure ok just some programs are missing or is it just
default fvwm menu with no debian stuff?

erik



(no subject)

2001-09-22 Thread Glenn W. Carbines
unsubscribe



Re: Quick pon question

2001-09-22 Thread Brian Potkin
On Sat, Sep 22, 2001 at 08:09:26AM +0800, csj wrote:

 Thanks to Nathan [EMAIL PROTECTED] for letting me in on the secret
 (I was scanning for try). You sent me a coded message ;-)
 
 BTW: dict TTHEM doesn't return anything useful.

Trying To Help Even More.

A spur of the moment invention and not a very good one.  I think I'll
revert to less cryptic responses.

Brian.



Re: help please - kppp connection wont work

2001-09-22 Thread Brian Potkin
On Sat, Sep 22, 2001 at 05:38:29AM +, todd mansill wrote:

 Hi All,
 
 I have an urgent problem and I need some help please:
 
 I can't get kppp to work - when I try to connect I get the following
 error message in the log window:
 
 The remote server is required to authenticate itself but I couldn't
 find any suitable secret(password) for it to use to do so.  (None of
 the available passwords would let it use an IP address.)
 
 How do I fix this problem - I am very new to this please help.
 
 Thanks heaps Todd

You are asking the remote server to login (authenticate itself) to your
system.  It won't.

Not being familiar with kppp I am unable to point you to which tab you
click on but you should be able to achieve what you want by editing
/etc/ppp/peers/provider.  You may have given your own name for
`provider'.

The option you want is noauth.  Put this in the file.  The default in
/etc/ppp/options is auth but you do not want to alter this.

Read man pppd and search the Debian mailing lists for more information.
If you haven't already done so investigate using pppconfig as an
alternative to kppp to set up a dialup connection.  Personally, it is
what I would use.

Brian.



Strange delays - new to this Please Help! Thanks

2001-09-22 Thread todd mansill

Hi All,

Sorry about the multiple To: but I'm new to this and I don't know what 
category this falls into: My PC is running KDE2 and I put a program called 
cnet (network layer simulator) which requires tcl/tk to run it's windows on 
and for some reason the program takes 3 minutes before the windows are 
displayed. When I run this at Uni it is instant.


Also, I just tried to set up my 56K modem and I ran a program called ppp-up 
and followed to instructions to the tee. For some reason once I ran this 
program, my modem connected but Netscape didn't seem to think so. Ever since 
this My KDE has thrown its toys. It now hangs on every window open (between 
30secs - 1min). When my PC boots up it hangs for about a minute on the line:


Starting system log daemon : syslogd

and then also for about another minute when loading the window manager. It 
now takes aboout 5-7 minutes for KDE to load up. Please can someone help me 
with these problems.


Thanks heaps
Todd

_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp



Re: euro symbol and debian sid

2001-09-22 Thread Timeboy

On Thursday Sep 20 22:38 Thomas Apel wrote:
 ** On Thursday, 20. September 2001 00:27, tim wrote:
 ** 
 **  I cant figure out how to get full euro support in X and console. I am
 **  already using -15 fonts and locale.gen is set to [EMAIL PROTECTED] 
 ISO-8859-15.
 ** 
 ** After generating the locales I changed my config to...
 ** 
 ** /etc/environment:
 ** [EMAIL PROTECTED]
 ** [EMAIL PROTECTED]
 ** 
 ** /etc/console/config:
 ** SCREEN_FONT=lat0-16

I love this mailing list! I never asked this question but at latest next
year, i need the euro sign too. Yesterday i tryed this configuratin and
it workes fine. But it seems that some apps don't use this system wide
configuretion. I use Gnome and most tools i have installed are now able
to view/write the euro sign. But some not. Does anybody knows why?

Timo

--
Nothing is impossible!

You only need to know the way.

 :-)



Re: amaya crashes and has a bug in filebrowser

2001-09-22 Thread Timeboy

On Friday Sep 21 20:00 Jan Ulrich Hasecke wrote:

 ** Timeboy [EMAIL PROTECTED] writes:
 ** 
 **  On Wednesday Sep 19 19:44 Jan Ulrich Hasecke wrote:
 **  
 **  Try bluefish. 
 ** 
 ** Nice tool. But then I would prefer emacs with psgml. ;-)

It was only a suggestion. There are so much tools in Debian and i
think nobody knows them all.

 ** I really like the wysiwyg-way of amaya for some tasks. It's a pity
 ** that amaya isn't more stable.

Then you could downgrade to the Potato version. Or wait till the next
update in Woody is comming. Seems that nobody in this list knows what
you can do, to get stable the current amaya version of Woody. Sometimes
this happens with Woody packages.

Bye!

Timo

--
Nothing is impossible!

You only need to know the way.

 :-)



Re: tiger reports

2001-09-22 Thread David Roundy
On Fri, Sep 21, 2001 at 10:33:04AM -0700, Craig Dickson wrote:
 
  It can potentially make superuser access easier to crack unless both
  accounts have strong passwords.  More generally, I suspect that this
  is flagged because it could indicate that your system has been
  compromised and an illicit superuser has been created.
 
 Fair enough. Do I really need sash for anything? Does it really need to
 have its own account?

As I understand it, sash is a minimal shell which is statically linked, so
that even if all your importand dynamically linked libraries get hosed, you
can always log in as single user mode using sash.  In order to do this,
sash has to be set as the root shell, which you may not want for every day
use, so sash creates a second root account, to use in case bash won't start
up.

The gist of it is that I would guess that if you can boot off of a CDROM or
floppy (and have one available to boot off of) you can always do that in an
emergency, and therefore shouldn't need the sashroot account.  On the other
hand, I am no expert on this, and just got what I know from when I
installed sash a few months ago.
-- 
David Roundy
http://civet.berkeley.edu/droundy/



Re: mp3 --- wav

2001-09-22 Thread Martin F Krafft
also sprach John Griffiths (on Sat, 22 Sep 2001 01:53:31PM +):
 Sure. mpg321 -w. XMMS will do it too, I think, if you specify the Disk
 Output plugin.
 
 ok i think u were referring to mpg123? 

he wasn't. drop-in mpg321 is a replacement for mpg123, which doesn't
come with the problematic licensing and which outperforms mpg123
anyway.

martin;  (greetings from the heart of the sun.)
  \ echo mailto: !#^.*|tr * mailto:; [EMAIL PROTECTED]
-- 
if beethoven's seventh symphony
 is not by some means abridged,
 it will soon fall into disuse.
 -- philip hale, boston music critic, 1837


pgpDnkrLfiEKb.pgp
Description: PGP signature


Re: removing xdm??

2001-09-22 Thread David Roundy
On Sat, Sep 22, 2001 at 03:21:27AM -0700, Erik Steffl wrote:
 Dale Morris wrote:
  
  On Sat, 22 Sep 2001, Dale Morris wrote:
  
   Upgrading from potato to woody xdm was installed with X. When I removed
   it, X starts back up using my .xsession file, but there are no window
   managers or terminals on the menu in fvwm2. Those selections have
   disappeared. What can I do to get them back? Is there more recent
   or more understandable documentation that explains how this xinit
   process works?
  
  aaggh!! Now I see that Netscape has also disappeared from the menu,
  too. update-menus does nothing.
 
   that probably means that the debian menus are not used.
 
   your problem is not related to xdm, check the configuration of fvwm,
 check the menus etc.

This sounds right.  You might try (if you haven't configured fvwm yourself)
running an `apt-get --purge remove fvwm` followed by `apt-get install
fvwm`, to reinstall the default debian configuration of fvwm, which gives
rather nice menus.  BTW I doubt that this is the right way to do this, I
just don't know a better way.
-- 
David Roundy
http://civet.berkeley.edu/droundy/



Re: Quick pon question

2001-09-22 Thread John Hasler
csj writes:
 Three replies so far but nobody wants to reveal the dark secret. All I
 want is a one/two-word option to stick into /etc/ppp/peers/foovider. Do I
 have to (re)write my own chatscript?

No.  You just have to read the pppd man page and then edit
/etc/ppp/peers/foovider and add the relevant line. 
-- 
John Hasler
[EMAIL PROTECTED] (John Hasler)
Dancing Horse Hill
Elmwood, WI



Re: GTK fonts

2001-09-22 Thread Hall Stevenson
* Charles Baker ([EMAIL PROTECTED]) [010922 09:18]:

 No, I hadn't come across these ideas. Also, how can I tell for sure if
 XFree 4.x or 3.x is running? Does 4.x only use XF86Config-4?

Check the log files that X creates. They're in /var/log, named
XFree86.?.log (I've got one with a '0' in place of the '?' and one with
an '8').

As for the XF86Config-4 file, that's a pretty good sign too. Rename all
other XF86Config* files except that one. Restart X and see if it
works...

Hall



Re: apt-get packages marked as rc

2001-09-22 Thread Rajesh Fowkar
Vineet Kumar saw fit to inform me that: 
* Rajesh Fowkar ([EMAIL PROTECTED]) [010921 07:23]:
 Hi,
 
 Is there any way to remove all the packages at a stretch using apt or dpkg
 ?
 
 When we do apt-get remove the configuration files are retained. Now say I
 want to remove all these packges permenantly along with the configuration
 files, How to do that ? At present I am doing dpkg --purge all the
 packages. Is there any better way ?

are you looking for something like this?

dpkg --get-selections | awk '/deinstall/ { print $1 \tpurge}' | dpkg 
--set-selections

Thanks Vineet. But this is just one part of it. Now packages are marked as
pc instead of rc ( i.e. purge candidates ). Now how can I remove with one
command all these packages ?

Warm Regards

--
Rajesh 
http://www.symonds.net/~rajesh/*  Powered By: Debian GNU/Linux
:
[Linux One Stanza Tip]  From : [EMAIL PROTECTED]
LOST #018-** Sub : Console gibberish (#1) **-
To clear gibberish all over the screen (e.g. after  cat of a
compressed or binary file) :
Method #1: Use ANSI escape sequence: $echo -e \033c



wheel mouse

2001-09-22 Thread Avdi B. Grimm
I'll make this short. I've got a standard-issue MS PS/2 wheel mouse.  @
buttons and a wheel. I want all the buttons to work under X (v.
4.something-or-other). Right now only the two buttons work.  What do I
need to add to my X config files?

-- Avdi Grimm



Re: wheel mouse

2001-09-22 Thread Dan Born
Section InputDevice
Identifier  Mouse0
Driver  mouse
Option  Device /dev/psaux
Option  Protocol IMPS/2
Option  Emulate3Buttons off
Option  ZAxisMapping 4 5
EndSection

If you have an /etc/X11/XF86Config-4, add the above to that.  Otherwise add 
it to /etc/X11/XF86Config.

On Saturday 22 September 2001 10:18 am, Avdi B. Grimm wrote:
 I'll make this short. I've got a standard-issue MS PS/2 wheel mouse.  @
 buttons and a wheel. I want all the buttons to work under X (v.
 4.something-or-other). Right now only the two buttons work.  What do I
 need to add to my X config files?

 -- Avdi Grimm



Re: help please - kppp connection wont work

2001-09-22 Thread John Hasler
Todd writes:
 I can't get kppp to work -

Forget kppp.  Run pppconfig as root to configure ppp, and then use pon to
start ppp and poff to stop it.  If you must have a GUI install gpppon,
which is a GUI wrapper around pon and poff.
-- 
John Hasler
[EMAIL PROTECTED]
Dancing Horse Hill
Elmwood, Wisconsin



Re: glimmer compile error

2001-09-22 Thread Rajesh Fowkar
dman saw fit to inform me that: 
On Fri, Sep 21, 2001 at 11:17:09PM +, Rajesh Fowkar wrote:
| Hi,
| 
| I am trying to compile glimmer. However ./configure gives me the following
| error :
| 
|  SNIP ---
| checking for GnomePrint libraries = 0.25... configure: error: You need at
| least GNOME print 0.25 for this version of glimmer
| [EMAIL PROTECTED]:~/tmp/compile/glimmer-1.1.9-1$ 
|  SNIP ---
| 
the latest release tarball from ftp.gnome.org.  The alternative might
be to try and disable printing support in glimmer.

Thanks for all the replies. However there is no option in glimmer
./configure to disable printing support :-)

---
Usage: configure [options] [host]
Options: [defaults in brackets after descriptions]
Configuration:
  --cache-file=FILE   cache test results in FILE
  --help  print this message
  --no-create do not create output files
  --quiet, --silent   do not print `checking...' messages
  --version   print the version of autoconf that created configure
Directory and file names:
  --prefix=PREFIX install architecture-independent files in PREFIX
  [/usr/local]
  --exec-prefix=EPREFIX   install architecture-dependent files in EPREFIX
  [same as prefix]
  --bindir=DIRuser executables in DIR [EPREFIX/bin]
  --sbindir=DIR   system admin executables in DIR [EPREFIX/sbin]
  --libexecdir=DIRprogram executables in DIR [EPREFIX/libexec]
  --datadir=DIR   read-only architecture-independent data in DIR
  [PREFIX/share]
  --sysconfdir=DIRread-only single-machine data in DIR [PREFIX/etc]
  --sharedstatedir=DIRmodifiable architecture-independent data in DIR
  [PREFIX/com]
  --localstatedir=DIR modifiable single-machine data in DIR [PREFIX/var]
  --libdir=DIRobject code libraries in DIR [EPREFIX/lib]
  --includedir=DIRC header files in DIR [PREFIX/include]
  --oldincludedir=DIR C header files for non-gcc in DIR [/usr/include]
  --infodir=DIR   info documentation in DIR [PREFIX/info]
  --mandir=DIRman documentation in DIR [PREFIX/man]
  --srcdir=DIRfind the sources in DIR [configure dir or ..]
  --program-prefix=PREFIX prepend PREFIX to installed program names
  --program-suffix=SUFFIX append SUFFIX to installed program names
  --program-transform-name=PROGRAM
  run sed PROGRAM on installed program names
Host type:
  --build=BUILD   configure for building on BUILD [BUILD=HOST]
  --host=HOST configure for HOST [guessed]
  --target=TARGET configure for TARGET [TARGET=HOST]
Features and packages:
  --disable-FEATURE   do not include FEATURE (same as --enable-FEATURE=no)
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
  --with-PACKAGE[=ARG]use PACKAGE [ARG=yes]
  --without-PACKAGE   do not use PACKAGE (same as --with-PACKAGE=no)
  --x-includes=DIRX include files are in DIR
  --x-libraries=DIR   X library files are in DIR
--enable and --with options recognized:
  --enable-maintainer-mode enable make rules and dependencies not useful
  (and sometimes confusing) to the casual installer
  --with-gnome-includes   Specify location of GNOME headers
  --with-gnome-libs   Specify location of GNOME libs
  --with-gnomeSpecify prefix for GNOME files
  --enable-shared[=PKGS]  build shared libraries [default=yes]
  --enable-static[=PKGS]  build static libraries [default=yes]
  --enable-fast-install[=PKGS]  optimize for fast installation [default=yes]
  --with-gnu-ld   assume the C compiler uses GNU ld [default=no]
  --disable-libtool-lock  avoid locking (might break parallel builds)
  --enable-compile-warnings=[no/minimum/yes]Turn on compiler warnings.
  --enable-iso-c  Try to warn if code is not ISO C 
  --disable-nls   do not use Native Language Support
  --with-included-gettext use the GNU gettext library included here
  --with-catgets  use catgets functions if available
  --disable-xim Enable international character input support
  --disable-python Enable python scripting support support
---

Warm Regards


--
Rajesh 
http://www.symonds.net/~rajesh/*  Powered By: Debian GNU/Linux
:
[Linux One Stanza Tip]  From : [EMAIL PROTECTED]
LOST #037-** Sub : Hard Disk Upgrade **-
Do you want to upgrade your Hard Disk ?   The following HOWTO 
is a must :
http://www.linuxdoc.org/HOWTO/mini/Hard-Disk-Upgrade/index.html



nslookup and host always consult a dns server - never local /etc/hosts

2001-09-22 Thread Lars Steidinger
hello,
i am running sid and have a problem with nslookup, host etc. All 
nslookup-requests and host-request are send to my local dns server (Elsa 
Lancom ISDN-Router). Ever the router is offline any request of my own 
hostname (ux01) and other hosts failed. In the nsswitch.conf and host.conf 
files the lookup order is correct defined (i hope so).

Here are my configfiles :
resolv.conf :
domain charly.de
nameserver 192.168.151.1# my isdn-router and dns-server

host.conf :
order hosts, bind
multi on

nsswitch.conf :
passwd: compat
group:  compat
shadow: compat
hosts:  files [NOTFOUND=continue] dns
networks:   files
protocols:  db files
services:   db files
ethers: db files
rpc:db files
netgroup:   nis

/etc/hosts :
127.0.0.1   localhost
192.168.151.1   router01.charly.de router01
192.168.151.100 ux01.charly.de ux01
192.168.151.101 nt01.charly.de  nt01
 
# The following lines are desirable for IPv6 capable hosts
# (added automatically by netbase upgrade)
 
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts

ps: telnet and ping works fine without dns-requests !!!

Anybody has an idea to fix this problem ???

best regards
Lars Steidinger



Re: nslookup and host always consult a dns server - never local /etc/hosts

2001-09-22 Thread Martin F Krafft
first, your mailer send an incorrect email address:
  [EMAIL PROTECTED]

you might want to add that extra 'e'!

second: host and nslookup are DNS utilities, so they don't give a
flying food about /etc/hosts. as you said, ping and telnet work fine,
so your systems are good. nslookup and host both always contact the
DNS server, never look into /etc/hosts.

martin;  (greetings from the heart of the sun.)
  \ echo mailto: !#^.*|tr * mailto:; [EMAIL PROTECTED]
-- 
dimmi in 10 secondi i nomi dei 7 re di roma, in ordine
decrescente di data di morte del figlio secondogenito,
in rot13... o faccio fuori la directory /dev !!!


pgpzEXbqvyacd.pgp
Description: PGP signature


Formatting program's output

2001-09-22 Thread Frederik Vanrenterghem
Hi,

I'd like to make a signature with 2 columns, a static and a variable one.
I'll use signify for this purpose. Unfortunately, it doesn't handle
fortune's output as desired.

I would need to find a way to limit the number of characters per line
fortune supplies. (Preferably by starting a new line on spaces of
course, and not in the middle of a word).

Any ideas how I could accomplish this?

Thanks in advance!

-- 

Ginsburg's Law:
At the precise moment you take off your shoe in a shoe store, your
big toe will pop out of your sock to see what's going on.



Re: Mutt Unread Mail

2001-09-22 Thread xio
On Thu, Sep 20, 2001 at 01:25:25AM +0200, Martin F Krafft wrote:
 also sprach Danie Roux (on Tue, 11 Sep 2001 02:22:43PM +0200):
  Anyone know how to make that little delay between folders changing
  dissapear?
 
 it needs to parse the new mailbox. that takes time. you can't
 deactivate it, other than to keep your mailboxes small.
 

Mutt can use different kinds of mailboxes:

$ man muttrc

[...]
   mbox_type
  Type: folder magic
  Default: mbox

  The default mailbox type used when creating new folders.
May be any of mbox, MMDF, MH and Maildir.

I think Maildir is supposed to be one of the faster types of
mailbox and will keep parsing times short ...


 martin;  (greetings from the heart of the sun.)
   \ echo mailto: !#^.*|tr * mailto:; [EMAIL PROTECTED]
 -- 
 1-800-psych 
 hello, welcome to the psychiatric hotline. 
 if you are schizophrenic, listen carefully and a little voice will
 tell you which number to press. 



-- 

fortune - print a random, hopefully interesting, adage:

Double!


pgpouLkNgyelL.pgp
Description: PGP signature


  1   2   >