foolakadugie
Feb 8 2007, 08:24 AM
I am new to linux and just installed Kubuntu. I have windows XP on my master primary hard drive and Kubuntu is installed on my slave drive. Everything seems to work great except that I cannot connect to the internet when I boot into Kubuntu (I also tried Ubuntu). I am thinking maybe it has something to do with ethernet adapter driver. I can connect just fine in windows, so I know that the actual hardware isn't messed up. Windows uses the driver for Realtek RTL8139/810x Family Ethernet NIC. I looked through google and help forum threads and it seems others have had this problem with similar adapters and many of them never came to a resolution and others got it working and were not quite sure what got it working. Kubuntu is supposed to install the hardware automatically and I really don't know how to install linux drivers. Does this sound like a driver issue? I would really like to get this resolved, because I really can't enjoy an OS without an internet connection. When I open the web browser and attempt a google search I get something like this: "An error occurred while loading http://www.google.com/search?q=linux&i...8&oe=UTF-8: Unknown host www.google.com"I tried reinstalling kubuntu to see if that helped and then after booting back into linux I checked the system log and these were the only entries: 02/07/2007 02:32:33 PM computername anacron[4478] Job `cron.daily' terminated
02/07/2007 02:32:33 PM computername syslogd 1.4.1#18ubuntu6 restart.I tried opening network places and get this alert: error - konqueror The Zeroconf daemon (mdnsd) is not runningI followed some steps from different posts in other forums and I don't really know if they apply to me or not but I will post the results I got to maybe assist in diagnosing the problem: I guess this is my kernel version uname -r 2.6.17-10-genericcontents of /etc/network/interfaces auto lo iface lo inet loopback auto eth0 iface eth0 inet dhcp auto eth1 iface eth1 inet dhcp auto eth2 iface eth2 inet dhcp auto ath0 iface ath0 inet dhcp auto wlan0 iface wlan0 inet dhcp ifconfig eth0 Link encap:Ethernet HWaddr 00:E0:4C:CD:D9:28 inet6 addr: fe80::2e0:4cff:fecd:d928/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:5519 errors:0 dropped:0 overruns:0 frame:0 TX packets:23 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes:388500 (379.3 KiB) TX bytes:6282 (6.1 KiB) Interrupt:209 Base address:0xe000
lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:16436 Metric:1 RX packets:112 errors:0 dropped:0 overruns:0 frame:0 TX packets:112 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes:8592 (8.3 KiB) TX bytes:8592 (8.3 KiB)sudo ifdown eth0 There is already a pid file /var/run/dhclient.eth0.pid with pid 4778 killed old client process, removed PID file Internet Systems Consortium DHCP Client V3.0.4 Copyright 2004-2006 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/sw/dhcp/
Listening on LPF/eth0/00:e0:4c:cd:d9:28 Sending on LPF/eth0/00:e0:4c:cd:d9:28 Sending on Socket/fallbacksudo ifup eth0 There is already a pid file /var/run/dhclient.eth0.pid with pid 134993416 Internet Systems Consortium DHCP Client V3.0.4 Copyright 2004-2006 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/sw/dhcp/
Listening on LPF/eth0/00:e0:4c:cd:d9:28 Sending on LPF/eth0/00:e0:4c:cd:d9:28 Sending on Socket/fallback DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 6 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 18 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 20 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 6 No DHCPOFFERS received. No working leases in persistent database - sleeping.If there is any other info that might help just ask (you might have to tell me how to get the information). Does anyone have any suggestions? Any help would be very appreciated.
Reply
saneax
Feb 8 2007, 09:22 AM
Hi, QUOTE(foolakadugie @ Feb 8 2007, 01:54 PM)  sudo ifup eth0 There is already a pid file /var/run/dhclient.eth0.pid with pid 134993416 Internet Systems Consortium DHCP Client V3.0.4 Copyright 2004-2006 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/sw/dhcp/
Listening on LPF/eth0/00:e0:4c:cd:d9:28 Sending on LPF/eth0/00:e0:4c:cd:d9:28 Sending on Socket/fallback DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 6 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 11 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 18 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 20 DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 6 No DHCPOFFERS received. No working leases in persistent database - sleeping.If there is any other info that might help just ask (you might have to tell me how to get the information). Does anyone have any suggestions? Any help would be very appreciated. This means the eth0 couldnt get any ip address. Do you have a DHCP server on the LAN ? or you can do one thing.. have a static IP for the eth0 (assuming eth0 is the network card hooked on to your LAN). Open '/etc/network/interfaces' and have something like this... ====== # /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 static address 192.168.0.50 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.10 ====== Remove all the other interfaces ie. eth1, eth2... till wlan0.. Now check... Cheers
Reply
foolakadugie
Feb 8 2007, 09:41 AM
QUOTE(saneax @ Feb 8 2007, 01:22 AM)  Hi, This means the eth0 couldnt get any ip address. Do you have a DHCP server on the LAN ?
or you can do one thing.. have a static IP for the eth0 (assuming eth0 is the network card hooked on to your LAN). Open '/etc/network/interfaces'
and have something like this...
====== # /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 static address 192.168.0.50 netmask 255.255.255.0 network 192.168.0.0 broadcast 192.168.0.255 gateway 192.168.0.10 ======
Remove all the other interfaces ie. eth1, eth2... till wlan0.. Now check...
Cheers
Well in windows under LAN properties it gives me an IP for the DHCP Server. Does this carry over to Linux? Oh and if it matters, I am not behind a router. I will boot into linux and if I can do what you suggested.
Reply
dhanesh
Feb 8 2007, 11:45 AM
My Windows installation on my desktop uses Realtek RTL8139/810x NIC and the drivers get installed smoothly. On My laptop i use Intel Integrated 10/100 NIC. Normally I assign an IP address to the Desktop and when i connect my laptop that has OpenSuSE 10.2, it gets detected automatically and all i have to do is fire up the browser and start working. Instead of connecting via LAN, u could also try connecting your linux machine individually to the internet.Try this link >>LINK<<. Being a newbie myself this is all i could help you out with. But personally i would suggest anyone new to start with opensuse, cause it was easy and user friendly for me when i started. Regards Dhanesh.
Reply
foolakadugie
Feb 9 2007, 08:38 PM
I am now connected to the internet in kubuntu. I would like to thank both of you for your help. It seems kubuntu has a weird bug in recognizing an internet connection. It will tell you that it is enabled when it is not. I unplugged the ethernet cable, rebooted, disabled the eth0, plugged the ethernet cable back in, then re-enabled eth0,
Reply
Team Destiny 07
Feb 10 2007, 04:59 PM
Your eth0 couldn't connect.Srry I didn't read all of it.
Reply
vhortex
Feb 12 2007, 02:19 PM
QUOTE(foolakadugie @ Feb 10 2007, 04:38 AM)  I am now connected to the internet in kubuntu. I would like to thank both of you for your help. It seems kubuntu has a weird bug in recognizing an internet connection. It will tell you that it is enabled when it is not. I unplugged the ethernet cable, rebooted, disabled the eth0, plugged the ethernet cable back in, then re-enabled eth0,
hi, that was not a bug. in reality, all system that are linux based requires you to setup the eth0 IP since it was the primary network connection. that autodetection was just an added feature.. =)
Reply
CaptainRon
Feb 12 2007, 02:39 PM
What saneax has said is the exact problem here. In case you find his instructions a little tough to follow, then try exploring the System menu in Kubuntu and goto Network Settings. You will find a tool that lists all the network interfaces including eth0. Select eth0 and then select properties and then make the configurations of IP, Subnet mask etc just same as in Windows. That will help.
Reply
Recent Queries:--
kubuntu 8.10 network adapter connect to internet how - 2.57 hr back. (1)
-
how to connect to internet wireless linux - 11.86 hr back. (1)
-
cannot use internet while connecting to vpn same time with ubuntu - 14.41 hr back. (1)
-
in linux os how to connect to wifi network - 15.24 hr back. (1)
-
ubuntu cannot connect to internet - 20.37 hr back. (2)
-
how can internet connect with linux - 28.45 hr back. (1)
-
how to connect internet on linux - 34.74 hr back. (1)
-
how do you connect to the internet with fedora 8? - 36.29 hr back. (1)
-
how to connect internet through linux - 6.78 hr back. (2)
-
how to connect to internet with linux - 23.59 hr back. (3)
-
fiberline ubuntu 8.10 installieren - 48.74 hr back. (1)
-
connect internet for linux - 49.38 hr back. (1)
-
how to connect internet in ubuntu linux - 50.65 hr back. (1)
-
how to connect to internet on linux ubs driver - 53.90 hr back. (1)
Similar Topics
Keywords : connect, internet, linux, driver, problem
- Problem Setting Up Wireless Internet & Wireless Nintendo Wii
Need some help installing/configuring Wireless (4)
Help Me To Download Torrent Via Proxy Internet
Torrent Downloads (3) Hi All, I have a proxy internet connection and i am not able to download any torrent with any kind
of torrent client. I have also configured torrent clients to use my proxy but it never works for me.
My proxy ip is 10.178.3.1 and the port is 8080. Is there any way to connect to torrents for
downloading? If you have any solution with my current internet settings, please let me know.....
How To Setup An Vpn
How to configure Open VPN on Ubuntu linux (1) Hi Folks, I wanted to know how I can configure VPN, on my ubuntu box.. I want to use this machine to
be able to log on to other computer in the network. thanks in advance. ....
Two Connections For Faster Internet?
(10) When dialup was common, I heard about people connecting two phone lines so it was faster. Could I do
that with broadband, the router delivers 12mbps, but I get about 2.5, and I have a extra cable.....
Extending A Wireless Network
Wireless Internet (2) Usually, to integrate WiFi capabilities into an existing LAN involves interfacing a wireless router
with an existing LAN and configuring it as an access point. If it is meant for free public use, then
it may not be necessary to encrypt the transmission, otherwise it is advisable to encrypt it with at
leas a 64-bit WEP (Wireless Encryption Protocol) key. Depending on the gain in db of the attached
antenna, the radius of wireless coverage can vary from 250meters to close to 450meters. Now comes
the stage where we need to extend the coverage of the wireless transmission, t....
Issues With Accessing The Internet
web addresses vs. ip addresses (11) My ISP is quite special. I have a cable 512k connection from them, but it's shared between 10
users and in addition they won't troubleshoot it for me if i have more than one computer
connected. No wonder the IT infrastructure is 4th rate here. Anyways, my problem is that I
can't open any web page whatsoever. It just returns a page not found. But if i type in the IP
address, the page loads fine. This is something I don't understand much about, and I'm not
getting any help from my service provider for the above mentioned reasons. Is this a software pro....
Internet Connection Sharing Problems
(2) Hello, I am having some trouble setting up Internet Connection Sharing. Here is my setup. My
internet is through a neighbor who is sharing there internet with me wirelessly, so I don't have
any type of broadband modem, just a wireless card on my desktop PC. I have a linksys WRT54G router
connected to the desktop PC and tried following the guidelines for home networking, and works fine,
but no internet connection now. When I unhook my router then my internet connection comes back.
Its as if the computer is looking for internet on my network, and I dont know how t....
[help] Networking A Mac With Pc (file Share & Internet)
(1) Hello Folks, Long time since i last posted here. Anyways, I am having problems or rather having
issues about networking my PC with the MAC at home through a Modem+wireless router. I have been
using a normal DSL modem since i switched to broadband 5 years ago. A Lucent Cell Pipe 20A USB. I
finally decided i needed to change my modem because firstly the drivers werent updated any more and
secondly the product is discontinued. I bought a new Wireless ADSL2 + Modem router. This is what i
was told to buy as i had no idea of what i needed for the upgrade. Its a NETGEAR DG834G....
Linux Wireless Problem
Ubuntu (Wubi) fails to see the wireless card (3) QUOTE Specs: Compaq Presario C304 Laptop with Broadcom 802.11g Wireless Network Adapter PCI
Factory installed that works well running Windows XP Home, but I installed a copy of Ubuntu using
Wubi and Linux does not connect via the wireless smile.gif I am new to Linux and need some
assistance diagnosing the problem. I have read up a little on the Wubi/Ubuntu/Networking and
Wireless Forum and am totally confused about some of the issues which may be causing the problem.
Where do I start? I have a copy of Everest on the Windows Boot side, so if you require any informati....
Increase Internet Speed For Win Xp Home
(9) All those Win XP Home users who have looked at the "increase your internet connection by 20%" and
have been disappointed well I have found the answere. The bandwith limiter is a service known as
"bits" or "Background Intelligent Transfer Service". If you disable this your connection will
increase.....
Broadband Modem Sharing
Accessing Internet from 2 computers (2) I like to share our broadband modem and access Internet from the second computer. The 2 computers
are not connected to each other. I am considering setting up a network of these 2 computers using a
wireless access point and 2 wireless network cards. I assume the access point and the braodband
modem will be attached to one of the computers and the other computer will be able to access
Internet through the access point. Is there any other way of sharing the modem eg. using adapters/
extensions, like sharing the telephone line? ....
How To Keep The Internet Out From A Network ?
Using Dlink Giga lan switch, DSL ... see picture (9) So..in the picture below you can see the schematic I made. The internet enters in the first PC thru
the DSL box , and I wanna connect the internet PC with the other PC's with a giga lan speed. For
that I think I will need a second Lan card because the internet PC only has one lan port. Next I use
the Dlink 8 ports Switch. But I don't want the internet go from the internet PC thru the Dlink
and to the other PC's. Because I don't wanna put firewall and stuff on the other PC's.
But maybe with this setup, the internet will just naturally stop at the firs....
Cable Internet Connection Requires Aol To Go Online?
(17) Just took a look at one of my user's computer and found a very strange problem. For some odd
reason, he must sign into AOL in order to use his internet. I would understand if this is required
if he is using AOL as his main connection, but he is using a dedicated cable service line. The same
thing is happening to his other computer (requires him to sign onto AOL first before he can
connect). After playing around with it for a while, Internet Explorer connected without
AOHell's assistance. I made sure AOL was completely signed off and tried a few more websites and....
Share Internet Using Router And Modem That Uses Usb?
(10) Today I was trying to setup shared internet for someone and was having lots of problems with it.
They are using AOL DSL and had their ISP's modem. They have a Linksys router (forgot what
model...WRT something) and I tried almost everything I can think of to no avail. Here is the
problem. The modem connects to the computer using USB ONLY. It has an ethernet adapter in the back
of the modem but it will not work (needs the USB either way). After playing around more for over an
hour, I came to some "conclusion" that the other machines need the modem to be connected via ....
How Do I Use Linux To Create A Switch From Multiple Ethernet Ports
(16) I have a Linux box with three ethernet ports (NIC cards). I could easily give it more. I have one
ethernet connection to the outside world at college. College's ethernet policy is amazing, as
they give us IP addresses that in theory are fully routable from the outside world (haven't had
a chance to try it out). Unfortunately, I have another computer, my primary laptop, that is
connected to the internet, and no switch or router. I was wondering how to use my Linux box as
either a switch or router. What I want to do is the following: 1) Connect the Linux box ....
Internet Getting Slower And Slower
(4) Lately, my computer's internet has been getting slower and slower. When I check the connections
established in all my programs, there is my usual programs running. When I test the connection on
another computer, it was also slow. The ping rate between my computer and the router is <1ms, so I
don't think its the router problem. From 500 kb/s, it changed to 300kb/s, 100 kb/s and now its
30kb/s. Could it be a problem with the ISP?....
What Replaces .netrc When Using Windows Xp ?
In Unix and in Linux, there is a network configuration file named .net (4) When I am on a Unix system or on a Linux system, I use a configuration file named ".netrc", which
stores my most used ftp settings. Is there an equivalent for ftp under Windows XP ? I tried
testing/guessing, I failed, it's not net.rc nor .netrc. It's not horribly necessary, but I
would like to know what replaces .netrc on a Windows machine.....
Ics Problem
Gateway stops internet (4) Of all things, and a tribute once again to the absolutely insanely primitive state of technology in
pakistan, my stupid cable modem works fine if it's all by itself, or with very simple ICS
enabled. However: if all i want to do is browse the internet, i can do it from any computer on the
network. But if i want to chat, or use outlook express, i've got to set a gateway on the ICS
computer. And the minute i do that, it shuts off the internet. As soon as i remove the gateway, the
internet browses fine again. It hadn't done this before, up till a couple days ago....
Questions About Setting Up An Internet Server
(14) I'm working on a new comany (Medium buisness) as Computer tecnician. After some weeks of work
i've decided along with my superiors to set a DataServer ( Store Data ) and a Internet server.
Well my first step was to buy a Pentium 4 Dual Core 3.0 with 2Gb Ram and a SATADRIVE with 250 GB.
Now i'm "stuck", because i dont know witch is the best way to set a internet server. I mean the
main objective is a full control of websites access, using a proxy and a repository for Antivirus,
software and other stuff. Well, maybe you with your all experience on this kind of ....
Server Slow On LAN, Fast On The Internet
(14) Hey, Here's a weird problem I've encountered. On my test server running CentOS and Apache2
w/ the Apache2 Manual installed and accessible from the web, everything seems fine. So I access it
via my home network on which the server is located and the manual loads like I'm on a 56K
connection. To give you an idea of the speed, it's just a tweak faster than using MySpace during
peak hours. MySpace is still slower than my server though. But today at school, I try it and the
thing loads like it was on an OC-93 fiber line at a data center! AND- if I try to FTP....
Wireless Network, Need A Linux Guru
(2) Im trying to get my Belkin F5D7050 wireless USB dongle to work, but linux doesnt seem to see it Ive
installed the drivers using ndiswrapper, but it just says hardware not found. Any help would be
great. ....
VDSL : Internet Connection
(6) I just came around an interesting article about vdsl, the next generation of connection speed you
can read it here ....
Setting Up Wireless Internet For Mac Os
(5) Hi, I just got my iMac today and want to set it up to have wireless internet using my DSL Router. I
got a USB Wireless Adapter (for the Mac OS) and installed the drivers for it. Then I restarted and
plugged in the USB adapter. The manual said a flashing icon should be on the upper left, but I
didn't see this. So I went into the Preferences (I think) and found the 802.11b adapter there.
I clicked on it and on the left, chose Create... I left it at Access Point (hope that's
correct) and set it to 26 digits for the password. Currently I'm using 128 bit en....
Linksys Wmp54gs And Linux
Fedora Core 3 (2) I have Linux Fedora Core 3 dual booted with Windows XP Pro. I recently purchased a Wireless card
for the computer, an old 715 MHz Celeron made by Linksys, the WMP54GS. I have the matching wireless
router, and everything works fine in Windows. However, Fedora does not recognize my wireless card.
I have attempted to find info from the linksys site, but it is currently down. Being a novice to
Linux, I was wondering if anyone here could help me? ~Viz....
Share Broadband Internet Connection
How to Share BroadBand InterNet Connecti (14) I'm trying to share the internet connection with no success. I have Internet with CableAccess.
I'm using a SB5100 Motorola Modem. I have a hub, and old one (but working really fine). I
connect two computers and the modem to the hub. I have proof some configuratiosn, but none of those
works. I set the two computers using dynamic IP (thus my ISP config uses DHCP), but just one
computers has internet Then I tried to set one as a default gateway, and config the other with a
ststaic IP, first with and IP in the same range as the other IP's machine, then tried 1....
Broadband Connection Monitoring
....how to password access to internet? (3) So i have 12 computers i just bought, all with XP Pro, and i need to connect 6 of them to the
internet, and not the other 6. but they all need to be on the network. so how do i go about doing
this? i've not recieved clear answers on this from anyone i've asked. how can i prevent some
of the computers from accessing the internet through the always on connection, but permit them to
communicate with each other over the network? is there a program available, or is it possible to do
it simply through the registry and windows settings? any help or advice is much appr....
Networking With Linux & Windows
(4) Could i run Linux operating system on my server and have my other 2 computers running on windows xp
professional, as i have heard that it can be a right pain in the groin /laugh.gif' border='0'
style='vertical-align:middle' alt='laugh.gif' /> to network together. So would it be alright to do
this or will it stop my internet.....
Internet Explorer Maintenance By Resultant Set Of
(0) Internet Explorer Maintenance by Resultant Set of Policy Resultant Set of Policy provides help
for administering IE on Windows 2000 / XP and concepts related to browser maintenance. Type “mmc”
in run dialog box and wait few seconds to Console Root be open. Open following file
c:\Windows\system32\rsop.msc and wait few seconds. Now go to User Configuration > windows settings >
Internet Explorer Maintenance. 1-To customize the text that appears in the title bars of Internet
Explorer and Outlook Express, Customizing Logo, personalize the toolbar that appears in your us....
Consumer's Poll Ratings Of Diff Linux Distro
(2) Hi, I am trying to install a Linux Distro and convert to it from Windows. I was just wondering if
anyone knows of a site that rates the different versions of Linux according to :: 1) Ease of Use 2)
Ease of installing 3) Speed ( on slower PCs) 4) Support 5) Similarity to Windows GUI I wanna konw
cos my friends and I are planning to setup a new company on budget, and with Windows, it is
virtually impossible to do anything cheaply. Thanks Edmund....
Internet Through LAN
Internet sharing through Lan (9) "With The Name Allah Almighty , the most beneficient and Merciful." Aslamo Alaikum! All Friends I
have just registered to The Site and im New One here. I hope Best for All of You. Here i m to
discuss with you some thing about Internet sharing on local area network.. I have a network of 10
pcs in my office.. we provide internet facility on 10 systems though a http page logon system.. The
Intenet is provided by a main server running Linux operating system.. All Authentication is done
from that server having ip 10.0.0.1 Other 10 systems get IP's through DHCP as 10.....
Looking for connect, internet, linux, driver, problem
|
*SIMILAR VIDEOS*
Searching Video's for connect, internet, linux, driver, problem
|
advertisement
|
|