0

Configurar placa de rede no Debian

Posted by admin on ago 17, 2010 in Linux

Configure o arquivo /etc/network/interfaces usando “vi” ou o editor que você preferir, no meu caso uso PICO. Exemplo:

# The loopback network interface (interface loopback)
auto lo
iface lo inet loopback

#Rede Externa (vamos dizer que seja a rede que você se conecta à internet)
auto eth0
iface eth0 inet static # use dhcp ao invés de static, se tiver um server dhcp
address x.x.x.x # troque x pelo seu ip
netmask x.x.x.x # troque x pela sua mascara ex : 255.255.255.0
gateway x.x.x.x
#Servidores DNS (RESOLVER NOME)
dns-nameservers x.x.x.x

#Rede interna (se tiver )
auto eth1
iface eth1 inet static
address x.x.x.x
netmask x.x.x.x

Quando pronto é só salvar e subir as interfaces configuradas com os comandos “ifup eth0″ para subir a interface eth0 e “ifup eth1″ para eth1. Ex:

# ifup eth0 eth1

 
0

Site para download de livros linux e programação

Posted by admin on out 8, 2009 in Download, Linux, cultura

http://oreilly.com/openbook/ bem legal para quem quer dar uma olhada se o livro vale a pena comprar =)

 
0

Linux

Posted by admin on out 20, 2008 in Linux

Uma dica simples, quem gostaria de ver a descrição da hierarquia do sistemas de arquivos no linux é só digitar:

[user@workstation ~]$ man hier

Tags:

Copyright © 2010 Gustavo All rights reserved. Theme by Laptop Geek.