Foros del Web » Administración de Sistemas » Unix / Linux »

Tarjeta de red +Ubuntu

Estas en el tema de Tarjeta de red +Ubuntu en el foro de Unix / Linux en Foros del Web. Hola, ayer instale Ubuntu y todo perfecto, pero al querer configurar el acceso a Internet no me reconoce la tarjeta de red me puse a ...
  #1 (permalink)  
Antiguo 03/09/2006, 21:15
Avatar de merolhack  
Fecha de Ingreso: junio-2006
Ubicación: México
Mensajes: 1.242
Antigüedad: 17 años, 10 meses
Puntos: 16
Sonrisa Tarjeta de red +Ubuntu

Hola, ayer instale Ubuntu y todo perfecto, pero al querer configurar el acceso a Internet no me reconoce la tarjeta de red me puse a buscar en el sitio de http://www.ubuntu-es.org/ y me aparecieron muchas preguntas iguales a la mia, pero que no corresponden a un usuario que apenas se inicia en esto, bueno les pido por favor que me ayuden a instalar los drivers de la tarjeta de red, el readme.txt de el driver es este:
Cita:
ENCORE 10/100Mbps Fast Ethernet PCI Adapter
Linux Driver

Filename Description

sundance_main.c ENCORE 10/100Mbps Fast Ethernet PCI Adapter Linux
Driver Source Code.
This file is the main part of IP100 Linux Driver.

compat.h Network interface message level settings.

crc32.h Crc function for early Linux 2.4.19pre kernel inclusion

ethtool.h: Defines for Linux ethtool.

mii.h definitions for MII-compatible transceivers.

mii.c MII interface library.

makefile Make File For ENCORE 10/100Mbps Fast Ethernet PCI Adapter Linux Driver.
Using "make all" for your kernel.

readme.txt A summary of the contents for Linux Driver.
This file, which you are reading me now.



2. Driver Installation for Linux
-----------------------------------------
a. for kernel 2.4.x
a1. Redhat 7.3 (linux kernel 2.4.18)
a2. Mandrake 8.1 (kernel 2.4.8)

b. for kernel 2.6.x
c. automatically load and configure at next boot time

a.for kernel 2.4.x
-------------------
a1. Redhat 7.3 (linux kernel 2.4.18)
a1.1. install way 1:
#make all =>generate sundance.o
#cp sundance.o /lib/modules/2.4.18-3/kernel/drivers/net/
#insmod sundance
#ifconfig eth0 xxx.xxx.xxx.xxx netmask yyy.yyy.yyy.yyy
eth0 is your network adapter,use dmesg to check it, ex: eth0, eth1...
xxx is your ip address, ex: 192.168.102.211
yyy is your netmask address, ex:255.255.255.0

a1.2. install way 2:
#make all =>generate sundance.o
#cp sundance.o /lib/modules/2.4.18-3/kernel/drivers/net/
#insmod sundance
#setup
[network configuration] =>to setup your ip address
#ifup eth0
eth0 is your network adapter, ex: eth0, eth1...


a2. Mandrake 8.1 (kernel 2.4.8)
#make all => generate sundance.o
#cp sundance.o /lib/modules/2.4.8-26mdk/kernel/drivers/net
#insmod sundance
#ifconfig eth0 xxx.xxx.xxx.xxx netmask yyy.yyy.yyy.yyy
eth0 is your network adapter,use dmesg to check it, ex: eth0, eth1...
xxx is your ip address, ex: 192.168.102.211
yyy is your netmask address, ex:255.255.255.0

b. for kernel 2.6.x
-------------------
#make all
#insmod ./sundance.ko (or sundance.o)
#ifconfig eth0 xxx.xxx.xxx.xxx netmask yyy.yyy.yyy.yyy
eth0 is your network adapter,use dmesg to check it, ex: eth0, eth1...
xxx is your ip address, ex: 192.168.102.211
yyy is your netmask address, ex:255.255.255.0

c. automatically load and configure at next boot time
-----------------------------------------------------
c1. cp sundance.o /lib/modules/`uname -r`/kernel/drivers/net
*note: The `uname -r` is a command. Don't replace `uname -r` with
2.4.18, 2.4.20smp, or some others. Must type `uname -r` directly.

c2. Add the following lines at /etc/modules.conf:

alias eth0 sundance
options sundance <optional parameters>

c3. Run "netconfig" or "netconf" to create configuration script

ifcfg-eth0 located at /etc/sysconfig/network-scripts or
create it manually.
[see - Configuration Script Sample]

c4. Driver will automatically load and configure at
next boot time.

c5. Configuration Script Sample
===============================
Here is a sample of a simple configuration script:

DEVICE=eth0
USERCTL=no
ONBOOT=yes
POOTPROTO=none
BROADCAST=207.200.5.255
NETWORK=207.200.5.0
NETMASK=255.255.255.0
IPADDR=207.200.5.2


3. Driver Parameter
-------------------
If you want to change the link speed, you could use parameter after
insmod command.

insmod sundance.o <optional parameter> ; add parameter

================================================== ======================
example: insmod sundance.o media=100mbps_hd
or insmod sundance.o media=3
or insmod sundance.o media=1,2,3,4 ; for 4 cards or IP100
================================================== ======================

Parameter Description
=====================
You can install this driver without any addtional parameter. However, if
you are going to have extensive functions then it is necessary to set
extra parameter. Below is a list of the command line parameters supported
by the Linux device driver.

media=xxxxxxxxx - Specifies the media type the NIC operates at.
autosense Autosensing active media.
10mbps_hd 10Mbps half duplex.
10mbps_fd 10Mbps full duplex.
100mbps_hd 100Mbps half duplex.
100mbps_fd 100Mbps full duplex.
0 Autosensing active media.
1 10Mbps half duplex.
2 10Mbps full duplex.
3 100Mbps half duplex.
4 100Mbps full duplex.
By default, the copper devices operate at
autosense, the fiber devices operate at
100Mbps full duplex.
Note that, the fiber adapter only support
100Mbps half/full duplex types.

If wanting to change speed, this driver needed to be unloaded and reloaded with
new media parameter.

flowctrl=[0|1] - Specifies the flow control function.
0 Disable flow control.
1 Enable flow control.
Ahora, ¿alguien me puede explicar paso por paso como instalarla? es que no me se añun los comandos para editar ficheros ni en donde están situados los directorios en los que se deve de crear el archivo sundance.o

Bueno, espero que me ayuden para poder iniciarme en Linux
  #2 (permalink)  
Antiguo 03/09/2006, 21:43
Avatar de Koveart
Colaborador
 
Fecha de Ingreso: julio-2002
Ubicación: Colombia
Mensajes: 4.407
Antigüedad: 21 años, 9 meses
Puntos: 29
¿Me pregunto yo porqué no sigues las instrucciones que aparecen en el readme? Está todo clarísimo...

Saludos
__________________
“Los soñadores no existen, se lo dice un soñador que ha tenido el privilegio de ver realidades que ni siquiera fue capaz de soñar”
  #3 (permalink)  
Antiguo 04/09/2006, 03:59
Avatar de merolhack  
Fecha de Ingreso: junio-2006
Ubicación: México
Mensajes: 1.242
Antigüedad: 17 años, 10 meses
Puntos: 16
Por que no le entiendo nada

Bueno, le puse el comando y me salio lspci esto:
Cita:
merolhack@merolhack-desktop:~$ lspci
0000:00:00.0 Host bridge: Silicon Integrated Systems [SiS] 745 Host (rev 01)
0000:00:01.0 PCI bridge: Silicon Integrated Systems [SiS] Virtual PCI-to-PCI bridge (AGP)
0000:00:02.0 ISA bridge: Silicon Integrated Systems [SiS] SiS85C503/5513 (LPC Bridge)
0000:00:02.1 SMBus: Silicon Integrated Systems [SiS] SiS961/2 SMBus Controller
0000:00:02.2 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 Controller (rev 07)
0000:00:02.3 USB Controller: Silicon Integrated Systems [SiS] USB 1.0 Controller (rev 07)
0000:00:02.5 IDE interface: Silicon Integrated Systems [SiS] 5513 [IDE] (rev d0)0000:00:05.0 Multimedia audio controller: C-Media Electronics Inc CM8738 (rev 10)
0000:00:09.0 Ethernet controller: Sundance Technology Inc: Unknown device 0200 (rev 31)
0000:01:00.0 VGA compatible controller: Silicon Integrated Systems [SiS] 315PRO PCI/AGP VGA Display Adapter
Mi tarjeta es esta:
0000:00:09.0 Ethernet controller: Sundance Technology Inc: Unknown device 0200 (rev 31)
Y luego le di el comando route -n :
Cita:
merolhack@merolhack-desktop:~$ route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
Y en las propiedades de RED me sale esto:

Pero no aparece mi tarjeta de red

Última edición por merolhack; 04/09/2006 a las 04:38
  #4 (permalink)  
Antiguo 04/09/2006, 07:14
Avatar de Koveart
Colaborador
 
Fecha de Ingreso: julio-2002
Ubicación: Colombia
Mensajes: 4.407
Antigüedad: 21 años, 9 meses
Puntos: 29
Cita:
b. for kernel 2.6.x
-------------------
#make all
#insmod ./sundance.ko (or sundance.o)
#ifconfig eth0 xxx.xxx.xxx.xxx netmask yyy.yyy.yyy.yyy
eth0 is your network adapter,use dmesg to check it, ex: eth0, eth1...
xxx is your ip address, ex: 192.168.102.211
yyy is your netmask address, ex:255.255.255.0

c. automatically load and configure at next boot time
-----------------------------------------------------
c1. cp sundance.o /lib/modules/`uname -r`/kernel/drivers/net
*note: The `uname -r` is a command. Don't replace `uname -r` with
2.4.18, 2.4.20smp, or some others. Must type `uname -r` directly.

c2. Add the following lines at /etc/modules.conf:

alias eth0 sundance
options sundance <optional parameters>

c3. Run "netconfig" or "netconf" to create configuration script

ifcfg-eth0 located at /etc/sysconfig/network-scripts or
create it manually.
[see - Configuration Script Sample]

c4. Driver will automatically load and configure at
next boot time.
Saludos
__________________
“Los soñadores no existen, se lo dice un soñador que ha tenido el privilegio de ver realidades que ni siquiera fue capaz de soñar”
  #5 (permalink)  
Antiguo 04/09/2006, 08:42
Avatar de AleSanchez
Colaborador
 
Fecha de Ingreso: septiembre-2004
Ubicación: Buenos Aires, Argentina
Mensajes: 3.692
Antigüedad: 19 años, 7 meses
Puntos: 47
Busca en el foro que ya hubo problemas con esta placa de red.
Parece que no es posible compilar el codigo fuente en los kernels actuales.
Saludos.
__________________
¡Volviendo a la programación!
  #6 (permalink)  
Antiguo 04/09/2006, 10:06
Avatar de Koveart
Colaborador
 
Fecha de Ingreso: julio-2002
Ubicación: Colombia
Mensajes: 4.407
Antigüedad: 21 años, 9 meses
Puntos: 29
Si te pone mucho problema intenta comprar una tarjeta de red que son economicas, de esas PCI... realmente te ahorrarás más de un dolor de cabeza.

Saludos
__________________
“Los soñadores no existen, se lo dice un soñador que ha tenido el privilegio de ver realidades que ni siquiera fue capaz de soñar”
  #7 (permalink)  
Antiguo 04/09/2006, 16:24
Avatar de merolhack  
Fecha de Ingreso: junio-2006
Ubicación: México
Mensajes: 1.242
Antigüedad: 17 años, 10 meses
Puntos: 16
Sonrisa

Pero esa es la economica y es PCI

Que tarjeta de red para Linux me recomiendan? ayuda please, es que en mi trabajo se les metio la idea de usar Software Libre y yo soy el que lo tengo que instalar y probar, y si sale bien se lo instalan a toda la empresa jeje
  #8 (permalink)  
Antiguo 04/09/2006, 18:27
Avatar de AleSanchez
Colaborador
 
Fecha de Ingreso: septiembre-2004
Ubicación: Buenos Aires, Argentina
Mensajes: 3.692
Antigüedad: 19 años, 7 meses
Puntos: 47
Una con chipset Realtek.
Saludos
__________________
¡Volviendo a la programación!
  #9 (permalink)  
Antiguo 04/09/2006, 18:28
Avatar de Koveart
Colaborador
 
Fecha de Ingreso: julio-2002
Ubicación: Colombia
Mensajes: 4.407
Antigüedad: 21 años, 9 meses
Puntos: 29
Defero.tk tú alguna vez posteaste una página sobre hardware con compatbilidad con linux, la verdad el otro día la estuve buscando pero no la encontré sería bueno si nos la recuerdas para verla... Esta no es pero es buena para empezar a encontrar hardware para linux...

http://www.linuxhardware.org/

O mira esta también

http://www.linuxcompatible.org/compatlist3.html

Saludos
__________________
“Los soñadores no existen, se lo dice un soñador que ha tenido el privilegio de ver realidades que ni siquiera fue capaz de soñar”

Última edición por Koveart; 04/09/2006 a las 18:37
  #10 (permalink)  
Antiguo 04/09/2006, 19:47
Avatar de merolhack  
Fecha de Ingreso: junio-2006
Ubicación: México
Mensajes: 1.242
Antigüedad: 17 años, 10 meses
Puntos: 16
Muchas gracias por los Link's, seguro en este foro aprendere mucho de linu$
  #11 (permalink)  
Antiguo 05/09/2006, 06:59
Avatar de -Defero-
Colaborador
 
Fecha de Ingreso: julio-2004
Ubicación: Guipúzcoa
Mensajes: 4.776
Antigüedad: 19 años, 9 meses
Puntos: 76
Cita:
Iniciado por Koveart Ver Mensaje
Defero.tk tú alguna vez posteaste una página sobre hardware con compatbilidad con linux (...)
Creo que te refieres a ésta:

http://www.compatiblelinux.org/
__________________
abogado en Errenteria + procuradora en San Sebastián = equipo imparable
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 22:19.