DebianThis forum is for the discussion of Debian Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
i have try to install debian for the fisrt time, but the thins arenīt going very well, i guess the woody packages and kernel are too old and my hardware is not supported, speacialy my network card, I need it to update the system, but when I make ifconfig -a only loopback shows.
My network card is an 10/100 from Intel, is those cards that came with centino's processor.
Any ideia?
BTW
i usually connect via DHCP,but i also canīt find dhcpcd
You can install dhcpcd with the command "apt-get install dhcpcd". You can compile a new kernel and if you want newer software you can upgrade to sarge which is going to be stable soon anyway or to sid which is the unstable branch. You can upgrade with "apt-get dist-upgrade" if you add the proper lines to your /etc/apt/sources.list file.
i have try to install debian for the fisrt time, but the thins arenīt going very well, i guess the woody packages and kernel are too old and my hardware is not supported, speacialy my network card, I need it to update the system, but when I make ifconfig -a only loopback shows.
My network card is an 10/100 from Intel, is those cards that came with centino's processor.
Any ideia?
BTW
i usually connect via DHCP,but i also canīt find dhcpcd
Try as root modprobe e100 and see if the module loads, then still as root edit the file /etc/network/interfaces to look like this.
Code:
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface
auto lo
iface lo inet loopback
# The first network card - this entry was created during the Debian installation
# (network, broadcast and gateway are optional)
auto eth0
iface eth0 inet dhcp
This will set you up for dhcp you do not need the dhcpcd running you need the package dhcp-client which is part of the base install so should be on your install which will get the required settings from your DHCP server that is on your network. Now once you have edited the file as root again /etc/init.d/networking restart to have the configuration file re-read and used this should get you a lease with an IP.
well i got a working network with ndiswrapper and every time i boot up i have to manually configure my wlan0 card to run dhcp and then asssign the essid ? is there any way i can get it to do this at startup ? i am running katonix (which is debian) and ndiswrapper 1.1?
any help will be appreciated
thanks robin
p.s I checked my /etc/network/interfaces and mine is identical to the little syntax you told mokojin to insert in interfaces and i have even told my wifimanager to run script /etc/sysconfig/network-scripts/ifcfg-wlan0 which i have set my essid and still no joy
pengy666 check "man interfaces" for all wireless commands you can put in interfaces file. This is mine which only sets the essid but you can also set the wep key in it.
Quote:
# /etc/network/interfaces -- configuration file for ifup(8), ifdown(8)
# The loopback interface
auto lo
iface lo inet loopback
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.