Re: [expert] cyclades under devfs

2003-11-10 Thread Alexandre Jacarandá
Whatever GNU/Linux you are using, it's good to look on /var/log/messages and 
/var/log/dmesg .

This both files will give you some hints if you compiled on kernel or module to have 
access to
your card.


---
Alexandre Gonçalves Jacarandá
Consultor de Tecnologia de Informação
Tel.: 0 ** 21 8131-2313

Alguns caminham pelo arco,
eu caminho pela reta.


-- 
__
Sign-up for your own personalized E-mail at Mail.com
http://www.mail.com/?sr=signup

Search Smarter - get the new eXact Search Bar for free!
http://www.exactsearchbar.com/


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


Re: [expert] mounting hfs remotely (afpfs won't compile)

2003-10-02 Thread Alexandre Jacarandá
Hi Eduardo!!!
Do you try to see on netatalk project ?
I used to mount hfs volumes from iMacs with thats programs on netatalk.

- Original Message -
From: "Eduardo M. A. M. Mendes" <[EMAIL PROTECTED]>
Date: Tue, 30 Sep 2003 04:41:32 -0300
To: Mandrake Expert list <[EMAIL PROTECTED]>
Subject: [expert] mounting hfs remotely (afpfs won't compile)

> Hello
> 
> On searching the web I came across afpfs that allows me to mount hfs volumes.  
> Unfortunately afpfs is too old and cannot be compiled at 9.2rc1. Does someone 
> out there has a solution on how to mount hfs volumes remotely?
> 
> Many thanks
> 
> Eduardo



---
Alexandre Gonçalves Jacarandá
Consultor de Tecnologia de Informação
Tel.: 0 ** 21 8131-2313

Alguns caminham pelo arco,
eu caminho pela reta.


-- 
__
Sign-up for your own personalized E-mail at Mail.com
http://www.mail.com/?sr=signup

CareerBuilder.com has over 400,000 jobs. Be smarter about your job search
http://corp.mail.com/careers


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[expert] Draksec problem

2003-09-14 Thread Alexandre Jacarandá
Hi everybody!!!
What's the problem with draksec on mandrake 9.1 ?
How can I configure it ?
When I configure and change some configuration, this configuration don't work, like on 
mandrake 9.0 .
Any help will be welcome!!!

---
Alexandre Gonçalves Jacarandá
Consultor de Tecnologia de Informação
Tel.: 0 ** 21 8131-2313

Alguns caminham pelo arco,
eu caminho pela reta.


-- 
__
Sign-up for your own personalized E-mail at Mail.com
http://www.mail.com/?sr=signup

CareerBuilder.com has over 400,000 jobs. Be smarter about your job search
http://corp.mail.com/careers


Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com


[expert] Static routes

2002-12-10 Thread Alexandre Jacarandá
What happens with the /etc/rc.d/init.d/network script that it don't get the file  
/etc/sysconfig/static-routes and add routes on linux ?


Thanks, 

---
Alexandre Gonçalves Jacarandá
Consultor de Tecnologia de Informação
Linux Associates Ltda.
Tel.: 0 ** 21 2223-3346
www.linuxassociates.com.br

Alguns caminham pelo arco,
eu caminho pela reta.


-- 
___
Sign-up for your own FREE Personalized E-mail at Mail.com
http://www.mail.com/?sr=signup

One click access to the Top Search Engines
http://www.exactsearchbar.com/mailcom



Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Incompatibilty between Sis 900 ethernet card and kernels 2.4.x??

2002-02-28 Thread Alexandre Jacarandá

Please give more information
ifconfig output
firewall scripts

Thanks Alexandre Goncalves Jacaranda

PS.: Someone can write deadkeys in Mandrake PPC ?
I'm not 'ca''e

-- 

___
Sign-up for your own FREE Personalized E-mail at Email.com
http://www.email.com/?sr=signup





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



Re: [expert] Measurable Firewall Rules

2002-02-27 Thread Alexandre Jacarandá

I've a single script for firewall that I
created with my friend Felipe:
echo "Inicando firewall ..."

INTRANET=eth1
INTERNET=eth2

iptables -F
iptables -X
iptables -Z
iptables -F -t nat

iptables -P INPUT DROP
iptables -P FORWARD DROP

#Aceita conexao SSH
iptables -A INPUT -i $INTERNET -p tcp --dport
22 -j ACCEPT
#Aceita conexao WEBMIN
iptables -A INPUT -i $INTERNET -p tcp --dport
1 -j ACCEPT
#Nega a conexao da intranet para a internet nas
poras desejadas
#iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp --dport 21 -j DROP
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp --dport 80 -j DROP

# Aceita consulta DNS
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp --dport 53 -j ACCEPT

#Aceita  pop.profarma.com.br
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 200.189.97.245 --dport 110 -j ACCEPT
#Nega login.icq.com da intranet para a internet
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 64.12.162.57 -j DROP
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 205.188.179.233 -j DROP
#Aceita pop.gbl.com.br
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 200.185.56.68 --dport 110 -j ACCEPT
#Aceita pop3.uol.com.br
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 200.230.198.83 --dport 110 -j ACCEPT
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 200.230.198.94 --dport 110 -j ACCEPT
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 200.231.206.14 --dport 110 -j ACCEPT
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 200.231.206.19 --dport 110 -j ACCEPT
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp -d 200.246.5.85 --dport 110 -j ACCEPT
iptables -A FORWARD -i $INTRANET -o $INTERNET
-p tcp --dport 110 -j DROP
iptables -A FORWARD -i $INTRANET -o $INTERNET
-j ACCEPT

#Nega acesso direto ao login icq
iptables -A OUTPUT -o $INTERNET -p tcp -d
64.12.162.57 -j DROP
iptables -A OUTPUT -o $INTERNET -p tcp -d
205.188.179.233 -j DROP
iptables -A INPUT -i $INTRANET -j ACCEPT
iptables -A INPUT -i lo -j ACCEPT

iptables -A INPUT -m state --state
ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -m state --state
ESTABLISHED,RELATED -j ACCEPT

#Mascara o acesso a internet
#iptables -t nat -A POSTROUTING -o $INTERNET -j
MASQUERADE
iptables -t nat -A POSTROUTING -o $INTERNET -s
180.0.0.0/24 -j SNAT --to-source 200.196.49.138

echo "Firewall iniciado!"



-- 

___
Sign-up for your own FREE Personalized E-mail at Email.com
http://www.email.com/?sr=signup





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com



[expert] Keyboard

2002-02-26 Thread Alexandre Jacarandá

Hi everybody!!!

My problem it's like newbie but isn't
I've an iMac and I'd like to use my usb keyboard in X with all dead keys.
I looked at mandrakeuser.org and follow some tips, but it didn't work.
When I had LinuxPPC running I only needed to put in XF86Config xkblayout us_intl and 
work.
In console I'm using other keymap (us-acentos.map.gz) and I've all keys working.

Any help will be welcome.

Thanks, Alexandre Gonçalves Jacarandá
-- 

___
Sign-up for your own FREE Personalized E-mail at Email.com
http://www.email.com/?sr=signup





Want to buy your Pack or Services from MandrakeSoft? 
Go to http://www.mandrakestore.com