Re: Línea de reserva para acceso a Internet

1999-02-20 Thread Vicente Barba
El jueves 18 febrero de 1999 a las 12:56:04, Javier López dijo:
 Hola a la lista.
 
 En mi empresa estamos utilizando una máquina con debian 2.0 para dar
 acceso a Internet a través de una línea ADSL, en una instalación piloto
 de Telefónica. Como a veces la línea la cortan, hemos pensado en colocar
 una conexión RDSI a través de un router conectado a la misma máquina, de
 modo que si el ADSL se cae automáticamente entrara la línea de reserva.
 
 La máquina está equipada con tres tarjetas de red, una para conectar con
 la red interna, la segunda con el modem ADSL y la tercera sería la
 conexión con el router.
 
 La pregunta es ¿Como podría conseguir que se hiciera automáticamente la
 modificación de la interfaz de salida?

Si no eres experimentado en hacer scripts y usar el ipfwadm para
establecer la política de ruteo, puedes intentarlo con el paquete ipmasq.
No es ni mas ni menos que un script en /etc/rc.boot que cada vez que se
inicia el sistema (o lo llamas tú...) lee la configuración del
archivo /etc/ipmasq.conf. Además el paquete trae un ipmasqconfig que te
ayuda a crear el archivo de configuración en el /etc. Puedes configurar
varios interfaces como es tu caso.

El problema viene porque está pensado para los que tiene IP fija, pero no es
muy dificil crear un script que modifique el /etc/ipmasq.conf cada vez que
cambia tu ip. Además lo puedes hacer para que también verifique (con un ping
a tu ip, por ejemplo) que el interfaz no ha caido, y si no está activo uno,
entonces que active el otro.

Yo tengo un 486 con un modem convencional y una tarjeta de red dando
servicio a la LAN. Cada vez que conecta modifica el archivo de configuración
para el ipmasq:

-- inicio --
#!/bin/sh
EXTERNAL_IP=`fconfig ppp0 | grep inet | cut -d: -f2 | cut -dP -f1`
EXTERNAL_NETMASK=`fconfig ppp0 | grep inet | cut -d: -f4`
INTERNAL_IP=( 192.168.1.1 )
INTERNAL_NETMASK=( 255.255.255.0 )
echo EXTERNAL_IP=$EXTERNAL_IP  /etc/ipmasq.conf
echo EXTERNAL_NETMASK=$EXTERNAL_NETMASK  /etc/ipmasq.conf
echo INTERNAL_IP=$INTERNAL_IP  /etc/ipmasq.conf
echo INTERNAL_NETMASK=$INTERNAL_NETMASK  /etc/ipmasq.conf
chown root.root /etc/ipmasq.conf
chmod 644 /etc/ipmasq.conf
/etc/rc.boot/ipmasq
--- fin ---

como ves, lee la IP y la máscara de red que le da el ISP al modem, pasa los
valores al /etc/ipmasq.conf y ejecuta /etc/rc.boot/ipmasq.

Héchale un vistado al paquete ipmasq para comprenderlo mejor. Y hazte el
script que modifique la IP y otro que verifique que no se ha caido la
conexión, y si se ha caido que cambie de interfaz (por ejemplo un cron que
cada minuto hace un ping, o un demonio...). Te puede dar pistas el paquete
pppupd.

Espero que todo esto al menos te facilite las cosas.

Podrías comentarnos tus impresiones sobre el ADSL: velocidad,
prestaciones... Aunque esté fuera del tema de la lista, a mi personalmente
no me importaría.

Saludetes!
-- 
Vicente Barba: [EMAIL PROTECTED] -- Albacete [ES]
100% LiNUX v0.03: http://personal1.iddeo.es/ret003u7
  Debian GNU/Linux -- Usuario Registrado # 90822


RE: linea de reserva para acceso a Internet

1999-02-20 Thread Vicente Barba
El jueves 18 febrero de 1999 a las 12:56:04, Javier López dijo:
 Hola a la lista.

 En mi empresa estamos utilizando una máquina con debian 2.0 para dar
 acceso a Internet a través de una línea ADSL, en una instalación piloto
 de Telefónica. Como a veces la línea la cortan, hemos pensado en colocar
 una conexión RDSI a través de un router conectado a la misma máquina, de
 modo que si el ADSL se cae automáticamente entrara la línea de reserva.

 La máquina está equipada con tres tarjetas de red, una para conectar con
 la red interna, la segunda con el modem ADSL y la tercera sería la
 conexión con el router.

 La pregunta es ¿Como podría conseguir que se hiciera automáticamente la
 modificación de la interfaz de salida?

Si no eres experimentado en hacer scripts y usar el ipfwadm para
establecer la política de ruteo, puedes intentarlo con el paquete ipmasq.
No es ni mas ni menos que un script en /etc/rc.boot que cada vez que se
inicia el sistema (o lo llamas tú...) lee la configuración del
archivo /etc/ipmasq.conf. Además el paquete trae un ipmasqconfig que te
ayuda a crear el archivo de configuración en el /etc. Puedes configurar
varios interfaces como es tu caso.
El problema viene porque está pensado para los que tiene IP fija, pero no es
muy dificil crear un script que modifique el /etc/ipmasq.conf cada vez que
cambia tu ip. Además lo puedes hacer para que también verifique (con un ping
a tu ip, por ejemplo) que el interfaz no ha caido, y si no está activo uno,
entonces que active el otro.

Yo tengo un 486 con un modem convencional y una tarjeta de red dando
servicio a la LAN. Cada vez que conecta modifica el archivo de configuración
para el ipmasq:

-- inicio --
#!/bin/sh
EXTERNAL_IP=`ifconfig ppp0 | grep inet | cut -d: -f2 | cut -dP -f1`
EXTERNAL_NETMASK=`ifconfig ppp0 | grep inet | cut -d: -f4`
INTERNAL_IP=( 192.168.1.1 )
INTERNAL_NETMASK=( 255.255.255.0 )
echo EXTERNAL_IP=$EXTERNAL_IP  /etc/ipmasq.conf
echo EXTERNAL_NETMASK=$EXTERNAL_NETMASK  /etc/ipmasq.conf
echo INTERNAL_IP=$INTERNAL_IP  /etc/ipmasq.conf
echo INTERNAL_NETMASK=$INTERNAL_NETMASK  /etc/ipmasq.conf
chown root.root /etc/ipmasq.conf
chmod 644 /etc/ipmasq.conf
/etc/rc.boot/ipmasq
--- fin ---

como ves, lee la IP y la máscara de red que le da el ISP al modem, pasa los
valores al /etc/ipmasq.conf y ejecuta /etc/rc.boot/ipmasq.

Héchale un vistado al paquete ipmasq para comprenderlo mejor. Y hazte el
script que modifique la IP y otro que verifique que no se ha caido la
conexión, y si se ha caido que cambie de interfaz (por ejemplo un cron que
cada minuto hace un ping, o un demonio...). Te puede dar pistas el paquete
pppupd.

Espero que todo esto al menos te facilite las cosas.

Podrías comentarnos tus impresiones sobre el ADSL: velocidad,
prestaciones... Aunque esté fuera del tema de la lista, a mi personalmente
no me importaría.

Saludetes!

-- 
Vicente Barba: [EMAIL PROTECTED] -- Albacete [ES]
100% LiNUX v0.03: http://personal1.iddeo.es/ret003u7
  Debian GNU/Linux -- Usuario Registrado # 90822


editor zed

1999-02-20 Thread Alfredo Casademunt
Hola.

He estado probando el editor zed y parece un joya pero
la tecla backspace funciona como si fuese la delete.
He modificado la linea que dice:

key [valor] e_bkspc

del fichero /etc/zedrc pero no doy con el valor adecuado
¿ alguien lo sabe ?, ¿ funciona bien en slink (uso Debian 2.0) ?

Gracias por anticipado. Un saludo.

Alfredo.


Re: Dudas LaTeX. Necesito ayuda.

1999-02-20 Thread Cosme Perea Cuevas
El Tue, Feb 16, 1999,
Juan Carlos Muro...

 ¿Cómo puedo controlar el espacio extra entre el principio de
 la página y el título?

yo uso esto:

\addtolength{\hoffset}{-4cm}
\addtolength{\textwidth}{8cm}

\addtolength{\voffset}{-4cm}
\addtolength{\textheight}{6cm}

en el preámbulo. Obviamente los centímetros pueden variar.

A ver si te vale. Saludos.

PD: Hay una lista  de TeX/LaTeX en español,  Lista Spanish TeX
[EMAIL PROTECTED] (no  recuerdo como  me suscribí),  y un
grupo de news, `es.comp.lenguajes.tex'

;-)

-- 
Cosme
=
 -=-=-  A través de Debian GNU/Linux  -=-=-
 -=-=- Software Libre -=-=-
 -=-=-  Computadora de 1992   -=-=-
 
http://www.linux.org/ S.O. Multi-[plataforma, tarea, usuario]
http://www.gnu.org/Free Software Foundation
http://lucas.hispalinux.es/  Documentación en Castellano
=


Re: dpkg, tar.gz

1999-02-20 Thread Antonio Castro
On Fri, 19 Feb 1999, Hue-Bond wrote:

 On Fri, 19 Feb 1999, Santiago Vila wrote:
 
   De .tgz a .deb, el alien no es una muy buena solución.
 
 ¿Tienes alguna mejor, de .tgz a .deb? :-)
 
  Mucho mucho mcho README y a currarte el paquete a mano  ;-)

Je, Je, Je  sabía que tu o Enrique diriais algo así.

Bueno es la solución más elegante y sirve para aprender mucho, pero
insisto en que no es necesario tenerlo todo perfectamente integrado
en la distribución. /usr/local está para meter cosas que el sistema
de paquetes de la distribución no va a tocar jamás. Las cosas que
tengo instaladas así no me han causado incomodidades.  Lo demás son
ganas de complicarse la vida aunque claro puede venirnos bien a los
demás si se comparte ese trabajo.

 -- 
 Linux, como su propio nombre indica, es *el* sistema operativo. (Barbwired)
 
 David Serrano [EMAIL PROTECTED]   Linux Registered User no. 87069
  http://come.to/Hue-Bond.world In love with TuX. Linux 2.2.1
 PGP Public key at http://www.ctv.es/USERS/fserrano/pgp_pubkey.asc
 
 --  
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null

---
En caso de contestar a la lista mandame copia personal.

/\ /\  Los mas importantes desarrolladores de Bases de datos 
  \\W//están portando sus productos a Linux. Porque crees tu
 _|0 0|_   que será ?Yo creo que Linux es el futuro.
+-oOOO--(___o___)--OOOo--+ 
|  . . . . U U . . . . Antonio Castro Snurmacher |  
| http://slug.ctv.es/~acastro.[EMAIL PROTECTED] |
+()()()--()()()--+  


Re: Noticias el CNN sobre IBM y Linux

1999-02-20 Thread Jesus M. Gonzalez

La URL exacta:

http://cnnenespanol.com/tec/1999/02/18/computadores/index.html

Jesus.

[EMAIL PROTECTED] writes:
  Hola A todos los amantes de Linux
  
  En  http://www.cnnenespanol.com en la seccion Ciencia y Tecnologia 
  esta el siguiente tema
  IBM incluira el sistema operativo Linux en sus computadoras.
  Saludos
  
  
  -
  Humberto Morell ([EMAIL PROTECTED])
  
  
  --  
  Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
  
-- 
Jesus M. Gonzalez Barahona | Departamento de Informatica
tel +3491 624 9458, fax +3491 624 9129 | Universidad Carlos III de Madrid
[EMAIL PROTECTED], [EMAIL PROTECTED] | avd. Universidad, 30
Grupo de Sistemas y Comunicaciones | 28911 Leganes, Spain


Como apagar el PC?

1999-02-20 Thread Lucky Kentucky




Siempre apago con 'shutdown -r now' o 'shutdown -h now' pero a 
veces al iniciar xequea la unidad como si ubiera cadenas perdidas.

Que puede ser?


Como instalar Internet

1999-02-20 Thread Lucky Kentucky




Tengo el Debian 2.0 pero no se que debo hacer 
para que pueda acceder a Internet a traves de IDDEO

Me podeis ayudar?


Configurar impresora

1999-02-20 Thread Lucky Kentucky




Como instalo y configuro una HP690C con el Debian 
2.0?


Re: Como apagar el PC?

1999-02-20 Thread Javier Fdz-Sanguino Pen~a


El sistema de ficheros tiene una cuenta atrás para el máximo
número de veces que pueden montarse los sistemas de ficheros sin chequearse.
Por ello, después de un tiempo de apagar y encender te chequeará los discos
aunque hayas salido de forma limpia.
Si te fijas en el mensaje dice:
maximal check count passed.. check forced
o algo así

Saludete

Javi

On Fri, Feb 20, 1998 at 12:10:26PM +0100, Lucky  Kentucky wrote:
 Siempre apago con 'shutdown -r now' o 'shutdown -h now' pero a veces al 
 iniciar xequea la unidad como si ubiera cadenas perdidas.
 
 Que puede ser?


kernel 2.2.0-pre6

1999-02-20 Thread Ignacio J. Alonso
Hola,
Ayer o antes de ayer mandé un mensaje a la lista que en resumen era:
Como no encuentro el deb del kernel 2.2.0-pre6 y tengo el tar.gz de este
kernel (CD PC-Actual de Febrero), intalo las fuentes en
/usr/src/kernel-source-2.2.0-pre6. Quiero crear la imagen del kernel con
make-kpkg --revision=custom.1.0 kernel_image, pero al comparar con las
fuentes del nucleo que tengo 2.0.34  que fueron instaladas desde
paquetes kernel-source*.deb veo alguna diferencia (algunos archivos, el
directorio /debian, ). Preguntas: ¿sigo a delante con mi idea? ¿que
problemas puedo tener? ¿que diferencia hay en instalar las fuentes desde
un tar.gz o desde un paquete .deb? ¿ventajas, inconvenientes?

El caso es que he recivido el siguiente mensaje de error . (Este
mensaje no significa que tenga nada mal configurado en mi correo o en
mutt ¿verdad? Por si acaso os escribo desde Windoze :-( )


The original message was received at Fri, 19 Feb 1999 22:25:15 -0500
(EST)
from m5.stny.lrun.com [204.210.159.20]

   - The following addresses had permanent fatal errors -
[EMAIL PROTECTED]

   - Transcript of session follows -
550 [EMAIL PROTECTED]... Host unknown (Name server: 127.0.0.1: host not
found)




Reporting-MTA: dns; m4.stny.lrun.com
Received-From-MTA: DNS; m5.stny.lrun.com
Arrival-Date: Fri, 19 Feb 1999 22:25:15 -0500 (EST)

Final-Recipient: RFC822; [EMAIL PROTECTED]
Action: failed
Status: 5.1.2
Remote-MTA: DNS; 127.0.0.1
Last-Attempt-Date: Fri, 19 Feb 1999 22:25:16 -0500 (EST)




Return-Path: [EMAIL PROTECTED]
Received: from m5.stny.lrun.com (m5.stny.lrun.com [204.210.159.20])
by m4.stny.lrun.com (8.8.6 (PHNE_12836)/8.8.6) with ESMTP id
WAA09191
for [EMAIL PROTECTED]; Fri, 19 Feb 1999 22:25:15 -0500 (EST)
Received: from kevinbealer.stny.lrun.com (e35207r.stny.lrun.com
[204.210.158.199])
by m5.stny.lrun.com (8.8.6 (PHNE_12836)/8.8.6) with ESMTP id
VAA00714
for [EMAIL PROTECTED]; Fri, 19 Feb 1999 21:47:59 -0500 (EST)
Received: from localhost ([EMAIL PROTECTED] [127.0.0.1])
by kevinbealer.stny.lrun.com (8.9.3/8.9.3/Debian/GNU) with ESMTP
id VAA01559
for [EMAIL PROTECTED]; Fri, 19 Feb 1999 21:47:56 -0500
Received: from mail-hub
by localhost with POP3 (fetchmail-4.7.7)
for [EMAIL PROTECTED] (single-drop); Fri, 19 Feb 1999 21:47:56
-0500 (EST)
Received: from murphy.debian.org (murphy.debian.org [209.176.56.6])
by m5.stny.lrun.com (8.8.6 (PHNE_12836)/8.8.6) with SMTP id
PAA07002
for [EMAIL PROTECTED]; Fri, 19 Feb 1999 15:45:26 -0500
(EST)
Received: (qmail 6441 invoked by uid 38); 19 Feb 1999 20:45:23 -
Resent-Date: 19 Feb 1999 20:45:23 -
Resent-Cc: recipient list not shown: ;
X-Envelope-Sender: [EMAIL PROTECTED]
Message-ID: [EMAIL PROTECTED]
Date: Fri, 19 Feb 1999 01:11:34 +0100
From: Ignacio J. Alonso [EMAIL PROTECTED]
To: Usuarios-Debian-Español debian-user-spanish@lists.debian.org
Subject: kernel 2.2.0-pre6
Mail-Followup-To: Usuarios-Debian-Español
debian-user-spanish@lists.debian.org
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
X-Mailer: Mutt 0.91.2
Resent-Message-ID: ycNMQD.A.SkB.j1cz2@murphy
Resent-From: debian-user-spanish@lists.debian.org
X-Mailing-List: debian-user-spanish@lists.debian.org
archive/latest/4670
X-Loop: debian-user-spanish@lists.debian.org
Precedence: list
Resent-Sender: [EMAIL PROTECTED]
-- 
===NaClU2\==Ignacio=
_/ _/ _/_/_/ _/_/_/ ( @ @ ) 
   _/ _/ _/  _/ _/   +-ºoO(_)Ooº-+  
  _/ _/  _/ _/_/_/ _/_/_/|  40º25'N 3º39'O   |  
 _/ _/  _/ _/  _/ _/ |  mailto:[EMAIL PROTECTED]   |  
_/ _/_/_/ _/  _/ _/_/_/  +---+  



Re: Dependencias con dpkg

1999-02-20 Thread Paco Brufal
On Thu, 18 Feb 1999 [EMAIL PROTECTED] wrote:

 dpkg -i libpam0g_0.57b-0.2.deb
 dpkg: dependency problems prevent configuration of libpam0g:
  libpam0g depends on libpam0g-util (= 0.57b-0.2); however:
Package libpam0g-util is not installed.

dpkg -i --force-depends libpam0g_0.57b-0.2.deb
dpkg --configure libpam0g_0.57b-0.2.deb
dpkg -i libpam0g-util_0.57b-0.2.deb

---
Paco Brufal [EMAIL PROTECTED]
Fidonet 2:346/3.68
---

...Not Responsible. Cybernators. 1996
--- Pine 3.96 + Sendmail 8.9.2
 * Origin: FAQ de R34.LINUX: http://www.ctv.es/USERS/pbrufal (2:346/3.68)
 


Re: Como apagar el PC?

1999-02-20 Thread Felipe Sanchez
On Fri, Feb 20, 1998 at 12:10:26PM +0100, Lucky  Kentucky wrote:
 Siempre apago con 'shutdown -r now' o 'shutdown -h now' pero a veces al 
 iniciar xequea la unidad como si ubiera cadenas perdidas.
 
 Que puede ser?

Una cosa es que el sistema chequea periódicamente los sistemas de archivos,
aunque hayan sido desmontados limpiamente siempre.

Por otro lado hay que tener cuidado en qué momento se apaga el pc. Si usas
'shutdown -h now' tienes que eperar hasta que te dice 'system halted'. Un
compañero de trabajo tenía problemas con una estación HP que hay que rebootear
periódicamente. Llegamos a pensar que el disco duro estaba fallando por la 
cantidad de errores e inconsistencias que mostraba, hasta que fui testigo
de una reinicialización de la máquina y me di cuenta que mi compañero
la estaba apagando antes de que terminara el shutdown, por su poco 
entendimiento del inglés.

Usar 'shutdown -r now' no me parece buena idea ya que tienes que apuntarle
a apagar el pc en el momento en que no hay peligro (entre que termina el
shutdown y empieza el boot).

Felipe Sánchez
[EMAIL PROTECTED]
[EMAIL PROTECTED]


Re: Como apagar el PC?

1999-02-20 Thread Emilio de Miguel
Hola

 Lucky  Kentucky escribió:

 Siempre apago con 'shutdown -r now' o 'shutdown -h now' pero a veces
 al iniciar xequea la unidad como si ubiera cadenas perdidas.
 
 Que puede ser?

Si te refieres a que pone un mensaje de maximo numero de mounts
alcanzado, check forced, es normal.

-- 
Deica logo


Re: Cargar / descargar modulos

1999-02-20 Thread Emilio de Miguel
Hola

Xose Manoel Ramos escribió:

 ¿Hay alguna manera de comprobar o listar los módulos que estan
 cargados?

cat /proc/modules

-- 
Deica logo



Re: xquake

1999-02-20 Thread Emilio de Miguel
Hola

Hue-Bond escribió:
 
 On Fri, 19 Feb 1999, Emilio de Miguel wrote:
 
 Tengo un amigo windousero que quiere echar unas partidas al quake en mi
 red linux.
 
  Qué envidia  ;-)

Hombre, si quieres te lo mando ;)

 Hoy instale el xquake que viene en el Cd Contrib de LA5 y me ha soltado
 un core como una catedral.
 La librerias parecen estar bien, aunque usa la libc5.
 
  Intenta instalar el squake (para consola, con svgalib). A mí me
  daba segmentation fault con el 2.0.34 pero desde que puse el 2.2.1,
  me funciona bien  :-?  :-)

Ya me funciona, pero como root :(
De todas formas, el svgalib no me va bien, tengo una matrox. Aproposito
de esto, sabes si hay alguna version del svgalib que trabaje con el
frame buffer de kernel 2.2.1 ?

-- 
Deica logo


Re: StarOffice+S3Virge(FINAL)

1999-02-20 Thread carlos saldaña
El Fri, Feb 19, 1999 at 07:15:04PM +0100, Jose Mari Mor Fabregat decías:
 
 
 On Fri, 19 Feb 1999, Vázquez, Gustavo wrote:
 
  La clave te lo á antes de bajarlo.
  
 
   Si, estoy de acuerdo, pero una vez arrancado te dice
 que es una version 30 days only, y que necesitas una nueva
 clave. ¿Cual será esa clave?

Creo recordar, que el mismo programa, al arrancar y decirte lo que tú
mencionas, TAMBIÉN te pregunta si deseas registrarte. Si dices que sí el
programa te daba a elegir la forma; en caso de correo electrónico, el mismo
programa te lo enviaba y te desaparecía lo de unregistered...
Saludos.
-- 
carlos saldaña
emilio's : [EMAIL PROTECTED]
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]


Re: Dependencias con dpkg

1999-02-20 Thread Marcelo E. Magallon
 Paco Brufal [EMAIL PROTECTED] writes:

  On Thu, 18 Feb 1999 [EMAIL PROTECTED] wrote:
  
   dpkg -i libpam0g_0.57b-0.2.deb
   dpkg: dependency problems prevent configuration of libpam0g:
libpam0g depends on libpam0g-util (= 0.57b-0.2); however:
  Package libpam0g-util is not installed.
  
   dpkg -i --force-depends libpam0g_0.57b-0.2.deb
   dpkg --configure libpam0g_0.57b-0.2.deb
   dpkg -i libpam0g-util_0.57b-0.2.deb

 más sencillo, menos peligroso:

 $ dpkg -i libpam0g-util_0.57b-0.2.deb libpam0g_0.57b-0.2.deb


 Marcelo,
 quien se pregunta por qué se generalizó la idea de que solo un
 paquete se puede instalar a la vez...


WindowMaker Themes

1999-02-20 Thread homega
Me bajé unos cuantos temas para el WindowMaker, ¿qué debo hacer para poder
usarlos?

Gracias.

-- 
Un saludo,

Horacio
[EMAIL PROTECTED]

--
Quis custodiet ipsos custodet?
--


Re: WindowMaker Themes

1999-02-20 Thread Marcelo E. Magallon
 [EMAIL PROTECTED] writes:

  Me bajé unos cuantos temas para el WindowMaker, ¿qué debo hacer
  para poder usarlos?

 $ cd ~/GNUstep/Library/WindowMaker
 $ tar xvzf tema.tgz

 botón derecho en la ventana raíz - Workspace - Appearance - Themes

 (no recuerdo si esto funciona con 0.14.1, _creo_ que no)

   Marcelo


RE: StarOffice+S3Virge(FINAL)

1999-02-20 Thread Hue-Bond
On Fri, 19 Feb 1999, Jose Mari Mor Fabregat wrote:

   Si, estoy de acuerdo, pero una vez arrancado te dice
que es una version 30 days only, y que necesitas una nueva
clave. ¿Cual será esa clave

 Yo  más bien  pregunto, ¿por  qué  los de  StarDivision lo  han
 complicado tanto? Mira por el menú de ayuda una opción de Register
 online o algo así.


-- 
Linux, como su propio nombre indica, es *el* sistema operativo. (Barbwired)

David Serrano [EMAIL PROTECTED]   Linux Registered User no. 87069
 http://come.to/Hue-Bond.world In love with TuX. Linux 2.2.1
PGP Public key at http://www.ctv.es/USERS/fserrano/pgp_pubkey.asc


Re: dpkg y tgz

1999-02-20 Thread Han Solo
Emilio Castrillejo wrote:
 

 Como resultado, puedo consultar y desinstalar estos paquetes instalados
 'a pelo' con el dpkg, tal y como si los hubiera instalado con dpkg -i.
 

Chico valiente ;-)

Yo para todas estas cosas prefiero el alien, nunca me ha dado problemas
con los tgz, y acutliza automáticamente la base de datos del dpkg
-- 
Un Saludo

Han Solo
The Rebel Alliance

Conecto, luego existo.
Desconecto, luego insisto.
Soy usuario de infobirria+

P.D. La firma no es mía, sino de uno que trabajaba, precisamente, en M$.
Vivir para ver.


Re: WindowMaker themes - Debian packages

1999-02-20 Thread Christian Lavoie
 In article [EMAIL PROTECTED],
 Daniel Burrows [EMAIL PROTECTED] wrote:

   Hi.  Over the weekend, I wrote a script that converts WindowMaker 
themes to
 Debian packages automatically. (the themes have to follow wm.t.o's 
packaging
 policy).  I think it would be useful for other Debian users but I 
don't really
 know what to do with it.

 Wooo another one! Diversity is strength...

 I've done one as well, although it doesn't do downloading and other
 features... I've also got a GTK theme convertor for gtk.themes.org...

 I'm intending to package them once my maintainer status is cleared-
 but that'll be after slink arrives, at a guess...

 http://www.arise.demon.co.uk/debian/ for anyone interested (.deb and
 .dsc/.tar.gz).

I wonder... Could/Should this be a part of apt, as a method?

Apt-get install-theme-wm mytheme

What you guys think?

Christian Lavoie
[EMAIL PROTECTED]




Compiling a program error

1999-02-20 Thread Jim Foltz
Hello,

I have attached the output from the make command I get while trying to compile
a program for my programming class. The book is called c++ Program Design and
the comes with a simple window library, which the program in question is
linked against.

I think the program compiles, as a .o file is created. The problem occurs
while linking. I emailed the authors with a similar message a week ago, but
I have not recieved a reply from them. 

Any ideas would be appreciated.

-- 
   Jim Foltz   [EMAIL PROTECTED]
ACORN techie   http://www.acorn.net
  AOL/IM   jim_foltz
make lawn
make[1]: Entering directory `/home/jf/src/ezwin2a/chap03/lawn'
g++ -o lawn prog3-5.o -L/usr/X11R6/lib -lX11 -L../../EzWindows/lib -lezwin -lXpm
../../EzWindows/lib/libezwin.a(WindowManager.o): In function 
`SimpleWindow::SimpleWindow(basic_stringchar, string_char_traitschar, 
__default_alloc_template1, 0  const , float, float, Position const )':
WindowManager.o(.text+0x31c): undefined reference to `__eh_pc'
../../EzWindows/lib/libezwin.a(WindowManager.o): In function 
`SimpleWindow::SimpleWindow(char const *, float, float, Position const )':
WindowManager.o(.text+0x3e8): undefined reference to `__eh_pc'
../../EzWindows/lib/libezwin.a(WindowManager.o): In function 
`SimpleWindow::SimpleWindow(SimpleWindow const )':
WindowManager.o(.text+0x4d4): undefined reference to `__eh_pc'
WindowManager.o(.text+0x4f4): undefined reference to `__eh_pc'
WindowManager.o(.text+0x514): undefined reference to `__eh_pc'
../../EzWindows/lib/libezwin.a(WindowManager.o)(.text+0x534): more undefined 
references to `__eh_pc' follow
../../EzWindows/lib/libezwin.a(WindowManager.o): In function 
`release__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i03Rep':
WindowManager.o(.gnu.linkonce.t.release__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i03Rep+0x13):
 undefined reference to 
`__dl__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i03RepPv'
../../EzWindows/lib/libezwin.a(WindowManager.o): In function 
`grab__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i03Rep':
WindowManager.o(.gnu.linkonce.t.grab__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i03Rep+0xf):
 undefined reference to 
`clone__Q2t12basic_string3ZcZt18string_char_traits1ZcZt24__default_alloc_template2b1i03Rep'
../../EzWindows/lib/libezwin.a(rect.o): In function 
`RectangleShape::RectangleShape(SimpleWindow , Position const , color const 
, float, float)':
rect.o(.text+0x4d): undefined reference to `__eh_pc'
../../EzWindows/lib/libezwin.a(rect.o): In function 
`RectangleShape::RectangleShape(SimpleWindow , float, float, color const , 
float, float)':
rect.o(.text+0xf0): undefined reference to `__eh_pc'
rect.o(.text+0x10d): undefined reference to `__eh_pc'
../../EzWindows/lib/libezwin.a(rect.o): In function 
`RectangleShape::Draw(void)':
rect.o(.text+0x330): undefined reference to `__eh_pc'
rect.o(.text+0x350): undefined reference to `__eh_pc'
../../EzWindows/lib/libezwin.a(rect.o)(.text+0x370): more undefined references 
to `__eh_pc' follow
collect2: ld returned 1 exit status
make[1]: *** [lawn] Error 1
make[1]: Leaving directory `/home/jf/src/ezwin2a/chap03/lawn'
make: *** [default] Error 2


ls in anon. ftp

1999-02-20 Thread Sebastian Canagaratna
I have just set up an anonymous ftp  on my machine.
The directory is /home/ftp with subdirectories bin
etc and pub. 

THe directory ftp is owned by root and group staff.

I copied /bin/ls into /home/ftp/bin.
In etc, I copied the /etc/passwd and /etc/group
files and deleted everything except the line for
the ftp in the passwd file and the group in the group
file.

I am able to ftp anonymously from another tty on my machine
but when I do an ls, the message is the usual one ( command
successful ..  ASCII for /bin/ls ) but the subdirectories
and not shown up.  I tried ftp from my home machine, which
is also a Debian Linux, and I get the same problem.  However,
when I ftp from the NT machine and do the ls, the subdirectories
show up. 

Does anybody know what the problem is? I have been following all
the directions from man ftpd and Linux unleashed by Hussain, and
Parker.

Sebastian Canagaratna
Department of Chemistry
Ohio NOrthern University
Ada, OH 45810 


Re: How to import pub keys with gnupg

1999-02-20 Thread vandeveb
Well, using the '-a' on the export did work to get rid of the 
'public key not found' error when doing:

# gpg -r B -se file1

I had actually tried this before.  But when 'B' goes to decrypt 
the file1.gpg this is what happens:

#cat /home/A/file1.gpg | gpg
gpg: public key decryption failed: secret key not available
gpg: decryption failed: secret key not available

Why can't B find his own secret key? It should be in his .gnupg 
directory.  

Thanks for the help with the unsecured memory.

Bill


2.2.1 kernel installation problem

1999-02-20 Thread Dimitri.p
I biuld a 2.2.1 kernel.
Attempting a: make zdisk failed until I changed the floppy device from
/dev/fd0 to /dev/rfd0. Still the machine does not see it as a bootable
floppy.

Attempted a: make vmlinux and ended up with an unbootable machine.
It tells me that the boot device 8, 1 cannot be mounted, when booting up
from the hard drive. 

If this rings a bell to anyone feel free to drop me a line :)

I'll take another few stubs at it in the meantime.
I can still boot 2.0.33 from a floppy so IO can use the machine enough to
configure it. 

TIA 

Dimitri.p


Re: Debian Logo *Idea* Contest! (Delay for painting contest required)

1999-02-20 Thread Laurent PICOULEAU
Hi,

On Thu, 18 Feb, 1999 à 12:23:43PM +0100, Andreas Tille wrote:
 Hello Debian deveolopers and friends,
 
 this day is the first I started thinking about the importance of
 a Debian logo.  Someone will say it is to late for a maintainer who
[...] 
 Debian Logo Idea Contest
 
 Wy do we need such a contest.  The mails of Joey have shown, that
 there is the problem of no-unique-concept for the logo.  Friends
[...]
 So let us define first, *what* we want to show on our logo.
 This is always the first step in software related things.  Wy did
 we step over it??
 

Well, that a difficult task for these reasons :
 - We probably have different ideas of what symbolize debian
 - Most of these ideas are abstract concept
 - As far as I'm concerned I do not make a neat distinction amongst
 linux and debian, so what I could suggest pertains as much to
 linux than to debian.

Here are two suggestions addressing the first points.

My ideas of debian/linux (without any significance in the order) are :
  freedom, power, cooperation.

What animals symbolize these ? (and don't forget it's a cultural issue,
dragons are considered as dreadfull in occident and benevolent in asia)
 freedom : flying birds (Johnatan Livingston the seagull...)
 power : big and strong animals (elephant, bear, buffalo, whales)
 cooperation : social insects (ants, bees, termites)

Problems : none of the animals meets two of the ideas, birds are already
used (penguin of linux and the actual debian logo is a stylisized red 
bird that I like BTW), all of the powerfull animals are in danger of
extinguishment, I don't think the idea of an insect appealing.

So animals don't appears as a good solution.

What else is possible ?

To illustrate the idea of freedom we could represent an escape : sheets 
(bed) hanging from jail window with filed bars.
  Strong points : It's easy to draw, easy to resize, easy to identify. 
easy to simplify for an icon. I thought of a nice slogan for it : 
Debian: free your computer and your mind. It's important to fit the
logo and the slogan as the name (debian) is already choosen. Red hat fit
well with RedHat, gnu fit well with GNU, pyramid fit well Kheops (a 
french society localizing Slackware and RedHat) but the names and the
logo where chosen at the same time (perhaps not for GNU ?).
  Drawbacks : Jail is not a positive concept, it could enforce the 
confusion of hackers with pirates, it doesn't illustrate cooperation
easily (perhaps knotted sheets allowing escape from two cells), I don't 
see how it could evocates power. Nevertheless, I do like this idea, so if
a painter wish to give it a try, i'll will be glad to have collaborated
in this way to debian. 

 
 Idea no. 1:  Orca for Debian

My first impression about orca is that it's a terrible predator.

 
 Why do I think that an orca whale is exactly what we need for our logo:
 - often logos are animals
Not so often, stylized letters or words came first then stars and 
circles/spheres are quite numerous.

 - let us choose an animal which stands for freedom
 - there are many animals which fit this fact, but many of them

Not so much I think, unless that you consider that any wild animal is
free in such a way none is the symbol of freedom. 

   are occupied by governments of countries
 - we shouldn't stik on any sign of a certain country
 - lets take an orca whale
 - everybody knows the Free Willy story ... I don't want to say
^
No ! I'm definetly convinced that less than 10% of the world population
has seen the movie. 

   anything about the quality of this film, but the general idea is good
 - it has something in common with our ideas:
   * we want to bring software to freedom -- its a *process to get free*
   * Debian is big, as well as an orca whale
   * it has big tooth to fight against commercial software developers

I agree with your two first points but the third one is a drawback in my
opinion.

 - it could be a strong logo (may be it could have something in
   common with the world-idea of Joey, because orcas live in all
   oceans of our world which may or may not be expressed in the futur logo,
   thats a design question which I don't want to deal with

true

 - we can brofit very much from the popularity of the whales in our
   day!  ... we want to have popularity and we need to have popularity

Probably not. What let us recognise gnu as GNU and cameleon as S.u.S.E.
is that they're not overseen. I fear that a whale would be just an other
whale amongs a lot.

 - a good designer cold paint a *funny* orca -- as funny as the penguin
   and other ones

It's a strong point for animals : they are easy to make funny and
sympathetic. I think of linux logo, particulary of extrem linux or 
drawings of Bruno Bellamy.

[technical good points for orca]
 
 OK, lets assume these ideas are good or someone has a better, its
 just a suggestion.

Same remark applies to my ideas.

Last point, opposing to Joey, I do think that the word Debian should be

Re: Archiving Old Messages and Misc Mail Features

1999-02-20 Thread Laurent PICOULEAU
Hi,

On Thu, 18 Feb, 1999 à 04:59:19PM -0800, George Bonser wrote:
 On Thu, 18 Feb 1999, Stephen Pitts wrote:
 
  Reply-To: 
  Hi!
  I'm using fetchmail, procmail, and mutt to get/sort/read mail. I've
 been subscribed to the debian list (among others) for about 2 months, and
 I just realized I have 42 megabytes of email in ~/Mail. Can anyone
 recommend a reasonable way to archive these messages, i.e. by two-week
 intervals or months? I'd imagine that someone who has received this list

I think that it could be done with procmail

 For lists that have archives on the web that will sort by date or thread,
 your best bet is:
 
 rm mailbox
 
 The Data Conservation Corps would go nuts knowing how many copies of the
 same messages exist in local mailboxes when they can all be accessed on
 the web.  No need to save debian-user of you have a web browser.

Unless you pay the phone on the duration of your communication (even locale
ones) ! 

-- 
 ( -   Laurent PICOULEAU  - )
 /~\   [EMAIL PROTECTED]  /~\
|  \)Linux : mettez un pingouin dans votre ordinateur !(/  |
 \_|_Seuls ceux qui ne l'utilisent pas en disent du mal.   _|_/


Multi IP's on interface

1999-02-20 Thread Bill Bell
Hello,

Is it possible, and if so how, to support two IP's on a single
interface card?  I thought I have seen this somewhere.

I am trying to put a 192.168.2.x on my eth1 which is the same
interface that connects to my bridge and my Internet connection.
I want to get to the management utility on the bridge without
broadcasting the bridges management IP on the Internet. 

Another option may be to set up a route from my internal subnet on
eth0, (192.168.1.x) to
eth1, (206.xxx.xxx.xxx)
where eth1 also has visability to a 192.168.x.x address.

Any ideas on either method?  Other options?

I am looking for something simple, and somewhat secure from
the outside world.

Thanks,
Bill Bell


re: Exceed 6 setup help

1999-02-20 Thread SEGV
 I just purchased a new computer so I wouldn't have to dual boot anymore.
 I must use Windows for MS Office (Excel) and games.  Problem is that I
 have only one monitor.  I have Exceed 6 but I can't seem to get it
 working.  Does someone who has done this have time to walk me through
 this?
 
 What do I installed and configured on my slink box?  What needs to be done
 on the Windows side?  Ideally, I'd like to be able to have a few RXVTs and
 probably xemacs for programming.
 
 If some one has the time to help me I am grateful.
 
 Thanks.

Well I work for Hummingbird, though not on the Exceed side. If you have problems
email me and I can find a support address for you.

Exceed is just an X server. It provides services to display windows, do X
graphics, etc. When it is running on Windows, it is just sitting there waiting
for X clients (ie, UNIX programs that show windows) to connect and do stuff with
it.

So once Exceed is installed, and you have set permission to map windows to it
(ie, xhost +), telnet/rlogin to your linux box and set your DISPLAY
environment variable to your windows box. Then, if you launch any X programs,
they will open their windows on and interact with the display on your windows
box. Which coincidentally happens to be Exceed on Windows.

Then, you can run your linux box without a monitor, and your Windows box with
the monitor, and network the boxes. You can have all your Windows programs on
the monitor, and all your X programs on your monitor as well with Exceed.

I helped develop most of our BI UNIX stuff that way, working on 4-5 computers
but with everything on different virtual desktops on a Solaris box. It's
convenient to not have to change desks all the time. I've only seen Exceed in
action once or twice, but it looks like a good X server. I saw it handle a
Solaris CDE session identical to what I normally see on console (before I got E
running on my UltraSPARC...).

-- 
SEGV
MINION Project:   http://www.cgocable.net/~mlepage/
RTS Game Programming: http://www.cgocable.net/~mlepage/rts/


RE: Multi IP's on interface

1999-02-20 Thread Pollywog

On 19-Feb-99 Bill Bell wrote:
 Hello,
 
 Is it possible, and if so how, to support two IP's on a single
 interface card?  I thought I have seen this somewhere.
 
It is called IP aliasing.
Read the IP Aliasing Howto and it will explain how this is done.

--
Andrew


Soundpro Under 2.2.1

1999-02-20 Thread Peter Ludwig
Well, I've gotten Kernel 2.2.1 running on the machine, it has everything I
need (at present), but I seem to have a little problem.

Under 2.0.34 I setup my soundcard as a sound blaster, but with the new
version, it refuses to detect the sound Card (it's a Soundpro or for the
Techies, a CMI8330 PCI (onboard) sound card).

With 2.0.34 I had to wait for it to correctly intigate the soundcard, but
well, now it just refuses and tells me the card ain't there, anyone have
the same soundcard and got it working?  Or anyone got a way around this?

HEEELLLPPP  I need my sound.. well okay, Quake runs better with sound,
so... I guess that means I need it...

Also I do not have DOS installed anymore so I can't boot up that way and
chop over (it didn't work under 2.0.34 anyway so I guess it won't for
2.2.1)...

Thanx in Advance,
Peter Ludwig



Make postscipt files use less pages?

1999-02-20 Thread M.C. Vernon
Dear all,

Is it possible to make postscipt files print out with two
postscript pages fitting onto one physical page (or is there an option in
ghostview for this?), please? 350 pages of hurd manual could do with being
shrunk before I use _all_ my paper up

Thanks,

Matthew

-- 
Elen sila lumenn' omentielvo

Steward of the Cambridge Tolkien Society
Selwyn College Computer Support
http://www.cam.ac.uk/CambUniv/Societies/tolkien/
http://pick.sel.cam.ac.uk/
Debian GNU/Hurd - love at first byte


Re: Crashing Install with Debian 2.0

1999-02-20 Thread Max
I'm very novice with Linux (only one month of !!) and I'm very poor in my 
english
also, so excuse me. I had the same problem when I installed Debian 2.0 and I 
spent one
week to fix it. The problem was the SDRAM (10 ns); I've changed it with my old 
EDO (70
ns) and now it works fine, but I like to know if there are other solutions
SoonMax

P.S. Linux is great!! (and a little bit hard)

Tallon wrote:

 Does anyone know what this means?  I am trying to install Debian 2.0
 on a Cyrix MII 300 with 128Megs and 2 Fujitsu 4.3G drives.  Has a
 Genoa 3d Phantom Video Card and a SMC Ethernet card 1211TX.

...

 Segmentation Fault



  Massimo Battisti
  Viterbo - Italy
  [EMAIL PROTECTED]






Re: ATAPI zip drive

1999-02-20 Thread Eric Leblanc
On Fri, Feb 19, 1999 at 01:28:34PM -0800, Matt Campbell wrote:
 Do I need a special kernel device driver for an Iomega ATAPI Zip 100 
 drive?  Or will the regular ATAPI driver detect and handle the drive?

It just need the ide-floppy drivers compiled or loaded as a modules. If
you did compile your own kernel (2.0.36 or 2.2.1) you'll see:

Include IDE/ATAPI FLOPPY support (new) (CONFIG_BLK_DEV_IDEFLOPPY) [N/y/?]

(that's with 2.0.34)


Re: Make postscipt files use less pages?

1999-02-20 Thread Robert Ramiega
On Sat, Feb 20, 1999 at 07:12:07AM +, M.C. Vernon wrote:
 Dear all,
 
   Is it possible to make postscipt files print out with two
 postscript pages fitting onto one physical page (or is there an option in
 ghostview for this?), please? 350 pages of hurd manual could do with being
 shrunk before I use _all_ my paper up
 Have a look at mpage package i think it might help You

-- 
 Robert Ramiega   | [EMAIL PROTECTED]IRC: _Jedi_ | Don't underestimate 
 IT Manager @ PDi | http://plukwa.pdi.net/| the power of Source


problem with sendmail

1999-02-20 Thread Michael Meskes
I've set up my sendmail daemon to just forward my mail to my provider's
smart relay host mail.online-club.de. It worked pretty well until earlier
this week. All of a sudden though I get messages like

Deferred: 451 [EMAIL PROTECTED]... Deferred by rule.

Obviously no mail goes out. I checked the relay host and sendmail tries to
deliver to post.strato.de. I never even heard about that domain. I just
talked to my provider (since this could have been a name server problem) and
they told me that strato is not their upstream provider. However, it is a
provider too. So all of a sudden my system tries to deliver mail through the
wrong companies smtp host. 

Does anyone have an idea how this could happen? No, I did not change any
software or configuration in between.

Thanks a lot in advance for any idea.

Michael

P.S.: Please CC me on replies.
-- 
Michael Meskes | Go SF 49ers!
Th.-Heuss-Str. 61, D-41812 Erkelenz| Go Rhein Fire!
Tel.: (+49) 2431/72651 | Use Debian GNU/Linux!
Email: [EMAIL PROTECTED]  | Use PostgreSQL!


apt-get and no-passive ftp?

1999-02-20 Thread Joop Stakenborg
How do I tell apt-get to NOT use a passive ftp connection?

Joop
-- 

 Joop Stakenborg [EMAIL PROTECTED]
 Linux Hamradio Applications and Utilities Homepage
 http://www.casema.net/~aba


Re: Sending with mutt/smail. was: Netscape 'movemail'

1999-02-20 Thread Richard Harran
Paulo Henrique Baptista de Oliveira wrote:
 
 Hi Richard,
 first thank you for aswering me with great patiente. :)
 Richard Harran wrote:
snip 

I don't use mutt, or smail to send mail, so I'm cc this reply to the
list, as we're reaching the limit of my knowledge!

 First. I installed smail with Debian 2.0. I dont install exim. Yet. I
 tried your .fetchmailrc and then typed
 fetchmail. Worked!! I started mutt and voila the mail was here.

Yes: smail provides similar services to exim.  I'm not exactly sure of
all the differences, but from what I've seen of emails to this list,
people seem to prefer exim.

snip 

 But, I didnt could send mail. :( What I have to do?

This is again a job for smail(/exim).  I think when you send a message
in mutt, it should start up smail to do the actual work.  I can't really
tell you what to do here, sorry.

 Another question. I grep ppp/ip-up.d and saw the line:
 
 phantasy:/etc/ppp/ip-up.d# more fetchmail-up
 #!/bin/bash
 
 test -r /etc/fetchmailrc  \
 fetchmail --syslog --invisible --fetchmailrc /etc/fetchmailrc
 
 phantasy:/etc/ppp/ip-up.d#
 
 But this is the global configuration (/etc). How do I start fetchmail as
 user every time I connect? Have you understanded the question?

I'm not sure, but I guess you could replace /etc/fetchmailrc with
$HOME/.fetchmailrc, but this would cause problems if ip-up is run before
login.  You should also check there isn't anything important in the /etc
file that isn't in the ~/ file.  Again, sorry but I'm uncertain about
this stuff: my setup is a bit different, 'cos I'm permanently connected.

 
 
  You can get it to deliver to different folders, and even sort your mail
  by editing a .forward file in your home directory, eg.
 
  if $header_resent-from: contains debian-user
  then
  save $home/mail/debian
  else
  save $home/mail/inbox
 
  Then you need to set up your reader to point to the mail directory in
snip
 
 I have read of procmail too. Is it good?

I think procmail does pretty much the same function as that of exim
described above.  You need a ~/.procmailrc file, with (differently
formatted rules in it.  As to the advantages and disadvantages over
~.forward and exim, I don't know.  I've put the example .procmailrc from
the procmail manpage below, to give you an idea.  I think it puts most
of your mail in ~/Mail/mbox, saves anything with a name ending in berg
in the From: field to ~/Mail/from_me, and bins anything with a Subject:
line ending in Flame.

 sample small $HOME/.procmailrc:
   PATH=/usr/local/bin:/usr/bin:/bin
   MAILDIR=$HOME/Mail  #you'd better make sure it exists
   DEFAULT=$MAILDIR/mbox   #completely optional
   LOGFILE=$MAILDIR/from   #recommended

   :0:
   * ^From.*berg
   from_me

   :0
   * ^Subject:.*Flame
   /dev/null

 Thank again for your atention. I'm a coordinator of LUG here at Brazil
 (Rio de Janeiro). I'm introducing Linux everywhere.
 Especially Debian (that is very good). I have to know basic things to teach
 others.
 Paulo Henrique

Sorry I couldn't be more helpful this time.  Hopefully someone on the
list will be able to clarify this.

Rich.
 
snip original query


Re: can't boot recover disk on grid 1755

1999-02-20 Thread Martin Schulze
[EMAIL PROTECTED] asks:
 I'm trying to install debian linux on a grid 1755 laptop (486sx 25  4meg ram,
 80meg HD).  It makes it to loading the kernal then alot of stuff goes past
 real quick, the last thing I see is probing something(goes by to fast to
 read).  Then the computer
 reboots.  Does anyone know how to get this to work???  I'm new at linux and
 can't figure it out(I tried the tetra disk already).  Thanx in advance,
 Tom  


Re: ATAPI zip drive

1999-02-20 Thread homega
Eric Leblanc dixit:
 On Fri, Feb 19, 1999 at 01:28:34PM -0800, Matt Campbell wrote:
  Do I need a special kernel device driver for an Iomega ATAPI Zip 100 
  drive?  Or will the regular ATAPI driver detect and handle the drive?
 
 It just need the ide-floppy drivers compiled or loaded as a modules. If
 you did compile your own kernel (2.0.36 or 2.2.1) you'll see:
 
 Include IDE/ATAPI FLOPPY support (new) (CONFIG_BLK_DEV_IDEFLOPPY) [N/y/?]
 
 (that's with 2.0.34)

¿does it really?  I never touched anything with Debian2.0 and kernel 2.0.34
and my Iomega Zip (IDE ATAPI) works just fine.
Remember that to mount it with a DOS/windoze filesystem (secondary slave):
mount -t vfat /dev/hdd4 /mnt
  ^
whereas for a Linux ext2 filesystem disk:
mount -t ext2 /dev/hdd1 /mnt
  ^

Regards


-- 
Un saludo,

Horacio
[EMAIL PROTECTED]

--
Quis custodiet ipsos custodet?
--


gqmpeg

1999-02-20 Thread John Leget
hi,

Anyone have any problems with gqmpeg, i have now had several occasions
where it seems to have crashed my xserver - drops to console and than
xdm fires up again so its not just windowmaker ( well i assume :) ).

Ive switched to x11amp, now.

cheers


1.3 - 2.0. Am I okay to reboot?

1999-02-20 Thread Chris Wong
WARNING  
 If APT lists lib* in the list of essential packages to remove then
it is very likely you will hose your system by continuing.
--

This was quoted from the Debian 2.0 update README. I've logged
my 1.3 - 2.0 update, and just noticed something. Is it a big deal?
Is it safe to reboot?

 (my stuff) 
# apt-get dist-upgrade
Updating package status cache...done
Checking system integrity...ok
The following packages will be REMOVED:
  libnet libreadline2-dev 
The following NEW packages will be installed:
  libmime-base64-perl libdb2 liblockfile0 libnet-perl libstdc++2.8 whiptail
  zlib1g pkg-order perl-base libgdbmg1 tcl7.6 libg++272 newt0.21 data-dumper
  libc6 ncurses3.4 libcompfaceg1 libreadlineg2 slang0.99.38 
The following packages have been kept back
  util-linux 
138 packages upgraded, 19 newly installed, 2 to remove and 1 not upgraded.
Need to get 39.9M of archives. After unpacking 9057k will be used.
Do you want to continue? [Y/n] y
-
Chris Wong | [EMAIL PROTECTED]
AD Digital Media Inc. (c) 1999
http://addm.com/


Re: ls in anon. ftp

1999-02-20 Thread Hernan Joel Cervantes Rodriguez
Hi :

You must be copy also the libraries :

-r-xr-xr-x   1 root root   148756 Feb 14 18:11 ld-2.0.7.so*
lrwxrwxrwx   1 root root   11 Feb  3 16:53 ld-linux.so.2 - 
ld-2.0.7.so*
-r--r--r--   1 root root   651436 Feb 14 18:11 libc.so.6
-r--r--r--   1 root root 6612 Feb 14 18:11 libdl.so.2
-r--r--r--   1 root root   240572 Feb 14 18:11 libncurses.so.4
-r--r--r--   1 root root19044 Feb 14 18:11 libnsl.so.1
-r--r--r--   1 root root30204 Feb 14 18:11 libnss_files.so.1
-r--r--r--   1 root root   169448 Feb 14 18:11 libreadline.so.2

to subdir lib/

 
 I have just set up an anonymous ftp  on my machine.
 The directory is /home/ftp with subdirectories bin
 etc and pub. 
 
 THe directory ftp is owned by root and group staff.
 
 I copied /bin/ls into /home/ftp/bin.
 In etc, I copied the /etc/passwd and /etc/group
 files and deleted everything except the line for
 the ftp in the passwd file and the group in the group
 file.
 
 I am able to ftp anonymously from another tty on my machine
 but when I do an ls, the message is the usual one ( command
 successful ..  ASCII for /bin/ls ) but the subdirectories
 and not shown up.  I tried ftp from my home machine, which
 is also a Debian Linux, and I get the same problem.  However,
 when I ftp from the NT machine and do the ls, the subdirectories
 show up. 
 
 Does anybody know what the problem is? I have been following all
 the directions from man ftpd and Linux unleashed by Hussain, and
 Parker.
 
 Sebastian Canagaratna
 Department of Chemistry
 Ohio NOrthern University
 Ada, OH 45810 
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  
/dev/null
 
Hernan

   Hernán J Cervantes Rodríguez
   Instituto de Física da USP
   e-mail   : [EMAIL PROTECTED]
   homepage : http://fge.if.usp.br/~hernan/
   


Re: 1.3 - 2.0. Am I okay to reboot?

1999-02-20 Thread Remco van de Meent
Chris Wong wrote:
 WARNING  
  If APT lists lib* in the list of essential packages to remove then
 it is very likely you will hose your system by continuing.
 --
 
 This was quoted from the Debian 2.0 update README. I've logged
 my 1.3 - 2.0 update, and just noticed something. Is it a big deal?
 Is it safe to reboot?

libreadline2-dev will be removed in favor of libreadlineg2 (which is needed
for the bash that comes with hamm). You might want to install
libreadlineg2-dev by the way, but it is not needed for normal operation.

libnet is replaced by libnet-perl.


So, I don't seen any problems and I'd say go for it!

 
  (my stuff) 
 # apt-get dist-upgrade
 Updating package status cache...done
 Checking system integrity...ok
 The following packages will be REMOVED:
   libnet libreadline2-dev 
 The following NEW packages will be installed:
   libmime-base64-perl libdb2 liblockfile0 libnet-perl libstdc++2.8 whiptail
   zlib1g pkg-order perl-base libgdbmg1 tcl7.6 libg++272 newt0.21 data-dumper
   libc6 ncurses3.4 libcompfaceg1 libreadlineg2 slang0.99.38 
 The following packages have been kept back
   util-linux 
 138 packages upgraded, 19 newly installed, 2 to remove and 1 not upgraded.
 Need to get 39.9M of archives. After unpacking 9057k will be used.
 Do you want to continue? [Y/n] y


bye,
 -Remco


Re: How to import pub keys with gnupg

1999-02-20 Thread Christian Kurz
[EMAIL PROTECTED] wrote:
 Well, using the '-a' on the export did work to get rid of the 
 'public key not found' error when doing:

 # gpg -r B -se file1

That's the correct syntax for doing this. 

 I had actually tried this before.  But when 'B' goes to decrypt 
 the file1.gpg this is what happens:

 #cat /home/A/file1.gpg | gpg
 gpg: public key decryption failed: secret key not available
 gpg: decryption failed: secret key not available

 Why can't B find his own secret key? It should be in his .gnupg 
 directory.  

It looks like the secret-key is not available. This can be checked by
doing gpg --list-secret-keys. Then you see which secret key is
available for encrypten and/or signing. With gpg --list-keys you can
see who's key is available. So you should check the available keys
carefully. It looks like you have made a mistake while importing and
exporting the keys. I suggest that you deleted the files in the .gnupg
directory and generate new keys and then export them with the -a-Option
and you should always specific who's key you want to export.

 Thanks for the help with the unsecured memory.

Hm, I'm going to look if this is a know bug or not and then write a mail
to the maintainer.

Ciao
 Christian
-- 
/* http://www.rhein-neckar.de/~jupiter/Christian Kurz */


Re: A couple more strange sound probs...

1999-02-20 Thread Paulo Silva

Sorry,

I have promissed to write yesterday, but I completly forgot. Here goes 
my awe64 setup information.

I tried to play some .wav files (with xwave) and they played well. So
I am suposing everything is working OK. If this is not the case I
would appreciate if some one calls my attention.

cat /proc/sound gives:

---

leia:/home/rsilva# cat /proc/sound 
OSS/Free:3.8s2++-971130
Load type: Driver loaded as a module
Kernel: Linux leia 2.2.1 #1 Sun Feb 14 22:16:07 EST 1999 i586
Config options: 0

Installed drivers: 

Card config: 

Audio devices:
0: Sound Blaster 16 (4.16) (DUPLEX)

Synth devices:
0: AWE32-0.4.3 (RAM512k)

Midi devices:
0: Sound Blaster 16
1: AWE Midi Emu

Timers:
0: System clock

Mixers:
0: Sound Blaster

---

To get this I used the following setup in the kernel 2.2.1 sound
configuration:

Sound Card Support: Module
OSS sound modules: Module
100% Sound Blaster compatibles (SB16/32/64, ESS, Jazz16) support: Module
Generic OPL2/OPL3 FM synthesizer support: Module
FM synthesizer (YM3812/OPL-3) support: Moudule
Additional low level sound drivers: Yes
AWE32 synth: Module

That is all. If you have doubts you can read the file 
  your linux source directory/Documentation/sound/AWE32
That is where I got the tips.


You have also to give information to reload the module and what are
the irq's, dma's and i/o's ports of your card. The resr of this
information is Debian only, I guess. Create an file in /etc/modutils 
called awe32 with the following content:
 

# AWE64 configuration.
alias sound sb
alias midi awe_wave
post-install awe_wave /usr/bin/sfxload /usr/share/awe32/synthgm.sbk
options sb io=0x220 irq=5 dma=1 dma16=5 mpu_io=0x330
---

Surely you must change the path of the synthgm.sbk file above to a
proper location on your system and  give the right resources in the
options line, they must match your isapnp configurations (or the
jumpers if you don't have a pnp card).

Now run update-moudules as root to let your Debian system use the
information in this file to create start-up configuration.

The last step is to run modconf to install the modules. In the
section misc install:

awe_wave
opl3
sb
soundcore
soundlow
sound
uart401

At my system, soundcore is automatically installed when I install
sound.

That's all. If someone finds an error please advise-me. Hope that
helps and best luck for all.

Paulo.


where is `xstart'

1999-02-20 Thread homega
Hi,

I just installed WordPerfect8 and tried it as user #1:  just an error
message about the path... so, I added it to the user's path in .bash_profile
as well as to the root's path in .bash_profile;  Then I did a su, and tried
WP as root;  finally, I tried it as user #2 (though I didn't add it to the
path), and `xstart' just wouldn't start the X... so, I tried to start the X
as user #1 again... but I get:
$ startx
bash: startx: command not found

For the installation, I also installed xpm4.7 from /oldlibs, and updated
both /root/.bash_profile and /home/user#1/.bash_profile like follows:

# ~/.bash_profile: executed by bash(1) for login shells.

PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin:/opt/wp/wpbin


MOZILLA_HOME=/opt/netscape
export MOZILLA_HOME

umask 002


Why does the command `startx' not work?  (it is in /usr/X11R6/bin).

-- 
Un saludo,

Horacio
[EMAIL PROTECTED]

--
Quis custodiet ipsos custodet?
--


Problems with M1543 Super-I/O (Asus P5A)

1999-02-20 Thread Lars Steinke
Hi there,

I wonder if anybody else has problems setting the Aladdin 5 Super
I/O part of the M1543 southbridge to speeds above 38400 using 
setserial ?

Whenever I set spd_vhi the modem will not respond to AT commands at 
all, it works fine with spd_normal though, yielding the usual 2.8 
KByte/sec for compressed data via 28.8k analog link. I haven't 
really tested if higher transfer rates are possible for text, I just
find it rather alarming the spd_vhi setting that used to work fine on my
old Intel TX board causes such trouble while the UART is correctly
recognized as 16550A...

Regards,
-- 
   /(__  __|\  Lars Steinke, Research Student @ 
  (\/  __)_www.fmf.uni-freiburg.de, Germany
   )   (_  /   For PGP PKey and WWW-Page finger
  /___/[EMAIL PROTECTED]


Doesn't casio-illum work with SF-5580E ?

1999-02-20 Thread Lars Steinke
Hi there,

the 2.2 version of the casio package seemingly has support for 
the Casio Illuminator series of organizers like my SF-5580E.
While communication using Casif/Win in Windoze seems to work properly, 
I can't get casio-illum to communicate with the organizer.

It would be quite helpful to know if anyone has successfully used a 
SF-5X80E with casio-illum (the SF-5x80 series seems to work according
to the casio documentation) so that I could narrow the problem down to
serial communication...

The debug file is empty when using -d 3 so I don't have a single clue 
what's going wrong. This both applies for the Debian package and a
self-compiled illum binary...

Regards,
-- 
   /(__  __|\  Lars Steinke, Research Student @ 
  (\/  __)_www.fmf.uni-freiburg.de, Germany
   )   (_  /   For PGP PKey and WWW-Page finger
  /___/[EMAIL PROTECTED]


VGA fonts on X

1999-02-20 Thread keyoz
is it possible to use vga fonts on an Xterm?

if it is, how?

TIA

k e c h i e


[SOLVED] where is `xstart'

1999-02-20 Thread homega
Please, ignore my earlier message, I put /usr/X11R6/bin in my path instead
of /usr/bin/X11 as I should.

My apologies


[EMAIL PROTECTED] dixit:
 Hi,
 
 I just installed WordPerfect8 and tried it as user #1:  just an error
 message about the path... so, I added it to the user's path in .bash_profile
 as well as to the root's path in .bash_profile;  Then I did a su, and tried
 WP as root;  finally, I tried it as user #2 (though I didn't add it to the
 path), and `xstart' just wouldn't start the X... so, I tried to start the X
 as user #1 again... but I get:
 $ startx
 bash: startx: command not found
 
 For the installation, I also installed xpm4.7 from /oldlibs, and updated
 both /root/.bash_profile and /home/user#1/.bash_profile like follows:
 
 # ~/.bash_profile: executed by bash(1) for login shells.
 
 PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/usr/X11R6/bin:/opt/wp/wpbin
 
 
 MOZILLA_HOME=/opt/netscape
 export MOZILLA_HOME
 
 umask 002
 
 
 Why does the command `startx' not work?  (it is in /usr/X11R6/bin).
 
 -- 
 Un saludo,
 
 Horacio
 [EMAIL PROTECTED]
 
 --
 Quis custodiet ipsos custodet?
 --
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null

-- 
Un saludo,

Horacio
[EMAIL PROTECTED]

--
Quis custodiet ipsos custodet?
--


Re: Web email packages question

1999-02-20 Thread Randy Edwards
 What packages are available that would allow me to get
 to my email from the web server on my system?

   Run -- don't walk! -- to http://www.tdyc.com/~rkrusty/Debian/ and grab Ivan
Moore's IMP setup.  When I did an overview of all the web-based systems IMP
stood out as at least one of the best, if not the best of the bunch.  Ivan has
a really slick deb created of it.

-- 
 Regards,   | Windows 98: n. minor bug-fix/patch release of 32-bit
 .  | extensions and a graphical shell for a 16-bit patch to
 Randy  | an 8-bit operating system originally coded for a 4-bit 
| microprocessor, written by a 2-bit company that can't 
| stand for 1 bit of competition.


Re: pine mutt

1999-02-20 Thread Johann Spies
On Fri, 19 Feb 1999, Shao Zhang wrote:


   So, do you think it is worth switching to mutt? Is it better in
 terms of supporting mutiple folders??

I have used pine for quite a few years and tried out mutt for a few weeks
last year - just to return to pine.  I do not like mutt.  Maybe I could
not get used to its different way of doing things.  I also had some
problems using mutt to send mail to a lot of people at once.  Pine's way
of handling the addressbook and aliases works better for me.

Johann
 --
| Johann Spies Windsorlaan 19  |
| [EMAIL PROTECTED]3201 Pietermaritzburg |
| Tel/Faks Nr. +27 331-46-1310 Suid-Afrika (South Africa)  |
 --

 For the Lord himself shall descend from heaven with a 
  shout, with the voice of the archangel, and with the 
  trump of God; and the dead in Christ shall rise first;
  Then we which are alive and remain shall be caught up 
  together with them in the clouds, to meet the Lord in 
  the air; and so shall we ever be with the Lord.  
  I Thessalonians 4:16,17 


Re: Make postscipt files use less pages?

1999-02-20 Thread Johann Spies
On Sat, 20 Feb 1999, M.C. Vernon wrote:

 Dear all,
 
   Is it possible to make postscipt files print out with two
 postscript pages fitting onto one physical page (or is there an option in
 ghostview for this?), please? 350 pages of hurd manual could do with being
 shrunk before I use _all_ my paper up

I use the following script to create a file that will make a booklet of a5
size by printing two pages landscape on a4 paper.  

psbook $1 | psnup -pa4 -l -nup 2  /tmp/psboekie.ps

This wil print 8 pages on for like this

1 8
2 7
3 6
4 5

It will not work for 350 pages. You can have a look at psnup, psselect and
psbook. 

Johann
 --
| Johann Spies Windsorlaan 19  |
| [EMAIL PROTECTED]3201 Pietermaritzburg |
| Tel/Faks Nr. +27 331-46-1310 Suid-Afrika (South Africa)  |
 --

 For the Lord himself shall descend from heaven with a 
  shout, with the voice of the archangel, and with the 
  trump of God; and the dead in Christ shall rise first;
  Then we which are alive and remain shall be caught up 
  together with them in the clouds, to meet the Lord in 
  the air; and so shall we ever be with the Lord.  
  I Thessalonians 4:16,17 


Mpg/Dat viewer

1999-02-20 Thread Aamir M. Gabaji




Sir,
I am in badly in need of a DOS based MPG or DAT file 
player.
What I actually mean is to play the file from command line 
without any playback controls in full screen.


Re: where is the ipfwadm stuff by default?

1999-02-20 Thread wtopa

Subject: where is the ipfwadm stuff by default?
Date: Fri, Feb 19, 1999 at 11:26:07PM -

In reply to:Pollywog

Quoting Pollywog([EMAIL PROTECTED]):
 
 I have a couple of ipfwadm rules in effect that I did not add.  That means
 that the default installation has rules someplace.  Does anyone know where I
 can find them?  Perhaps I should put all my rules in the same place.
 
 thanks

rgrep ipfwadm /mnt/etc/*


-- 
To the systems programmer, users and applications serve only to provide
a test load.
___
Wayne T. Topa [EMAIL PROTECTED]


Re: Make postscipt files use less pages?

1999-02-20 Thread wtopa

Subject: Make postscipt files use less pages?
Date: Sat, Feb 20, 1999 at 07:12:07AM +

In reply to:M.C. Vernon

Quoting M.C. Vernon([EMAIL PROTECTED]):
 
 Dear all,
 
   Is it possible to make postscipt files print out with two
 postscript pages fitting onto one physical page (or is there an option in
 ghostview for this?), please? 350 pages of hurd manual could do with being
 shrunk before I use _all_ my paper up
 
 Thanks,
 
 Matthew
 
Look at the man pages for a2ps, enscript, psresize, and psselect.

With combinations of the above I have scripts that Allow any file (ps,
gz,etc) to print as 1 page, 2 pages 1 side, 2 pages both sides, 4
pages one side and 4 pages - both sides ( Man pages look great this
way).  I have never cleaned them up (the scripts) so won't post them
but if anyone wants I will e-mail them.

-- 
___
Wayne T. Topa [EMAIL PROTECTED]


Re: Multi IP's on interface

1999-02-20 Thread John Hasler
Bill Bell writes:
 I want to get to the management utility on the bridge without
 broadcasting the bridges management IP on the Internet.

Why do you think your bridge will do this?
-- 
John Hasler
[EMAIL PROTECTED] (John Hasler)
Dancing Horse Hill
Elmwood, WI


Smail - Exim: If smail works, why change?

1999-02-20 Thread Jim Foltz
Is there any compelling reason to switch from smail to exim?


-- 
   Jim Foltz   [EMAIL PROTECTED]
ACORN techie   http://www.acorn.net
  AOL/IM   jim_foltz


Re: where is the ipfwadm stuff by default?

1999-02-20 Thread wtopa

Subject: Re: where is the ipfwadm stuff by default?
Date: Sat, Feb 20, 1999 at 10:53:30AM +

In reply to:[EMAIL PROTECTED]

Quoting [EMAIL PROTECTED]([EMAIL PROTECTED]):
 
 
   Subject: where is the ipfwadm stuff by default?
   Date: Fri, Feb 19, 1999 at 11:26:07PM -
 
 In reply to:Pollywog
 
 Quoting Pollywog([EMAIL PROTECTED]):
  
  I have a couple of ipfwadm rules in effect that I did not add.  That means
  that the default installation has rules someplace.  Does anyone know where I
  can find them?  Perhaps I should put all my rules in the same place.
  
  thanks
 
 rgrep ipfwadm /mnt/etc/*
 

Woops, I was on slackware when I did that, sorry

rgrep ipfwadm /etc/*

But you knew that, didn't you?

-- 
Man is the best computer we can put aboard a spacecraft ... and the
only one that can be mass produced with unskilled labor.
-- Wernher von Braun
___
Wayne T. Topa [EMAIL PROTECTED]


Re: where is the ipfwadm stuff by default?

1999-02-20 Thread Pollywog

On 20-Feb-99 [EMAIL PROTECTED] wrote:
 Woops, I was on slackware when I did that, sorry
 
 rgrep ipfwadm /etc/*

oic   Thanks.

--
Andrew


Re: where is the ipfwadm stuff by default?

1999-02-20 Thread Pollywog

On 20-Feb-99 [EMAIL PROTECTED] wrote:
 
   Subject: where is the ipfwadm stuff by default?
   Date: Fri, Feb 19, 1999 at 11:26:07PM -
 
 In reply to:Pollywog
 
 Quoting Pollywog([EMAIL PROTECTED]):
 
 I have a couple of ipfwadm rules in effect that I did not add.  That means
 that the default installation has rules someplace.  Does anyone know where
 I
 can find them?  Perhaps I should put all my rules in the same place.
 
 thanks
 
 rgrep ipfwadm /mnt/etc/*

u   What will that do?

--
Andrew


need help w/ SSLeay

1999-02-20 Thread Shaleh
Hi, I am using SSLeay and apache (or will be once it works).  I use Verisign as
my key provider.  They just sent me a new cert.  How do I use it?


ip-up question

1999-02-20 Thread Pollywog
My /etc/ppp/ip-up does not appear to be working.  Am I correct in assuming
that in Debian, ip-up won't work unless it is placed in /etc/ppp/ip-up.d ?
I want to start fetchmail when I go online and I believe that is where my
script needs to be placed.

thanks

--
Andrew


wxPython on debian?

1999-02-20 Thread Johann Spies
I want to start experimenting with wxwindows and wxpython in order to
write cross-platform applications.  I did install wxgtk2_1.96-1.deb, but
could not do anything usefull with it.  I could not get wxpython to
compile due to missing header files.  So I removed it.

According to some people using wxpython I should get wxGTK2.  1.96 is too
old.  I could not find a debian package and did download wxGTK2b5.tgz
which depends on gtk+-1.0.6 so I downloaded a Slackware package named
gtk+-1.0.6.tar.bz2.  Now I do not know my way forward.  

I have installed on my system (hamm with some slink and potato packages)
gimp and do not want to get it broken.

It seems that debian is far behind on the availability for these kind of
packages.  Can somebody give advice on my way forward.

Johann
 --
| Johann Spies Windsorlaan 19  |
| [EMAIL PROTECTED]3201 Pietermaritzburg |
| Tel/Faks Nr. +27 331-46-1310 Suid-Afrika (South Africa)  |
 --

 For the Lord himself shall descend from heaven with a 
  shout, with the voice of the archangel, and with the 
  trump of God; and the dead in Christ shall rise first;
  Then we which are alive and remain shall be caught up 
  together with them in the clouds, to meet the Lord in 
  the air; and so shall we ever be with the Lord.  
  I Thessalonians 4:16,17 


RE: ip-up question

1999-02-20 Thread Shaleh

On 20-Feb-99 Pollywog wrote:
 My /etc/ppp/ip-up does not appear to be working.  Am I correct in assuming
 that in Debian, ip-up won't work unless it is placed in /etc/ppp/ip-up.d ?
 I want to start fetchmail when I go online and I believe that is where my
 script needs to be placed.
 

Any script in /etc/ppp/ip-{up,down}.d is run when the link goes {up,down}.  The
file ip-{up,down} is also run (I think before the scripts in the
ip-{up,down}.d).

They will NOT output to stdout, stderr or the like.


RE: ip-up question

1999-02-20 Thread Pollywog

On 20-Feb-99 Pollywog wrote:
 My /etc/ppp/ip-up does not appear to be working.  Am I correct in assuming
 that in Debian, ip-up won't work unless it is placed in /etc/ppp/ip-up.d ?
 I want to start fetchmail when I go online and I believe that is where my
 script needs to be placed.

I think I figured it out.  I cannot use my old script from another distro and
I need to use the one Debian provided, which states that my scripts should go
in /etc/ppp/ip-up.d

--
Andrew


Re: WindowMaker themes - Debian packages

1999-02-20 Thread servis
*- On 20 Feb, Christian Lavoie wrote about Re: WindowMaker themes - Debian 
packages
 In article [EMAIL PROTECTED],
 Daniel Burrows [EMAIL PROTECTED] wrote:
 
   Hi.  Over the weekend, I wrote a script that converts WindowMaker 
 themes to
 Debian packages automatically. (the themes have to follow wm.t.o's 
 packaging
 policy).  I think it would be useful for other Debian users but I 
 don't really
 know what to do with it.
 
 Wooo another one! Diversity is strength...
 
 I've done one as well, although it doesn't do downloading and other
 features... I've also got a GTK theme convertor for gtk.themes.org...
 
 I'm intending to package them once my maintainer status is cleared-
 but that'll be after slink arrives, at a guess...
 
 http://www.arise.demon.co.uk/debian/ for anyone interested (.deb and
 .dsc/.tar.gz).
 
 I wonder... Could/Should this be a part of apt, as a method?
 
 Apt-get install-theme-wm mytheme
 
 What you guys think?
 

I think the best solution would be something like the kernel-package
package that takes a common formated tree, such as the themes from
*.themes.org and creates a Debian packages out of it.  This will save
space on the main archive and allow for the latest theme to be added to
the system without having to wait for a maintainer to upload it to the
archive.  Just grab what ever one you want and build your own package
and install it.

-- 
Brian 
-
Never criticize anybody until you have walked a mile in their shoes,  
 because by that time you will be a mile away and have their shoes. 
   - unknown  

Mechanical Engineering[EMAIL PROTECTED]
Purdue University   http://www.ecn.purdue.edu/~servis
-


RE: wxPython on debian?

1999-02-20 Thread Shaleh
 
 It seems that debian is far behind on the availability for these kind of
 packages.  Can somebody give advice on my way forward.
 

The maintainer has informed me he is working on new packages.  Perhaps you
should contact him directly.

Be aware that wxPython is very new and not stable or tested.  wxGTK is just
getting to a trustworthy state but it is still changing fairly rapidly.


RE: ip-up question

1999-02-20 Thread Pollywog

On 20-Feb-99 Shaleh wrote:
 
 On 20-Feb-99 Pollywog wrote:
 My /etc/ppp/ip-up does not appear to be working.  Am I correct in assuming
 that in Debian, ip-up won't work unless it is placed in /etc/ppp/ip-up.d ?
 I want to start fetchmail when I go online and I believe that is where my
 script needs to be placed.
 
 
 Any script in /etc/ppp/ip-{up,down}.d is run when the link goes {up,down}. 
 The
 file ip-{up,down} is also run (I think before the scripts in the
 ip-{up,down}.d).
 
 They will NOT output to stdout, stderr or the like.

thanks
I did not even notice until this morning that something was wrong.


--
Andrew


Re: ip-up question

1999-02-20 Thread Marc Haber
On Sat, 20 Feb 1999 13:11:40 -0500 (EST), you wrote:
Any script in /etc/ppp/ip-{up,down}.d is run when the link goes {up,down}.  The
file ip-{up,down} is also run (I think before the scripts in the
ip-{up,down}.d).

Actually, /etc/ppp/ip-{up|down} are furnished by Debian and explicitly
include run-parts ip-{up|down}.d.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber  |Questions are the | Mailadresse im Header
Karlsruhe, Germany  | Beginning of Wisdom  | Fon: *49 721 966 32 15
Nordisch by Nature  | Lt. Worf, TNG Rightful Heir | Fax: *49 721 966 31 29


XFree86 3.3.3.1 packaged.

1999-02-20 Thread Vincent Renardias

'lo,

If you feel bored this WE or happen to have one of those gfx cards
supported only in the most recents XFree86 releases, you may want to try
my 3.3.3.1 packages.
They're accessible on: http://master.debian.org/~vincent/xfree-3.3.3.1/

Notes:
- Based on the Debian changes from 3.3.2.3a-10 and upstream 3.3.3.1
sources.
- One new binary package produced: xserver-glint; boards supported: GLINT
500TX with IBM RGB526 RAMDAC, GLINT MX with IBM RGB526 and IBM
RGB640 RAMDAC, Permedia with IBM RGB526 RAMDAC and Permedia 2
(classic, 2a, 2v).
- Takes ~1.5h to build on my Celeron 385 ;)
- These are _not_ the 3.3.3.1 official packages. Branden should make
them in a while.
- These packages WorkForMe(tm), but I haven't tested them too much. If you
have problems/questions about them, please report to me directly.


Cordialement,

-- 
- Vincent RENARDIAS  [EMAIL PROTECTED],pipo}.com,{debian,openhardware}.org} -
- Debian/GNU Linux:   http://www.openhardware.orgLogiciels du soleil: -
- http://www.fr.debian.orgOpen Hardware: http://www.ldsol.com -
---
-Microsoft est à l'informatique ce que le grumeau est à la crépe... -


Re: ip-up question

1999-02-20 Thread keyoz
On Sat, 20 Feb 1999, Pollywog wrote:

there's an example in /usr/doc/fetchmail

 My /etc/ppp/ip-up does not appear to be working.  Am I correct in assuming
 that in Debian, ip-up won't work unless it is placed in /etc/ppp/ip-up.d ?
 I want to start fetchmail when I go online and I believe that is where my
 script needs to be placed.

/etc/ppp/ip-up.d is where you put scripts whenever you go online e.g tell
wwwoffle that your box is up send queued emails

k e c h i e

It's now safe to turn off your computer means computing was unsafe
while running that OS.  -- m e


Re: WindowMaker themes - Debian packages

1999-02-20 Thread Ed Cogburn
Christian Lavoie wrote:
 
  In article [EMAIL PROTECTED],
  Daniel Burrows [EMAIL PROTECTED] wrote:
 
Hi.  Over the weekend, I wrote a script that converts WindowMaker
 themes to
  Debian packages automatically. (the themes have to follow wm.t.o's
 packaging
  policy).  I think it would be useful for other Debian users but I
 don't really
  know what to do with it.
 
  Wooo another one! Diversity is strength...
 
  I've done one as well, although it doesn't do downloading and other
  features... I've also got a GTK theme convertor for gtk.themes.org...
 
  I'm intending to package them once my maintainer status is cleared-
  but that'll be after slink arrives, at a guess...
 
  http://www.arise.demon.co.uk/debian/ for anyone interested (.deb and
  .dsc/.tar.gz).
 
 I wonder... Could/Should this be a part of apt, as a method?
 
 Apt-get install-theme-wm mytheme
 
 What you guys think?


I don't think its 'fair' to customize apt for one program
(wmaker) and not other programs.  Generally, apt is going to get
more complex as time goes on (i.e. GUI interface), so adding this
kind of special-purpose complexity is not a good idea.


-- 
Ed C.


Re: where is the ipfwadm stuff by default?

1999-02-20 Thread wtopa

Subject: Re: where is the ipfwadm stuff by default?
Date: Sat, Feb 20, 1999 at 05:44:56PM -

In reply to:Pollywog

Quoting Pollywog([EMAIL PROTECTED]):
 
 
 On 20-Feb-99 [EMAIL PROTECTED] wrote:
  
Subject: where is the ipfwadm stuff by default?
Date: Fri, Feb 19, 1999 at 11:26:07PM -
  
  In reply to:Pollywog
  
  Quoting Pollywog([EMAIL PROTECTED]):
  
  I have a couple of ipfwadm rules in effect that I did not add.  That means
  that the default installation has rules someplace.  Does anyone know where
  I
  can find them?  Perhaps I should put all my rules in the same place.
  
  thanks
  
  rgrep ipfwadm /mnt/etc/*
 
 u   What will that do?
 
 --
 Andrew

It would show what files contain ipfwadm on the distribution you had
mounted the root partition on /mnt.  Which is what I had done to
answer your question.  I had mounted slink / on /mnt.

I had hoped you could figure that one out.  Sorry to have further
confused you.


-- 
This sentence contradicts itself -- no actually it doesn't.
-- Hofstadter
___
Wayne T. Topa [EMAIL PROTECTED]


Need help with new cable modem

1999-02-20 Thread Matt Campbell
Help!

As of about 8 pm tonight I will have a brand spanking new cable modem 
connection to the internet.  However, at this point it looks like it 
might only work for Windows 95, and this sucks.  Is there anyone out 
there on the @Home network who might be able to help me configure my 
linux box to use it?

I can tell already I have several issues to address:

1) Find a driver for the plug-n-pray PCI ethernet controller they 
installed. (Realtek RTL8029 - a really really generic card, the box 
doesn't even have the manufacturers name on it)

2) Configure a DHCP client.  Also, in relation to this, I may need to 
change my hostname to that beastly thing they assigned me... ugh

3) Pray to God.  (Or gods, or goddesses, depending on religious 
inclination)

So, can anyone give me any pointers?

__
Get Your Private, Free Email at http://www.hotmail.com


rsync usage with ftp.debian.org ?

1999-02-20 Thread Pierfrancesco Caci

Does someone have a sample command line to use with ftp.debian.org?
I've never used rsync before and starting with something that is known
to work would be better than starting from scratch

Pf



-- 

---
 Pierfrancesco Caci  | mailto:[EMAIL PROTECTED] - http://gusp.infogroup.it
   ik5pvx| http://www.geocities.com/SoHo/Lofts/8999
  Firenze - Italia   | Office for the Complication of Otherwise Simple Affairs 
 Linux penny 2.2.1 #1 Sun Feb 14 21:32:41 CET 1999 i586 unknown


RE: Need help with new cable modem

1999-02-20 Thread Shaleh
 
 1) Find a driver for the plug-n-pray PCI ethernet controller they 
 installed. (Realtek RTL8029 - a really really generic card, the box 
 doesn't even have the manufacturers name on it)

Supported in the 2.2 series if I recall

 
 2) Configure a DHCP client.  Also, in relation to this, I may need to 
 change my hostname to that beastly thing they assigned me... ugh
 

Just install dhcp package -- no config needed.  As to the hostname.  Just set
the hostname on your local ethernet rather than over the global one.  To you
and other machines at home you are Home, over the net you are
qwe123-cable

 3) Pray to God.  (Or gods, or goddesses, depending on religious 
 inclination)
 

We like to sacrifice NT machines at work, but as you wish (-:


Re: not a plain file - apt install with dselect

1999-02-20 Thread John Stevenson
I guess we are better off using Imperial college in london that
manchester.  I now use src.doc.ic.ac.uk/packages/Linux/debian
and have had no problems.

David Wright wrote:
 
 Quoting John Stevenson ([EMAIL PROTECTED]):
 [...]
  I am installing the frozen distribution from ftp.mcc.ac.uk using
  the apt method of dselect.  I installed apt via the instructions
  in the updatepackages/Readme file on the ftp site.
 
  I have 95% of the packages installed, however it seems that apt
  wont install the files its fetched untill it has all of them.  I
  can understand this.  However apt is having problems getting a
  few of the files.  See the error message below.
 
  Is there a problem with apt, the ftp site or my installation?
  Any clues ??
 
 This is what I sent to mcc.ac.uk back in August last year.
 I got no reply.
 
 --8
 
  Date: Fri, 28 Aug 1998 15:26:13 +0100
  To: [EMAIL PROTECTED]
  Subject: ftp.mcc.ac.uk oddities
 
 I've emailed this address because the file ftp://ftp.mcc.ac.uk/.message
 says that if I have problems, I should email %E [sic].
 
 I use the ftp.mcc.ac.uk server to download from the
 /pub/linux/distributions/Debian tree. Over recent weeks, I seem to
 have problems with parts of the tree suddenly disappearing. My
 client freezes up, and if I kill it and reconnect, chunks of the
 tree are missing, but they usually return after a few minutes if
 I keep re-listing the directory. Am I alone here?
 
 For example, just a few minutes ago, I could only see the READMEs
 and /hamm in /pub/linux/distributions/Debian, but everything is
 back now.
 
 --8
 
 Cheers,
 
 --
 Email:  [EMAIL PROTECTED]   Tel: +44 1908 653 739  Fax: +44 1908 655 151
 Snail:  David Wright, Earth Science Dept., Milton Keynes, England, MK7 6AA
 Disclaimer:   These addresses are only for reaching me, and do not signify
 official stationery. Views expressed here are either my own or plagiarised.


Re: USER and LOGNAME environment settings

1999-02-20 Thread Patrik Hagglund
I don't know if Debian has some special policy for this; but as
far as I know: on a general UNIX box is USER is set by csh (and
tcsh), and LOGNAME is set by login.

--
Patrik Hägglund


Re: XFree86 3.3.3.1 packaged.

1999-02-20 Thread Brian Almeida
On Sat, Feb 20, 1999 at 07:37:21PM +0100, Vincent Renardias wrote:
 If you feel bored this WE or happen to have one of those gfx cards
 supported only in the most recents XFree86 releases, you may want to try
 my 3.3.3.1 packages.
 They're accessible on: http://master.debian.org/~vincent/xfree-3.3.3.1/
 
 Notes:
 - Based on the Debian changes from 3.3.2.3a-10 and upstream 3.3.3.1
   sources.
 - One new binary package produced: xserver-glint; boards supported: GLINT
   500TX with IBM RGB526 RAMDAC, GLINT MX with IBM RGB526 and IBM
   RGB640 RAMDAC, Permedia with IBM RGB526 RAMDAC and Permedia 2
   (classic, 2a, 2v).
 - Takes ~1.5h to build on my Celeron 385 ;)
 - These are _not_ the 3.3.3.1 official packages. Branden should make
   them in a while.
 - These packages WorkForMe(tm), but I haven't tested them too much. If you
   have problems/questions about them, please report to me directly.
I'd appreciate it if you could make a build with the patch included at
http://www.debian.org/bugs/31827, so I can test it and let branden know if it
works.  It's only about a 100 line patch and applies cleanly to the 3.3.3.1
source tree.  patch it from xfree86-3.3.3.1 with
cat foo.patch |patch -p2

Thanks!


Re: Need help with new cable modem

1999-02-20 Thread servis
*- On 20 Feb, Matt Campbell wrote about Need help with new cable modem
 Help!
 
 As of about 8 pm tonight I will have a brand spanking new cable modem 
 connection to the internet.  However, at this point it looks like it 
 might only work for Windows 95, and this sucks.  Is there anyone out 
 there on the @Home network who might be able to help me configure my 
 linux box to use it?
 
 I can tell already I have several issues to address:
 
 1) Find a driver for the plug-n-pray PCI ethernet controller they 
 installed. (Realtek RTL8029 - a really really generic card, the box 
 doesn't even have the manufacturers name on it)

This is usually called a 'white box' version of a product and is used
by distributers and such,  it doesn't have the retail packaging and
extras and is thus usually costs less.

 
 2) Configure a DHCP client.  Also, in relation to this, I may need to 
 change my hostname to that beastly thing they assigned me... ugh
 
 3) Pray to God.  (Or gods, or goddesses, depending on religious 
 inclination)
 
 So, can anyone give me any pointers?
 
 __
 Get Your Private, Free Email at http://www.hotmail.com
 
 

I have no experience here but have you read the cable-modem mini howto
and the dhcp mini howto?  They might give you some info.

http://metalab.unc.edu/LDP/HOWTO/mini/Cable-Modem.html
http://metalab.unc.edu/LDP/HOWTO/mini/DHCP.html

I think the key thing for the NIC is to disable the PNP mode of it. 
Usually this is done with a DOS program.  If you cable company didn't
give you one then you will have to find one on the web or ask them for
one.

-- 
Brian 
-
Never criticize anybody until you have walked a mile in their shoes,  
 because by that time you will be a mile away and have their shoes. 
   - unknown  

Mechanical Engineering[EMAIL PROTECTED]
Purdue University   http://www.ecn.purdue.edu/~servis
-


Re: Need help with new cable modem

1999-02-20 Thread Bob Nielsen
On Sat, 20 Feb 1999, Matt Campbell wrote:

 Help!
 
 As of about 8 pm tonight I will have a brand spanking new cable modem 
 connection to the internet.  However, at this point it looks like it 
 might only work for Windows 95, and this sucks.  Is there anyone out 
 there on the @Home network who might be able to help me configure my 
 linux box to use it?
 
 I can tell already I have several issues to address:
 
 1) Find a driver for the plug-n-pray PCI ethernet controller they 
 installed. (Realtek RTL8029 - a really really generic card, the box 
 doesn't even have the manufacturers name on it)

It's a ne2000 clone.  

This is supported in the recent (~2.0.34) kernels.  I used the ISA ne2000
driver with earlier kernels with no problems).

Bob


Bob Nielsen Internet: [EMAIL PROTECTED]
Tucson, AZ  AMPRnet:  [EMAIL PROTECTED]
DM42nh  http://www.primenet.com/~nielsen


Re: Mitsumi FX001D CD-ROM drv. Need help...

1999-02-20 Thread Torsten Hilbrich
Larry Shields WD9ESU [EMAIL PROTECTED] writes:

 I am hopeing that someone that also has a CD-ROM drive the FX001D
 can help me out here, in configuring the cd-rom drive, so that when
 at bootup it will be mounted...
 
 If I boot right from the linux floppy disk, when it gets to the
 point of mounting my CD-ROM drive I get this:
 
 MCD=0X360,11: init Failed. No mcd device at 0x360 irq 11

Please try the mcdx driver instead, it worked when my brother tested
Debian with the same drive.  You can find more information on this
driver in /usr/src/linux/Documentation/cdrom/mcdx.

Torsten

-- 
Homepage: http://www.in-berlin.de/User/myrkr


Re: not a plain file - apt install with dselect

1999-02-20 Thread Ted Harding
I'm not sure that [EMAIL PROTECTED] is best for you to bother
about this. I've forwarded this correspondence to the person who
probably is best.

Ted.

On 20-Feb-99 John Stevenson wrote:
 I guess we are better off using Imperial college in london that
 manchester.  I now use src.doc.ic.ac.uk/packages/Linux/debian
 and have had no problems.
 
 David Wright wrote:
 
 Quoting John Stevenson ([EMAIL PROTECTED]):
 [...]
  I am installing the frozen distribution from ftp.mcc.ac.uk using
  the apt method of dselect.  I installed apt via the instructions
  in the updatepackages/Readme file on the ftp site.
 
  I have 95% of the packages installed, however it seems that apt
  wont install the files its fetched untill it has all of them.  I
  can understand this.  However apt is having problems getting a
  few of the files.  See the error message below.
 
  Is there a problem with apt, the ftp site or my installation?
  Any clues ??
 
 This is what I sent to mcc.ac.uk back in August last year.
 I got no reply.
 
 --8
 
  Date: Fri, 28 Aug 1998 15:26:13 +0100
  To: [EMAIL PROTECTED]
  Subject: ftp.mcc.ac.uk oddities
 
 I've emailed this address because the file
 ftp://ftp.mcc.ac.uk/.message
 says that if I have problems, I should email %E [sic].
 
 I use the ftp.mcc.ac.uk server to download from the
 /pub/linux/distributions/Debian tree. Over recent weeks, I seem to
 have problems with parts of the tree suddenly disappearing. My
 client freezes up, and if I kill it and reconnect, chunks of the
 tree are missing, but they usually return after a few minutes if
 I keep re-listing the directory. Am I alone here?
 
 For example, just a few minutes ago, I could only see the READMEs
 and /hamm in /pub/linux/distributions/Debian, but everything is
 back now.
 
 --8
 
 Cheers,
 
 --
 Email:  [EMAIL PROTECTED]   Tel: +44 1908 653 739  Fax: +44 1908 655
 151
 Snail:  David Wright, Earth Science Dept., Milton Keynes, England, MK7
 6AA
 Disclaimer:   These addresses are only for reaching me, and do not
 signify
 official stationery. Views expressed here are either my own or
 plagiarised.
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]
  /dev/null
 


E-Mail: (Ted Harding) [EMAIL PROTECTED]
Date: 20-Feb-99   Time: 19:50:43
-- XFMail --


Re: [OFFTOPIC] Compiling a program error

1999-02-20 Thread Patrik Hagglund
The compiler is unable to find __eh_pc used by the file
WindowManager.cpp (?) in the library. You have to debug this
yourself.

--
Patrik Hägglund
 


Re: Need help with new cable modem

1999-02-20 Thread servis
*- On 20 Feb, Matt Campbell wrote about Need help with new cable modem
 1) Find a driver for the plug-n-pray PCI ethernet controller they 
 installed. (Realtek RTL8029 - a really really generic card, the box 
 doesn't even have the manufacturers name on it)

A quick search on Realtek's site(http://www.realtek.com.tw) seems to
indicate that it is an NE2000 combatible card so just recompile the
kernel for NE2000 support.  They also provide Linux drivers but I would
not use those unless as a last resort, chances are the driver is
already in the kernel.  The site also has the config utility to run
under a clean(no windows) DOS season to configure the card.  Use that
to disable PNP,
ftp://ftp.realtek.com.tw/LANCARD/drivers/8029/RSET8029.EXE.

Have fun,

-- 
Brian 
-
Never criticize anybody until you have walked a mile in their shoes,  
 because by that time you will be a mile away and have their shoes. 
   - unknown  

Mechanical Engineering[EMAIL PROTECTED]
Purdue University   http://www.ecn.purdue.edu/~servis
-


Re: pine mutt

1999-02-20 Thread Frederick Page
On Sat, Feb 20, 1999 at 11:05:56AM +0200, Johann Spies wrote:

problems using mutt to send mail to a lot of people at once.  Pine's way
of handling the addressbook and aliases works better for me.

It's the other way around here: I used Pine for email and news, was
content about the way it handled email, but it sucked for news. And it
did not have color, which is very helpful (for me).

Now I use mutt and tin and am quite happy with both.

Kind regards

Frederick

-- 
Linux *is* user-friendly.
It's just a little picky about it's friends.


Re: Smail - Exim: If smail works, why change?

1999-02-20 Thread Frederick Page
On Sat, Feb 20, 1999 at 11:54:31AM -0500, Jim Foltz wrote:

Hi Jim,

Is there any compelling reason to switch from smail to exim?

How about this:

Ease of configuration with Exim, and Procmail (with it's cryptic
recipes) becomes obsolute, because Exim has already very powerful
filtering capabilities in kind of a basic language. 
There's also an Exim-monitor (for X)

Example for filtering with exim:

#  take care of mailing list debian-user
if
   $header_X-Mailing-List contains debian-user@lists.debian.org
then
   save $home/mail/debian-user
   finish
endif

# Save all non-urgent messages by weekday:
if 
   $header_subject: does not contain urgent  AND
   $tod_full matches ^(...), 
then
   save $home/mail/$1
endif

Convinced? :-)

Kind regardsFrederick

-- 
Linux *is* user-friendly.
It's just a little picky about it's friends.


Re: XFree86 3.3.3.1 packaged.

1999-02-20 Thread John Goerzen
Is this built with the Sparc and Alpha patches, so those of us not on
x86 can try it out too?

Thanks,
John

Vincent Renardias [EMAIL PROTECTED] writes:

 'lo,

 If you feel bored this WE or happen to have one of those gfx cards
 supported only in the most recents XFree86 releases, you may want to try
 my 3.3.3.1 packages.
 They're accessible on: http://master.debian.org/~vincent/xfree-3.3.3.1/

 Notes:
 - Based on the Debian changes from 3.3.2.3a-10 and upstream 3.3.3.1
   sources.
 - One new binary package produced: xserver-glint; boards supported: GLINT
   500TX with IBM RGB526 RAMDAC, GLINT MX with IBM RGB526 and IBM
   RGB640 RAMDAC, Permedia with IBM RGB526 RAMDAC and Permedia 2
   (classic, 2a, 2v).
 - Takes ~1.5h to build on my Celeron 385 ;)
 - These are _not_ the 3.3.3.1 official packages. Branden should make
   them in a while.
 - These packages WorkForMe(tm), but I haven't tested them too much. If you
   have problems/questions about them, please report to me directly.


   Cordialement,

 --
 - Vincent RENARDIAS  [EMAIL PROTECTED],pipo}.com,{debian,openhardware}.org} -
 - Debian/GNU Linux:   http://www.openhardware.orgLogiciels du soleil: -
 - http://www.fr.debian.orgOpen Hardware: http://www.ldsol.com -
 ---
 -Microsoft est à l'informatique ce que le grumeau est à la crépe... -


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


Re: Compiling a program error

1999-02-20 Thread Patrik Hagglund
Oh, sorry, your problem seams to be an compiler installation
problem.

A search for __eh_pc gives the following URL:
http://www.cygnus.com/ml/egcs/1998-Oct/0119.html with the
following quote:

 My guess is that you're mixing new compilers and old libraries.
 You probably have an old libgcc.a somewhere that it's finding.
 Use gcc -v to see the exact linker line generated so you can see
 the search paths.

--
Patrik Hägglund



Anyone in Boston? [Off-topic]

1999-02-20 Thread homega
My apologies for this off-topic, but I need some info from Boston.

My sister is staying in Boston for a couple of terms and she would like to
get a second-hand laptop for herself.  I'd too like to take advantage on her
staying and get some components for myself.

If there's anyone from Boston who can give me some info, please do write to
me in private.

TIA

-- 
Un saludo,

Horacio
[EMAIL PROTECTED]

--
Quis custodiet ipsos custodet?
--


Re: pine mutt

1999-02-20 Thread Steve Willer

On Sat, 20 Feb 1999, Frederick Page wrote:

 It's the other way around here: I used Pine for email and news, was
 content about the way it handled email, but it sucked for news. And it
 did not have color, which is very helpful (for me).

There is a patch available for Pine that gives it some color. Not as
extensive as Mutt, but it adds a nice touch.

 Now I use mutt and tin and am quite happy with both.

Sounds like mutt wasn't too good for news either.


Re: Master Boot Record

1999-02-20 Thread Nathan E Norman
On Fri, 19 Feb 1999, Odin wrote:

[ snip ]

 : is this the dd (if there is one) on the rescue floppy?  It may be a
 : stripped down version.  Perhaps someone with more C skills than I could
 : compile you a quick binary to do this without linking many (or any)
 : dynamic libraries.

dd on the rescue floppy requires STDIN and STOUT to be redirected - the
if and of options aren't supported AFAIK.

e.g. `dd  whatever.bin  /dev/fd0'

--
Nathan Norman
MidcoNet  410 South Phillips Avenue  Sioux Falls, SD
mailto:[EMAIL PROTECTED]   http://www.midco.net
finger [EMAIL PROTECTED] for PGP Key: (0xA33B86E9)



NeoMagic Card with Slink

1999-02-20 Thread John Stevenson
Hello,

Has anyone had any problems using Slink with a Neomagic video
card.  I am currently using Hamm with Precision Insights
XFCom_NeoMaic Xserver.

Now from what I have seen from slink is that a lot of changes
happen when you upgrade to slink, especially with the fonts.

My question is will the Precision Insights XFCom_NeoMaic Xserver
still work if I upgrade to slink or am I going to have to find
another solution.

Any advise would be helpful.


Re: ATAPI zip drive

1999-02-20 Thread Eric Leblanc
On Sat, Feb 20, 1999 at 09:35:03AM +0100, [EMAIL PROTECTED] wrote:
 Eric Leblanc dixit:
  On Fri, Feb 19, 1999 at 01:28:34PM -0800, Matt Campbell wrote:
   Do I need a special kernel device driver for an Iomega ATAPI Zip 100 
   drive?  Or will the regular ATAPI driver detect and handle the drive?
  
  It just need the ide-floppy drivers compiled or loaded as a modules. If
  you did compile your own kernel (2.0.36 or 2.2.1) you'll see:
  
  Include IDE/ATAPI FLOPPY support (new) (CONFIG_BLK_DEV_IDEFLOPPY) [N/y/?]
  
  (that's with 2.0.34)
 
 ¿does it really?  I never touched anything with Debian2.0 and kernel 2.0.34
 and my Iomega Zip (IDE ATAPI) works just fine.

Yes, yes it does. I think the precompiled kernel from Debian has IDEFLOPPY
support compiled in. (Well, on kernel 2.0.X, you couldn't put it as a modules
IIRC). grep IDEFLOPPY /boot/config-2.0.34 should tell you surely.


 Remember that to mount it with a DOS/windoze filesystem (secondary slave):
 mount -t vfat /dev/hdd4 /mnt
   ^
 whereas for a Linux ext2 filesystem disk:
 mount -t ext2 /dev/hdd1 /mnt
   ^
 
 Regards
 
 
 -- 
 Un saludo,
 
 Horacio
 [EMAIL PROTECTED]
 
 --
 Quis custodiet ipsos custodet?
 --
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null


Re: NeoMagic Card with Slink

1999-02-20 Thread shaleh
I use a pure Slink laptop.  Has a NeoMagic 128XD chip.  No complaints
here.


Re: pine mutt

1999-02-20 Thread Adam Lazur
Steve Willer ([EMAIL PROTECTED]) said:
  Now I use mutt and tin and am quite happy with both.
 
 Sounds like mutt wasn't too good for news either.

AFAIK mutt isn't currently meant to be a news reader. There are
patches to make it do news however, but they aren't incorporated into
the stable (Beta) release yet (I believe they're still under
development).

Anyways, I started out using pine, then went to elm, and now I'm at
mutt and can't complain at all. I'd suggest that if you're not into
editting plain text config files however, that you don't migrate to
mutt, as setting up a good .muttrc takes a little time. IMO mutt isn't
a MUA for the average user, but more for the technical types.

.adam

-- 
   Adam Lazur - Computer Engineering Undergrad - Lehigh University
  icq# 3354423 - http://www.lehigh.edu/~ajl4

The Internet is like crack for smart people -- Arsenio Hall


  1   2   >