agpgart

2001-08-12 Thread Ricardo Marcelo Alvarez

Alguien sabe si el chipset AMD 761 tiene algun driver para linux.
Yo probe con la opcion de amd irongate (o algo asi) y no me lo toma busque en 
google y no lo pude encontrar, y sin esto no tengo 3D en la maquina.

Gracias de antemano y saludos.



Archivos de configuracion DHCP ?

2001-08-12 Thread Francisca Ceballos

  Me gustaria saber cuales son todos los archivos
que se utilizan para hacer la conexion mediante
tarjeta de red y un modem cable. Tengo un Linux
Mandrake el cual se configuro solito y muy bien, y me
gustaria rescatarlos para usarlos con Debian :).
  He pensado tambien tomar el XF96Config y el GRUB
¿alguna idea mas sobre la configuracion de Linux?,
sobre la configuracion de programas y utilidades ya
tengo lo necesario. Gracias

___
Do You Yahoo!?
Yahoo! Messenger: Comunicación instantánea gratis con tu gente -
http://messenger.yahoo.es



Re: agpgart

2001-08-12 Thread 31
Ricardo Marcelo Alvarez wrote:
 
 Alguien sabe si el chipset AMD 761 tiene algun driver para linux.
 Yo probe con la opcion de amd irongate (o algo asi) y no me lo toma busque en
 google y no lo pude encontrar, y sin esto no tengo 3D en la maquina.

Yo tengo una MSI 6195 con el chip AMD 751 y el AGP IRONGATE, compilo el
kernel con soporte fijo (no modulo) de agp y irongate y creo que el VIA
y me lo reconoce
Linux agpgart interface v0.99 (c) Jeff Hartmann agpgart: Maximum main
memory to use for agp memory: 94M agpgart: Detected AMD Irongate chipset
agpgart: AGP aperture is 64M @ 0xe800
-- 
   ___   ___   ____  _   ___
  | -  /   \ | -\/  / - \
  | _ \ | | | |   \   | | |
 SALUDOS  |___/ \___/ |_|\_\ _/\_ |_|_|



Primeros pasos en programacion en C :consejos

2001-08-12 Thread El Debianita User
Saludos Debianitas!!!
Pues eso mismo que indica el subject estoy enpezando mis primeras
practicas en C en la universidad y me dije por que no aprovechar a
Debian para esto?
Por supuesto los primeros ejercicios son sencillos ya que no tendremos
programacion visual,pero mi gran problema se plantea al desconocer el
entorno de programacion en C de Debian ,por lo tanto no se por donde
comenzar,bueno se que por el principio,pero cual es este? :))
El asunto es que he visto que potato trae varios editores,cual de ellos
servira para prgramar en C?,o cual sera el mejor?otra duda es que por
ejemplo el kde trae un ide completo, trae Debian algo parecido?,o me
vere obligado a usar un editor por separado y el compilador por el
otro,etc?
He instalado el paquete completo de programacion en C de mi potato pero
realmente no lo comprendo,me ha instalado  un tal autoproject (que
es?),un Data Display debugger,pero de igual forma sigo perdido...
Los saluda..
Juan ortiz






off topic - usernet

2001-08-12 Thread cosmo
All

Por acaso alguem conhece algum news que tenha acesso a usernet ?!?!?

[ ]'s

[EMAIL PROTECTED]
GNU/Linux Debian



Re: atualizacao do kernel e instalacao modem motorola HSP 56 modem/fax

2001-08-12 Thread Emerson Val Silva
On Saturday 11 August 2001 08:43, Carlucio Lopes wrote:
 oi pessoal,

 ha alguns dias estou tentando instalar meu modem motorola HSP 56 modem/fax
 soh que no site www.motorola.com  o drive que consta e para kernel 2.4,
 sendo assim baixei via window$  no site da www.cipsga.com.br  o kernel 2.4
 arquivo linux-2.4.0.tar.bz2.
 nao consegui desconpactar o arquivo linux-2.4.0.tar.bz2, tentei tar,
 gunzip. pode ser que tenha errado no comando para descompactar.

 outrossim alguem me pode indicar um caminho melhor para que consiga
 instalar este modem, eu sei que nao eh facil pois eh da familia wimodem
 (linmodem).

 mas uma coisinha (off-topic talvez), visto que ainda estou familiarizando
 com o sistema operacional, baixei uma apostilia para programacao C , soh ue
 para compilar exije a biblioteca ncurses.c , nao consegui achar pelo meu CD
 (revista arquivo linux nr.03). apt-cache search ncurses.

 aguardo ajuda,

 Carlucio

Está compactado com bzip2, descompacta-se com:
no potato:

tar xIf linux-2.4.0.tar.bz2

ou

no woody:
tar xJf linux-2.4.0.tar.bz2



Acesso serial (POSIX).

2001-08-12 Thread Emerson Val Silva


E ai gente!

Estou perguntando à lista porque nenhuma outra deu resposta.
Peguei todo tipo de documento sobre comunicação serial em linguagem C, mas 
até agora não funcionou. Os dados não são recebidos pelo outro micro, mas com 
echo msg  /dev/ttyS1 e cat /dev/ttyS1 funciona perfeitamente. Onde estou 
errando, onde encontrar exemplos que funcionem?
O codigo logo abaixo que estou rodando com modificações:

#include stdio.h
#include string.h
#include unistd.h
#include fcntl.h
#include errno.h
#include termios.h


int abre_porta (void)
{
int fd; /* Descricao de arquivo pra porta */

fd = open (/dev/ttyS1, O_RDWR | O_NOCTTY | O_NDELAY);

if (fd == -1)
perror (abre_porta: Não pôde abrir porta - );
else
fcntl (fd, F_SETFL, 0);

return (fd);
}


int main (int argc, char **argv)
{
int fd = abre_porta ();
struct termios options, old;
char buf;

tcgetattr (fd, old); /* Obtendo opções */
tcgetattr (fd, options); /* Obtendo opções */

cfsetispeed(options, B115200);   /* Mudando velocidade 
*/
cfsetospeed(options, B115200);

options.c_cflag |= (/*CLOCAL |*/ CREAD);

options.c_cflag = ~CSIZE;  /* Mask the character size bits */
options.c_cflag |= CS8; /* Select 8 data bits */

options.c_lflag = ~(ICANON | ECHO | ECHOE | ISIG);

tcsetattr(fd, TCSANOW, options);   /* Ativa 
mudanças */

/* Loop principal 
while (buf != EOF)*/
{
/*buf = getchar();*/
if (write (fd, Teste.\r, 7)  7)
fputs (Nao enviou nada!, stdout);
}
/* Loop principal */

fcntl (fd, F_SETFL, 0);
tcsetattr(fd, TCSANOW, old);   /* Ativa mudanças */

close (fd);
}





Re: off topic - usernet

2001-08-12 Thread Ricardo Castanho de O. Freitas
On Sun, 12 Aug 2001, cosmo wrote:

Olá Cosmo!

Desculpe! não entendi sua pergunta direito
Você quer provedor de news gratuíto para acesso a usenet, é isto?
Atualmente, os provedores 'news'são pagos, mas eu recebi uma lista
como todos nós gostamos, gratis
Se for isto, me avise que te mando!

Programa, eu escolhi o pam, que parece ser o melhor que eu encontrei até
agora

O pam tenta imitar o fortè! (conhece?) mas não chega aos pés...;-(
pena que o fortè seja windows!!!

[]s Ricardo Castanho

All

Por acaso alguem conhece algum news que tenha acesso a usernet ?!?!?

[ ]'s

[EMAIL PROTECTED]
GNU/Linux Debian


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



-- 
==
Ricardo C.O. Freitas [EMAIL PROTECTED]
Linux user # 102240 = [EMAIL PROTECTED] user - SE440BX-2
PII-400-128Mb-2hd (13+4,3Gb) + Invicta 1L de Café Pilão©
Machine # 96125 - CL6 + PINE (This msg is 100% MS Free!)
=
You will gain money by an immoral action.



Site Linux Security foi hackeado.

2001-08-12 Thread teste teste1


O site do Linux Security foi hackeado acabei de
acessar e a página pricipal foi trocada por outra.





___
Yahoo! GeoCities
Tenha seu lugar na Web. Construa hoje mesmo sua home page no Yahoo! GeoCities. 
É fácil e grátis!
http://br.geocities.yahoo.com/



Re: PS para PDF

2001-08-12 Thread Gustavo Noronha Silva
Em Sun, 12 Aug 2001 00:15:23 -0400
Gleydson Mazioli da Silva [EMAIL PROTECTED] escreveu:

 Nivaldo A. P. de Vasconcelos wrote:
  
  Eu só conheço este ... se não me engano ... ele vem junto com ghostscript.
  
  A propósito: tem alguma forma de saber de que pacote foi instalado 
  determinado
  arquivo ??
 dpkg -S arquivo
esse é o melhor método, mas só funciona quando o pacote está instalado...
para saber de qualquer pacotes disponível você pode usar o auto-apt 
assim:

auto-apt check /caminho/arquivo

mas lembre-se de atualizar o DB do auto-apt com 'auto-apt update' e
'auto-apt updatedb'

por exemplo:

[EMAIL PROTECTED]/] # auto-apt check /usr/bin/ps2pdf
text/gs,non-free/text/gs-aladdin

aí sai que o arquivo existe nos pacotes gs (que está na seção text)
e no gs-aladin (que está na seção text da non-free)

btw, não sei se o auto-apt existe no potato mas já vou preparar 
docs melhores pra ele no pratico ;)

[]s!

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



Re: rede domestica

2001-08-12 Thread Gustavo Noronha Silva
Em Sat, 11 Aug 2001 23:46:10 -0300
André Luís [EMAIL PROTECTED] escreveu:

   Esta rede é para o meu aprendizado sobre redes, mas eu não tenho 
 encontrado
 informações de como faze-lo, sou leigo no assunto e tenho curiosidade de
 saber como faze-la, tenho procurado pela internet informações sobre como
 fazer esta rede domestica ( achei numa revista sobre o assunto, mas lá está
 dizendo que no windows é mais fácil de configurar, eu achei que no linux
 deveria ser também) . Se alguém puder me informar ( ou alguma documentação)
no windows deve ser mais fácil configurar mesmo... depois de 10 reboots
você tem o seu DNS e seu ip configurados

 como fazer esta rede, serei grato.
http://www.debian.org/doc/manuals/network-administrator/

esse manual de administração de rede do Debian... será uma boa ler... 
não sei bem em que pé está... mas está em desenvolvimento ativo...
uma lida em algum howto é uma boa... 

 p.s. Eu estou com o debian instalado no meu computador principal
 (um pentiun II 333) e o outro é um pentiun 200 sem nenhum tipo de S.O.
 instalado.
com 1 só computador instalado você não faz nada ;)

[]s!

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



Re: Site Linux Security foi hackeado.

2001-08-12 Thread Carlos Laviola
On Sun, Aug 12, 2001 at 01:43:12AM -0300, teste teste1 wrote:
 
 O site do Linux Security foi hackeado acabei de
 acessar e a página pricipal foi trocada por outra.

E daí?

-- 
 _ _  _| _  _  | _   . _ | _  http://laviola.org  Debian-BR Project
(_(_|| |(_)_)  |(_|\/|(_)|(_| uin#: 981913 (icq)  debian-br.sf.net

Linux: the choice of a GNU generation - Registered Linux User #103594



hdparm

2001-08-12 Thread Raphael Derosso Pereira - DephiNit
Olá pessoal,

Comprei um HD novo IDE (antes tinha SCSI) e gostaria de saber como melhorar o 
seu desempenho com o hdparm. Eu lembro de isto já ter sido discutido aqui, 
mas não me lembro da época.

Qualquer ajuda será ótima,

Obrigado,

-- 
 Raphael Derosso Pereira - DephiNit

 *-=-*-=--=-*-=-*-=--=*=-*
/ [EMAIL PROTECTED] /
   *-=-*-=--=-*-=-*-=--=*=-*

 -=*=--=*=--=*=--=*=--=*=--=*=--=*=-
|  Debian GNU/Linux Addicted User   |
|  Use it, Abuse it. It's Free!!!   |
 -=*=--=*=--=*=--=*=--=*=--=*=--=*=-



Re: Faculdade de Sistema de Informações (OFF Topic)

2001-08-12 Thread Leandro Guimarães Faria Corsetti Dutra

#On Thu, 9 Aug 2001, Gustavo Noronha Silva wrote:
#
# aliás... eu vi uma coisa que me deixou muito espantado essa semana
# passada... um outdoor de uma universidade conveniada à Microsoft e
# à Oracle... onde o mundo vai? Você sai da faculdade certificado MS
# hahaha... que droga...

Pois é, e tem propaganda assim também nos cadernos de empregos de São
Paulo.  Deve ser a mesma, se bem que acho que isso há de se tornar cada
vez mais comum.



Rodrigo Morais Araujo wrote:
  On Fri, 10 Aug 2001, Rogerio Neves Batata wrote:
 
 On Fri, 10 Aug 2001, Rodrigo Morais Araujo wrote:
 
#dentro dos nossos laboratorios tem mais de 1 milhão de reais em 
licença de

#softwares doados pela *bonissima* Micrsoft... É isso ai... dah as
#licenssas de *graça* para depois ganhar mais na frente. O que me

Quanto à Microfoffy ganhar mais na frente, é mais perto do que
você imagina... eles deixam você se familiarizar, se acostumar com os
vindous por lá... e duma hora pra outra eles dizem... acabou a festa,
agora tem que pagar.

 Quanto a isso acho que eles não fazem não! Vão deixar de formar
 profissionais que mechem com os produtos dela e que saem da facudade indo
 para empresas que terão que comprar as licenças cada veis mais abusivas

O pior é que fazem sim, toda empresa -- não, toda organização -- acaba 
se
tornando uma reprodução de seus fatores iniciais de sucesso, e costuma
persistir nessas características mesmo quando elas se tornam
inadequadas, ameaçando seu próprio futuro.  Entram em um modo de
suicídio corporativo.

A Microsoft tem um agravante: o modo no qual ela opera é insustentável.
Ela teria de se reorganizar totalmente para atuar sem monopólio nem
segredos, que dirá num mundo de sistemas livres.  E num mundo sem
monopólios não haveria lugar para a Microsoft -- aliás, num mundo de
liberdade não haveria lugar para um vendedor de programas tão grande.  E
ela não quer se reorganizar, muito menos desinchar.  Aí tem de sugar
mais seus clientes para se sustentar, e mais clientes migram para
sistemas livres, e aí vai.

A reação dela é ameaçar cada vez mais clientes nos quais antes ela
tolerava a cópia não autorizada, e o DMCA.



 dos seus produtos? É uma pena que uma das facudades mais conceituadas do
 Brasil tenha tantas pessoas bitoladas a isso... tanta gente boa que só

Qual seria?  Não era bom começar a dar nome aos bois?



 dinheiro! Não que eu não queira ganhar dinheiro, mas temos que pensar 
mais

 um pouco nos outros e ajudar o nosso pais a ganhar o conhecimento
 tecnologico e humano, sair dessa miseria que bate nossas portas todos

Infelizmente quem pensamos assim somos uma ínfima minoria.  Muitos falam
assim, poucos (tentamos) agir.



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




Re: rede domestica

2001-08-12 Thread Nivaldo A. P. de Vasconcelos
Sugiro vc. dar uma olhada, inicialmente, no HOWTO Networking ... lá tem os 
passos e os
conceitos
para vc. conseguir colocar sua rede pra funcionar ... chegou um micro por aqui 
e, por
estes dias estou
em condição semelhante a sua:
* Dois micros: (1) Debian potato/woody (2) Conectiva 6.0
* Cabo cross-over e
* Enquanto não consigo instalar o modem no Conectiva (se alguém puder
dar uma força), um ponto de saída para internet.


Assim se o bicho pegar ... fala aí ..


Um abraço,
Nivaldo

André Luís wrote:

  Olá pessoal
  Saudações e Felicidades a todos
 Estou aqui com uma pequena (talvez sim, talvez não) duvida, como 
 configurar
 uma pequena rede domestica, composta por:
 - dois computadores;
 - duas placas de rede de 10Mbps;
 - um cabo do tipo crossover (cabo invertido).
 Esta rede é para o meu aprendizado sobre redes, mas eu não tenho 
 encontrado
 informações de como faze-lo, sou leigo no assunto e tenho curiosidade de
 saber como faze-la, tenho procurado pela internet informações sobre como
 fazer esta rede domestica ( achei numa revista sobre o assunto, mas lá está
 dizendo que no windows é mais fácil de configurar, eu achei que no linux
 deveria ser também) . Se alguém puder me informar ( ou alguma documentação)
 como fazer esta rede, serei grato.
 Sem Mais, um abraço a todos
 André Luís
 p.s. Eu estou com o debian instalado no meu computador principal
 (um pentiun II 333) e o outro é um pentiun 200 sem nenhum tipo de S.O.
 instalado.

 ---

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



Re: PS para PDF

2001-08-12 Thread Nivaldo A. P. de Vasconcelos
Muito obrigado.

Um abraço,
Nivaldo

Gleydson Mazioli da Silva wrote:

 Nivaldo A. P. de Vasconcelos wrote:
 
  Eu só conheço este ... se não me engano ... ele vem junto com ghostscript.
 
  A propósito: tem alguma forma de saber de que pacote foi instalado 
  determinado
  arquivo ??

 dpkg -S arquivo

 ---
 Gleydson Mazioli da Silva
 [EMAIL PROTECTED]
 [EMAIL PROTECTED]

 Se concentração ganhasse jogo, o time do presídio não perdia um.

 --Neném Prancha, treinador e filósofo do futebol brasileiro.



Re: PS para PDF

2001-08-12 Thread Nivaldo A. P. de Vasconcelos
Valeu meu caro ... muito obrigado.

Um abraço,
Nivaldo


Gustavo Noronha Silva wrote:

 Em Sun, 12 Aug 2001 00:15:23 -0400
 Gleydson Mazioli da Silva [EMAIL PROTECTED] escreveu:

  Nivaldo A. P. de Vasconcelos wrote:
  
   Eu só conheço este ... se não me engano ... ele vem junto com ghostscript.
  
   A propósito: tem alguma forma de saber de que pacote foi instalado 
   determinado
   arquivo ??
  dpkg -S arquivo
 esse é o melhor método, mas só funciona quando o pacote está instalado...
 para saber de qualquer pacotes disponível você pode usar o auto-apt
 assim:

 auto-apt check /caminho/arquivo

 mas lembre-se de atualizar o DB do auto-apt com 'auto-apt update' e
 'auto-apt updatedb'

 por exemplo:

 [EMAIL PROTECTED]/] # auto-apt check /usr/bin/ps2pdf
 text/gs,non-free/text/gs-aladdin

 aí sai que o arquivo existe nos pacotes gs (que está na seção text)
 e no gs-aladin (que está na seção text da non-free)

 btw, não sei se o auto-apt existe no potato mas já vou preparar
 docs melhores pra ele no pratico ;)

 []s!

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

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



Paginas de manual em portugues.

2001-08-12 Thread Algot
Oi gente,
Soube que na ldp-br tem muitas coisas novas traduzidas. Mas como eu 
faço para colocar paginas de manual novas aqui ?
Obrigado novamente,

Algot.



Re: hdparm

2001-08-12 Thread Carlos Laviola
On Sun, Aug 12, 2001 at 10:53:21AM -0300, Raphael Derosso Pereira - DephiNit 
wrote:
 Olá pessoal,
 
 Comprei um HD novo IDE (antes tinha SCSI) e gostaria de saber como melhorar o 
 seu desempenho com o hdparm. Eu lembro de isto já ter sido discutido aqui, 

Existem várias formas. Acho que isso foi falado na Dicas-L. Você pode
habilitar o uso de DMA no HD, que pode deixar as transferências mais
rápidas. O que eu fiz foi forçar no kernel o uso de UDMA 66/100, que meu
HD suporta, mas não é habilitado sem passar uma opção no kernel. Por si
só, isso já torna o HD bastante rápido pra mim. Dá uma olhada na manpage
do hdparm, e, mais importante ainda, *não tente forçar modos no seu HD
que você não tem certeza que ele suporte, a menos que você esteja
disposto a encarar as consequências, que podem envolver graves perdas de
dados*.

É isso.

-- 
 _ _  _| _  _  | _   . _ | _  http://laviola.org  Debian-BR Project
(_(_|| |(_)_)  |(_|\/|(_)|(_| uin#: 981913 (icq)  debian-br.sf.net

Linux: the choice of a GNU generation - Registered Linux User #103594



Re: Motorola SM56 SoftModem... Ok, errei.

2001-08-12 Thread jcareca
Daniel,

Primeiro, realmente o SM56 e' bem pesado...
sm561346016 1 (autoclean)
1.3Mb... Nao e' mole...

Mas acho q o problema era a versao do kernel,
mesmo. Compilei o 2.4.5 e esta' funcionando,
pelo menos dentro do possivel.

Nesse momento estou escrevendo pelo webmail do
Terra (ugh!), pelo Mozilla no X 4.0, que baixei
ja' pelo Linux.

Valeu a dica.

[]s, Cassiano

 -- Mensagem original ---

 De  : Daniel Longhi [EMAIL PROTECTED]
 Para: Cassiano Leal [EMAIL PROTECTED]
 Cc  : debian-user-portuguese@lists.debian.org
 Data: Tue, 7 Aug 2001 01:23:02 -0400
 Assunto : Re: Motorola SM56 SoftModem...  Ok, errei.

 Oi Cassiano,

 Eu tive um desse =(
 Felizmente nao tenho mais, troquei por um lucent:
 lt_serial  20928   2  (autoclean)
 lt_modem  314624   0  (autoclean) [lt_serial]
 que é bem mais leve, rápido e rouba muito pouco do processamento do
meu p166 c/32ram..

 mas vamos ao que interessa...

 Eu sugiro a vc que se inscreva na lista de discussao do site
www.linmodems.org
 achei a seguinte msg lá:
 --
 Subject: motorola sm56 problem
 From: Burbure Pavan [EMAIL PROTECTED]
 Date: Mon, 30 Jul 2001 14:08:49 +0530

 Hi, The motorola sm56 drivers do not work with kernel 2.4.6  2.4.7.
When
 I try modprobe sm56, I get a kernel segmentation fault with a message
 like kernel bug in slab.h Anybody has got this working with these
kernels.

 -Pavan
 --

 Só que infelizmente nao foi respondida...

 Vc tb pode tentar escrever para:
 [EMAIL PROTECTED]

 Boa sorte,

 []s

 Daniel




man pages para download!

2001-08-12 Thread Ricardo Castanho de O. Freitas
Olá Pessoal!

Segundo me solicitaram, estou encaminhando para lista o endereço abaixo!

Os link para download dos arquivos são:
http://ldp-br.conectiva.com.br/projetos/man-pages/

Mas, pergunte ao kov ou alguém que possa esclarecer quanto as
particularidades no Debian...
Aliás, eu gostaria de saber... seria só fazer o download ou algum 'port'?

[]s Ricardo Castanho

==
Ricardo C.O. Freitas [EMAIL PROTECTED]
Linux user # 102240 = [EMAIL PROTECTED] user - SE440BX-2
PII-400-128Mb-2hd (13+4,3Gb) + Invicta 1L de Café Pilão©
Machine # 96125 - CL6 + PINE (This msg is 100% MS Free!)
=
Don't let your mind wander -- it's too little to be let out alone.



Re: Rato USB

2001-08-12 Thread Itamar Grochowski Rocha
Dany escreveu em Fri, Aug 10, 2001 at 01:34:48AM +0100:
 Oi lista.
 
 O meu problema é o seguinte. Eu tenho um rato Microsoft Wheel Mouse
 Optical USB, e não o estou a conseguir configurar no Linux.  
 Como vim do Windows para o Linux, eu reparei nas propriedades do
 Windows, que se trata de um despositivo HID. Eu tenho o Debian r.3 e
 gostaria de saber o que fazer para por o rato a rolar.
 E já agora em que despositivo é que o vou encontrar?

Eu uso o mesmo mouse na entrada PS/2. Instale o pacote imwheel e leia
/usr/doc/imwheel/README.gz .

Se você quiser usar a porta USB recomendo uma busca no site
http://www.linux-usb.org .

Boa sorte!

-- 
\\|||///
Itamar Grochowski Rocha

Fortune cookie for you:

Há boas razões para proteger a Terra. É o modo mais seguro e correto de
prolongar a lucratividade 

--Paul Allaire
//|||\\\



Re: off topic - usernet

2001-08-12 Thread hzi
Em dom, 12 ago 2001 01:22:32cosmo escrito:
 All
 
 Por acaso alguem conhece algum news que tenha acesso a usernet ?!?!?
 
 [ ]'s
 
 [EMAIL PROTECTED]
 GNU/Linux Debian
 
 

Cosmo-

news.cis.dfn.de é um dos poucos sobreviventes, após o escândalo da 
pedofilia na internet.
Cadastre-se via Web, antes. Necessita autorização, e não pode 
postar binários. Mas tem todos os newsgroups de que se precisa.

[ ]s
Henry



squid 2.4.1-6 compile error

2001-08-12 Thread nestea
hi all,

here is what i did;

$ apt-get source squid

$ dpkg-source -x squid_2.4.1-6.dsc

$ cd squid-2.4.1

$ debian/rules build

pam_auth.c:74: security/pam_appl.h: No such file or directory
make[1]: *** [pam_auth.o] Error 1
make[1]: Leaving directory `/etc/apt/squid-2.4.1/auth_modules/PAM'
make: *** [build] Error 2


any idea?



nestea



[OT] avoiding recursive readline commands in .inputrc

2001-08-12 Thread Peter Jay Salzman
hi all,

in bash, i'd like to map the uparrow key to escape uparrow.  the trouble is
that there doesn't seem to be a way to make readline avoid the infinite
recursion that results.  specifically, i'm trying to do:

$if bash
OA: OA
$endif

why?  because i like using vi style editing in bash, but i hate the fact that
i have to press escape before the uparrow starts showing command history.

pete



Re: squid 2.4.1-6 compile error

2001-08-12 Thread ktb
On Sun, Aug 12, 2001 at 04:38:52AM +, nestea wrote:
 hi all,
 
 here is what i did;
 
 $ apt-get source squid
 
 $ dpkg-source -x squid_2.4.1-6.dsc
 
 $ cd squid-2.4.1
 
 $ debian/rules build
 
 pam_auth.c:74: security/pam_appl.h: No such file or directory
 make[1]: *** [pam_auth.o] Error 1
 make[1]: Leaving directory `/etc/apt/squid-2.4.1/auth_modules/PAM'
 make: *** [build] Error 2
 

Looks like you need pam_appl.h which is in package libpam0g-dev
I found that out by searching at -
http://www.debian.org/distrib/packages

Installing libpam0g-dev is where I would start anyway.  

You could also download the source and build into a .deb with one 
command - 
# apt-get -b source package_name
hth,
kent

-- 
 From seeing and seeing the seeing has become so exhausted
 First line of The Panther - R. M. Rilke




Re: libdb.so.3

2001-08-12 Thread Michael P. Soulier
On Sun, Aug 12, 2001 at 01:45:59PM +1000, CaT wrote:
 
 Dunno if this was suggested but have you tried putting in the src lines
 for unstable in the apt sources.list file and then doing
 
 apt-get -b source libdb3 (or whatever the package is called)
 
 in some work dir?

Nope. I worked around the problem. I think what may have happened is that
the tools are assuming a relatively full install to upgrade from, but this was
a bare install with very little installed, and then dist-upgraded. I suspect
that as that is not the average case, it is unexpected. 

Mike

-- 
Michael P. Soulier [EMAIL PROTECTED] 
With sufficient thrust, pigs fly just fine. However, this is not necessarily a
good idea. It is hard to be sure where they are going to land, and it could be
dangerous sitting under them as they fly overhead. -- RFC 1925


pgpvDXqx0JMFw.pgp
Description: PGP signature


Re: Toggle English/Dvorak keybaord in wmaker?

2001-08-12 Thread joel_mayes
 Noah == Noah Meyerhans [EMAIL PROTECTED] writes:

Noah The most useful suggestion I found was to define an alias
Noah that allowed you to type 'asdf' at the command line to
Noah switch to dvorak, and the dvorak equivalent (aieu?) to
Noah switch back to qwerty mode.  All it really used was xmodmap
Noah and a couple of bash aliases.  You could probably figure out
Noah how to set it up if you want to read the docs on bash and
Noah xmodmap, or you can try to find that web site.

If you install the dvorak7min package it come with 2 scripts that do
this but doesn't install them by default, just copy the files asdf
and aoeu in the /usr/doc/dvorak7min/examples/ to somewhere in your
$PATH. They both work under X and on the console

-- 
Joel



libc6 2.2.3-10 and atexit() problems, interim fix available

2001-08-12 Thread Ben Collins
In about 20 minutes, you can download this package:

http://auric.debian.org/~bcollins/libc6_2.2.3-10.0.1_i386.deb

size: 3413348
md5sum: 7d4535a0bb44145b098751d6959c3679

It solves the problem with the missing atexit symbol. I'll be uploading
a 2.2.3-11 soonish.

Please refrain from filing further bugs :)

-- 
 .--===-=-==-=---==-=-.
/  Ben Collins  --  ...on that fantastic voyage...  --  Debian GNU/Linux   \
`  [EMAIL PROTECTED]  --  [EMAIL PROTECTED]  --  [EMAIL PROTECTED]  '
 `---=--===-=-=-=-===-==---=--=---'


pgpp5CqsbkQiq.pgp
Description: PGP signature


how can i copy my pkg choices to another machine?

2001-08-12 Thread Chris Palmer
Hi, guys...

I've been running debian for years, but only on a couple
machines until recently.  Now, I'm setting up a new machine 
to replace one of my other machines and wanted to clone the
choices for packages to have installed and then have apt-get
get everything downloaded and installed for me the way I
have it on the other machine.

I've found some files under /var/lib/dpkg that contain
status of packages, but I don't think I'm fully on the
right track.

I've used both dselect and apt-get and am leaning towards
using apt-get for all my package needs these days.

Any advice on how I can do this would be great, as it would
be a pain to go through the packages one-by-one and flag
them (in dselect)...  :)

Thanks!

-Chris



Re: how can i copy my pkg choices to another machine?

2001-08-12 Thread Sebastiaan
High,

On Sun, 12 Aug 2001, Chris Palmer wrote:

 Hi, guys...
 
 I've been running debian for years, but only on a couple
 machines until recently.  Now, I'm setting up a new machine 
 to replace one of my other machines and wanted to clone the
 choices for packages to have installed and then have apt-get
 get everything downloaded and installed for me the way I
 have it on the other machine.
 
 I've found some files under /var/lib/dpkg that contain
 status of packages, but I don't think I'm fully on the
 right track.
 
 I've used both dselect and apt-get and am leaning towards
 using apt-get for all my package needs these days.
 
 Any advice on how I can do this would be great, as it would
 be a pain to go through the packages one-by-one and flag
 them (in dselect)...  :)
 
I do not know if will work, but this is the idea:
On the source computer:
dpkg --get-selections  source

On the destination computer (after you copied the file 'source' to it
;-)):
cat source | dpgk --set-selections

The I think you should run 'apt-get -f install' to install the uninstalled
packages. But you still have to configure them one by one.

Greetz,
Sebastiaan




USB Rescue Disk...?

2001-08-12 Thread Brad Pillatsch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

I just got a sony PCG-C1VP, and I need a rescue disk that has USB
support so I can install linux.  I tried the loadlin route in dos but
apparently once the Crusoe processor has morphed, or maybe setup the
memory allocation, it causes the linux kernel to hang.  So basically
I just need a USB rescue disk to solve all my probs :)

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 7.0.3 for non-commercial use http://www.pgp.com

iQA/AwUBO3Y88YP/qI2w+OWmEQLIeQCg3Sc+78lDlIVfuNe0dgKLJSX/VBAAoPSX
8FEiBwx1NXMP9acihudRv/2+
=mf1s
-END PGP SIGNATURE-




Re: how can i copy my pkg choices to another machine?

2001-08-12 Thread Chris Palmer
Yes, from checking out the man page, that looks like it
might do exactly what I want.

Many thanks  :)

-Chris

Sebastiaan wrote
 I do not know if will work, but this is the idea:
 On the source computer:
 dpkg --get-selections  source
 
 On the destination computer (after you copied the file 'source' to it
 ;-)):
 cat source | dpgk --set-selections
 
 The I think you should run 'apt-get -f install' to install the uninstalled
 packages. But you still have to configure them one by one.
 
 Greetz,
 Sebastiaan
 
 
 



kernel troubles?

2001-08-12 Thread Sebastiaan
Hi,

For some months I have been trying to compile kernels from 2.4.5 to 2.4.8,
but I still get the same errors and they does not seem to be solved in
later versions. Today I build a new config file from scratch, but still
unsuccesfull. The errors occur in the beginning of the compile and are
mostly redefinitions and undeclared. Any idea how I can solve this?

Thanks in advance,
Sebastiaan

[EMAIL PROTECTED]:/usr/src/linux$ make bzImage
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes
-Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common
-pipe -mpreferred-stack-boundary=2 -march=i586  -DUTS_MACHINE='i386' -c
-o init/version.o init/version.c
make CFLAGS=-D__KERNEL__ -I/usr/src/linux/include -Wall
-Wstrict-prototypes -Wno-trigraphs -O2 -fomit-frame-pointer
-fno-strict-aliasing -fno-common -pipe -mpreferred-stack-boundary=2
-march=i586  -C  kernel
make[1]: Entering directory `/usr/src/linux/kernel'
make all_targets
make[2]: Entering directory `/usr/src/linux/kernel'
gcc -D__KERNEL__ -I/usr/src/linux/include -Wall -Wstrict-prototypes
-Wno-trigraphs -O2 -fomit-frame-pointer -fno-strict-aliasing -fno-common
-pipe -mpreferred-stack-boundary=2 -march=i586-DEXPORT_SYMTAB -c
ksyms.c
In file included from /usr/src/linux/include/linux/modversions.h:103,
 from /usr/src/linux/include/linux/module.h:21,
 from ksyms.c:14:
/usr/src/linux/include/linux/modules/i386_ksyms.ver:74: warning:
`cpu_data' redefined
/usr/src/linux/include/asm/processor.h:78: warning: this is the location
of the previous definition
/usr/src/linux/include/linux/modules/i386_ksyms.ver:78: warning:
`smp_num_cpus' redefined
/usr/src/linux/include/linux/smp.h:80: warning: this is the location of
the previous definition
/usr/src/linux/include/linux/modules/i386_ksyms.ver:80: warning:
`cpu_online_map' redefined
/usr/src/linux/include/linux/smp.h:88: warning: this is the location of
the previous definition
/usr/src/linux/include/linux/modules/i386_ksyms.ver:94: warning:
`smp_call_function' redefined
/usr/src/linux/include/linux/smp.h:87: warning: this is the location of
the previous definition
In file included from /usr/src/linux/include/linux/interrupt.h:45,
 from ksyms.c:21:
/usr/src/linux/include/asm/hardirq.h:37: warning: `synchronize_irq'
redefined
/usr/src/linux/include/linux/modules/i386_ksyms.ver:82: warning: this is
the location of the previous definition
In file included from ksyms.c:17:
/usr/src/linux/include/linux/kernel_stat.h: In function `kstat_irqs':
/usr/src/linux/include/linux/kernel_stat.h:48: `smp_num_cpus' undeclared
(first use in this function)
/usr/src/linux/include/linux/kernel_stat.h:48: (Each undeclared identifier
is reported only once
/usr/src/linux/include/linux/kernel_stat.h:48: for each function it
appears in.)
make[2]: *** [ksyms.o] Error 1
make[2]: Leaving directory `/usr/src/linux/kernel'
make[1]: *** [first_rule] Error 2
make[1]: Leaving directory `/usr/src/linux/kernel'
make: *** [_dir_kernel] Error 2



--
  NT is the OS of the future. The main engine is the 16-bit Subsystem
  (also called MS-DOS Subsystem). Above that, there is the windoze 95/98
  16-bit Subsystem. Anyone can see that 16+16=32, so windoze NT is a 
  *real* 32-bit system.




Re: how can i copy my pkg choices to another machine?

2001-08-12 Thread Chris Palmer
ok, after doing some tinkering... I find this is the best way to
create the list of packages I want:

dpkg --get-selections *  package-list.out

by adding the * in there, it'll list the state for all packages,
even those I don't have installed, so that this will remove the
packages I don't want on the other host.

Thanks again, Sebastiaan for the pointer in the right direction. :)

-Chris

Chris Palmer wrote
 Yes, from checking out the man page, that looks like it
 might do exactly what I want.
 
 Many thanks  :)
 
 -Chris
 
 Sebastiaan wrote
  I do not know if will work, but this is the idea:
  On the source computer:
  dpkg --get-selections  source
  
  On the destination computer (after you copied the file 'source' to it
  ;-)):
  cat source | dpgk --set-selections
  
  The I think you should run 'apt-get -f install' to install the uninstalled
  packages. But you still have to configure them one by one.
  
  Greetz,
  Sebastiaan
  
  
  
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 



Mozilla: configure menu fonts?

2001-08-12 Thread Karsten M. Self
I've updated to a recent Mozilla under Woody/testing:

Version: 2:0.9.3-1

Problem:  the menu fonts are all rather larger than I'd like -- appear
to be Helvetica or Arial, roughly 16 points.  I prefer fixed fonts for
all menus, at about 10 points.

Following comments found through Google, I've tried to change this with
the following ~/.mozilla/karsten/nvfg3wpx.slt/chrome/user.css file:

menubar {
  font-family: fixed !important;
  font-style: regular !important;
  font-weight: bold !important;
  font-size: 3mm !important;
}

...but this doesn't change appearances.

Thoughts?

TIA.

-- 
Karsten M. Self kmself@ix.netcom.com  http://kmself.home.netcom.com/
 What part of Gestalt don't you understand? There is no K5 cabal
  http://gestalt-system.sourceforge.net/   http://www.kuro5hin.org
   Free Dmitry! Boycott Adobe! Repeal the DMCA!http://www.freesklyarov.org
Geek for Hirehttp://kmself.home.netcom.com/resume.html


pgpYldJOypksh.pgp
Description: PGP signature


how to copy package choices from one machine to another

2001-08-12 Thread Chris Palmer
ok, since I like to share what I find...

Here's how I cloned the package settings on one host to another.
The hosts are going to be listed below as original and clone 
for clarity.  :)

0. on both hosts, did apt-get update to update the package lists
1. Made a comprehensive package list on the original host:
 dpkg --get-selections *  package-list.out
2. scp'd the list from the orignal host to the clone host
2. On the clone:
 cat package-list.out | dpkg --set-selections
3. Then used apt to download and configure:
 apt-get dselect-upgrade   (since the flags are set in dselect)

Now that I think about it, I probably should have made sure that
I also updated the package lists in dselect (probaby already did
but it should be a step above before step 1).

The packages are being downloaded now, and once things are installed
and configured, I'll post any problem I ran into with this setup.
Since I have no data on this new machine, yet, I'm willing to do a
little potentially risky stuff like this...  :)

-Chris

Chris Palmer wrote
 
 Thanks again, Sebastiaan for the pointer in the right direction. :)
 
 -Chris
 
 Chris Palmer wrote
  Yes, from checking out the man page, that looks like it
  might do exactly what I want.
  
  Many thanks  :)
  
  -Chris
  
  Sebastiaan wrote
   I do not know if will work, but this is the idea:
   On the source computer:
   dpkg --get-selections  source
   
   On the destination computer (after you copied the file 'source' to it
   ;-)):
   cat source | dpgk --set-selections
   
   The I think you should run 'apt-get -f install' to install the uninstalled
   packages. But you still have to configure them one by one.
   
   Greetz,
   Sebastiaan
   



best practice for tar and gzip?

2001-08-12 Thread patrick q
Hi,

I have a lot of important archives, up to 10,000 files per ~10 Meg
tar.gz tarball, that I like to keep as safe as possible.

I test the archives when I create them, have backups, and off-site
backups of backups, but I am worried about possible file corruption, ie
propagating possibly corrupt files through the backup rotation.
  
Would it not be better to compress the files individually first and
then tar them into an archive instead of the normal tar.gz operation,
to have the best chance of recovering as many files as possible?

thx,
patrick.

__
Do You Yahoo!?
Send instant messages  get email alerts with Yahoo! Messenger.
http://im.yahoo.com/



CGI script using perl

2001-08-12 Thread shyamk
Suppose I am having an HTML form that calls a CGI script wriiten in Perl 
(hosted by a
Linux Server) :
1. Does the fresh program I have written and labelled as , say, action.pl
...
Does it automatically get compiled and run by the HTML page/ form that calls it 
?
2. Or do I have to make it an EXE first and then make the HTML form call this 
EXE ?

Please help me .

Thanks ,
([EMAIL PROTECTED])
Shyam

Quality can Never be Quantified . It exists by itself and Quantity might hand 
it an
untimely demise if blown out of the very fragile proportions that constitute it 
.



Re: Unusual filesystem/memory corruption

2001-08-12 Thread John Toon
On 11 Aug 2001 21:06:52 -0500, Mike Brownlow wrote:
 
 VIA. It's a KT133 chipset on a Asus A7V. The drives are on the ATA100
 promise controller.

That's very similar to mine (Abit KA7-100, with a VIA chipset, Highpoint
hard disk controller).

If you build a correctly configured 2.4.[3-8] kernel with the necessary
options you should definitely be rewarded by getting full DMA-100/32 bit
access/etc. by default (all done safely) upon reboot.

:^)

John.





Re: Mozilla: configure menu fonts?

2001-08-12 Thread John Toon
On 12 Aug 2001 02:10:26 -0700, Karsten M. Self wrote:

 I've updated to a recent Mozilla under Woody/testing:
 
 Version: 2:0.9.3-1
 
 Problem:  the menu fonts are all rather larger than I'd like -- appear
 to be Helvetica or Arial, roughly 16 points.  I prefer fixed fonts for
 all menus, at about 10 points.

I had this too, and it was rather annoying. Whilst it is possible to
configure the font sizes that GTK/GNOME programs use, with Mozilla... 

I bet you've got the 100 dpi X fonts installed, correct?

Install and use the 75dpi fonts instead, then you'll get them a nice
size. I myself originally thought that 100 dpi fonts would be better for
my 19 running at 1600x1200, but changed to 75 dpi because everything
was too large.   

I suppose with some clever trickery in the .Xdefaults file or so, that
it may be possible to instruct Mozilla to use your 75 dpi fonts, whereas
everything else can make use of the 100 dpi fonts.
 
John.




Re: CGI script using perl

2001-08-12 Thread John Toon
On 12 Aug 2001 15:27:37 +0530, [EMAIL PROTECTED] wrote:

 Suppose I am having an HTML form that calls a CGI script wriiten in
Perl (hosted by a
 Linux Server) :
 1. Does the fresh program I have written and labelled as , say, action.pl
 ...

Yes, it's generally a good idea to append the .pl suffix.

 Does it automatically get compiled and run by the HTML page/ form that calls 
 it ?
 2. Or do I have to make it an EXE first and then make the HTML form call this 
 EXE ?

Usually, a Perl script is called by the ACTION property of the form.
This tells it that when the form SUBMITs, that it will call the script
specified in the ACTION attribute.

John.



Re: Realplayer Stop working for now reason...

2001-08-12 Thread Dmitriy
On Sat, Aug 11, 2001 at 08:23:11PM -0400, Chun Kit Edwin Lau wrote:
 Hi
   Don't know what's going on but realplayer suddenly stop working for now 
 good reason.  It gives my this error...
 
 /usr/lib/RealPlayer8/realplay: error while loading shared libraries: 
 /usr/lib/RealPlayer8/Codecs/cook.so.6.0: undefined symbol: atexit
 
 anyone have that?
 
 -- 
 Edwin ERTW Lau
 
There was a message from Ben Collins on debian-devel about preliminary fix
(Unofficial! )
Get it at:

http://auric.debian.org/~bcollins/libc6_2.2.3-10.0.1_i386.deb

This should fix atexit symbol problem.



 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com
 
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]

-- 
GPG key-id: 1024D/5BE3DCFD Dmitriy
CCAB 5F17 A099 9E43 1DBE  295C 9A21 2F1C 5BE3 DCFD

Adobe put Dmitry in jail for the crime against 
society of revealing that they were selling 
ROT-13 as encryption. He is rotting in US rison 
as a political prisoner for speaking out. 
Free Dmitry Sklyarov!  http://www.freesklyarov.org


pgpzcsByUrUIy.pgp
Description: PGP signature


Re: kernel troubles?

2001-08-12 Thread John Toon
On 12 Aug 2001 10:30:12 +0200, Sebastiaan wrote:
 Hi,
 
 For some months I have been trying to compile kernels from 2.4.5 to 2.4.8,
 but I still get the same errors and they does not seem to be solved in
 later versions. Today I build a new config file from scratch, but still
 unsuccesfull. The errors occur in the beginning of the compile and are
 mostly redefinitions and undeclared. Any idea how I can solve this?

Which method are you using to build your config file from scratch?

When you say from scratch, you don't mean that you're manually coding
it are you? 

If you're in X, try make xconfig, otherwise make menuconfig. These
programs will then generate (hopefully!) a nice kernel config file that
should compile perfectly.

John.
 





Re: best practice for tar and gzip?

2001-08-12 Thread Fredrik Jagenheim
On Sun, Aug 12, 2001 at 02:46:42AM -0700, patrick q wrote:
   
 Would it not be better to compress the files individually first and
 then tar them into an archive instead of the normal tar.gz operation,
 to have the best chance of recovering as many files as possible?

The best would be not to pack the files at all. The better alternative
would be to pack the files individually and then tar them, as you
said. And, as you already are aware of, if you gzip the tarred file,
you risk loosing most of the files in the archive.

It depends on how big your files are. If all of them are 100bytes big,
you will not gain as much gzipping 1000 of them, as you would with
gzipping the 100*1000 tar-file.

If you MUST gzip them, and HAVE to gzip the tar-archive because of
size-issues, make sure you always test the tar-file after the copying,
and every once in a while for medium errors. It seemed like you had
several copies of the tar-files too, so if one of them would get a
error, you can copy it from the other location.

The testing can be done with MD5, I suppose, to save processing power,
instead of 'tar tzf'.

Sorry if I did not help that much, just repeating your questions as
answers. :)

//Fredde



Re: best practice for tar and gzip?

2001-08-12 Thread Karsten M. Self
on Sun, Aug 12, 2001 at 02:46:42AM -0700, patrick q ([EMAIL PROTECTED]) wrote:
 Hi,
 
 I have a lot of important archives, up to 10,000 files per ~10 Meg
 tar.gz tarball, that I like to keep as safe as possible.
 
 I test the archives when I create them, have backups, and off-site
 backups of backups, but I am worried about possible file corruption, ie
 propagating possibly corrupt files through the backup rotation.
   
 Would it not be better to compress the files individually first and
 then tar them into an archive instead of the normal tar.gz operation,
 to have the best chance of recovering as many files as possible?

Explore an alternative file format.  afio, cpio, and pax are all
somewhat intended to superscede tar (none has the ubiquity of tar,
however).  Among their benefits, compression is applied to individual
files within the archive, and recovery from fuxnored archives is
supposed to be much better -- that is, if your archive file is botched
in one spot, most of the other data should be recoverable.  The tar
format doesn't support this nearly as well.

Your best bet is multiple, redundant, backups, with full verification.
I build same into my own home backup system by:

  - Keeping a fairly good backup cycle:  every few days.  I'll lose a
week's data, worst case, with typical practices.  Largely email.

  - I do a full verify of my backups.  Errors are logged.

  - I keep a set of tapes, in rotation, for redundancy.

More data: http://kmself.home.netcom.com/Linux/FAQs/backups.html

-- 
Karsten M. Self kmself@ix.netcom.com  http://kmself.home.netcom.com/
 What part of Gestalt don't you understand? There is no K5 cabal
  http://gestalt-system.sourceforge.net/   http://www.kuro5hin.org
   Free Dmitry! Boycott Adobe! Repeal the DMCA!http://www.freesklyarov.org
Geek for Hirehttp://kmself.home.netcom.com/resume.html


pgpZL7Mt4vmK9.pgp
Description: PGP signature


Re: Mozilla: configure menu fonts?

2001-08-12 Thread Karsten M. Self
on Sun, Aug 12, 2001 at 11:21:36AM +0100, John Toon ([EMAIL PROTECTED]) wrote:
 On 12 Aug 2001 02:10:26 -0700, Karsten M. Self wrote:
 
  I've updated to a recent Mozilla under Woody/testing:
  
  Version: 2:0.9.3-1
  
  Problem:  the menu fonts are all rather larger than I'd like -- appear
  to be Helvetica or Arial, roughly 16 points.  I prefer fixed fonts for
  all menus, at about 10 points.
 
 I had this too, and it was rather annoying. Whilst it is possible to
 configure the font sizes that GTK/GNOME programs use, with Mozilla... 
 
 I bet you've got the 100 dpi X fonts installed, correct?

This isn't the configuration change I'm looking for.  It's not a fontset
(100/75) issue, it's face and pointsize.  This is configurable via XUL
somehow, but just how isn't immidately apparent and my experience is at
odds with available docs.

-- 
Karsten M. Self kmself@ix.netcom.com  http://kmself.home.netcom.com/
 What part of Gestalt don't you understand? There is no K5 cabal
  http://gestalt-system.sourceforge.net/   http://www.kuro5hin.org
   Free Dmitry! Boycott Adobe! Repeal the DMCA!http://www.freesklyarov.org
Geek for Hirehttp://kmself.home.netcom.com/resume.html


pgpmDNJkzyjJc.pgp
Description: PGP signature


Re: Mozilla: configure menu fonts?

2001-08-12 Thread Karsten M. Self
on Sun, Aug 12, 2001 at 02:10:26AM -0700, Karsten M. Self 
(kmself@ix.netcom.com) wrote:

 Problem:  the menu fonts are all rather larger than I'd like -- appear
 to be Helvetica or Arial, roughly 16 points.  I prefer fixed fonts for
 all menus, at about 10 points.

Turns out I like Helvetica, for small values of same.

File is ~/.mozilla/user/odd string/chrome/userChrome.css

Content that works for now:

window{
  font-family: Helvetica !important;
  font-size: 8pt !important; */
  font-style: regular !important;
  font-weight: normal !important;
}

menubar, menubutton, menulist, menu, menuitem {
  font-family: Helvetica !important;
  font-style: regular !important;
  font-weight: normal !important;
  font-size: 8pt !important; 
}


-- 
Karsten M. Self kmself@ix.netcom.com  http://kmself.home.netcom.com/
 What part of Gestalt don't you understand? There is no K5 cabal
  http://gestalt-system.sourceforge.net/   http://www.kuro5hin.org
   Free Dmitry! Boycott Adobe! Repeal the DMCA!http://www.freesklyarov.org
Geek for Hirehttp://kmself.home.netcom.com/resume.html


pgpZTKxnja89y.pgp
Description: PGP signature


Re: kernel troubles?

2001-08-12 Thread Sebastiaan
On 12 Aug 2001, John Toon wrote:

 On 12 Aug 2001 10:30:12 +0200, Sebastiaan wrote:
  Hi,
  
  For some months I have been trying to compile kernels from 2.4.5 to 2.4.8,
  but I still get the same errors and they does not seem to be solved in
  later versions. Today I build a new config file from scratch, but still
  unsuccesfull. The errors occur in the beginning of the compile and are
  mostly redefinitions and undeclared. Any idea how I can solve this?
 
 Which method are you using to build your config file from scratch?
 
 When you say from scratch, you don't mean that you're manually coding
 it are you? 
 
rm .config
make xconfig

Usually I run 'make oldconfig' after a patch.

Greerz,
Sebastiaan




Re: kernel troubles?

2001-08-12 Thread Stig Brautaset
* Sebastiaan [EMAIL PROTECTED] spake thus:
 Hi,
 
 For some months I have been trying to compile kernels from 2.4.5 to 2.4.8,
 but I still get the same errors and they does not seem to be solved in
 later versions. Today I build a new config file from scratch, but still
 unsuccesfull. The errors occur in the beginning of the compile and are
 mostly redefinitions and undeclared. Any idea how I can solve this?

have you tried 'make clean'? 

if *that* don't work, try 'make distclean' or 'make mrproper'.

Regards, Stig



Re: HELP broken dpkg ( previously HELP - installing broken libglib1.2-dev)

2001-08-12 Thread Jatin Golani

Hi,

Michael, I don't think there's a --force-all
optiondidn't work for me.

Anyways, i tried installing another package with the
same fate.I think my dpkg system is badly
damagedis there any way to re-install dpkg?? do u
think that'd take care of things?apt-get works
fine, however it doesn't work on packages that have
already been broken by dpkg...my broken packages
seem to be mounting.really need help ppl.

Thanks a lot


--- Michael Heldebrant [EMAIL PROTECTED]
wrote:
 Ouch.  I've never had to deal with a system as
 loused up as that one.
 
 But perhaps it can be solved with a:
 dpkg --force-all -P libglib-dev (libglib1.2-dev
 libgtk1.2-dev
 libgtk-dev)
 
 Hopefully this will clean out the system making way
 for a fresh install
 of everything for glib1.2 and gtk1.2
 
 Let the list know if this still doesn't work.  Maybe
 someone who has
 solved this problem will also come across the
 thread.
 
 --mike
 
 On 10 Aug 2001 11:31:35 -0700, Jatin Golani wrote:
  
  Hi Michael,
  
  Thanks for responding.
  
  To answer your questions:
  
  a) Yup I'm root.
  b) a dpkg --force-remove-reinstreq --purge
  libglib1.2-dev, has the same fate :(
  
  I don't know how to see which directories it's
 trying
  to write toif I could then I could manually do
  itdo you know how I can do that??
  
  Also even if I delete the files manually how do I
 then
  tell dpkg that the package has been
 deletedeven
  after a purge it keeps showing that the package is
  installed though broken.
  
  Any help would be appreciatedI can't
 understand
  what's happening...would appreciate help.
  
  Bye
  
  
  
  
  --- Michael Heldebrant
 [EMAIL PROTECTED]
  wrote:
   Two questions:
   1.  You are root running apt-get or dselect
 right?
   2.  Have you tried purging the dev packages
 instead
   of just removing
   them and then blasting any dir it says it can't
   delete manually?
   
   --mike
   On 10 Aug 2001 04:10:06 -0700, Jatin Golani
 wrote:
Hi ppl,

I'm trying to install the GTK development
   libraries
libgtk1.2-dev and it needs libglib1.2-deva
previous attempt to do this had resulted in a
   broken
libglib1.2-devI've tried to remove it but
 I
can'tI've downloaded the .deb for the
 library
   and
if I try to reinstall I get the following
 message:
   
 -
Preparing to replace libglib1.2-dev 1.2.7-2
 (using
libglib1.2-dev_1.2.7-2.deb)...

install-info: failed to lock dir! for editing.
 No
   such
file or directory
 

dpkg: warning - old pre-removal script
 returned
   error
exit status 2

dpkg: trying script from new package instead..

Document 'glib-docs' is not installed, cannot
   remove.

install-info: failed to lock dir! for editing.
 No
   such
file or directory

dpkg: error processing
 libglib1.2-dev_1.2.7-2.deb
(--install): subprocess new pre-removal script
returned error exit status 2

install-info: failed to lock dir! for editing.
 No
   such
file or directory

dpkg: error while cleaning up: subprocess
post-installation script returned error exit
   status 2

Errors were encountered while processing:
libglib1.2-dev_1.2.7-2.deb

   
  
 

--

Could someone explain what the above means???
 I'm
   very
new to thishave tried removing it but the
 same
fate :(I'm desperate and have been trying
everything i could think ofpls help
 someone

   
 __
Do You Yahoo!?
Make international calls for as low as
 $.04/minute
   with Yahoo! Messenger
http://phonecard.yahoo.com/


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


   
   
   
   -- 
   To UNSUBSCRIBE, email to
   [EMAIL PROTECTED] 
   with a subject of unsubscribe. Trouble?
 Contact
   [EMAIL PROTECTED]
   
  
  
  __
  Do You Yahoo!?
  Send instant messages  get email alerts with
 Yahoo! Messenger.
  http://im.yahoo.com/
  
  
  -- 
  To UNSUBSCRIBE, email to
 [EMAIL PROTECTED] 
  with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]
  
  
 
 
 
 -- 
 To UNSUBSCRIBE, email to
 [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact
 [EMAIL PROTECTED]
 


__
Do You Yahoo!?
Send instant messages  get email alerts with Yahoo! Messenger.
http://im.yahoo.com/



Re: best practice for tar and gzip?

2001-08-12 Thread Robert Waldner

On Sun, 12 Aug 2001 03:46:46 PDT, Karsten M. Self writes:
on Sun, Aug 12, 2001 at 02:46:42AM -0700, patrick q ([EMAIL PROTECTED]) wrote:
 I have a lot of important archives, up to 10,000 files per ~10 Meg
 tar.gz tarball, that I like to keep as safe as possible.

 I test the archives when I create them, have backups, and off-site
 backups of backups, but I am worried about possible file corruption, ie
 propagating possibly corrupt files through the backup rotation.
 
 Would it not be better to compress the files individually first and
 then tar them into an archive instead of the normal tar.gz operation,
 to have the best chance of recovering as many files as possible?
...
Your best bet is multiple, redundant, backups, with full verification.
...

AOL.

It may also be worth it to not build an archive (with whatever method) 
 and then propagate it through the cycle, but to make one archive to be 
 stored on-site, and create an extra one to be stored off-site, best at 
 another time and/or interval.

I have several customers where a nightly backup goes off-site and 
 another one is done around noon to be stored on-site. Off-site backups 
 are tar.bz2 (for space reasons), on-site plain dump. If one method 
 fails there´s always the other one.

cheers,
rw
-- 
-- Prof:So the American government went to IBM to come up with
--  a data encryption standard and they came up with ...
-- Student: EBCDIC!





pgpAJZtc7Xa2P.pgp
Description: PGP signature


Re: Unusual filesystem/memory corruption

2001-08-12 Thread Robert Waldner

  On 11 Aug 2001 16:37:58 -0500, Mike Brownlow wrote:
  
   I suspect hardware failure caused it, but there are still a few software
   unknowns. I'm starting to lean on corruption due to using -m16 for
   hdparm. Any other suggestions appreciated...

Just for good measure, I would also do a memory test with memtest86.

cheers,
rw
-- 
-- This .sig brought to you by the
-- Department of Redundancy Department.





pgpz3EYlQtwc9.pgp
Description: PGP signature


Re: best practice for tar and gzip?

2001-08-12 Thread Leonard Stiles
patrick q [EMAIL PROTECTED] writes:

 I have a lot of important archives, up to 10,000 files per ~10 Meg
 tar.gz tarball, that I like to keep as safe as possible.

[...]

 Would it not be better to compress the files individually first and
 then tar them into an archive instead of the normal tar.gz
 operation, to have the best chance of recovering as many files as
 possible?

There is an alternative archiving tool called afio (packaged in
stable) which apparently does this.

-- 

Leonard Stiles [EMAIL PROTECTED]



Re: man/mandb problem -- exploit?

2001-08-12 Thread Colin Watson
On Sat, Aug 11, 2001 at 12:01:40PM -0700, Ronald Hale-Evans wrote:
 My system was recently cracked (my impression was that it happened via
 the recent Apache exploit).  Shortly before I reinstalled my system
 (with better security), I lost all ability to view man pages.  Typing,
 say, 'man man' would bring up a brief message about how it was
 reformatting the page, then nothing.
 
 I reinstalled, then installed an improved firewall before
 bringing the system back up on the net and doing 'apt-get update;
 apt-get dist-upgrade'.  During the dist-upgrade process, I received a
 message on the root terminal saying something like 'su session opened
 for user man'.

That's normal; the installation process did that in earlier versions of
man-db (e.g. the one you have in stable). These days it uses
start-stop-daemon to avoid the syslog entry.

 I didn't know whether this was relevant, but noted it in case it had
 something to do with the man-db exploit, for which there was a fix
 released on 12 June.

So your version of man-db is now 2.3.16-4 (just checking)?

 I also ran the following commands, as recommended on the man-db
 exploit page:
 
   suidregister /usr/lib/man-db/man root root 0755
   suidregister /usr/lib/man-db/mandb root root 0755

Those instructions are wrong, as man-db 2.3.16 could not run well
without setuid privileges, while the version in testing/unstable can. I
think I pointed this out at the time - could somebody on the security
team (cc'ed) please either remove that advice in DSA-059-1 or at least
note that potato's man-db couldn't gracefully deal with being
non-setuid? (See the changelog for 2.3.18-3.)

 After the dist-upgrade, I can again no longer view man pages.  As an
 ordinary user, a simple man command brings up something like the
 following:
 
 Reformatting mpage(1), please wait...
 man: can't create /var/cache/man/fsstnd/cat1/393: Permission denied
 zsoelim: /tmp/zmanp6L0Cn: No such file or directory
 man: can't unlink /var/cache/man/fsstnd/cat1/393: No such file or directory
 man: can't remove /tmp/zmanp6L0Cn: No such file or directory

I'd expect that after following the above advice. 'suidunregister
/usr/lib/man-db/man; suidunregister /usr/lib/man-db/mandb' should fix
it.

 I purged and reinstalled the packages mandb, manpages, and
 manpages-dev, with no luck.  I found a file in /tmp named zmanX,
 where 'X' was a random string.  When I tried to delete or view
 this file, I couldn't, because its name would change as I was trying
 to do so, to zmanY, where 'Y' was another random string.

Probably while you were viewing man pages? Don't worry, those are just
temporary files created normally by man. Sometimes they used to get left
around due to bugs (maybe still do, I'll squash that bug if I see it).

 Any recommendations on getting man working on my system again are
 welcome.  Be very explicit, however, as I can't use man pages to
 clarify any help that is cryptic.  Moreover, does it seem that my
 man-db has been cracked?

Not to me, although I appreciate that that kind of thing is on your
mind. If you still have problems after restoring setuid permissions to
man-db, feel free to mail me privately. In that case, you can still read
man pages with something like 'zcat /usr/share/man/man1/bash.1.gz | man
-l -'.

As for your problems before you reinstalled - hard to tell, but it could
just have been a bug, or maybe whoever cracked your system changed the
permissions of some directories.

Cheers,

-- 
Colin Watson (Debian man-db maintainer)   [EMAIL PROTECTED]



Re: hostname with dhcp-client

2001-08-12 Thread Colin Watson
On Sat, Aug 11, 2001 at 11:03:51AM -0500, Carl Greco wrote:
 
 send host-name peregrine.cox-internet.com;
 lease {
   interface eth0;
   option host-name peregrine.cox-internet.com;
 }
 
 
 I have used several combinations in the above config file including
 setting the hostname and domain names separately.
 
 I don't find an error message from dhclient; however, the hostname
 assigned by DNS, i.e., from nslookup on the ip address, is not
 `peregrine' but some combination of letter, numbers and dashes.

I was under the impression that the 'host-name' option to DHCP was just
used to look up your machine in the DHCP server's database, and that you
needed to get whoever runs your DNS server to give you the reverse DNS
you want too. I don't think you can just send a host name over DHCP and
expect it to work.

-- 
Colin Watson  [EMAIL PROTECTED]



woody-install

2001-08-12 Thread Gabriel Pickard

While installing the base system from CD, i get the error:
file:/instmnt/pool/main/e/exim/exim_3.22-4_i386.deb was corrupt
in consequence, i cannot continue my installation ;-{

Can you help me there?

Thanx, Gabriel



Re: woody-install

2001-08-12 Thread Sebastiaan
Hi,

On Sun, 12 Aug 2001, Gabriel Pickard wrote:

 While installing the base system from CD, i get the error:
 file:/instmnt/pool/main/e/exim/exim_3.22-4_i386.deb was corrupt
 in consequence, i cannot continue my installation ;-{
 
First try:
apt-get -f install

Perhaps the installation will go on. Else, download the package from the
internet (should be in debian/pool/main/e/exim/) and install it by hand:
dpkg -i exim_3.22-4.deb

Alternatively, you can choose for another mailler:
apt-get install postfix

This will deselect exim an d choose postfix as your mailer daemon.

You have to continue the install anyway with 'apt-get -f install'

Greetz,
Sebastiaan




Re: woody-install

2001-08-12 Thread Jordi S . Bunster

On Sun, Aug 12, 2001 at 02:27:05PM +0200, Gabriel Pickard wrote:

 file:/instmnt/pool/main/e/exim/exim_3.22-4_i386.deb was corrupt
 in consequence, i cannot continue my installation ;-{

If the file is corrupt, is probably consequence of a scratch on the
CD' surface. Using other MTA, or downloading exim from the Internet
will solve the issue with this package, but the CD may have other
(even non-replaceable ones) corrupted files. In that case, get another
CD, or install from the Net.

-- Jsb




Re: Modifying a Windows 95/98 FAAT 32 partition

2001-08-12 Thread Eduard Bloch
#include hallo.h
[EMAIL PROTECTED] wrote on Sat Aug 11, 2001 um 06:54:32PM:

  If you are trying to slice up win98 safely without losing data, it's
  normal to use fips for making room for linux partition. (See
  installation and fips documentation)

FIPS has some disadvantages: unable to change cluster size, and requires
a defragment filesystem. Another open source alternative is GNU parted.
I prepared a set of modified boot floopies which can be used to install
Woody or Sid and contain GNU parted and Ext3-support.

http://people.debian.org/~blade/bf-ext3/README-boot-floppies.html

Gruss/Regards,
Eduard.
-- 
You got a plan?
'Let's try not to get killed.'
Brilliant.
(Ivanova and Sheridan, The Long Dark)



Re: AW: jdk 1.3

2001-08-12 Thread Bob Koss
 Andreas == Andreas Leitner [EMAIL PROTECTED] writes:

 personally I'm using blackdown jdk version 1.3.1 . It is
 supplied as a debian package. I added this to my sources.list :

 deb ftp://ftp.oleane.net/pub/java-linux/debian potato non-free

I added the above to sources.list, did a apt-get update, but when I
apt-cache search, all I see is jdk 1.1.x.  I don't see 1.3.x
anywhere. 

What am I doing wrong?


-- 

Robert Koss, Ph.D. | Training, Mentoring, Contract Development
Senior Consultant  | Object Oriented Design, C++, Java
www.objectmentor.com   | Extreme Programming



Re: Potato on a Dell PowerEdge 2500

2001-08-12 Thread Christian Surchi
On Thu, Aug 09, 2001 at 01:20:09PM +0200, Emil Pedersen wrote:
 I belive it's because 24xx uses Perc3/Si while 25xx uses Perc3/Di as
 scsi/raid controler (correct me if I'm wrong).  Anyway, I've made a new
 install-image using the original 2450 disk which you could try.  A few
 people have tried it (including myself), and as far as I know it have
 worked for them.
 
 If you want to try it, it should be available at:
 
   http://emil.its.uu.se:8080/DELL/potato-inst-2.2.19+aacraid.dd

Thanks a lot, I'll try it. 

-- 
Christian Surchi   |   [EMAIL PROTECTED]   |   [EMAIL PROTECTED]
FLUG: http://www.firenze.linux.it | Debian GNU/Linux: http://www.debian.org
Vermouth always makes me brilliant unless it makes me idiotic. -- E.F. Benson



basedebs.tgz

2001-08-12 Thread Peter Leipold

Hi,

I'm a new Debian user (come from RedHat).
I would like to install a Woody version. I'm using the compat/rescue
floppy disk to install the system (download packages from network), but
it fails when it tries to install the base system. The reason is a
missing basedebs.tgz file.

I've found some mails written by developers that this file is not
available anymore, but I didn't find the solution how to install the
base system now???

Or can I do to install a stable system, and than upgrade the packages
giving the testing path into source.list when using dselect?

Can someone help?

-- 
Peter Leipold
Software developer
eQ Online



Re: Galeon (unstable): Cannot find a schema for galeon preferences (gconf)

2001-08-12 Thread Sean
For what it's worth, the latest CVS Galeon compiles up fine on Sid.

Sean

On Fri, 10 Aug 2001 23:56:51 -0700
Karsten M. Self kmself@ix.netcom.com wrote:

 I'm getting a dialog box with the following error when running Galeon
 after the latest unstable upgrade:
 
 Cannot find a schema for galeon preferences.
 Check your gconf setup, look at galeon FAQ for more information.
 
 Looking in the FAQ, I see:
 
 We provide a script in the Galeon source root directory to setup a
 basic gconf installation.
 
 You have to run it passing $sysconfdir as the first paramater.  In
 most cases:
 
 ./setup-gconf-source /etc
 
 Expert mode
 ---
 
 1. Edit the path file in the directory $sysconfdir/gconf/1.
 
 A basic configuration for the default backend would look
 like:
 
 xml:readonly:/etc/gconf/gconf.xml.mandatory
 include $(HOME)/.gconf.path
 xml:readwrite:$(HOME)/.gconf
 xml:readonly:/etc/gconf/gconf.xml.defaults
 
 ...I don't find a setup-gconf-source file in the Galeon package.  I'm
 sufficiently a non-GNOME user that I've no idea how to go about setting
 up a gconf schema (let alone what the damned things are).
 
 I did find /etc/gconf/schemas/galeon.schemas, but it doesn't appear to
 be doing the trick.  Note it's listed in conffiles (below).
 
 Anyone got a fix for this?
 
 Galeon package info:
 
 Package: galeon
 Status: install ok unpacked
 Priority: optional
 Section: web
 Installed-Size: 3864
 Maintainer: Jared Johnson [EMAIL PROTECTED]
 Version: 0.11.3+0.12pre1-0.1
 Config-Version: 0.11.3-1.1
 Depends: gconf (= 1.0.3), gdk-imlib1 (= 1.9.10-5), libart2 (=
   1.2.13-5), libaudiofile0, libc6 (= 2.2.3-7), libdb3 (=
   3.2.9-1), libesd0 (= 0.2.22-4) | libesd-alsa0 (= 0.2.22-4),
   libgconf11 (= 1.0.3), libgdk-pixbuf2 (= 0.11.0-2),
   libglade-gnome0, libglade0, libglib1.2 (= 1.2.0), libgnome-vfs0
   (= 1.0.1), libgnome32 (= 1.2.13-5), libgnomesupport0 (=
   1.2.13-5), libgnomeui32 (= 1.2.13-5), libgnorba27 (=
   1.2.13-5), libgtk1.2 (= 1.2.10-1), liboaf0 (= 0.6.5),
   liborbit0 (= 0.5.8), libpanel-applet0 (= 1.4.0.4-2),
   libstdc++2.10-glibc2.2, libxml1 (= 1:1.8.14-3), oaf (= 0.6.5),
   xlibs ( 4.1.0), zlib1g (= 1:1.1.3), mozilla-browser (=
   2:0.9.3), libxml1 (= 1.8.14), libpanel-applet0
 Suggests: gtm
 Conffiles:
  /etc/sound/events/galeon.soundlist a28407fd42b9c1ba0b2eec3f9bc339d3
  /etc/gconf/schemas/galeon.schemas newconffile
 
 
 -- 
 Karsten M. Self kmself@ix.netcom.com  http://kmself.home.netcom.com/
  What part of Gestalt don't you understand? There is no K5 cabal
   http://gestalt-system.sourceforge.net/   http://www.kuro5hin.org
Free Dmitry! Boycott Adobe! Repeal the DMCA!http://www.freesklyarov.org
 Geek for Hirehttp://kmself.home.netcom.com/resume.html
 


-- 
OpenGPG key available from http://frodo.net.dhis.org/GnuPG/sjohnson.asc


pgpznOSrUJiwn.pgp
Description: PGP signature


Re: Mozilla: configure menu fonts?

2001-08-12 Thread Hall Stevenson
* John Toon ([EMAIL PROTECTED]) [010812 06:24]:

 I bet you've got the 100 dpi X fonts installed, correct?

 Install and use the 75dpi fonts instead, then you'll get them a
 nice size. I myself originally thought that 100 dpi fonts would be
 better for my 19 running at 1600x1200, but changed to 75 dpi because
 everything was too large.

I ran into a similar thing with the 100dpi and 75dpi fonts... I'm not
sure what changed, but I fixed it by simply *removing* the 100dpi font
package. Did the /etc/X11/xinit/xserverrc file change to specify 100dpi
whereas it used to spec 75 ??

Even the 100dpi package says this:

This package and xfonts-75dpi provide the same set of fonts, rendered
at different resolutions; only one or the other is necessary, but both
may be installed. xfonts-100dpi may be more suitable for large monitors
and/or large screen resolutions (over 1024x768).

Isn't it actually the opposite ?? If you're running at 1280x1024 or
1600x1200 or higher, you want more space for stuff. You don't want
big-a** fonts taking up valuable screen space.

Regards
Hall



Re: Galeon (unstable): Cannot find a schema for galeon preferences (gconf)

2001-08-12 Thread John Patton
I don't know about the package, but you can find the script
in the galeon source package, at least as found on the
galeon web site.

http://galeon.sourceforge.net

The package is only a couple of megabytes in size.

On Sun, Aug 12, 2001 at 10:21:03AM -0400, Sean wrote:
 For what it's worth, the latest CVS Galeon compiles up fine on Sid.
 
 Sean
 
 On Fri, 10 Aug 2001 23:56:51 -0700
 Karsten M. Self kmself@ix.netcom.com wrote:
 
  I'm getting a dialog box with the following error when running Galeon
  after the latest unstable upgrade:
  
  Cannot find a schema for galeon preferences.
  Check your gconf setup, look at galeon FAQ for more information.
  
  Looking in the FAQ, I see:
  
  We provide a script in the Galeon source root directory to setup a
  basic gconf installation.
  
  You have to run it passing $sysconfdir as the first paramater.  In
  most cases:
  
  ./setup-gconf-source /etc
  
  Expert mode
  ---
  
  1. Edit the path file in the directory $sysconfdir/gconf/1.
  
  A basic configuration for the default backend would look
  like:
  
  xml:readonly:/etc/gconf/gconf.xml.mandatory
  include $(HOME)/.gconf.path
  xml:readwrite:$(HOME)/.gconf
  xml:readonly:/etc/gconf/gconf.xml.defaults
  
  ...I don't find a setup-gconf-source file in the Galeon package.  I'm
  sufficiently a non-GNOME user that I've no idea how to go about setting
  up a gconf schema (let alone what the damned things are).
  
  I did find /etc/gconf/schemas/galeon.schemas, but it doesn't appear to
  be doing the trick.  Note it's listed in conffiles (below).
  
  Anyone got a fix for this?
  
  Galeon package info:
  
  Package: galeon
  Status: install ok unpacked
  Priority: optional
  Section: web
  Installed-Size: 3864
  Maintainer: Jared Johnson [EMAIL PROTECTED]
  Version: 0.11.3+0.12pre1-0.1
  Config-Version: 0.11.3-1.1
  Depends: gconf (= 1.0.3), gdk-imlib1 (= 1.9.10-5), libart2 (=
  1.2.13-5), libaudiofile0, libc6 (= 2.2.3-7), libdb3 (=
  3.2.9-1), libesd0 (= 0.2.22-4) | libesd-alsa0 (= 0.2.22-4),
  libgconf11 (= 1.0.3), libgdk-pixbuf2 (= 0.11.0-2),
  libglade-gnome0, libglade0, libglib1.2 (= 1.2.0), libgnome-vfs0
  (= 1.0.1), libgnome32 (= 1.2.13-5), libgnomesupport0 (=
  1.2.13-5), libgnomeui32 (= 1.2.13-5), libgnorba27 (=
  1.2.13-5), libgtk1.2 (= 1.2.10-1), liboaf0 (= 0.6.5),
  liborbit0 (= 0.5.8), libpanel-applet0 (= 1.4.0.4-2),
  libstdc++2.10-glibc2.2, libxml1 (= 1:1.8.14-3), oaf (= 0.6.5),
  xlibs ( 4.1.0), zlib1g (= 1:1.1.3), mozilla-browser (=
  2:0.9.3), libxml1 (= 1.8.14), libpanel-applet0
  Suggests: gtm
  Conffiles:
   /etc/sound/events/galeon.soundlist a28407fd42b9c1ba0b2eec3f9bc339d3
   /etc/gconf/schemas/galeon.schemas newconffile
  
  
  -- 
  Karsten M. Self kmself@ix.netcom.com  
  http://kmself.home.netcom.com/
   What part of Gestalt don't you understand? There is no K5 
  cabal
http://gestalt-system.sourceforge.net/   
  http://www.kuro5hin.org
 Free Dmitry! Boycott Adobe! Repeal the DMCA!
  http://www.freesklyarov.org
  Geek for Hire
  http://kmself.home.netcom.com/resume.html
  
 
 
 -- 
 OpenGPG key available from http://frodo.net.dhis.org/GnuPG/sjohnson.asc



-- 
John Patton  [EMAIL PROTECTED]

The most important service rendered by the press and
the magazines is that of educating people to approach
printed matter with distrust.  - Samuel Butler (1612-1680)



Weird NFS Problem: Input/Output Errors, etc.

2001-08-12 Thread Bjoern Buerger

Since last week I've had some really weird problems with NFS, 
but I do not know where do search for the problem. Maybe some
of you have com across somethink like the following:

The problems occur on three NFS Clients (two of them diskless) 
while the Server shows no problems with the same files. Even the 
Servers Logfiles are clean ...

After rebooting the Client, the Files are accessible again, but 
other file accesses fail. Apt and dpkg fail during 
each  ~ 3rd installation, showing errors like Input/output error
or 

dpkg: error processing /var/cache/apt/archives/slang1_1.4.4-3.1_i386.deb
(--unpack): unable to create `./lib/libslang.so.1.4.4': Too many levels of 
symbolic
links

while logging to the client's sylog:
Aug 12 17:01:54 hobbes kernel: nfs_refresh_inode: inode 1097449706 mode
changed, 0120777 to 010

Another Example:

[EMAIL PROTECTED]:~$ ls -l /usr/share/man/man1/ 
ls: /usr/share/man/man1/gvim.1.gz: Input/output error
ls: /usr/share/man/man1/gvim.1.gz.dpkg-tmp: Input/output error
ls: /usr/share/man/man1/gview.1.gz.dpkg-tmp: Input/output error
ls: /usr/share/man/man1/rgvim.1.gz.dpkg-tmp: Input/output error
ls: /usr/share/man/man1/rgview.1.gz.dpkg-tmp: Input/output error
ls: /usr/share/man/man1/ex.1.gz.dpkg-tmp: Input/output error
ls: /usr/share/man/man1/rvim.1.gz.dpkg-tmp: Input/output error
ls: /usr/share/man/man1/rview.1.gz.dpkg-tmp: Input/output error
ls: /usr/share/man/man1/view.1.gz.dpkg-tmp: Input/output error
total 5720
-rw-r--r--1 root root  534 Jul  5 23:31 822-date.1.gz
[...]

At the same time, the following errors were logged:
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353261 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353262 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353263 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353264 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353275 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353276 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353277 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353288 mode
changed, 0100644 to 0120777
Aug 12 16:36:27 hobbes kernel: nfs_refresh_inode: inode 1094353659 mode
changed, 0100644 to 0120777


Any Ideas ?


Server:
---
Debian unstable
Kernel 2.4.6
nfs-common: 1:0.3.1-1
nfs-user-server:2.2beta47-10

Clients:

Debian unstable
Kernel 2.4.6
nfs-common: 1:0.3.2-2

Ciao, Bjørn

-- 
o_)   Bjoern Buergerhttp://bbuerger.home.pages.de
   .-. _/\   .---  
--/---\-/(/-' Studentenwohnheim Langer Kamp  LUG-Braunschweig
   `-'http://www.lk.etc.tu-bs.de http://www.lug-bs.de



Re: Network; UNEX Card (RealTek8139) wont work...

2001-08-12 Thread Bob Underwood
I had a similar problem when I added net cards.  IIRC it was a config problem 
with the /etc/hosts and the other machine nor properly configured.  can you 
ping this machine from the other?

Bob


On Friday 10 August 2001 03:40 am, Tor Arvid Lund wrote:
 Hi Emil, thanks for responding...

  Are you sure the card is not broken?

 Yes. I forgot to mention that... It works perfectly in win2k, so it is
 neither the card or the cable.

  Pinging the card itself or some other on the net?

 Pinging the card itself works, pinging the other machine does not.


 Someone claims that switching PCI ports might help. I haven't tried that
 yet, maybe I will tonight... It does seem strange though, that the card
 would conflict with something in Linux, and not in win2k.

 -Tor Arvid-



Re: Mozilla: configure menu fonts?

2001-08-12 Thread Craig Dickson
Hall Stevenson wrote:

 Isn't it actually the opposite ??

The docs are correct. For any given monitor size, the higher your
resolution, the higher your dpi.

 If you're running at 1280x1024 or
 1600x1200 or higher, you want more space for stuff. You don't want
 big-a** fonts taking up valuable screen space.

That's an incorrect assumption. Some people want higher resolution to
have more detail on the same stuff -- they want their fonts rendered
better, not smaller. These are the people who will care about having
their dpi set correctly. On my setup, I actually have just under 100 dpi
-- I can verify this by drawing a line 500 pixels long and holding a
physical ruler up to the screen, and seeing that the 500 pixel line is
just a bit over 5 inches long. This equivalence is rather obviously
useful for graphic design work, where you want what you see on the
screen to match the printed output as closely as possible. (In the
Gimp's preferences dialog, there's a dpi calibrator that you can use to
see what your display's dpi actually is.)

Even given your assumption that higher resolution == more stuff, your
statement still doesn't make any sense to me. Why would someone running
at a low resolution (say, 800x600 on a 17 monitor) want 100 dpi fonts?
They'd be huge! So it seems to me that your point of view, based solely
on an attitude of how much stuff can I cram onto the screen at once,
is that one should always use 75 dpi fonts. Which is fine if that's what
matters to you. But if that were everyone's view, the 100 dpi fonts
probably wouldn't even exist; if nobody cares about matching the display's
metrics to that of the printed page, we might as well throw out the whole
pretense of measuring fonts in points, and just count pixels instead.

Craig



Re: Mozilla: configure menu fonts?

2001-08-12 Thread Craig Dickson
Karsten M. Self wrote:

 File is ~/.mozilla/user/odd string/chrome/userChrome.css
 
 Content that works for now:
 
 window{
   font-family: Helvetica !important;
   font-size: 8pt !important; */
   font-style: regular !important;
   font-weight: normal !important;
 }
 
 menubar, menubutton, menulist, menu, menuitem {
   font-family: Helvetica !important;
   font-style: regular !important;
   font-weight: normal !important;
   font-size: 8pt !important; 
 }

I see you've solved your problem. I can add to the solution a bit, though.

Here's my userChrome.css:

  button, input, menu, menubar, menubutton, menuitem, menulist, window {
  font-family: verdana !important;
  font-size: 3mm !important;
  }

Notice I've added a few more object types to the list. This makes just
about all of Mozilla's UI use the same font.

Is there any real documentation on this anywhere? I browsed around the
mozilla.org site for a while but couldn't find any complete definition
of what you can put into the userChrome.css file. I only found examples,
which were nice as far as they went but were far from comprehensive.
What are _all_ the object types, _all_ the attribute names, _all_ the
units of measurement that are accepted? Until I saw your example, I
didn't even know that you could specify font sizes in points! The only
examples I had seen used mm as the unit of measurement. I find 3mm
gives me about a 13-pixel font, which is what I like for UI elements.
Maybe I'll try substituting 13px and see if that works...

Craig



Re: Mozilla: configure menu fonts?

2001-08-12 Thread Mark Garland
On Sun, 12 Aug 2001 05:10:26 Karsten M. Self wrote:
 I've updated to a recent Mozilla under Woody/testing:
 
 Version: 2:0.9.3-1
 
 Problem:  the menu fonts are all rather larger than I'd like -- appear
 to be Helvetica or Arial, roughly 16 points.  I prefer fixed fonts for
 all menus, at about 10 points.

There's a known bug with the default Modern theme in Mozilla 0.9.x.  
See:

http://bugzilla.mozilla.org/show_bug.cgi?id=63316

Mark Garland
Tallahassee, Florida 




xfree86_4.1.0-2 broken dga

2001-08-12 Thread Sean Morgan
All my DGA using apps have broken as of late giving:

/usr/X11R6/lib/libXxf86dga.so: undefined symbol: atexit

A 'dpkg -S libXxf86dga.so' gives no results, but I assume it used to be in 
xlibs.  So were the DGA libs moved or something, or am I just SOL til the 
maintainer fixes it?



gnumeric and gnome-print

2001-08-12 Thread Hugo van der Merwe
Hello,

gnumeric is failing, claiming not being able to find a default font.

This I can confirm by running gnome-font-install -d :

atlantis:/home/hugo# gnome-font-install 
?xml version=1.0?
fontmap version=2.0/
atlantis:/home/hugo# gnome-font-install -d
Reading fontmap... Done
Verifying fontmap entries Done
Scanning source maps... Done
Scanning directories: Done
Sorting fonts... Done
Sorting Type1 aliases... Done
Building fonts... Done
Something went wrong - NO FONTS
?xml version=1.0?
fontmap version=2.0/
atlantis:/home/hugo# 

What is gnome-font-install missing? Any ideas?

Thanks,
Hugo van der Merwe
-- 
To send me private (non-world-readable) mail, GPG encrypt it.
1024D/60715698: 5F2E 8EC2 E0A4 5D25 0569  F281 4A6C D76D 6071 5698


pgpqSdvanKqWu.pgp
Description: PGP signature


Re: gnumeric and gnome-print

2001-08-12 Thread J.H.M. Dassen \(Ray\)
On Sun, Aug 12, 2001 at 18:37:38 +0200, Hugo van der Merwe wrote:
 This I can confirm by running gnome-font-install -d :

 What is gnome-font-install missing? Any ideas?

Does running /usr/share/doc/libgnomeprint-data/run-gnome-font-install help?

Ray
-- 
POPULATION EXPLOSION  Unique in human experience, an event which happened 
yesterday but which everyone swears won't happen until tomorrow.  
- The Hipcrime Vocab by Chad C. Mulligan 



wvdial: pppd connects to ISP -- Now what?

2001-08-12 Thread DTi4565459

Working on laptop install (Fuji) from console.  Installed minimal debian from 
floppies.  wvdial finds modem and connects via pppd.  My problem: how to
enter commands.  The console has no prompts.  If I migrate to another
console and issue commands, like 'lynx', nothing happens.  So, I'm afraid
I'm stuck again.  Have tried 'man wvdial', but my minimal install has no
man command.  Thanks in advice for a much-needed tip.  dave



Re: [Fwd: new install nfs not working] ...and causing problems

2001-08-12 Thread jjheuring

 Date: Fri, 10 Aug 2001 23:03:24 -0400
 From: Wayne Topa [EMAIL PROTECTED]
 Subject: Re: new install nfs not working
 To: debian-user@lists.debian.org
 Resent-Date: Sat, 11 Aug 2001 03:31:17 -0700 (PDT)
 X-Envelope-Sender: [EMAIL PROTECTED]
 Mail-Followup-To: debian-user@lists.debian.org
 In-Reply-To: [EMAIL PROTECTED] [EMAIL PROTECTED]
 User-Agent: Mutt/1.3.18i
 Resent-Message-ID: [EMAIL PROTECTED]
 Resent-From: debian-user@lists.debian.org
 X-Mailing-List: debian-user@lists.debian.org archive/latest/163360
 X-Loop: debian-user@lists.debian.org
 Precedence: list
 Resent-Sender: [EMAIL PROTECTED]
 X-Mozilla-Status2: 
 
 
   Subject: new install nfs not working
   Date: Fri, Aug 10, 2001 at 10:20:04AM -0700
 
 In reply to:[EMAIL PROTECTED]
 
 Quoting [EMAIL PROTECTED]([EMAIL PROTECTED]):
  uname: Debian of course.
  Linux 2.4.5 #1 Sat Jun 16 07:33:46 PDT 2001 i686 unknown
  
  Hello all.  Just installed nfs using apt-get but haven't got it to work
  yet
-snip

 I don't.
 No expert on NLS but I have it working so I'll try to help

---snip

Ok it took awhile for me to get and reply to this message because
fetchmail went out on me.  I think it is related to the nfs-server
packages I installed, in particular 'bwnfsd'.  First the command:

$ fetchmail -v -v -L mytestlogfile
produces nothing.  No data what so ever to look at.  So trying to remove
fetchmail via 'apt-get remove' 'depkg --purge' and trying to reinstall
produces errors that are reliant on bwnfsd.  Then trying to remove and
reinstall bwnfsd all produces the same error, which is:

--
Starting BWNFS daemon: rpc: RPC: Timed out
dpkg: error processing bwnfsd (--configure):
 subprocess post-installation script returned error exit status 255
Errors were encountered while processing:
 bwnfsd
E: Sub-process /usr/bin/dpkg returned an error code (1)


why it wants to start the BWNFS daemon when I want to remove bwnfsd and
remove fetchmail I've not a clue.  Searching I was able to find an email
with the same problem at:
http://lists.debian.org/debian-security-0103/msg00039.html
but cannot find a follow up to it.

I'm now tying to get in the post-installation script and see if I can
figure out error 255 and or logs but I am clumsy at this. Any help on
how to diagnos this?  Much thanks in advance.



Re: gnumeric and gnome-print

2001-08-12 Thread Hugo van der Merwe
 Does running /usr/share/doc/libgnomeprint-data/run-gnome-font-install help?

Usage: run-gnome-font-install installer datadir srcdir

What does it want as parameters?

Hugo
-- 
To send me private (non-world-readable) mail, GPG encrypt it.
1024D/60715698: 5F2E 8EC2 E0A4 5D25 0569  F281 4A6C D76D 6071 5698


pgpoe7ABpqR6z.pgp
Description: PGP signature


Re: best practice for tar and gzip?

2001-08-12 Thread Paul M Foster
On Sun, Aug 12, 2001 at 02:46:42AM -0700, patrick q wrote:

 Hi,
 
 I have a lot of important archives, up to 10,000 files per ~10 Meg
 tar.gz tarball, that I like to keep as safe as possible.
 
 I test the archives when I create them, have backups, and off-site
 backups of backups, but I am worried about possible file corruption, ie
 propagating possibly corrupt files through the backup rotation.
   
 Would it not be better to compress the files individually first and
 then tar them into an archive instead of the normal tar.gz operation,
 to have the best chance of recovering as many files as possible?
 

Compress files individually. Afio does this, and it is the basis for the
tob (Tape Oriented Backup) utility. The following command should give
you a place to start:

afio -Zvo -b 10k backup device  filelist

See the man pages for further info. You can tar these all together once
compressed. The problem with tar is that if there is an error in a tar
archive, everything beyond that point is lost.

Paul



Re: xfree86_4.1.0-2 broken dga

2001-08-12 Thread Sean
Sounds like you're running Sid ... libc6-2.2.3-10 is broken. Downgrade to the 
one in woody, and your problem will be fixed.

Sean

On Sun, 12 Aug 2001 12:35:18 -0400
Sean Morgan [EMAIL PROTECTED] wrote:

 All my DGA using apps have broken as of late giving:
 
 /usr/X11R6/lib/libXxf86dga.so: undefined symbol: atexit
 
 A 'dpkg -S libXxf86dga.so' gives no results, but I assume it used to be in 
 xlibs.  So were the DGA libs moved or something, or am I just SOL til the 
 maintainer fixes it?
 
 
 -- 
 To UNSUBSCRIBE, email to [EMAIL PROTECTED] 
 with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]
 
 


-- 
OpenGPG key available from http://frodo.net.dhis.org/GnuPG/sjohnson.asc


pgpTPXW5HKpmW.pgp
Description: PGP signature


Re: gnumeric and gnome-print

2001-08-12 Thread John Toon
On 12 Aug 2001 18:43:34 +0200, J.H.M. Dassen (Ray) wrote:

 On Sun, Aug 12, 2001 at 18:37:38 +0200, Hugo van der Merwe wrote:
  This I can confirm by running gnome-font-install -d :
 
  What is gnome-font-install missing? Any ideas?
 
 Does running /usr/share/doc/libgnomeprint-data/run-gnome-font-install help?

No it doesn't, because the above file doesn't exist! ;^)

Ack, anyone got a fix for this Gnumeric problem?

John.



Re: xfree86_4.1.0-2 broken dga

2001-08-12 Thread Nathan E Norman
On Sun, Aug 12, 2001 at 12:35:18PM -0400, Sean Morgan wrote:
 All my DGA using apps have broken as of late giving:
 
 /usr/X11R6/lib/libXxf86dga.so: undefined symbol: atexit
 
 A 'dpkg -S libXxf86dga.so' gives no results, but I assume it used to be in 
 xlibs.  So were the DGA libs moved or something, or am I just SOL til the 
 maintainer fixes it?

libc6 bug - see post today from Ben Collins.

-- 
Nathan Norman - Staff Engineer | A good plan today is better
Micromuse Ltd. | than a perfect plan tomorrow.
mailto:[EMAIL PROTECTED]   |   -- Patton


pgpnzj2ZxQscX.pgp
Description: PGP signature


can't start sshd

2001-08-12 Thread Jacob Stowell
Hi All, 

For some reason, I am unable to start sshd. I have combed thhrough many
web pages and the archive, but did not find anything that sounded like
my specific problem.  I even resorted to a fresh install of the most
recent version of ssh in unstable, but to no avail.

When I run /etc/init.d/ssh restart, I do not get any error messages, but
it does not start.  When I do an ls on /var/run, there is no sshd.pid. 
I am not entirely sure what I should check.  

When I run sshd -d, I get the following output:

debug1: Seeding random number generator
debug1: sshd version OpenSSH_2.9p2
debug1: private host key: #0 type 0 RSA1
debug1: read PEM private key done: type RSA
debug1: private host key: #1 type 1 RSA
debug1: read PEM private key done: type DSA
debug1: private host key: #2 type 2 DSA
debug1: Bind to port 22 on 0.0.0.0.
Server listening on 0.0.0.0 port 22.
Generating 768 bit RSA key.
RSA key generation complete.

Below is the output from strace sshd:

satchel[/home/jake]% strace sshd |more
execve(/usr/sbin/sshd, [sshd], [/* 32 vars */]) = 0
uname({sys=Linux, node=satchel, ...}) = 0
brk(0)  = 0x808a964
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS,
-1, 0) = 0x40015000
open(/etc/ld.so.preload, O_RDONLY)= -1 ENOENT (No such file or
directory)
open(/etc/ld.so.cache, O_RDONLY)  = 3
fstat64(3, {st_mode=S_IFREG|0644, st_size=32353, ...}) = 0
old_mmap(NULL, 32353, PROT_READ, MAP_PRIVATE, 3, 0) = 0x40016000
close(3)= 0
open(/lib/libpam.so.0, O_RDONLY)  = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\220\24...,
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=29240, ...}) = 0
old_mmap(NULL, 32248, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =
0x4001e000
mprotect(0x40025000, 3576, PROT_NONE)   = 0
old_mmap(0x40025000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED,
3, 0x6000) = 0x40025000
close(3)= 0
open(/lib/libdl.so.2, O_RDONLY)   = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0D\34\0\000...,
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=9336, ...}) = 0
old_mmap(NULL, 12216, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =
0x40026000
mprotect(0x40028000, 4024, PROT_NONE)   = 0
old_mmap(0x40028000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED,
3, 0x1000) = 0x40028000
close(3)= 0
open(/lib/libwrap.so.0, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\340\37...,
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=24216, ...}) = 0
old_mmap(NULL, 28932, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =
0x40029000
mprotect(0x4002f000, 4356, PROT_NONE)   = 0
old_mmap(0x4002f000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED,
3, 0x5000) = 0x4002f000
old_mmap(0x4003, 260, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x4003
close(3)= 0
open(/usr/lib/libz.so.1, O_RDONLY)= 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\30\0\000...,
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=54472, ...}) = 0
old_mmap(NULL, 57480, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =
0x40031000
mprotect(0x4003d000, 8328, PROT_NONE)   = 0
old_mmap(0x4003d000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED,
3, 0xb000) = 0x4003d000
close(3)= 0
open(/lib/libnsl.so.1, O_RDONLY)  = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\300A\0...,
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=71284, ...}) = 0
old_mmap(NULL, 82684, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =
0x4004
mprotect(0x40051000, 13052, PROT_NONE)  = 0
old_mmap(0x40051000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED,
3, 0x1) = 0x40051000
old_mmap(0x40053000, 4860, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40053000
close(3)= 0
open(/lib/libutil.so.1, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\260\16...,
1024) = 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=7644, ...}) = 0
old_mmap(NULL, 10496, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =
0x40055000
mprotect(0x40057000, 2304, PROT_NONE)   = 0
old_mmap(0x40057000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED,
3, 0x1000) = 0x40057000
close(3)= 0
open(/usr/lib/libcrypto.so.0.9.6, O_RDONLY) = 3
read(3, \177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P$\2\000...,
1024) =
 1024
fstat64(3, {st_mode=S_IFREG|0644, st_size=786264, ...}) = 0
old_mmap(NULL, 802176, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) =
0x40058000
mprotect(0x4010e000, 56704, PROT_NONE)  = 0
old_mmap(0x4010e000, 45056, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED,
3, 0xb5000) = 0x4010e000
old_mmap(0x40119000, 11648, PROT_READ|PROT_WRITE,
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS, -1, 0) = 0x40119000
close(3)= 0
open(/lib/libc.so.6, O_RDONLY)= 3
read(3, 

problems with ip masquerade

2001-08-12 Thread Roberto Diaz
Hi!

I have configured a linux box as a router for my home LAN using
ip-masquerade but now I am having some problems.

My configuration:

* 486/100Mhz 16 Mbytes ram debian potato as a router
* 56 k modem ppp link (it works fine from the router)
* Kernel 2.2.17 recompiled according to IP-Masquerade-HOWTO
* rules configured using pmfirewall 

they look like this: (62.83.136.124 here is a dynamic dialup ip)

Chain input (policy ACCEPT):
target prot opt sourcedestination   ports
ACCEPT all  --  0.0.0.0/00.0.0.0/0 n/a
ACCEPT tcp  !y  0.0.0.0/062.83.136.124 * -
*
DENY   all  --  10.0.0.0/8   62.83.136.124 n/a
DENY   all  --  127.0.0.0/8  62.83.136.124 n/a
DENY   all  --  172.16.0.0/1262.83.136.124 n/a
DENY   all  --  192.168.0.0/16   62.83.136.124 n/a
DENY   tcp  l-  0.0.0.0/062.83.136.124 * -
31337
DENY   udp  l-  0.0.0.0/062.83.136.124 * -
31337
DENY   tcp  l-  0.0.0.0/062.83.136.124 * -
12345:12346
DENY   udp  l-  0.0.0.0/062.83.136.124 * -
12345:12346
DENY   tcp  l-  0.0.0.0/062.83.136.124 * -
1524
DENY   tcp  l-  0.0.0.0/062.83.136.124 * -
27665
DENY   udp  l-  0.0.0.0/062.83.136.124 * -
27444
DENY   udp  l-  0.0.0.0/062.83.136.124 * -
31335
DENY   all  --  224.0.0.0/8  0.0.0.0/0 n/a
DENY   all  --  0.0.0.0/0224.0.0.0/8   n/a
ACCEPT udp  --  0.0.0.0/00.0.0.0/0 * -
67:68
ACCEPT tcp  --  0.0.0.0/062.83.136.124 * -
22
ACCEPT tcp  --  0.0.0.0/062.83.136.124 * -
25
ACCEPT tcp  --  0.0.0.0/062.83.136.124 * -
80
ACCEPT tcp  --  192.168.10.0/24  62.83.136.124 * -
110
ACCEPT tcp  --  0.0.0.0/062.83.136.124 * -
113
ACCEPT udp  --  0.0.0.0/062.83.136.124 * -
113
ACCEPT tcp  --  0.0.0.0/062.83.136.124 * -
123
ACCEPT udp  --  0.0.0.0/062.83.136.124 * -
123
DENY   tcp  --  0.0.0.0/00.0.0.0/0 * -
137:139
DENY   udp  --  0.0.0.0/00.0.0.0/0 * -
137:139
REJECT udp  --  0.0.0.0/00.0.0.0/0 * -
520
DENY   tcp  l-  0.0.0.0/00.0.0.0/0 * -
2049
DENY   udp  l-  0.0.0.0/00.0.0.0/0 * -
2049
DENY   tcp  --  0.0.0.0/00.0.0.0/0 * -
5999:6003
DENY   udp  --  0.0.0.0/00.0.0.0/0 * -
5999:6003
ACCEPT all  --  192.168.10.0/24  0.0.0.0/0 n/a
ACCEPT icmp --  0.0.0.0/062.83.136.124 * -
*
ACCEPT tcp  --  0.0.0.0/062.83.136.124 * -
1023:65535
ACCEPT udp  --  0.0.0.0/062.83.136.124 * -
1023:65535
DENY   all  l-  0.0.0.0/00.0.0.0/0 n/a
Chain forward (policy DENY):
target prot opt sourcedestination   ports
ACCEPT all  --  192.168.10.0/24  192.168.10.0/24   n/a
ACCEPT all  --  62.83.136.1240.0.0.0/0 n/a
MASQ   all  --  192.168.10.0/24  0.0.0.0/0 n/a
Chain output (policy ACCEPT):
target prot opt sourcedestination   ports
ACCEPT all  --  0.0.0.0/00.0.0.0/0 n/a
ACCEPT all  --  192.168.10.0/24  0.0.0.0/0 n/a
-  tcp  --  0.0.0.0/00.0.0.0/0 * -
80
-  tcp  --  0.0.0.0/00.0.0.0/0 * -
22
-  tcp  --  0.0.0.0/00.0.0.0/0 * -
23
-  tcp  --  0.0.0.0/00.0.0.0/0 * -
21
-  tcp  --  0.0.0.0/00.0.0.0/0 * -
110
-  tcp  --  0.0.0.0/00.0.0.0/0 * -
25
-  tcp  --  0.0.0.0/00.0.0.0/0 * -
20
ACCEPT icmp --  192.168.10.0/24  0.0.0.0/0 * -
*
ACCEPT icmp --  62.83.136.1240.0.0.0/0 * -
*
ACCEPT all  --  0.0.0.0/00.0.0.0/0 n/a

Well sorry it is long I know... 

My problem is that although ip-masquerading is working I have timeouts for
both www and ftp now it is quite painfull to make an apt-upgrade from a
masqued machine (it works but with a lot of timeouts)

My mtu/mru is set to 1500.

the router linux box is an old 486/100Mhz 16 Mbytes ram I understood 

Re: wvdial: pppd connects to ISP -- Now what?

2001-08-12 Thread Sebastiaan
High,

On Sun, 12 Aug 2001 [EMAIL PROTECTED] wrote:

 
 Working on laptop install (Fuji) from console.  Installed minimal debian from 
 floppies.  wvdial finds modem and connects via pppd.  My problem: how to
 enter commands.  The console has no prompts.  If I migrate to another
 console and issue commands, like 'lynx', nothing happens.  So, I'm afraid
 I'm stuck again.  Have tried 'man wvdial', but my minimal install has no
 man command.  Thanks in advice for a much-needed tip.  dave
 
Can you ping a host? Can you ping an IP addres? Try to telnet to one.
Perhaps you need to add your nameservers in /etc/resolv.conf:

domain its.tudelft.nl
nameserver 130.161.180.1
nameserver 130.161.180.65
(use your own)

Is the link up? (ifconfig ppp0)

Greetz,
Sebastiaan




path to image magick?

2001-08-12 Thread Jason Truman
Hello everyone, I'm new to the list and I'm starting off with a quick 
question.


My web host (www.f2s.com) runs Debian Linux as their main operating system.  
It is my understanding that image magick is included as one of the graphics 
packages.  I'd like to be able to use image magick because I have a photo 
gallery on my site which utilizes thumbnails.  I figure I could use the 
convert utility within image magick to do some automatic thumbnail 
generation.  My problem is, I have no clue as to what the path to image 
magick is...  I'm assuming there is a default path, and I was wondering if 
anyone could enlighten me as to what that default path might be?


Thanks in advance for any help/advice that can be offered. :)

- Jason Truman
Creator/Webmaster of http://www.dusterhq.f2s.com

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



Small Debian Install?

2001-08-12 Thread JakeCatfox
Hi, I'm looking into buying a 386 laptop with 4 mb RAM, and a 160mb HDD. Will 
I be able to install Debian on this? How about X windows?

Thanks,
Deven



Re: gnumeric and gnome-print

2001-08-12 Thread Hugo van der Merwe
  Does running /usr/share/doc/libgnomeprint-data/run-gnome-font-install help?

 No it doesn't, because the above file doesn't exist! ;^)

I believe it does. At least on my system. Needs to be executed with
perl.

 Ack, anyone got a fix for this Gnumeric problem?

I see there are a number of bug reports that are related. I've requested
them, will mail again when I find something relevant.

Hugo

-- 
To send me private (non-world-readable) mail, GPG encrypt it.
1024D/60715698: 5F2E 8EC2 E0A4 5D25 0569  F281 4A6C D76D 6071 5698


pgpHSPvMIzUOF.pgp
Description: PGP signature


Re: Dysfunctional ne (RTL8019AS)

2001-08-12 Thread Hugo van der Merwe
Thanks for your replies...

I set PNP OS back to No in the BIOS (setting it to Yes was what
seemed to fix the problem last time, weird...), then I reserved IRQ's 3
and 4 for serial, 5 for my NE2K, 12 for PS/2 mouse (when I get round to
fixing that one again), and booted GNU/Linux again. The RTL shifted from
IRQ 12 to 11, and the NE appears to work fine on IRQ 5.

I guess the BIOS just configured the network card better than it was
configured when it left it for GNU/Linux. Makes sense.

Thanks,
Hugo van der Merwe

-- 
To send me private (non-world-readable) mail, GPG encrypt it.
1024D/60715698: 5F2E 8EC2 E0A4 5D25 0569  F281 4A6C D76D 6071 5698


pgpb7umvJqpl8.pgp
Description: PGP signature


Re: hard drive problems... misconfiguration?

2001-08-12 Thread Hugo van der Merwe
 it is a good idea to visit the manufacturers' site. download an utility
 and test the drive for errors. seagate and western digital have pretty
 good utilities that run off a floppy after you boot using a dos bootdisk.

Thanks for all the replies, I've downloaded a drive testing program from
Fujitsu's site, and found an error identified by a cryptic error code,
and instructions to send it to the manufacturer for fixing. I've sent
off a mail requesting more info on what this failure actually is... but
unlike GNU/Linux support, Fujitsu Support doesn't function on Sundays.
It's wait and see...

Thanks everyone,
Hugo van der Merwe
-- 
To send me private (non-world-readable) mail, GPG encrypt it.
1024D/60715698: 5F2E 8EC2 E0A4 5D25 0569  F281 4A6C D76D 6071 5698


pgphMJTGLz5zl.pgp
Description: PGP signature


2.4.7 kernel boot hangs with cramfs: wrong magic

2001-08-12 Thread Jerome Acks Jr
oop! -- I corrected a few incorrect details in my prior message 
regarding the results of 2.4.7 boot partitions check and contents of my 
lilo.conf file.


I have been trying unsuccessfully to get a 2.4.7 kernel to boot. My PC 
has a AMD-K6-II and runs woody. My most recent attempt used the kernel 
image is from kernel-image-2.4.7-k6_2.4.7-1.i386.deb. The boot sequence 
runs until the hard disk partition check and then hangs. The final part 
of the boot post is:


Partition check:
/dev/ide/host0/bus0/target0/lun0: [EZD] [remap 0-1] [700/255/63] p1 p2 
p5
/dev/ide/host0/bus0/target1/lun0: [PTBL] [2491/255/63] p1 p2 p3 p4 p5 
p6 p7

cramfs: wrong magic
VFS: Mounted root (est2 filesystem) readonly
change-root: old root has d_count=2
Freeing unused kernel memory: 184k freed

The boot hangs at this point. Sometimes is hangs at the line cramfs: 
wrong magic


When I boot with my 2.2.19 kernel, partition check reports:
hda: [EZD] [remap 0-1] [700/255/63] hda1 hda2  hda5 
hdb: hdb1 hdb2 hdb3 hdb4  hdb5 hdb6 hdb7 
Is it normal for a 2.4.x kernels to report partitions as p1, p2, etc. 
vice hda1, hda2, hdb1, etc?  What does cramfs: wrong magic mean, and 
does anyone have suggestions on how to fix this problem?


My lilo.conf is:

lba32  
boot=/dev/hda

root=/dev/hdb2
install=/boot/boot.b
map=/boot/map
message=/boot/bootmess.txt
   prompt
   single-key
   delay=20
   timeout=100
vga=normal
append=hdc=ide-scsi
default=linux-2.2.19

image=/vmlinuz-2.2.19
  label=linux-2.2.19
  read-only
  alias=1

image=/vmlinuz
  label=linux
  read-only
  initrd=/boot/initrd
  alias=2

#other is Windows98 boot partition
other=/dev/hda1
  label=dos
  alias=3


/boot/initrd is linked to /boot/initrd-2.4.7-k6. /vmlinuz is linked to 
/boot/vmlinuz-2.4.7-k6

hda contain a Windows 98 installation and fat32 partitions.
hdb are my linux partitions
hdc is a HP Colorado 8GB tape drive.
hdd is CDROM
The PC also has an Adaptec AHA2940 scsi adaptor that currently connects 
to my zip drive.


Any ideas and suggestions would be appreciated. thanks.

--
Jerome




Re: Small Debian Install?

2001-08-12 Thread ktb
On Sun, Aug 12, 2001 at 02:02:09PM -0400, [EMAIL PROTECTED] wrote:
 Hi, I'm looking into buying a 386 laptop with 4 mb RAM, and a 160mb HDD. Will 
 I be able to install Debian on this? How about X windows?
 

Try - 
http://7thguard.net/files/DebianHOWTO.txt

also -
http://www.linuxdoc.org/HOWTO/4mb-Laptops.html

I wouldn't bother with X.
kent

-- 
 From seeing and seeing the seeing has become so exhausted
 First line of The Panther - R. M. Rilke




Re: wvdial: pppd connects to ISP -- Now what?

2001-08-12 Thread Eric G. Miller
On Sun, Aug 12, 2001 at 12:55:07PM -0400, [EMAIL PROTECTED] wrote:
 
 Working on laptop install (Fuji) from console.  Installed minimal debian from 
 floppies.  wvdial finds modem and connects via pppd.  My problem: how to
 enter commands.  The console has no prompts.  If I migrate to another
 console and issue commands, like 'lynx', nothing happens.  So, I'm afraid
 I'm stuck again.  Have tried 'man wvdial', but my minimal install has no
 man command.  Thanks in advice for a much-needed tip.  dave

Nothing happens?  You don't get command not found?

Anyway, you probably want to run dselect to add things like X, and
whatever else you want...

-- 
Eric G. Miller egm2@jps.net



re:mssql to free database

2001-08-12 Thread Eamon Roque
On Sun, Aug 05, 2001 at 03:38:02PM -0500, Matt Fair wrote:
 Hello,
 I am converting an ASP Visual Basic application to run on a linux machine.  I 
  downloaded the trial version of Chilisoft and got the ASP working, now I 
 want  to have the database be mysql or postgresql.  Does anyone know of a 
 conversion utility for mssql database to either mysql or postgresql?  Or 
 would I just have to setup a database and just use mysql or postgresql?  What 
  are the sql syntax between Microsoft's and other?  Are there?  I know mysql 
 doesn't support transactions, so maybe postgresql is the only option that I 
 have since it is a standard sql database, is mssql one?
 Any help would be greatly appreciated.

mysql supports transactions with BerkelyDB(since May 2000), InnoDB and Gemini 
table types, so you can keep this option open (infos on transactions with mysql 
appeared in Linux Magazine 08/2001 in an article by Michael Kofler (the issue 
infos pertain to the german release, so it could be different in the english 
version (i.e.different month ).
As to mssql conversion programs, I would check out sourceforge.net, 
freshmeat.net and the respective webpages ( a.e. www.mysql.org or 
www.postgresql.org.) for the easiest solution.


Cheers.

Eamon Roque.



Re: Modifying a Windows 95/98 FAAT 32 partition

2001-08-12 Thread Rogério Brito
On Aug 12 2001, Eduard Bloch wrote:
 FIPS has some disadvantages: unable to change cluster size, and requires
 a defragment filesystem. Another open source alternative is GNU parted.
 I prepared a set of modified boot floopies which can be used to install
 Woody or Sid and contain GNU parted and Ext3-support.
 
 http://people.debian.org/~blade/bf-ext3/README-boot-floppies.html

Where can I get the source to the boot-floppies (so that I
could make one customized set myself)? I'd also love to learn
a bit more about them.

You homepage didn't mention the location of the sources (it
contained only your patch).


Thanks in advance, Roger...

-- 
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
  Rogério Brito - [EMAIL PROTECTED] - http://www.ime.usp.br/~rbrito/
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=



ipmasquerade standard still having problems.

2001-08-12 Thread Roberto Diaz
Hi.

I have finally switched back to the standard kernel of the debian potato
2.2 distribution and I have installed the package ipmasq.

I still have problems.. :( 

* apt-get upgrade from a masked machine times out!! 


My new configuration:

* standard kernel 2.2.17 from the debian distribution
* standard ipmask debian scripts
* all modules *mask* loaded 

what is happenig I undestood ip-masquerade worked fine in a 486/100 16 ram
:???

Please need help this is painfull!!! 


Regards

Roberto


Roberto Diaz [EMAIL PROTECTED]
http://vivaldi.dhis.org
Powered by GNU running on a Linux kernel.
Powered by Debian (The real wonder)

Concerto Grosso Op. 3/8 A minor
Antonio Vivaldi (so... do you need beautiful words?)




Re: can't start sshd

2001-08-12 Thread Roberto Diaz
 debug1: Seeding random number generator
 debug1: sshd version OpenSSH_2.9p2
 debug1: private host key: #0 type 0 RSA1
 debug1: read PEM private key done: type RSA
 debug1: private host key: #1 type 1 RSA
 debug1: read PEM private key done: type DSA
 debug1: private host key: #2 type 2 DSA
 debug1: Bind to port 22 on 0.0.0.0.
 Server listening on 0.0.0.0 port 22.
 Generating 768 bit RSA key.
 RSA key generation complete.

It seems it is working.. :?
 
 Below is the output from strace sshd:
 
 satchel[/home/jake]% strace sshd |more

Please it is much better if you send us the result of strace sshd
-d since otherwise sshd daemonize itself and the traces are lost.


Regards

Roberto


Roberto Diaz [EMAIL PROTECTED]
http://vivaldi.dhis.org
Powered by GNU running on a Linux kernel.
Powered by Debian (The real wonder)

Concerto Grosso Op. 3/8 A minor
Antonio Vivaldi (so... do you need beautiful words?)




Re: LT WinModem and kernel headers

2001-08-12 Thread Guy Geens
 Paul == Paul Scott [EMAIL PROTECTED] writes:

Paul I'm still reading every fine manual I can but can you tell me
Paul how I identify the kernel? Are you talking about executable or
Paul source? I actually D/L'd the entired source last night but I'm
Paul not sure if I installed it correctly. apt-get install left me
Paul with a tar.bz2 and I 'm not sure I unpacked in the right folder.

Normally, you should end up with a directory
/usr/src/kernel-source-version. Debian doesn't really force you to
use this directory[1], you can use the location you like. To build the
ltmodem package, just specify --with-kernel-dir=place where you
extracted the tarball

Paul I was trying not to do that but I couldn't find header files
Paul which seemed to be the exact same version as the kernel that I
Paul had installed. I did my install from official CD's but I don't
Paul remember every step. There are supposed to be fout flavors of
Paul 2.2.19pre17: vanilla, compact, idepci and udma66. I only found
Paul headers for compact and idepci.

I'm not sure what the differences are between the header packages. Try
using the vanilla one.

[1] /usr/src has even been deprecated AFAIK.

-- 
G. ``Iggy'' Geens - ICQ: #64109250
Home: [EMAIL PROTECTED] - Work: [EMAIL PROTECTED]
WWW: http://users.pandora.be/guy.geens/
`I want quality, not quantity. But I want lots of it!'



Re: HELP broken dpkg ( previously HELP - installing broken libglib1.2-dev)

2001-08-12 Thread Mike McGuire
 [cruft deleted]
  Ouch.  I've never had to deal with a system as
  loused up as that one.
  
  But perhaps it can be solved with a:
  dpkg --force-all -P libglib-dev (libglib1.2-dev
  libgtk1.2-dev
  libgtk-dev)
  
  Hopefully this will clean out the system making way
  for a fresh install
  of everything for glib1.2 and gtk1.2
  
  Let the list know if this still doesn't work.  Maybe
  someone who has
  solved this problem will also come across the
  thread.
  
  --mike
  
  On 10 Aug 2001 11:31:35 -0700, Jatin Golani wrote:
   
   Hi Michael,
   
   Thanks for responding.
   
   To answer your questions:
   
   a) Yup I'm root.
   b) a dpkg --force-remove-reinstreq --purge
   libglib1.2-dev, has the same fate :(
   
   I don't know how to see which directories it's
  trying
   to write toif I could then I could manually do
   itdo you know how I can do that??
   
   Also even if I delete the files manually how do I
  then
   tell dpkg that the package has been
  deletedeven
   after a purge it keeps showing that the package is
   installed though broken.
   
   Any help would be appreciatedI can't
  understand
   what's happening...would appreciate help.
   
   Bye
   
   
   
   
   --- Michael Heldebrant
 [more cruft]

I've got an idea, but it's a bit ugly and probably should only be 
used as a last resort. (Unfortunately you appear to be getting to 
that point...)

First, do : dpkg -L pkgname   and remove (by hand, or with a script 
if you're feeling a bit brave :)  the files it lists, for each of 
the broken packages.

Then : echo pkgname purge | dpkg --set-selections   to get it out 
of dpkg's database.

Of course, you might want to wait a bit so anybody else can figure 
out something better, or say why this is a bad idea... Anyway, I 
*think* that much of dpkg will work, even with the broken packages.

HTH,
Mike McGuire



More clear ipmasquerade standard still having problems. (fwd)

2001-08-12 Thread Roberto Diaz
IP masquerade is not working for me :

Just some new info in order to be more clear:

From the IP-Masquerade Howto:

 7.15.  IP Masquerading seems slow

  There might be a few reasons for this:

  B7  Make sure you don't have both your INTERNAL and EXTERNAL networks
 running on the same network card with the IP Alias feature.  If you
 ARE doing this, it is highly recommended to get another network
 card so that the internal and external networks have their own
 interface.

* this is not my case.. I have a network link and a ppp link two
interfaces
---
 B7  If you have an external modem, make sure you have a good serial
 cable.  Also, many PCs have cheesy ribbon cables connecting the
 serial port from the motherboard or I/O card to the serial port
 connection.  If you have one of these, make sure it is in good
 condition.  Personally, I have ferrite coils (those grey-black
 metal like rings) around ALL of my ribbon cables.
---
* My ppp link works great from the linux masquerade machine.. so this is
not my case neither.
---
  B7  Make sure your MTU is set to 1500 as described in the FAQ section
 of this HOWTO above

---
* I have for both the MTU and the MRU
---
  B7  Make sure that your serial port is a 16550A or better UART.  Run
 dmesg | more to verify

* mine it is 16550A

 B7  Make sure that your serial port for your PPP connection is running
 at 115200 (or faster if both your modem and serial port can handle
 it.. a.k.a  ISDN terminal adapters)
-
* It is at 115200
-
 B7  2.0.x kernels:  The 2.0.x kernels are kind of an odd ball because
 you can't directly tell the kernel to clock the serial ports at
 115200.  So, in one of your startup scripts like the
 /etc/rc.d/rc.local or /etc/rc.d/rc.serial file, execute the
 following commands for a modem on COM2:
---
* mine is 2.2.17 (2.0 kernel problems skipped)
---
 B7  Set the TCP Sliding window to at least 8192

* I dont know if I have the sliding window to this value, but if my ppp
link is fast from the masquerade machine this shouldt be an issue isn't 
it?
--
B7  Setup IRQ-Tune for your serial ports

  B7  On most PC hardware, the use of Craig Estey's IRQTUNE
 http://www.best.com/~cae/irqtune/ tool and significantly increase
 serial port performance including SLIP and PPP connections.
---
* Same answer as the last point.. it shouldn't be an issue since my ppp
link is fast!!
--
What is happening?

And the following it is still my problem!!! :( :?


I have finally switched back to the standard kernel of the debian potato
2.2 distribution and I have installed the package ipmasq.

I still have problems.. :( 

* apt-get upgrade from a masked machine times out!! 


My new configuration:

* standard kernel 2.2.17 from the debian distribution
* standard ipmask debian scripts
* all modules *mask* loaded 

what is happenig I undestood ip-masquerade worked fine in a 486/100 16 ram
:???

Please need help this is painfull!!! 





getting woody

2001-08-12 Thread David Dayan-Rosenman
Hi all,
I am trying to get woody but could not find out how to do that. Are there 
some ISOs available ?

Thanks

David



  1   2   >