Arrancar el Comunicator

1999-01-26 Thread José Valcarce Alonso
Hola a todos:

Me ocurre que al lanzar el netscape me da un error que es:
No puedo cargar el libXt.so.6
Debe ser que no está en el path y mi problema es que no se como
modificar el path.
Saludos. Pepe.


Re: Hola lista!!!!

1999-01-26 Thread Felipe Sanchez


On Tue, 26 Jan 1999, Juanmi Mora wrote:

 
 Creo que van por ahí van los tiros, aún arriesgándome a decir una chorrada
 lo diré, tendría que ver con la temperatura que alcanza el pentium. 
 Mira... Esta aguantando...
 

Hola Juanmi,

Yo tambien voto por esa opcion, hay que tener cuidado en el ambiente que
corren estas maquinitas. Yo trabajo con varias estaciones de trabajo de lo
mas modernas. Las estaciones mismas las tenemos en una pieza aparte con
aire acondicionado. Una vez se nos cayo el aire acondicionado y al rato
todo empezo a morir.

Felipe Sanchez
[EMAIL PROTECTED]
[EMAIL PROTECTED]



Re: Libros sobre Sendmail

1999-01-26 Thread benalb
On Mon, 25 Jan 1999, Fabrizio Trabison - Informatica wrote:

 Date: Mon, 25 Jan 1999 17:15:48 +0200
 From: Fabrizio Trabison - Informatica [EMAIL PROTECTED]
 To: debian-user-spanish@lists.debian.org
 Subject: Libros sobre Sendmail
 Resent-Date: 25 Jan 1999 16:11:40 -
 Resent-From: debian-user-spanish@lists.debian.org
 Resent-cc: recipient list not shown: ;
 
 Hola a todos.
 ¿Alguien conoce algun libro para ayudarme a configurar y mantener Sendmail?
 Quiero montar un servidor de correo con Sendmail pero no tengo ni idea.
 
 Gracias.

http://personal1.iddeo.es/ret003u7/correo.htm
con esto empecé yo.

Benjamín Albiñana Pérez
mailto:[EMAIL PROTECTED]
Linux User Nº78177
Espacio disponible para publicidad 


Re: Servidor X con Frame Buffer

1999-01-26 Thread Hue-Bond
On Mon, 25 Jan 1999, Jose Luis Trivino wrote:

   Alguien puede pasarme su fichero XF86Config para frame
buffer o indicarme como puedo solucionar este problema? 

  En el CD  de una revista reciente  (no sé cuál porque  a mí el
 archivo me lo pasaron) viene esto:

Section Files
   RgbPath/usr/X11R6/lib/X11/rgb
   FontPath   /usr/X11R6/lib/X11/fonts/misc:unscaled
   FontPath   /usr/X11R6/lib/X11/fonts/75dpi:unscaled
   FontPath   /usr/X11R6/lib/X11/fonts/100dpi:unscaled
   FontPath   /usr/X11R6/lib/X11/fonts/Type1
   FontPath   /usr/X11R6/lib/X11/fonts/Speedo
EndSection

Section ServerFlags
EndSection

Section Keyboard
   ProtocolStandard
   AutoRepeat  500 30
   LeftAlt Meta
   RightAltMeta
   ScrollLock  Compose
   RightCtlControl
   XkbKeycodes xfree86
   XkbTypesdefault
   XkbCompat   default
   XkbSymbols  us(pc101)
   XkbGeometry pc
   XkbRulesxfree86
   XkbModelpc104
   XkbLayout   us
EndSection

Section Pointer
   ProtocolPS/2
   Device  /dev/mouse
   Emulate3Timeout 50
   Resolution  100
   Buttons 3
   Emulate3Buttons
EndSection

Section Monitor
   Identifier  Primary Monitor
   VendorName  Unknown
   ModelName   Unknown
   HorizSync   31.5-48.5
   VertRefresh 55-90
   Modeline  1024x768   65.00 1024 1048 1192 1340 768 771 777 806 -hsync 
-vsync
EndSection

Section Device
   Identifier  Primary Card
EndSection

Section Screen
   Driver  FBDev
   Device  Primary Card
   Monitor Primary Monitor
   SubSection Display
  Modesdefault
   EndSubSection
EndSection


 Parece que es como lo tienes tú pero por probar...


-- 
Los sueños no se descubren hasta que uno despierta (Abre los ojos)

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


Lyx, Tex y Sed. (offtopic)

1999-01-26 Thread Dani Nebot
Hola, perdon por el offtopic pero estoy contra las cuerdas.

He realizado la memoria del proyecto fin de carrera integramente en mi 
Debian 1.3.1 mediante Lyx, la herramienta visual, y ahora estoy haciendo 
la composicion final, usando un estilo sty que me han endosado a ultima 
hora.

Necesito hacerme un programa de la shell que me extraiga las lineas de 
texto entre las marcas \chapter para poder eliminar la basurilla que 
genera el Lyx.

Estoy a tres dias de entregar la memoria y estoy un poco desesperado.

Si hay alguna alma caritativa que me pueda explicar como hacer esto en 
sed, extraer el texto entre dos marcas, se lo agradecere mucho.

Gracias y perdon por el abuso.

Dani.

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


Re: Lyx, Tex y Sed. (offtopic)

1999-01-26 Thread Jaime E. Villate
Dani Nebot escribió:
 
 Necesito hacerme un programa de la shell que me extraiga las lineas de
 texto entre las marcas \chapter para poder eliminar la basurilla que
 genera el Lyx...
 ...como hacer esto en sed, extraer el texto entre dos marcas, se lo 

Creo que lo que necesitas no es sed sino awk o perl. No se si entendí
mal,
pero me parece que tu pregunta está mal formulada: tu fichero
probablemente
tine varias marcas chapter y me imagino que quieres extraer todos los
capítulos. En ese caso harias por ejemplo lo siguiente:

   awk '/\\chapter/,/EOF/' com-basura.tex sin-basura.tex

(imprime lineas desde que aparezca \chapter hasta el fin del fichero)

Si lo que quieres es extraer un capítulo en particular, por ejemplo
el tercero, intenta lo siguiente:

   awk '$0~/\\chapter/{n++}; n==3' com-basura.tex sin-basura.tex

(va contando los capítulos y imprime todas las líneas que corresponden
al tercero).

Me imagino que lo que realmente necesitas es identificar donde comienza
la basura al final de cada capítulo (alguna marca propia de lyx) y
colocar
eso en vez de EOF en el primer comando. De todas formas preguntame otra
vez si esto no respondio tu pregunta.

Jaime Villate
Universidad de Oporto


Re: Error en la make-kpkg

1999-01-26 Thread Agustín Martín
Sergio Gomez Bachiller wrote:
 
 Desde que instalé debian 2.1 no he vuelto a ser capaz de usar el programa
 anterior, siempre recibo un error casi al final, concretamente:
 
 dpkg-gencontrol -pkernel-image-2.0.36 -Pdebian/tmp-image/
 parsechangelog/debian: error: unable to open substvars file debian/substvars: 
 No existe el fichero o el directorio
 dpkg-gencontrol: error: syntax error in parsed version of changelog at line 
 0: empty file
 

Intenta 

LC_ALL=C make-kpkg 

-- 
=
Agustín Martín Domingo, Dpto. de Física, ETS Arquitectura Madrid, 
(U. Politécnica de Madrid)  tel: +34 91-336-6536, Fax: +34 91-336-6554, 
email:[EMAIL PROTECTED], http://corbu.aq.upm.es/~agmartin/welcome.html


Re: No oigo MIDI

1999-01-26 Thread Agustín Martín
Cosme Perea Cuevas wrote:
 
  Card config:
  Sound Blaster at 0x220 irq 7 drq 1,5
  SB MPU-401 at 0x330 irq 7
  OPL-2/OPL-3 FM at 0x388 drq 0
 
 Card config:
 Sound Blaster at 0x220 irq 5 drq 1,5
 (SB MPU-401 irq 1 drq 0)
 

¿Utilizas una IRQ distinta para el MPU-401 que la de la tarjeta?

Si mal no recuerdo en la configuración del kernel dice que al poner el
valor de la IRQ para MPU-401 no lo pongas (realmente que dejes el -1)
para una SB16. revísalo, a ver si me equivoco.

Saludos,

-- 
=
Agustín Martín Domingo, Dpto. de Física, ETS Arquitectura Madrid, 
(U. Politécnica de Madrid)  tel: +34 91-336-6536, Fax: +34 91-336-6554, 
email:[EMAIL PROTECTED], http://corbu.aq.upm.es/~agmartin/welcome.html


Sonido: ¿Qué significa esto?

1999-01-26 Thread Javier Viñuales Gutiérrez
Hola a todos,
ya lo pregunté una vez pero dado el escaso éxito vuelvo a lo mismo,
alguien sabe qué significa el mensaje de kernel:

Jan 26 15:36:53 akela kernel: es1370: dma timed out??

(lo he tomado de xconsole). es1370 es el driver para Ensoniq Audio 1370
(PCI) como mi tarjeta de sonido, una SoundBlaster PCI64.

Gracias.
-- 

Javier Viñuales Gutiérrez 
[EMAIL PROTECTED]


Paquetes para instalar las X

1999-01-26 Thread benalb
Que paquetes tengo que instalar para las X?
de momento he instalado el xlib6g, el xserver-vga16, xmanpages, y el xbase me
da un error por no poder crear un enlace simbólico del X11/doc a doc/X11 (no
such file or directory). Aparte de las fonts, ¿que me falta?

Benjamín Albiñana Pérez
mailto:[EMAIL PROTECTED]
Linux User Nº78177
Espacio disponible para publicidad 


linux 2.2.0 ya

1999-01-26 Thread Jose Miguel Gurpegui
ya está el núcleo 2.2.0 definitivo

http://www.linuxhq.com

Saludos,

José Miguel Gurpegui
[EMAIL PROTECTED]


Configurar impresora

1999-01-26 Thread Jaime de Salas
Hola, tengo una impresora Canon BJC-4200 y no se como
imprimir en modo borrador.
He instalado el magicfilter pero no consigo nada.
¿ Alguien tiene una impresora similar o sabe como hacerlo ?

Gracias


A quien interese: nuevos htmls en la web

1999-01-26 Thread Vicente Barba
Tras un mes de funcionamiento y algo mas de 200 visitas para tan poquita
cosa que hay en 100% LiNUX, publicamos los siguientes archivos:

16267 Jan 26 09:23 castellano.htm
11815 Jan 26 18:45 kernel.htm
 7664 Jan 26 20:04 lilo.htm
21618 Jan 26 13:57 usuarios.htm

Son documentos de nivel _básico_ para administrar Debian. Por falta de
tiempo por los exámanes lo tenemos ligeramente dificil. Esperemos que
antes del verano esté la web completa y comenzaremos a pasar a sgml y a
ampliar (bastante) todo y a la versión 2.0 de los actuales documentos en
la v.1.0 (si no suben de versión por fallos o ampliación).

A quien interese: nuevos htmls en la web

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


man missing ?

1999-01-26 Thread Barry White
I have just installed Debian 1.3.   I am at present reading through the
Tutorial which I downloaded from the debian www site. Not having any
previous experience of Linux I need the Manual.
However if I enter say  man cp   I get back Bash: man:  Command not
found.

   I presume this means the manual is not loaded. If so how do I do this
?

Cheers Barry  White   [EMAIL PROTECTED]




Re: man missing ?

1999-01-26 Thread Bob Nielsen
Debian 1.3 is somewhat obsolete, but I think you need to install the
man-db package, which is where the man command in 2.x is located.

Bob

On Mon, 25 Jan 1999, Barry White wrote:

 I have just installed Debian 1.3.   I am at present reading through the
 Tutorial which I downloaded from the debian www site. Not having any
 previous experience of Linux I need the Manual.
 However if I enter say  man cp   I get back Bash: man:  Command not
 found.
 
I presume this means the manual is not loaded. If so how do I do this
 ?
 
 Cheers Barry  White   [EMAIL PROTECTED]
 
 
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
 
 


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


What owns a piece of postgresql...

1999-01-26 Thread Chris Frost
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

What package own /usr/lib/postgresql/dumpall/6.3/psql, libpq.so.1 and
libpq.so.2? Reason being, I have the posgresql from hamm and am trying to
upgrade to the version in potato (which has python support) and to dump my
databases I need these files.

tia,
Chris
- Visit Me At http://www.frostnet.advicom.net/chris/ -

--
   Public PGP Key:
 Email [EMAIL PROTECTED] with the subject retrieve pgpkey or
visit http://www.frostnet.advicom.net/chris/pgp_key.phtml

-BEGIN PGP SIGNATURE-
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBNq0KnuEzIlbKpewXEQIX6gCg8WXCpEaugkDnEMKb3cCQpfMSHTQAoIpm
Jd156xJShRwA9hxoZfEsIT4l
=UIU1
-END PGP SIGNATURE-


Re: What owns a piece of postgresql...

1999-01-26 Thread John Goerzen
Two ways to find this:

1.  grep or zgrep through Contents-i386, located in dists/unstable/ or
dists/stable;

2.  use dpkg -S libpq.so.1

John

On Mon, Jan 25, 1999 at 06:21:47PM -0600, Chris Frost wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 What package own /usr/lib/postgresql/dumpall/6.3/psql, libpq.so.1 and
 libpq.so.2? Reason being, I have the posgresql from hamm and am trying to
 upgrade to the version in potato (which has python support) and to dump my
 databases I need these files.
 
 tia,
 Chris
 - Visit Me At http://www.frostnet.advicom.net/chris/ -
 
 --
Public PGP Key:
  Email [EMAIL PROTECTED] with the subject retrieve pgpkey or
 visit http://www.frostnet.advicom.net/chris/pgp_key.phtml
 
 -BEGIN PGP SIGNATURE-
 Version: PGP for Personal Privacy 5.0
 Charset: noconv
 
 iQA/AwUBNq0KnuEzIlbKpewXEQIX6gCg8WXCpEaugkDnEMKb3cCQpfMSHTQAoIpm
 Jd156xJShRwA9hxoZfEsIT4l
 =UIU1
 -END PGP SIGNATURE-
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null


ok, where'd xterm go? and what else is missing

1999-01-26 Thread Richard E. Hawkins Esq.

I just moved to slink again (i don't seem to learn quickly :).

the xterm command ceased working, and there now seems to be a separate 
xterm package for those without the xwindows system.

I've installed it, and it seems to work, but what else is missing?

I'm afraid to restart now; my webserver going down could be disastrous 
to my job search . . .


-- 



Re: Would like to drop Pine for Mutt

1999-01-26 Thread Daniel González Gasull
Hi Daniel!  (Also my name :-)).

Daniel Mashao [EMAIL PROTECTED] wrote:

 I would like to drop pine to move to mutt but my
 main problem is that mutt does not seem to have a
 folder listing like pine. I like the folder listing
 as it allows me to move through all my folders and
 see if they have new messages.
 
 I don't like pine anymore. It gives me bad feeling
 that they have hidden messages in all my folders.

I'm an ex Pine user.  Now I am a happy Mutt user.  I
have developed a Pine-muttrc better that the one that
comes with Mutt.  You can use it without learning the
new keystrokes.  Then you will see the list of folders
with 'l'.

Pine-muttrc is gzip and attached to this message.

C U L8R.

-- 
   ___  
Daniel González Gasull   __|_|__Un sólo muerto es
mailto:[EMAIL PROTECTED] (o o) ya demasiado.
PGP RSA key 1024/EEA93A69 ( - ) -- Nelson Mandela
 (  .  )
(   .   )   
   (_)  
 Hi!  I'm Signature Virus 99!  Copy me into your signature and join the fun!

## Pine-muttrc v1.1
## Feedback is welcome.
## Daniel González Gasull [EMAIL PROTECTED]
##
## This file contains commands to change the keybindings in Mutt to be
## similar to those of PINE 3.96.

## 
## BIND - bind commands to keys.
## 
## Syntax unto version 0.60: bind key function-name menu-name
## Syntax From version 0.61: bind menu-name key function-name
## Values for menu-name:
## attach, folder-menu, alias-menu; index; pager.
## Special values for key:  pageup, pagedown, up, down, left, right
## Description: MUTT allows you to bind a command to keys.
## For more info see page
## http://www.math.fu-berlin.de/~guckes/mutt/mutt.manual.html#bind or
## http://www.cs.hmc.edu/~me/mutt/bind.html .
## There are some keystrokes that I am used with other programs:

bind  alias ' ' next-page
bind  alias - previous-page
bind  alias . enter-command
bind  alias : tag-entry
bind  alias n next-entry
bind  alias p previous-entry
bind  alias w search
bind  alias x tag-entry

bind  browser ' ' next-page
bind  browser - previous-page
bind  browser . enter-command
macro browser c qc# Compose a message
bind  browser g select-new
bind  browser i exit
bind  browser n next-entry
bind  browser p previous-entry

bind  index $ sort-mailbox
bind  index ' ' next-page
bind  index * set-flag
bind  index + clear-flag
bind  index , tag-subthread
bind  index - previous-page
bind  index . enter-command
bind  index : tag-entry
bind  index down next-entry
bind  index up previous-entry
bind  index L limit # Not possible to simulate zoom-out...
bind  index N next-unread
bind  index R group-reply
macro index W w\Cu~B  # Search in the whole content of any message
bind  index \; tag-pattern
bind  index \Cr list-reply  # Because 'l' is for GotoFldr
bind  index a tag-prefix
bind  index c mail
bind  index d delete-message
bind  index g change-folder
macro index j 1backspace# like Jump in Pine
macro index l g?  # like GotoFldr in Pine
bind  index n next-entry
bind  index p previous-entry
bind  index t create-alias
bind  index u undelete-message
bind  index v display-message
bind  index w search
bind  index x sync-mailbox
bind  index y print-message

bind  attach . enter-command
bind  attach : tag-entry
bind  attach R group-reply
bind  attach \Cr list-reply # Because 'l' is for GotoFldr
bind  attach a tag-prefix
macro attach c qic
macro attach g qg

bind  pager ' ' next-page
macro pager * i*
macro pager + i+
macro pager , i,v
bind  pager . enter-command
bind  pager : tag-message
bind  pager down next-line
bind  pager up previous-line
bind  pager N next-unread
bind  pager Q exit
bind  pager R group-reply
macro pager W iW  # Search in the whole content of any message
macro pager \; i;
bind  pager \Cr list-reply  # Because 'l' is for GotoFldr
macro pager a ia
macro pager b Qb
macro pager c Qc  # like Pine
bind  pager d delete-message
bind  pager g change-folder
macro pager j 1backspace# like Jump in Pine
macro pager l g?  # like GotoFdlr in Pine
bind  pager n next-entry
bind  pager p previous-entry
bind  pager q quit
bind  pager t create-alias
bind  pager u undelete-message
bind  pager w search
bind  pager y print-message

bind  compose . enter-command
bind  compose : tag-entry
bind  compose D edit-description
bind  compose \Cj attach-file
bind  compose \Co postpone-message
bind  compose \Cr edit-headers
bind  compose \Cx send-message
bind  compose a tag-prefix
bind  compose d detach-file
bind  compose e edit-file


### PINE has different defaults for this variables:

# set   copy=yes# always save a copy of outgoing messages
# set   editor=pico
##  set editor=jpico  # Better.  It comes with the program Joe.
##  set 

Browser for a slow computer?

1999-01-26 Thread Daniel González Gasull
Hi!

I already asked it some days ago.  But I never saw my
message or the answer in the list.  I don't know why.

I'm looking for a browser for my computer, an old i486
DX2 66 MHz with 8 MB RAM.  I.e. a very slow machine.

Now I use Lynx, but I want a graphic browser with HTML
4.0, Java and images.  Netscape is too big to install
in my machine.  Please, wich browser do you recommend
to me?

TIA.

-- 
   ___  
Daniel González Gasull   __|_|__Un sólo muerto es
mailto:[EMAIL PROTECTED] (o o) ya demasiado.
PGP RSA key 1024/EEA93A69 ( - ) -- Nelson Mandela
 (  .  )
(   .   )   
   (_)  
 Hi!  I'm Signature Virus 99!  Copy me into your signature and join the fun!


pgpFy8ELB7bzc.pgp
Description: PGP signature


storage hardware

1999-01-26 Thread Daryl Williams
can anyone recommend a raid storage or fibre channel storage
device for linux? i am looking for 75-150 GB of storage and would
love to run it on a linux system. i would prefer a fibre channel
solution if it exists and the price is right.

thanks in advance,

//daryl

--
 Daryl Williams
 Network Administrator mailto:[EMAIL PROTECTED]
 ShareWave, Inc.   Phone: 916-939-9400 x3212
 5175 Hillsdale Circle Fax: 916-939-9434
 El Dorado Hills, CA. 95762Web: http://www.sharewave.com




Re: What owns a piece of postgresql...

1999-01-26 Thread Chris Frost
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, 25 Jan 1999, John Goerzen wrote:

 Two ways to find this:
 
 1.  grep or zgrep through Contents-i386, located in dists/unstable/ or
 dists/stable;
 
 2.  use dpkg -S libpq.so.1
Guess I should have been more specific, but I'm trying to find the package
that provides these files so that I can install it. Anyway, I downloaded
Contents-i386 from both slink and potato and neither had the files in the
correct places that I need (/usr/lib/postgresql/dumpall/6.3/).

Any ideas?

Chris
- Visit Me At http://www.frostnet.advicom.net/chris/ -

--
   Public PGP Key:
 Email [EMAIL PROTECTED] with the subject retrieve pgpkey or
visit http://www.frostnet.advicom.net/chris/pgp_key.phtml

-BEGIN PGP SIGNATURE-
Version: PGP for Personal Privacy 5.0
Charset: noconv

iQA/AwUBNq0X4+EzIlbKpewXEQKxDACg4wQNqSPFhweQYbjNZCIMbbVAi4kAniD4
uh1YY1yB85ScoCbB9kZo3WSE
=Bijq
-END PGP SIGNATURE-


Re: Browser for a slow computer?

1999-01-26 Thread M.C. Vernon
On Mon, 25 Jan 1999, Daniel González Gasull wrote:

 I already asked it some days ago.  But I never saw my
 message or the answer in the list.  I don't know why.

Possibly because there is no easy answer.
 
 I'm looking for a browser for my computer, an old i486
 DX2 66 MHz with 8 MB RAM.  I.e. a very slow machine.

 Now I use Lynx, but I want a graphic browser with HTML
 4.0, Java and images.  Netscape is too big to install
 in my machine.  Please, wich browser do you recommend
 to me?

Try gzilla, or mosaic, both of which are development software.

Matthew

-- 
Elen sila lumenn' omentielvo

[EMAIL PROTECTED],
Steward of the Cambridge Tolkien Society
Selwyn College Computer Support
http://www.cam.ac.uk/CambUniv/Societies/tolkien/
http://pick.sel.cam.ac.uk/


num lock in X

1999-01-26 Thread ktb
I posted a while back about getting my num lock to default on while
in X.  Someone wrote back that setleds worked for console and xset
worked for X consoles.  I have the num lock working in console but not
in X yet.  At the command line when I try, ~$ xset led on  no led lights
come on.  It makes it so I can move the cursor all directions and if I
push Num Lock my Scroll Lock light comes on and won't go off until I
use ~$ xset led off   and then hit the scroll Lock key.  I have read
the man page for xset and scoured the Debian user's archives for xset,
num lock etc.  I've looked at howto's and newsgroups and can't figure
this out.  I read that xset is the way to go and then another person
says that xset only turns the lights on and doesn't actually turn the
num lock on.  I found a couple of lines in the /etc/X11/config file
about xset numbers and letting the server take care of the number lock.
I uncommented both of these lines and it had no effect.  I don't know
what else I can do.  Is this a bug or something?  Number lock works fine
in windows and as I said when I am at a regular console.
Help.
Thanks,
Kent




Running fvwm95

1999-01-26 Thread Tom Persons




I am trying to use fvwm952 as my window manager but I can't 
seem to get it to work. When I type startx at the prompt twm comes 
up. I followed the installation instructions to the letter which told me to add 
some lines in the xinitrc file. Here are the instructions:
This is a new version of fvwm95, based on fvwm95-2.0.43a,
with a few patches applied and with a few new or modified
modules (FvwmTaskBar,FvwmWharf,FvwmScript...)

Installation should be as simple as:
tar xvzf fvwm95-2.0.43b.tar.gz

cd fvwm95-2.0.43b
./configure
make 
make install

Further details can be found in the README and INSTALL
files.

The further details described reiterate the same info as above with the addition of adding lines to the xinitrc file. Can anyone help!?!?!?!?! Tom Persons 


Re: Running fvwm95

1999-01-26 Thread ktb
I'm new to Linux and I don't know for sure that this will help  but
assuming you installed fvwm952 correctly; you could try editing  your
/etc/X11/window-managers  file putting your newly installed window
manager  name at the top of the list.   That should make it your default
window manager.
Hope this helps,
Kent


Tom Persons wrote:

  I am trying to use fvwm952 as my window manager but I can't seem to
 get it to work. When I type startx at the prompt twm comes up. I
 followed the installation instructions to the letter which told me to
 add some lines in the xinitrc file. Here are the instructions:

 FONT face=Arial size=2This is a new version of fvwm95, based on 
 fvwm95-2.0.43a,
 with a few patches applied and with a few new or modified
 modules (FvwmTaskBar,FvwmWharf,FvwmScript...)

 Installation should be as simple as:
 tar xvzf fvwm95-2.0.43b.tar.gz

 cd fvwm95-2.0.43b
 ./configure
 make
 make install

 Further details can be found in the README and INSTALL
 files.

 The further details described reiterate the same info as above with the 
 addition of adding lines to the xinitrc file./FONT

 FONT face=Arial size=2/FONT

 FONT face=Arial size=2/FONTFONT face=Arial size=2Can anyone 
 help!?!?!?!?!/FONT

 FONT face=Arial size=2/FONT

 FONT face=Arial size=2Tom Persons/FONT

 FONT face=Arial size=2 /FONT



Re: Sound Blaster 128 Detection

1999-01-26 Thread Rene Hojbjerg Larsen
Thomas MANGIN wrote:
 
 I am now facing another nice problem : my SB 128 isn t detected. I was
 befdore using a Crystal card which was perfecltly working but now my
 Standard Sound
 Blaster is not working.

The SoundBlaster PCI cards are not hardware compatible with the ISA based
SoundBlaster cards.  When configuring the kernel you need to include
support for the Ensoniq AudioPCI (ES1370) card to support the PCI 128.

 Last time I installed a SB16, I solved the problem removing the Os is
 PNP aware in my Bios but this time this didn t changed anything ;( I
 tryed both Native
 and Legacy dma but it didn t help too !!
 
 I suspect the PNP or Legacy stuff like they call it to be somewhere
 guilty !! For information my kernel is the 2.1.130

I don't think this is the problem.  This PNP/legacy stuff should only
matter for ISA Pnp devices.

You may want to upgrade your kernel since you have to recompile anyway.
-- 
   /'`\  zzzZ  | My PGP Public Key is available at:
  ( - - )   | http://home1.inet.tele.dk/renehl/
--oooO--(_)--Oooo-- 
 Don't ya just hate it when there's not enough room to fin 


Re: 3Com/USR modem and firmware upgrade??

1999-01-26 Thread Gregory T. Norris
For some of the 3Com/USR modems (Courier V.Everything, probably others
as well), they have a XModem update file available on their website.
Supposedly you just feed the modem a specific command-string, followed
by an xmodem transfer of their update file.  From the way it sounds,
Minicom can probably handle the process.

Sorry, but I don't recall the specific URL... a search of their sight
ought to find it, tho.

On Thu, Jan 21, 1999 at 09:20:21AM -0500, Person, Roderick wrote:
 Hey All,
 
 I just acquired a 3Com/USR 33.6 modem. It came with the software to upgrade
 it to a 56k modem of course its for Win95 or Win3.1
 My Box is 100% Debian. No DOS no Windows. Does any one no of a way to
 upgrade the modem. I assume that a linux version is not in existence.
 I know I need windows on the box to use wine, so that is not an option. But
 what about WABI? Any other suggestions would be great appreciated.
 
 Rod...
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
 


boot floppies -- thanks!!

1999-01-26 Thread Ossama Othman
Hi,

I wanted to thank Robert Woodcock and everyone who helped me (sorry, I
don't recall their names :( ) for helping me figure out how to boot my
Dell PowerEdge Server 6300.  I am now the proud user (not owner, I wish!
:) of a Quad-CPU Xeon Dell system with a gig (960MB with linux lim) of
memory running Debian GNU/Linux 2.1 (potato).  Now if I could just get the
rest of my colleagues to switch to Debian. :p

The system is _smooth_ and stable!  Thanks again for the help and for a
great OS!

-Ossama
__
Ossama Othman [EMAIL PROTECTED]
58 60 1A E8 7A 66 F4 44  74 9F 3C D4 EF BF 35 88  1024/8A04D15D 1998/08/26




Help (again~!!) and then some...

1999-01-26 Thread Brant Wells
Howdy y'all :)

Sorry I've been off the air for so long (I've been waiting for my debian 
Cd's to get here).. I finally got them :)

Okay here's the scoop... I was running kernel 2.0.32, and I custom 
compiled 2.0.34 for sound using make menuconfig...Here's the problem...

Under kernel 2.0.32, I could issue a mount command, such as 

mount /dev/hda1 /ntpart  

and it would mount the the Fat16 partition just fine, or the CDROM...

Now, under 2.0.34, I have good sound... but I can't mount my fat16 
partition or my cdrom... I get the 'you must specify partition type'... 
I try vfat for the /dev/hda1 , and it tells me it is not supported... 
Help


Thanks,
Brant

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


Re: Help (again~!!) and then some...

1999-01-26 Thread Andrew Ivanov
 Now, under 2.0.34, I have good sound... but I can't mount my fat16 
 partition or my cdrom... I get the 'you must specify partition type'... 
 I try vfat for the /dev/hda1 , and it tells me it is not supported... 
 Help

You may have excluded the vfat support from the kernel when you compiled
it. Just run configuration again and see if vfat support is included in
the kernel. If it's not, include it and compile again.
Andrew


Never include a comment that will help | Andrew Ivanov
someone else understand your code. | [EMAIL PROTECTED]
If they understand it, they don't  | ICQ: 12402354
need you.  |


Re: What owns a piece of postgresql...

1999-01-26 Thread John Goerzen
Ahh, no ideas then.  Try writing to [EMAIL PROTECTED] to reach
the maintainer; he may be able to help, or it may be a bug in the package.

-- John

On Mon, Jan 25, 1999 at 07:18:23PM -0600, Chris Frost wrote:

 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 On Mon, 25 Jan 1999, John Goerzen wrote:
 
  Two ways to find this:
  
  1.  grep or zgrep through Contents-i386, located in dists/unstable/ or
  dists/stable;
  
  2.  use dpkg -S libpq.so.1
 Guess I should have been more specific, but I'm trying to find the package
 that provides these files so that I can install it. Anyway, I downloaded
 Contents-i386 from both slink and potato and neither had the files in the
 correct places that I need (/usr/lib/postgresql/dumpall/6.3/).
 
 Any ideas?
 
 Chris
 - Visit Me At http://www.frostnet.advicom.net/chris/ -
 
 --
Public PGP Key:
  Email [EMAIL PROTECTED] with the subject retrieve pgpkey or
 visit http://www.frostnet.advicom.net/chris/pgp_key.phtml
 
 -BEGIN PGP SIGNATURE-
 Version: PGP for Personal Privacy 5.0
 Charset: noconv
 
 iQA/AwUBNq0X4+EzIlbKpewXEQKxDACg4wQNqSPFhweQYbjNZCIMbbVAi4kAniD4
 uh1YY1yB85ScoCbB9kZo3WSE
 =Bijq
 -END PGP SIGNATURE-


Re: diald is eating packets

1999-01-26 Thread Daniel Martin
Kenneth F. Ryder III [EMAIL PROTECTED] writes:

SNIP
 1) how to keep diald from eating the first packet it sees coming across the
 dummy link, and instead hold it and send it down the PPP link once
 established. 

I think diald does this with UDP packets - with TCP packets there are
other rather annoying issues/problems.  However, the kernel's ipmasq
routines do it, so you'd think there'd be a way.

 2) how to increase the time limit in the standard filter (I'd like to use
 standard.filter over my very primitive one) on the FIRST packet sent out by
 a program (like telnet,  rlogin, etc.)

Well, not quite that, but what I added after a somewhat similar
problem to my /etc/diald/diald.options is:
impulse 30,0,0

This causes the link to always be kept up for at least 30 seconds.


GNUcash/Libs

1999-01-26 Thread Timothy Hospedales
Hello! I am trying to get GNUCash to work; the binary distribution (1.1.23);
converted with alien from rpm gives
libXm.so.1 = not found
libXmHTML.so.1.1 = not found
libreadline.so.3 = not found
Can anyone tell me what packages I need to get these libs?

And has anyone successfully compiled the src? After installing lots of libs
1.1.25 nearly finishes but dies with lots of parse errors when it starts to
compile perl stuff. If you've got it to work please tell me what relevant
packages/versions you have!

Thanks alot!
Timothy

--
E-Mail: Timothy Hospedales [EMAIL PROTECTED]
Date: 25-Jan-99
Time: 23:59:09

This message was sent by XFMail
--


My gimp does print correctly

1999-01-26 Thread Luiz Otavio L. Zorzella

Hi,

gimp, instead of printing the image, ends up printing the postcript
text...

Netscape prints fine...

Any clue?

slink Debian GNU/Linux 2.0.35

-- 
Luiz Otavio L. ZorzellaComputer Engineer
[EMAIL PROTECTED] 


linux 2.2.0: System is 666kB

1999-01-26 Thread Johnie Ingram

-BEGIN PGP SIGNED MESSAGE-


Hm, now theres a worrisome compile message.  :-)

Anyway, for you early adopters, I've made source and debs available at:

ftp.netgod.net/linux/v2.2

Heres the checksums:

ca629746d5baa1f3024a780312c96e28  kernel-doc-2.2.0_2.2.0-1_all.deb
40d6ddb94ac0c0239a2a5b16818cbbdb  kernel-headers-2.2.0_2.2.0-1_i386.deb
9079f07787cdeba5649b8daa651746ea  kernel-image-2.2.0-i686_2.2.0-1_i386.deb
2be1baad527126c18d73f93f709758e1  kernel-source-2.2.0_2.2.0-1.diff.gz
35fa180e872cd6180ae0cab22730938f  kernel-source-2.2.0_2.2.0-1.dsc
98354d9bbe92ded9bdf3255b41319e19  kernel-source-2.2.0_2.2.0-1_all.deb
be94a0187a3ac4ad41442f967ddb11c3  kernel-source-2.2.0_2.2.0.orig.tar.gz

- -  PGP  E4 70 6E 59 80 6A F5 78  63 32 BC FB 7A 08 53 4C
 
   __ _Debian GNU Johnie Ingram [EMAIL PROTECTED]  mm   mm
  / /(_)_ __  _   ___  __netgod irc.debian.org  mm mm
 / / | | '_ \| | | \ \/ / m m m
/ /__| | | | | |_| |Yes, I'm Linus, and I am your God. mm   mm
\/_|_| |_|\__,_/_/\_\   -- Linus, keynote address, Expo 98   GO BLUE


-BEGIN PGP SIGNATURE-
Version: 2.6.3a
Charset: latin1

iQCVAwUBNq1GthCswmGWXGp9AQGvqwP9G+9Fly7F61WBtBohQ8Rm3dhICZaMxikJ
7XL4wBrFvgXaW2HHAVSMgoK3QJMKbHYCsOvYHGqQF+OvC7XySgNxmSCG6/3kwnUd
7OVnWma6giQEhJ2lYVeQZXx/y9aNQkm/I48jDJwvGPRJ95smTUvjmkRsY/Yl9Zq7
7UKSeLnYQaU=
=LEbq
-END PGP SIGNATURE-


Re: Help (again~!!) and then some...

1999-01-26 Thread Nathan E Norman
On Mon, 25 Jan 1999, Andrew Ivanov wrote:

 :  Now, under 2.0.34, I have good sound... but I can't mount my fat16 
 :  partition or my cdrom... I get the 'you must specify partition type'... 
 :  I try vfat for the /dev/hda1 , and it tells me it is not supported... 
 :  Help
 : 
 : You may have excluded the vfat support from the kernel when you compiled
 : it. Just run configuration again and see if vfat support is included in
 : the kernel. If it's not, include it and compile again.
 : Andrew

Just for fun, before you recompile the kernel, (as root) type:

modprobe vfat

This should insert the vfat module, if present, and you'll be ready to
go.  If you're running the stock install kernel I'm 99.9 percent sure
vfat is a module.

If that DOES solve the problem, you should look into kerneld, which
automagically loads (and unloads) modules for you when needed.  To
enable it, uncomment the auto line in /etc/modules .

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



help

1999-01-26 Thread Moshe Tarko




Can someone help me set up a dual 
boot Linux Debian win98 system? I have 5 Gig of space and plan to partition 1 
Gig for Linux. Also have AMD 300 mhz and 64 RAM. I guess I need a mentor cause I 
don't have that much Know how. I have read The Complete Linux Kit by 
Tauber and Running Linux by O'reily  Associates.
Thanks in advance,
Moshe


Re: Running fvwm95

1999-01-26 Thread Alfie Costa
On 25 Jan 99 at 18:22, Tom Persons [EMAIL PROTECTED] wrote:

{on having a bad install of fvwm95...}
 ...This is a new version of fvwm95, based on fvwm95-2.0.43a, with a
 few patches applied and with a few new or modified modules
 (FvwmTaskBar,FvwmWharf,FvwmScript...)
 
 Installation should be as simple as:
 tar xvzf fvwm95-2.0.43b.tar.gz

Debian keeps a few init files and configs for X in different places than other 
Linux distributions.  Or the other distributions keep them in different places 
than Debian, depending how you look at it.  If you installed from a .gz and 
not a .deb package, the fvwm95 configs probably aren't where Debian X would 
be looking for them, and the results you've described might happen.

If this is the case, you can either figure out how the fvwm95 package differs 
from Debian's way of doing things, and make the needed changes in the config 
yourself; or uninstall it as best you can and try a .deb package, which should 
work well.  Possibly you can just install the .deb without trying to uninstall 
the other package, it may not matter; though there could be some leftover files 
taking up hard drive space from the .gz package.

You can find a .deb package of fvwm95 2.0.43b here:
ftp://ftp.debian.org/debian/dists/slink/main/binary-i386/x11/fvwm95_2.0.43ba-7.deb

Hope this helps...


Re: Browser for a slow computer?

1999-01-26 Thread Hamish Moffatt
On Mon, Jan 25, 1999 at 05:15:25AM +0100, Daniel González Gasull wrote:
 I already asked it some days ago.  But I never saw my
 message or the answer in the list.  I don't know why.
 
 I'm looking for a browser for my computer, an old i486
 DX2 66 MHz with 8 MB RAM.  I.e. a very slow machine.
 
 Now I use Lynx, but I want a graphic browser with HTML
 4.0, Java and images.  Netscape is too big to install
 in my machine.  Please, wich browser do you recommend
 to me?

I think you ask too much; you need netscape to get HTML 4 and Java.
If you can't have netscape, then you can't have HTML 4 and Java, simple!

Netscape 3 perhaps?


Hamish
-- 
Hamish Moffatt VK3TYD  [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


pgpLMqHFJOhhf.pgp
Description: PGP signature


Re: Help (again~!!) and then some...

1999-01-26 Thread Hamish Moffatt
On Mon, Jan 25, 1999 at 10:33:40PM -0600, Nathan E Norman wrote:
 If that DOES solve the problem, you should look into kerneld, which
 automagically loads (and unloads) modules for you when needed.  To
 enable it, uncomment the auto line in /etc/modules .

You don't have to enable auto to get kerneld to work. Only if you want
it to start earlier in the boot process. I prefer to list the modules
I want loaded at boot time and let kerneld handle it from there.


Hamish
-- 
Hamish Moffatt VK3TYD  [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


MogoBIPS.

1999-01-26 Thread Chris Wong
Hmm,

Is there a certain # I should get from different CPUs? I mean,
my P200MMX is getting like, 400 or so, and my dual P2-300 is
getting a total of like 700 or so. Is this right?

Chris Wong | [EMAIL PROTECTED]
AD Digital Media Inc. (c) 1998
http://addm.com/


Re: MogoBIPS.

1999-01-26 Thread stephen . p . ryan
On 25 Jan, Chris Wong wrote:
 Hmm,
 
   Is there a certain # I should get from different CPUs? I mean,
 my P200MMX is getting like, 400 or so, and my dual P2-300 is
 getting a total of like 700 or so. Is this right?
 
 Chris Wong | [EMAIL PROTECTED]
 AD Digital Media Inc. (c) 1998
 http://addm.com/
 
 

Yes, that's right.  Pentium MMX chips should get roughly 2xclock speed.
Pentium Pro / Pentium II chips get 0.99xclock speed  (all per CPU, of
course).  Check the BogoMIPS HOWTO (in /usr/doc/HOWTO, if you've
installed that package).
-- 
Stephen Ryan   Debian GNU/Linux
Mathematics graduate student, Dartmouth College


unsibscribe

1999-01-26 Thread Dmitry Shishkin
Hello ,



Best regards,
 Dmitry  mailto:[EMAIL PROTECTED]



Re: 1 swap vs. 2 swap partitions

1999-01-26 Thread Helge Hafting

 On Sat, Jan 23, 1999 at 11:06:18AM -0600, Andrew Ivanov wrote:
 
  Hi.
  I recently added a new HD to my system, and I have a chance to put an
  additional swap on it.
  The question is: is there any gain in speed of accessing swap memory if
  instead of one big swap on one disk I have 2/more small ones on separate
  disks?
 
 Yes, there is, at least with SCSI or SCSI/EIDE.
 
 If you just have EIDE and the drives are reasonably recent,
 I'd give it a try, too.

Any IDE setup with drives on different cables will improve 
when you split swap over several drives.  this because such drives
can be accessed simultaneously.

Don't bother spreading swap across drives on the *same* IDE cable,
they can't be accessed simultaneously and will improve nothing.  Two drives
on the same cable is very much like a single bigger drive - it is
the least useful setup for any purpose.

Helge Hafting


Re: fvwm2 and xterm placement

1999-01-26 Thread Rob Mahurin
On Mon, Jan 25, 1999 at 05:41:01PM +, ktb wrote:
[snip]
 Hey,  + I exec xterm -geometry +154+137  worked!  Now how do I get
 rid of
 my
 initial xterm window that pops up when I first log in?  I copied my
 /etc/profile
 file to ~/.bachrc to get the new xterm window to behave like the
 original one
 when I first log in.   I hope that was the right thing to do.  It seems
 to be
 working.
 
[snip]
 
 I thought about putting a # in front of the xterm line in
 /etc/X11/Xsession
 to
 kill that first xterm but my instinct tells me I shouldn't do it to this
 file.
 Where does the default configuration come from?  I have looked through
 most of
 the fvwm2 files and don't seem to be able to locate it.
 Thanks,
 Kent
 

Mine is started from .xinitrc (.xsession from xdm):

03:07 $ cat .xinitrc
#!/bin/bash

xterm -geometry 110x40+1+1 
fvwm2


Maybe that's where the one is that you're trying to kill, or in some similar
place.

Rob

-- 
Soap and education are not as sudden as a massacre, but they are more
deadly in the long run.
-- Mark Twain


Re: Would like to drop Pine for Mutt

1999-01-26 Thread Patrick Colbeck
And if you start mutt with mutt -y it will startup showing a list of
mailboxes along with how much mail is in them.

Pat

On Sun Jan 24, 1999 at 02:47:39PM -0700, JD wrote:
 Quoting Peter Berlau ([EMAIL PROTECTED]):
  On Sun, Jan 24, 1999 at 11:19:45PM +0200, Daniel Mashao wrote:
  Hi Daniel,
  
   I would like to drop pine to move to mutt but my main problem is that mutt
   does not seem to have a folder listing like pine. I like the folder
   listing as it allows me to move through all my folders and see if they
   have new messages.
  You can add the folders in Your ~/.muttrc like
  mailboxes ! = jmb != thomas !=rainer ! =debian-de ! =debian-us !=debian 
  mailboxes ! =isdn ! =~/Mail/slink ! =tex ! =Mail/mbox ! =sahrens
  I don't know if the '!' is always needed, but it works
 
 Actually, the only folders that you need to define in this manner, are the
 ones that you want Mutt to watch for new mail, such as various folders that
 you may have procmail dump mail into.  Beyond that, anytime you are changing
 folders, or saving to a folder, just hitting '?' will give you a list of all
 available folders.  And lastly, no, the ! is not needed except the one time.
 That merely tells mutt to monitor your spool for new mail.  Beyond that, the
 '=' tells mutt to expand from your defined Mail directory.  the above
 statement could be condensed down to something like:
 
 mailboxes ! =jmb =thomas =rainer =debian-de =debian-us =debian =isdn
 
 You get the picture.  This also assumes that you want mutt to watch ALL of
 these folders for new mail.  You would also want to: set folder=~/Mail so
 that mutt know where to start expanding from...
 
 HTH,
 jdk
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
 


Re: getting list of newsgroup

1999-01-26 Thread Pierfrancesco Caci
[EMAIL PROTECTED] writes:

 I am actually trying to configure my linux box in order te get news.
 I am using suck+inn+knews.
 
 In documentation, I see I have to put in the config files the names of the 
 lists I want to subscribe.
 The problem is : I don't know the name of the newsgroup.
 
 So What I want my system to do is :
 
 - Connect to my provider
 - Get the list of all existing newsgroup
 - Disconnect
 
 Then, I choose for which groups I subscribe (using knews). So my computer can 
 connect
  to download news and send my e.mails.
 
 How to do this
 Thanks
 Franck
 

Use `testhost -a your.provider.address` to get the list of active
groups.
Then you have to add the groups to your inn server. You will use the
ctlinnd command to do this, check the manual because I don't remember
the syntax now.

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.0-final #2 Thu Jan 21 23:41:42 CET 1999 i586 unknown


Basic Quastions

1999-01-26 Thread Nuno Donato
I am a begginer in Linux, and I would like to make some 
basic questions.
1st - How can I change the WindowMaker or XShell that runs 
when I start X.
2nd - How can I change the menus. To remove or add some apps 
or games.
3rd - Can I have some shortcuts in the desktop? How?

Thanks!


Nuno Donato ([EMAIL PROTECTED])


__
Get your free web-based email at http://www.xoom.com
SPECIAL OFFER:  250 Web Site Templates, Only $29.95! -
http://orders.xoom.com/email



Re: Moddep -a and Co

1999-01-26 Thread Thomas MANGIN


Thanx for the suggestion but no Luck I made modules-install
and worse I done a: rm -rf /lib/module(s)/2.* to get rid of the previous
version
I have all in my /lib/module(s)/2.1.130 !!
thomas
--
 Today's thinking : I'am not able to think Today .. (Recursively)

Thomas MANGIN [EMAIL PROTECTED]
Maitrise Informatique de Lyon [EMAIL PROTECTED]
+33 6 60 97 91 01

http://www.kernel.org http://themes.org http://www.berlin-consortium.org
http://www.gnu.org/software/hurd/hurd.html http://www.linuxfocus.com



scsi cd drive locking up

1999-01-26 Thread Graham Ashton
I'm having trouble mounting CDs in my Toshiba SCSI CD drive. As soon as
I put a CD in (data or audio), the little green light on the front
flashes about 10 times, and then lights up permanently. The LED only
goes out when I eject the disk.

When I attempt to mount a (perfectly good) CD, I get;

  humbug:root mount -t iso9660 /dev/scd0 /cdrom
  mount: block device /dev/scd0 is write-protected, mounting read-only
  mount: wrong fs type, bad option, bad superblock on /dev/scd0,
 or too many mounted file systems

I was away on holiday for a week, and when I got back I powered on my
machine and everything seemed to start up normally (but I'd left an
audio CD in the drive and the Adaptec 2940 BIOS spent a long time
trying to determine if the CD was bootable before it went on to detect
my hard disk).

Before I went away I was using cdparanoia without any problems, and
normal CDs were mounting without incident.

I tried fiddling with the permissions, changing them from;

  br--r-   1 root cdrom 11,   0 Dec  1 20:25 /dev/scd0

to;

  brwxrwxrwx   1 root cdrom 11,   0 Dec  1 20:25 /dev/scd0

but (unsurprisingly) it's not made any difference.

Does it sound like a hardware problem, or could it be that something
needs resetting? Could it be Linux? A cold reboot doesn't seem to help.

TIA - I desperately want to do some more ripping!

-- 
Graham


Re: Self referencing

1999-01-26 Thread Ove Kaaven

On 25 Jan 1999, Henning Makholm wrote:

 Missy Batt [EMAIL PROTECTED] writes:
 
  Everything for both Debian and Red Hat seems self referencing.  How do I
  start using debian packages?... install the package dpkg.  How do I
  install that?
 
 Well, simply put, you don't convert your system from one
 distribution to another without a reinstallation.
 
 Debian does a fine job of 'live' upgrades between versions of itself,
 but there is no hope that a live upgrade path from another
 distribution can be created. The differences in the critical
 basic details are too big.

I did a live upgrade from Slackware to Debian, without rebooting (not that
it helps much, almost every process and daemon crashed during the libc
update anyway, but I just wanted to keep my 100+ days of uptime). I don't
recommend it for weak hearts and the unexperienced, though, but I did
write a document explaining what I did. (For critical daemons, I could
perhaps install and start libc6 versions of them before the libc5 update
to avoid having them down, but this would only apply to Slackware, not Red
Hat. For Red Hat, you may have hope that libc6 upgrade won't crash the
daemons, like httpd.)

I haven't completed the migration (what's holding me back is Slackware's
pine version which is newer than Debian's), so I haven't tried replacing
the basic filesystem packages (aaa_base, devs, etc, ide), but everything
else is replaced by Debian equivalents. devs may be tricky, because I
can't find which Debian package install /dev/*.

When completed, I had thought of giving the document to the Debian
project. If you would like to see it now, just mail me.


rtin: ... illegal character in hostname

1999-01-26 Thread Stef Hoesli Wiederwald
When I reply to an author of an usenet posting using rtin, I get the
following error message from our Mailserver:

|- Message log follows: -|
 no valid recipients were found for this message
|- Failed addresses follow: -|
 Adrian Sieber \[EMAIL PROTECTED] ... illegal character in hostname
|- Message text follows: |

Whats wrong with rtin?

Stef


Is DOMEX SCSI controller 436P supported by debian Linux?

1999-01-26 Thread Wojciech Zabolotny
Hi All!

I have got a SCSI scanner UMAX Astra 1200S, which was provided with
proprietary SCSI controller DOMEX 436P (Below the model code there
were additional characters:
9819
002-D436P-001
The whole controller board was marked as DMX3181LE 
(additionally on the sticker there was another number:
 UDS-IS11 PC/ISA P/N:970160-18)

Does anybody know if it is supported by linux, what it is compatible
is and how to compile the kernel to use it? I'd like to avoid
buying another SCSI controller. (Scanner is the only SCSI device I have).

TIA
Wojtek Zabolotny
[EMAIL PROTECTED]




GLX extension

1999-01-26 Thread Gregory Vandenbrouck
Xlib:  extension GLX missing on display groumph:0.0.
Xlib:  extension GLX missing on display groumph:0.0.

Does someone knows where/if I can add a GLX extension to my X server ?
I'm running on the latest debian with this:
ii  xserver-mach64  3.3.2.3a-8 X server for ATI Mach64-based
graphics cards
ii  xlib6   3.3.2.3a-8 shared libraries required by libc5 X
clients
ii  xlib6g  3.3.2.3a-8 shared libraries required by X
clients
ii  xlib6g-dev  3.3.2.3a-8 include files and libraries for X
client dev
ii  xbase   3.3.2.3a-8.1   X Window System (XFree86)
infrastructure
ii  xbase-clients   3.3.2.3a-8 basic X clients

TIA !


-- 
   \\|//  VDB g
   (O O)
OOO~(_)~oOOO~~~  :o)
mailto:[EMAIL PROTECTED]  :-xxx
ooO~Ooo  ~~:-)


LILO and two disks...

1999-01-26 Thread John Carter
Greetings Debians,

I have got LILO up an working on 3 different PC's no problem.

But this one gets me totally bamfoozled

Its quite simple. The guy has two hardisks in his PC. The PC is brand
new with latest and greatest bios that knows about LBA etc.

WinNT is on /dev/hda1, Linux is on /dev/hdc3.

I install lilo with any and every lilo.conf concievable (including the
one attached below), I reboot and it just comes back and says L.

Any working examples of lilo.conf files for systems with two disks and
linux on the second drive would be most welcome.

I'm using debian V2.0.

Thank you,


John CarterEMail: [EMAIL PROTECTED]
Telephone : 27-12-808-0374x194 Fax:- 27-12-808-0338
http://www.geocities.com/SoHo/Cafe/5947 or http://iwqs.pwv.gov.za

Knock. Knock.
Who's there?
GNU.
GNU who?
Don't cry Billy.

==
boot=/dev/hda
root=/dev/hdc3
# Generated by liloconfig
linear
prompt
install=/boot/boot.b
map=/boot/map
vga=normal
delay=20
image=/linux-2.2.0-p8
label=linux
read-only


Re: Debian goes big business?

1999-01-26 Thread J.H.M. Dassen
On Sat, Jan 23, 1999 at 12:48:47 +1100, Craig Sanders wrote:
 (BTW: TANSTAAFL was Larry Niven, not Heinlein IIRC)

I think you're confusing TANSTAAFL with tanj (there ain't no justice) here.

 i better stop now before debian-devel detours into an sf crit list for a
 while.

Some detours are interesting...

Debian-sf anyone? :-)

Ray
-- 
Tevens ben ik van mening dat Nederland overdekt dient te worden.


Re: help

1999-01-26 Thread Tom Pfeifer
If you haven't already, I would also read over the Debian install
documentation that can be found here:

ftp://ftp.debian.org/debian/dists/stable/main/disks-i386/current/install.html

If you have not done much partitioning, that is usually the toughest
step for most new users. The install document has a section on that
which should help. In addition, I would suggest taking a look at
Partition Magic 4.0 (even though it is a commercial program). Version
4.0 can work with Linux partitions and is the probably the simplest way
to partition a drive for dual booting, especially for newcomers. It's
manual has a lot of good information on it also.

Linux has it's own partitioning tools (fdisk, cfdisk), but I usually
prefer using either PM, or the open source Ranish Partition Manager
found here:

http://www.users.intercom.com/~ranish/part/

It's a DOS program now, but the author is considering porting it to
Linux from what I understand.

If you have any more specific questions, post again.

Tom


Tom

 Moshe Tarko wrote:
 
 Can someone help me set up a dual boot Linux Debian win98 system? I
 have 5 Gig of space and plan to partition 1 Gig for Linux. Also have
 AMD 300 mhz and 64 RAM. I guess I need a mentor cause I don't have
 that much Know how. I have read The Complete Linux Kit by Tauber and
 Running Linux by O'reily  Associates.
 Thanks in advance,
 Moshe


Unsual system check

1999-01-26 Thread homega
This is an unusual checking by my machine (this is all I could cutpaste),
has anything gone wrong here?


/dev/hda2 has reached maximal mount count, check forced.
Pass 1: Checking inodes, blocks, and sizes
Deleted inode 33194 has zero dtime.  Fix? yes

Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
Fix summary information? yes

Block bitmap differences: -134439 -134440 -134441 -134442 -134443 -13
-134445 -134446 -134447.  FIXED
Free blocks count wrong for group 16 (318, counted=327).  FIXED
Free blocks count wrong (57717, counted=57726).  FIXED
Inode bitmap differences: -33194.  FIXED
Free inodes count wrong for group #16 (1499, counted=1500).  FIXED
/dev/hda2 has reached maximal mount count, check forced.
Pass 1: Checking inodes, blocks, and sizes
Deleted inode 33194 has zero dtime.  Fix? yes




-- 
Un saludo,

Horacio
[EMAIL PROTECTED]

--
Quis custodiet ipsos custodet?
--


password security: john, cops, etc

1999-01-26 Thread Pere Camps
Hi!

Is there any debianized program to check the 'strictness' of
passwords. Something like john, cops, etc.

I'm also looking for a passwd replacement that enforces 'strict'
passwords.

TIA!

-- p.


Re: rtin: ... illegal character in hostname

1999-01-26 Thread Remco van de Meent
Stef Hoesli Wiederwald wrote:
 When I reply to an author of an usenet posting using rtin, I get the
 following error message from our Mailserver:
 
 |- Message log follows: -|
  no valid recipients were found for this message
 |- Failed addresses follow: -|
  Adrian Sieber \[EMAIL PROTECTED] ... illegal character in hostname
 |- Message text follows: |
 
 Whats wrong with rtin?

The \'s are not supposed to be there, and the 2nd one causes the bounce.

It's known that rtin isn't that good in handling From: lines in some cases
when replying. Just edit the To: line of your message to contain just To:
[EMAIL PROTECTED], without those quotes and without the full name etc.


bye,
 -Remco


Re: Unsual system check

1999-01-26 Thread E.L. Meijer \(Eric\)
 
 This is an unusual checking by my machine (this is all I could cutpaste),
 has anything gone wrong here?

[ output of regular fsck check ]

This is not a bug, it is a feature.  After a number of reboots, your
hard disks are checked by the fsck program.  The same thing happens if
you do not shut down properly.  The `errors' that were found (deleted
inode has zero dtime) are quite common.  They never caused any trouble
on systems I have seen.  If you get other errors, and if the question
`Fix ... ?' is not answered with `yes', you should start worrying.  If
there are any `lost files', they will be put in the `lost+found'
directory on the disk.

HTH,
Eric

-- 
 E.L. Meijer ([EMAIL PROTECTED])  | tel. office +31 40 2472189
 Eindhoven Univ. of Technology | tel. lab.   +31 40 2475032
 Lab. for Catalysis and Inorg. Chem. (TAK) | tel. fax+31 40 2455054


Re: linux 2.2.0: System is 666kB

1999-01-26 Thread Peter Eades
Thanks for the binary but...
when trying to boot with it the kernel uncompreses, gives the message
booting kernel and then stops. My machine is a cyrex 686 200. Does the
binary only work for intell chips? I noticed that specific suport for
non intell chips is a feature of 2.2.0. I guess this means I have to
compile my own for now then. Maybe a plain old fashioned i386 binary

Thanks for the effort anyway
Pete


Johnie Ingram wrote:
 
 -BEGIN PGP SIGNED MESSAGE-
 
 Hm, now theres a worrisome compile message.  :-)
 
 Anyway, for you early adopters, I've made source and debs available at:
 
 ftp.netgod.net/linux/v2.2
 
 Heres the checksums:
 
 ca629746d5baa1f3024a780312c96e28  kernel-doc-2.2.0_2.2.0-1_all.deb
 40d6ddb94ac0c0239a2a5b16818cbbdb  kernel-headers-2.2.0_2.2.0-1_i386.deb
 9079f07787cdeba5649b8daa651746ea  kernel-image-2.2.0-i686_2.2.0-1_i386.deb
 2be1baad527126c18d73f93f709758e1  kernel-source-2.2.0_2.2.0-1.diff.gz
 35fa180e872cd6180ae0cab22730938f  kernel-source-2.2.0_2.2.0-1.dsc
 98354d9bbe92ded9bdf3255b41319e19  kernel-source-2.2.0_2.2.0-1_all.deb
 be94a0187a3ac4ad41442f967ddb11c3  kernel-source-2.2.0_2.2.0.orig.tar.gz
 
 - -  PGP  E4 70 6E 59 80 6A F5 78  63 32 BC FB 7A 08 53 4C
 
__ _Debian GNU Johnie Ingram [EMAIL PROTECTED]  mm   mm
   / /(_)_ __  _   ___  __netgod irc.debian.org  mm mm
  / / | | '_ \| | | \ \/ / m m m
 / /__| | | | | |_| |Yes, I'm Linus, and I am your God. mm   mm
 \/_|_| |_|\__,_/_/\_\   -- Linus, keynote address, Expo 98   GO BLUE
 
 -BEGIN PGP SIGNATURE-
 Version: 2.6.3a
 Charset: latin1
 
 iQCVAwUBNq1GthCswmGWXGp9AQGvqwP9G+9Fly7F61WBtBohQ8Rm3dhICZaMxikJ
 7XL4wBrFvgXaW2HHAVSMgoK3QJMKbHYCsOvYHGqQF+OvC7XySgNxmSCG6/3kwnUd
 7OVnWma6giQEhJ2lYVeQZXx/y9aNQkm/I48jDJwvGPRJ95smTUvjmkRsY/Yl9Zq7
 7UKSeLnYQaU=
 =LEbq
 -END PGP SIGNATURE-
 
 --
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null


Re: Would like to drop Pine for Mutt

1999-01-26 Thread Johann Spies
I am also a Pine user and last year tried out Mutt for a while.  What I
found was that Mutt did not handle mail sent to a lot of users at the same
time very well.  I regularly send mail out to 20 or thirty people and I
could not do as easily with Mutt as with Pine.

Johann

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

 Wash me thoroughly from mine iniquity, and cleanse me 
  from my sin. For I acknowledge my transgressions; and 
  my sin is ever before me. Against thee, thee only, 
  have I sinned, and done this evil in thy sight...
   Psalms 51:2-4 


Re: 1 swap vs. 2 swap partitions

1999-01-26 Thread Hamish Moffatt
On Tue, Jan 26, 1999 at 09:02:48AM +0100, Helge Hafting wrote:
 Any IDE setup with drives on different cables will improve 
 when you split swap over several drives.  this because such drives
 can be accessed simultaneously.
 
 Don't bother spreading swap across drives on the *same* IDE cable,
 they can't be accessed simultaneously and will improve nothing.  Two drives
 on the same cable is very much like a single bigger drive - it is
 the least useful setup for any purpose.

But it's better than just one swap. You still get the advantage of
lower seek times, hopefully.

Also, on my last motherboard Linux did not seem to support DMA bus mastering
on the second controllre, only on the first. That's worth consideration
too.

Hamish
-- 
Hamish Moffatt VK3TYD  [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


Re: LILO and two disks...

1999-01-26 Thread Hamish Moffatt
On Tue, Jan 26, 1999 at 11:50:28AM +, John Carter wrote:
 I have got LILO up an working on 3 different PC's no problem.
 But this one gets me totally bamfoozled
 
 Its quite simple. The guy has two hardisks in his PC. The PC is brand
 new with latest and greatest bios that knows about LBA etc.
 
 WinNT is on /dev/hda1, Linux is on /dev/hdc3.

LILO needs BIOS-level access to hdc3. Perhaps this doesn't work on that
system. Does /sbin/lilo give any warnings when you run it?

I suggest that you get BOOTPART, and let the NT boot manager run
first. When you pick Linux from the boot menu, the boot sector
stuff installed by BOOTPART will let you boot Linux. I have Debian
on hdb5 here and I use the NT loader first.


Hamish
--
Hamish Moffatt VK3TYD  [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


Re: Unsual system check

1999-01-26 Thread Hamish Moffatt
On Tue, Jan 26, 1999 at 01:42:25PM +0100, E.L. Meijer Eric wrote:
  
  This is an unusual checking by my machine (this is all I could cutpaste),
  has anything gone wrong here?
 
 [ output of regular fsck check ]
 
 This is not a bug, it is a feature.  After a number of reboots, your
 hard disks are checked by the fsck program.  The same thing happens if
 you do not shut down properly.  The `errors' that were found (deleted
 inode has zero dtime) are quite common.  They never caused any trouble

I get quite a few errors usually when this occurs. Why is that?
To me, that indicates bugs in the file system drivers.


Hamish
-- 
Hamish Moffatt VK3TYD  [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


Re: Would like to drop Pine for Mutt

1999-01-26 Thread Hamish Moffatt
On Tue, Jan 26, 1999 at 02:36:22PM +0200, Johann Spies wrote:
 I am also a Pine user and last year tried out Mutt for a while.  What I
 found was that Mutt did not handle mail sent to a lot of users at the same
 time very well.  I regularly send mail out to 20 or thirty people and I
 could not do as easily with Mutt as with Pine.

In what way?


Hamish
-- 
Hamish Moffatt VK3TYD  [EMAIL PROTECTED], [EMAIL PROTECTED]
Latest Debian packages at ftp://ftp.rising.com.au/pub/hamish. PGP#EFA6B9D5
CCs of replies from mailing lists are welcome.   http://hamish.home.ml.org


Re: Re-Partition Ext2?

1999-01-26 Thread ulisses
-BEGIN PGP SIGNED MESSAGE-

Hi Frederick!

On 23 Jan 1999, Frederick Page wrote:

 
 Hi all,
 
 sorry for the probably dumb question: is there any tool to re-partition a  
 HD formatted with ext2 and without loosing data? Kind of a fips (DOS-util)  
 or the commercial tool Partition Magic?

I think partition magic (lastest versions) can do that

I hope this helps,


Ulisses
- -
Computers are useless. They can only give answers.Pablo Picasso

-BEGIN PGP SIGNATURE-
Version: 2.6.3a
Charset: latin1
Comment: PGP public key available at http://www.rediris.es/cert/keyserver

iQB1AwUBNq283g/N+5+NQ63pAQGPdwL+JJcgM9keQKjpJ8rLyMpnjy82xeqbfw71
Dtf7MyYceGlHS5A1dJ66kf1s/aXxRrjLO2U/GTH6t5bPvmQCNmKb33QtzVAd+yV0
9P18n0w2WjI41vVHqo4ezCwC3UeqzVVo
=qONN
-END PGP SIGNATURE-


Re: LILO and two disks...

1999-01-26 Thread wb2oyc
John,

If I were you, I'd get that linear attribute outta there!
Try it.

Paul


rtin and

1999-01-26 Thread Stef Hoesli Wiederwald
 The \'s are not supposed to be there, and the 2nd one causes the bounce.
 
 It's known that rtin isn't that good in handling From: lines in some cases
 when replying. Just edit the To: line of your message to contain just To:
 [EMAIL PROTECTED], without those quotes and without the full name etc.

Hm, but I never had this problem until some weeks ago. And now this
happens every time I try to reply.
So I wonder, what I could have done to cause this behaviour.

Stef


fetchmail/procmail tears mail apart

1999-01-26 Thread Christian T. Steigies
Hi,
I have a little trouble with fetchmail (hamm, 4.3.9-1), procmail (hamm,
3.10.7-6) tearing mails apart.
I think I tracked it down, when I fetch a mail containing a line with From
in the text, procmail sorts everything before From in the correct folder,
everything after From (the line with From is lost) ends up in my bulk
folder.
Is this a bug or a feature? Is there an easy solution to fix this, some
commandline switch or config change for fetchmail or procmail?

Ciao,
Christian.


Re: Unsual system check

1999-01-26 Thread Henning Makholm
E.L. Meijer \(Eric\) [EMAIL PROTECTED] writes:

 If there are any `lost files', they will be put in the `lost+found'
 directory on the disk.

In this case it looks as if some file (at inode 33194, spanning the
blocks 134439--134447) was a little more more lost than usually,
since the inode has already got marked as deleted.

fsck then completed the deletion process. Indeed, probably nothing
to worry about.

lost+found is usually for inodes that look OK but happen to not be
referenced from any directory, isn't it?

-- 
Henning Makholm
http://www.diku.dk/students/makholm


Re: fetchmail/procmail tears mail apart

1999-01-26 Thread Henning Makholm
Christian T. Steigies [EMAIL PROTECTED] writes:

 I have a little trouble with fetchmail (hamm, 4.3.9-1), procmail (hamm,
 3.10.7-6) tearing mails apart.

 I think I tracked it down, when I fetch a mail containing a line with From
 in the text,

It is a common phenomenon with mail system, tracing back to a design
mistake in the first email implementations. It should only affect
lines that begin with F, r, o, m, space.

I'm not sure which part of the chain is supposed to escape those
From's, but the -Y switch to procmail seems be connected with
this. Try inserting (or removing it, if it's already there) that and
see if it helps.

-- 
Henning Makholm
http://www.diku.dk/students/makholm


Re: GLX extension

1999-01-26 Thread Gary L. Hennigan
Gregory Vandenbrouck [EMAIL PROTECTED] writes:
| Xlib:  extension GLX missing on display groumph:0.0.
| Xlib:  extension GLX missing on display groumph:0.0.
|
| Does someone knows where/if I can add a GLX extension to my X server ?

The best you can currently do is about at the alpha level and isn't
being developed too heavily, at least I haven't heard anything about
it lately. Take a look at:

http://www.dpmms.cam.ac.uk/~werdna/XFree86-3D-status.html

It has a summary of all the 3D issues under Linux. 

On the commercial side I just saw an announcement in
news:comp.os.linux.announce from MetroLink about their Metro Extreme
3D. It's a full blown OpenGL implementation, with hardware
acceleration for some hardware, that I assume would include the GLX
extensions. I don't known anything further about it, but you can check 
their website (http://www.metrolink.com) to see what it's capabilities 
are and when it'll be released.

Gary


Re: Synchronizing Windows NT to Debian.

1999-01-26 Thread Jay Barbee
At 1/25/99 08:36 PM +0100, Rainer Clasen wrote:
Hi!

Greg Frye ([EMAIL PROTECTED]),
Re: Synchronizing Windows NT to Debian.:

 There is a precompiled binary of xntp3 for NT if you want the NT box to
 be a time server that sync's to the Debian box.  It you just want the NT
 box to be a client, I like Tardis a lot.  I have it on NT workstations
 set up to set the time from ntp broadcast.

... and if you don't need that much precission use net time /set at the
cmd prompt (maybe as sheduled job?) ...


Rainer

There is a program called Tardis that has client and server time services.
Seems pretty powerfull:

http://www.kaska.demon.co.uk

I don't think it is free.

Does NT's net time /set use ntp's port 123?

--Jay


Re: Would like to drop Pine for Mutt

1999-01-26 Thread Daniel Mashao
On Tue, 26 Jan 1999, Hamish Moffatt wrote:

 On Tue, Jan 26, 1999 at 02:36:22PM +0200, Johann Spies wrote:
  I am also a Pine user and last year tried out Mutt for a while.  What I
  found was that Mutt did not handle mail sent to a lot of users at the same
  time very well.  I regularly send mail out to 20 or thirty people and I
  could not do as easily with Mutt as with Pine.
 
 In what way?
 
Thanks guys for making my switching from pine to mutt informed. I think
one can use aliases to send mail to groups. I have not used the aliases so
far to know how they work. I was spoilt by pine simple method of making
aliases from the mail body using T(ake command). My pine-life is likely to
make me take sometime before converting.

/--/
Daniel J. Mashao
Electrical Engineering  [EMAIL PROTECTED]
University of Cape Town http://www.ee.uct.ac.za/~daniel 
Rondebosch, 7700, S. Africa (w) 27+21+650 2816  (h) 27+21+705 8469
/--/


Re: boot floppies -- thanks!!

1999-01-26 Thread Rene Hojbjerg Larsen
Ossama Othman wrote:
 
 I wanted to thank Robert Woodcock and everyone who helped me (sorry, I
 don't recall their names :( ) for helping me figure out how to boot my
 Dell PowerEdge Server 6300.  I am now the proud user (not owner, I wish!
 :) of a Quad-CPU Xeon Dell system with a gig (960MB with linux lim) of
 memory running Debian GNU/Linux 2.1 (potato).  Now if I could just get the
 rest of my colleagues to switch to Debian. :p

Just out of curiosity, how long does it take to compile a kernel on this
sucker?  (For maximum performance, use the -j compiler option.)

 The system is _smooth_ and stable!  Thanks again for the help and for a
 great OS!

Btw., are you running a 2.0 or a 2.2 kernel?  The 2.2 kernel should give a
substantial speed increase, esp. on multiprocessor system.  In case you
haven't noticed, kernel 2.2.0 was released less than 12 hours ago.
-- 
   /'`\  zzzZ  | My PGP Public Key is available at:
  ( - - )   | http://home1.inet.tele.dk/renehl/
--oooO--(_)--Oooo-- 
 Don't ya just hate it when there's not enough room to fin 


Re: fvwm2 and xterm placement

1999-01-26 Thread Michael E. Touloumtzis
On Mon, Jan 25, 1999 at 05:41:01PM +, ktb wrote:
 Hey,  + I exec xterm -geometry +154+137  worked!  Now how do I get
 rid of my initial xterm window that pops up when I first log in?

I had that problem until I created a .xsession file in my home directory,
like this:
#!/bin/sh
xhost uswwgp3q
exec fvwm2
That worked, so I stopped looking into it (there may be a better solution
in your case).  There are lots of ways to configures fvwm[2], which is
both a blessing and a curse.  BTW, I seem to remember that the .xsession
file permissions are important (it must be executable?).  Mine are:
-rwxr-xr-x   1 toumi01  toumi0130 Sep 11 19:15 .xsession

- MikeT

-- 
Michael E. Touloumtzis  mailto:[EMAIL PROTECTED]
Ingres Product Development
Computer Associates International


gnome menus

1999-01-26 Thread Brian Morgan
I've successfully installed the latest gnome packages, and it looks pretty
good.  I'm running it in conjunction with icewm and slink.  I'm having
difficulty using the menu items, however.  Most of the menu items in the
gnome menu are not working.  If I click on them, nothing happens.  Only a
few select items will actually open programs (like calendar and the menu
editor).  Even recently installed gnome packages do appear in the menu, but
they won't open.  I can get to them using the standard icewm menu, though.

Any suggestions?

Brian Morgan


Re: man missing ?

1999-01-26 Thread MallarJ
In a message dated 1/25/99 6:19:30 PM Central Standard Time,
[EMAIL PROTECTED] writes:

 Debian 1.3 is somewhat obsolete, but I think you need to install the
  man-db package, which is where the man command in 2.x is located.
  


Why on earth isn't man part of the standard dist?  I'd think it's important
enough - not everyone is a Linux guru when the get their first copy.

Jay

Jay


GNOME 0.93?

1999-01-26 Thread Vincent Murphy
 has anybody built .debs of GNOME CVS recently?

-vinny

--
   Vincent Murphy | CompSci Undergrad, UCC | [EMAIL PROTECTED] | (086) 8397405
  Never put off 'til tomorrow that which can be done the day after tomorrow.
   --Mark Twain


Re: GNUcash/Libs

1999-01-26 Thread Daniel Martin
Timothy Hospedales [EMAIL PROTECTED] writes:

 Hello! I am trying to get GNUCash to work; the binary distribution (1.1.23);
 converted with alien from rpm gives
 libXm.so.1 = not found
 libXmHTML.so.1.1 = not found
 libreadline.so.3 = not found
 Can anyone tell me what packages I need to get these libs?

Well, I don't know about that libreadline.so.3 (that looks weird - I
didn't think there was a readline with that version number), but those 
other two libraries look like motif libraries - you can get libXm.so.1 
from lesstif, but I don't know where to get the other ones.

Why don't you try the gnucash-gnome rpm?  That should be liked with
only libs from the gnome project, and you should be able to either
install it immediately or find the libs you need easily in Debian
packages.


Re: Browser for a slow computer?

1999-01-26 Thread MallarJ
In a message dated 1/25/99 7:05:10 PM Central Standard Time, [EMAIL PROTECTED]
writes:

 Now I use Lynx, but I want a graphic browser with HTML
  4.0, Java and images.  Netscape is too big to install
  in my machine.  Please, wich browser do you recommend
  to me?
  

FYI - Your message did come through the first time, I remember seeing it.

However, what you're looking for isn't in existence, with the exception of
Netscape.  Arena is another good browser, but I don't know if it supports Java
or not, in fact, I'm pretty sure it doesn't.  Also, I don't believe it's up to
HTML 4.0 yet.  However, I hear this is what the W3 consortium uses, so you can
bet it's stable and effective.  In fact, it's my browser of choice.

If you want all the features you mentioned, Netscape is your only option, and
probably will be for the forseeable future.

Jay


Re: password security: john, cops, etc

1999-01-26 Thread Jean Pierre LeJacq
On Tue, 26 Jan 1999, Pere Camps wrote:

   Is there any debianized program to check the 'strictness' of
 passwords. Something like john, cops, etc.
 
   I'm also looking for a passwd replacement that enforces 'strict'
 passwords.

There's cracklib which is a proactive checker in that it checks
passwords as the users set them.

Currently there are several bugs for the package but I'm actively
working on them.  Should see a new upload in a few days.

-- 
Jean Pierre



Re: Unsual system check

1999-01-26 Thread MallarJ
In a message dated 1/26/99 6:25:42 AM Central Standard Time,
[EMAIL PROTECTED] writes:

 This is an unusual checking by my machine (this is all I could cutpaste),
  has anything gone wrong here?
  
  
  /dev/hda2 has reached maximal mount count, check forced.
  Pass 1: Checking inodes, blocks, and sizes
  Deleted inode 33194 has zero dtime.  Fix? yes
  

[snip]


Unusual, maybe, but no a problem.  It simply means that the last time your PC
shut down, it didn't dismount your drives cleanly, and fsck is scanning (and
correcting) errors on them.

Jay


Re: password security: john, cops, etc

1999-01-26 Thread Pere Camps
Jean,

 There's cracklib which is a proactive checker in that it checks
 passwords as the users set them.
 Currently there are several bugs for the package but I'm actively
 working on them.  Should see a new upload in a few days.

Please tell me when you do.

Thank you very much.

-- p.


Compiling with X [bit off topic]

1999-01-26 Thread Rich Harran.
I need to plot some graphs output from a C program, which I need to be
portable to a SGI unix machine.  Thus I am trying to use the xlib library.
I have xlib6g-dev installed.  My test program inludes the lines:
#include X11/Xlib.h
And I compile with:
gcc -I/usr/X11R6/include -L/usr/X11R6/lib myproc.c
but get errors like
reference: undefined reference to 'XOpenDisplay'.
I checked in /usr/X11R6/include/X11/Xlib.h, and this contains a definition
of 
extern Display *XOpenDisplay( . . . 
Could anyone please tell me what command-line options, and what includes I
need to use the Xlib libraries with my c-programs?
Thanks in advange
Rich 


Re: Unsual system check

1999-01-26 Thread E.L. Meijer \(Eric\)
 
 In a message dated 1/26/99 6:25:42 AM Central Standard Time,
 [EMAIL PROTECTED] writes:
 
  This is an unusual checking by my machine (this is all I could cutpaste),
   has anything gone wrong here?
   
   
   /dev/hda2 has reached maximal mount count, check forced.
   Pass 1: Checking inodes, blocks, and sizes
   Deleted inode 33194 has zero dtime.  Fix? yes
   
 
 [snip]
 
 
 Unusual, maybe, but no a problem.  It simply means that the last time your PC
 shut down, it didn't dismount your drives cleanly, and fsck is scanning (and
 correcting) errors on them.

No, it doesn't mean that.  It clearly states `/dev/hda2 has reached
maximal mount count'.  This is the reason of the check:  after a certain
number of mounts, a routine check of the disks is done.  You are right
there are no big problems detected.

HTH,
Eric Meijer

-- 
 E.L. Meijer ([EMAIL PROTECTED])  | tel. office +31 40 2472189
 Eindhoven Univ. of Technology | tel. lab.   +31 40 2475032
 Lab. for Catalysis and Inorg. Chem. (TAK) | tel. fax+31 40 2455054


Re: man missing ?

1999-01-26 Thread Paul McDermott
hello, very simple.  Man-db is not necessary to run linux. it is nice to
have but if you don't have man linux can still run.  the other reason why
man is not included in the base distribution is the space issue.
Paul

On Tue, 26 Jan 1999 [EMAIL PROTECTED] wrote:

In a message dated 1/25/99 6:19:30 PM Central Standard Time,
[EMAIL PROTECTED] writes:

 Debian 1.3 is somewhat obsolete, but I think you need to install the
  man-db package, which is where the man command in 2.x is located.
  


Why on earth isn't man part of the standard dist?  I'd think it's important
enough - not everyone is a Linux guru when the get their first copy.

Jay

Jay


-- 
Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null


Re: password security: john, cops, etc

1999-01-26 Thread Jean Pierre LeJacq
On Tue, 26 Jan 1999, Pere Camps wrote:

  There's cracklib which is a proactive checker in that it checks
  passwords as the users set them.
  Currently there are several bugs for the package but I'm actively
  working on them.  Should see a new upload in a few days.
 
   Please tell me when you do.

Just check the frozen and unstable distributions on the debian
servers.  That's where they will go.

-- 
Jean Pierre



Re: man missing ?

1999-01-26 Thread David Wright
Quoting [EMAIL PROTECTED] ([EMAIL PROTECTED]):
 In a message dated 1/25/99 6:19:30 PM Central Standard Time,
 [EMAIL PROTECTED] writes:
 
  Debian 1.3 is somewhat obsolete, but I think you need to install the
   man-db package, which is where the man command in 2.x is located.
   
 Why on earth isn't man part of the standard dist?  I'd think it's important
 enough - not everyone is a Linux guru when the get their first copy.

Every package in the base installation has to be potentially /necessary/
for the installation process itself, not just desirable, i.e.
essential rather than important. For more details, see
/usr/doc/debian-policy/policy.text.gz section 2.3.6

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: LILO and two disks...

1999-01-26 Thread Mike Wood
On Tue, 26 Jan 1999, John Carter wrote:

 Greetings Debians,
 
 I have got LILO up an working on 3 different PC's no problem.
 
 But this one gets me totally bamfoozled
 
 Its quite simple. The guy has two hardisks in his PC. The PC is brand
 new with latest and greatest bios that knows about LBA etc.
 
 WinNT is on /dev/hda1, Linux is on /dev/hdc3.
 
 I install lilo with any and every lilo.conf concievable (including the
 one attached below), I reboot and it just comes back and says L.
 
 Any working examples of lilo.conf files for systems with two disks and
 linux on the second drive would be most welcome.
You know I've had the same problem for 2 years now.  I've never
found a way around it.  What kind of motherboard are you using?  Or in
particular what kind of IDE chipset do you have.  I've found this problem
to only happen when I have 2 IDE disks in.  Currently I have 3 SCSI
drives and 1 IDE.  The 'L' problem only happens when I install another
IDE drive as hd[bcd].  I tried the FreeBSD bootloader and it worked fine
so I know it's some sort of LILO problem.  Over the years I've tried every
imaginable LILO config that I could think of.  If you come across any
solution I would love to hear about it.


Mike Wood



Re: man missing ?

1999-01-26 Thread MallarJ
In a message dated 1/26/99 9:55:07 AM Central Standard Time,
[EMAIL PROTECTED] writes:

 hello, very simple.  Man-db is not necessary to run linux. it is nice to
  have but if you don't have man linux can still run.  the other reason why
  man is not included in the base distribution is the space issue.
  

I see that point, but

* How big is it, really, especially tarred and gzipped.  I can't imagine one
more boot disk is that big of an issue.  If it's more than one disk, maybe a
subset of the manpages is warranted that CAN be included.

* Being that man is the basic help system of Linux, it's too important to NOT
include in the boot disks.  ESPECIALLY for new users.  

* Man may not be required, but everyone on this list constantly points to man
pages.  The reference manuals constantly point to man pages.  It's totally
frustrating to be told to read the man pages, but you don't have them, and
can't figure out how to get them because you don't have the man pages.

Jay


Re: man missing ?

1999-01-26 Thread MallarJ
In a message dated 1/26/99 10:06:20 AM Central Standard Time,
[EMAIL PROTECTED] writes:

 Every package in the base installation has to be potentially /necessary/
  for the installation process itself, not just desirable, i.e.
  essential rather than important. For more details, see
  /usr/doc/debian-policy/policy.text.gz section 2.3.6
  

I installed my Debian system and it came complete with PPP, printer support,
PCMCIA support and ZIP drive support - how are all of those necessary for
installation?


Re: Compiling with X [bit off topic]

1999-01-26 Thread Gary L. Hennigan
Rich Harran. [EMAIL PROTECTED] writes:
| I need to plot some graphs output from a C program, which I need to be
| portable to a SGI unix machine.  Thus I am trying to use the xlib library.
| I have xlib6g-dev installed.  My test program inludes the lines:
|   #include X11/Xlib.h
| And I compile with:
|   gcc -I/usr/X11R6/include -L/usr/X11R6/lib myproc.c
| but get errors like
|   reference: undefined reference to 'XOpenDisplay'.
| I checked in /usr/X11R6/include/X11/Xlib.h, and this contains a definition
| of 
|   extern Display *XOpenDisplay( . . . 
| Could anyone please tell me what command-line options, and what includes I
| need to use the Xlib libraries with my c-programs?

More important to your problem is how you're linking. As a bare
minimum I'm guessing you'll need -L/usr/X11R6/lib -lX11 flags.

Gary


Re: Compiling with X [bit off topic]

1999-01-26 Thread Rich Harran.
Thanks a lot, this is exactly what I wanted to know.  Cheers
Rich

On 26 Jan 1999, Gary L. Hennigan wrote:

 Rich Harran. [EMAIL PROTECTED] writes:
 | I need to plot some graphs output from a C program, which I need to be
 | portable to a SGI unix machine.  Thus I am trying to use the xlib library.
 | I have xlib6g-dev installed.  My test program inludes the lines:
 | #include X11/Xlib.h
 | And I compile with:
 | gcc -I/usr/X11R6/include -L/usr/X11R6/lib myproc.c
 | but get errors like
 | reference: undefined reference to 'XOpenDisplay'.
 | I checked in /usr/X11R6/include/X11/Xlib.h, and this contains a definition
 | of 
 | extern Display *XOpenDisplay( . . . 
 | Could anyone please tell me what command-line options, and what includes I
 | need to use the Xlib libraries with my c-programs?
 
 More important to your problem is how you're linking. As a bare
 minimum I'm guessing you'll need -L/usr/X11R6/lib -lX11 flags.
 
 Gary
 
 
 -- 
 Unsubscribe?  mail -s unsubscribe [EMAIL PROTECTED]  /dev/null
 
 


Re: Compiling with X [bit off topic]

1999-01-26 Thread Richard E. Hawkins Esq.

 I need to plot some graphs output from a C program, which I need to be
 portable to a SGI unix machine.  Thus I am trying to use the xlib library.
 I have xlib6g-dev installed.  My test program inludes the lines:

This isn't the answer you're looking for, but i found the pgplot 
libraries did the graphing I needed reasonably easy.  They link nicely 
to f77 and c.  Linking them to f90 at the same time as imsl was tricky 
(they do funny casename stuff), but I figured out i could write 
one-line wrappers for them.  And with a single line, you can change the 
output from X to postscript to whatever.

rick

-- 



http proxy

1999-01-26 Thread Jeff Beley
I recently setup an authenticating proxy using squid, however whenever i run 
dselect it tells me proxy authentication required, how do i set this?
I alredy have http_proxy set correctly...

TIA
Jeff

-- 


---
Jeff Beley [EMAIL PROTECTED]
Network Administrator
PGP Key Availible upon request


Re: man missing ?

1999-01-26 Thread David Wright
Quoting [EMAIL PROTECTED] ([EMAIL PROTECTED]):
 In a message dated 1/26/99 10:06:20 AM Central Standard Time,
 [EMAIL PROTECTED] writes:
 
  Every package in the base installation has to be potentially /necessary/
   for the installation process itself, not just desirable, i.e.
   essential rather than important. For more details, see
   /usr/doc/debian-policy/policy.text.gz section 2.3.6
   
 
 I installed my Debian system and it came complete with PPP, printer support,
 PCMCIA support and ZIP drive support - how are all of those necessary for
 installation?

PPP is essential if you install through a modem connection to the
internet. PCMCIA is essential if that modem is a pcmcia card in a
laptop. I use the ZIP drive support to save pumping floppies, but
I only started doing this after it became necessary because I had
to install linux on a machine with an LS120 drive (which can only
read a floppy through the BIOS).
I'm not sure where you got printer support from - the lpr package
is not in the list, viz.

ii  lilo20-0.1 LInux LOader - Loads Linux from ...
ii  login   980403-0.3 Sign on to the system.
ii  makedev 1.6-32 Creates special device files in ...
ii  mawk1.3.3-2a pattern scanning and text proc...

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.


  1   2   >