LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-14-2006, 01:22 AM   #1
dmbyer
LQ Newbie
 
Registered: Sep 2006
Location: Minnesota, USA
Distribution: Fedora Core 5, AMD Sempron 64
Posts: 8

Rep: Reputation: 0
Problems with Xwindow and init3 Networking


I am running an AMD 64 Sempron with an ATI Radeon 9250 PCI card. I am also very new to linux in general. After a few clean installs of Fedora Core 5, I am having strange lockups on the system. Once I get past GRUB and boot in to Fedora, I will very shortly experience a complete system lockup. It's locked up on the login screen (literally halfway through loading it, too.. half login screen, half white blank wcreen), and it's locked up near immediately after logging in, such as when loading the desktop, or immediately after I attempt to open a folder or program.

Deciding it's probably a video problem after browsing through FAQs and the forums for hours and hours, I wanted to update the drivers, but could not do it with the GUI, so I tried booting init 3, in to text only mode. The system does NOT lock up in this mode. However, for some reason, I cannot connect to the internet with wget, yum, or anything else to update anything (the core, add drivers, etc). I have an onboard ethernet adapter on an Asus mainboard, and it was seen during install. I have tried connecting my cable modem directly to the ethernet port and using my Linksys router, but I can't seem to get a connection.

And I have absolutely no idea how to set up the network in linux, especially from the command line.

Does anyone have ANY idea how I can set up Fedora to at least allow me to connect to the internet so I can run yum and get some updates and the video drivers changed to see if that is the issue? I'm tearing my hair out.

Thanks!

Last edited by dmbyer; 09-15-2006 at 07:12 PM. Reason: Changed title for clarity and accuracy
 
Old 09-14-2006, 01:31 AM   #2
odcheck
Member
 
Registered: Aug 2006
Distribution: Fedora, CentOS, RHEL, Debian
Posts: 978

Rep: Reputation: 31
Okay, I will try to offer you my help using your lom.
a) does your linksys act as an DHCP and also connects to cable?
b) what shows
Code:
ifconfig
you can setup your LOM in init 3 as well using vi and edit the needed files
or you just use
Code:
system-config-network
as root.
If the answer to a) is yes then you'll have to set your card of course to DHCP but you probably will have to set your DNS to the IP of the linksys Routers IP.
e.g. linksys 192.168.2.1 then this will be the Gateway and DNS IP for your clients.
 
Old 09-15-2006, 05:00 PM   #3
dmbyer
LQ Newbie
 
Registered: Sep 2006
Location: Minnesota, USA
Distribution: Fedora Core 5, AMD Sempron 64
Posts: 8

Original Poster
Rep: Reputation: 0
Ok thanks, I'll give that a shot, and see if it works. My router is connected to the cable, and my computer connects to the router. Also I do not have multiple machines, just mine.

I am going to have a hard time showing my ifconfig since I can't copy it in Linux, boot in to Windows, and paste it, and that's what I have to do right now to actually use the internet to post.
 
Old 09-15-2006, 05:05 PM   #4
Leisy
Member
 
Registered: Sep 2006
Location: Brno, Czech Republic
Distribution: Fedora
Posts: 56

Rep: Reputation: 15
if your network was automatically configured in initlevel 5, just type /sbin/chkconfig --level 35 network on to start network while running initlevel 3

you can look in log /var/log/Xorg.0.log and look for errors there and eventually paste them here
 
Old 09-15-2006, 06:04 PM   #5
dmbyer
LQ Newbie
 
Registered: Sep 2006
Location: Minnesota, USA
Distribution: Fedora Core 5, AMD Sempron 64
Posts: 8

Original Poster
Rep: Reputation: 0
I don't think it automatically configured in initlevel 5, since I've never actually been able to run Xwindow without crashing very shortly after it starts. Thanks for the tips I'll try those real quick here and see what happens. Using "system-network-config" I was able to turn the DHCP field to "on" but I don't know what to put for "Name" and "Device" I think the other two options were. I tried "linksys" for name and "eth0" for device but nothing.
 
Old 09-15-2006, 06:33 PM   #6
dmbyer
LQ Newbie
 
Registered: Sep 2006
Location: Minnesota, USA
Distribution: Fedora Core 5, AMD Sempron 64
Posts: 8

Original Poster
Rep: Reputation: 0
I tried your command "/sbin/chkconfig --level 35 network on" and upon reboot I still had no connection. And I don't know if I was doing something wrong, but when I tried to open "/var/log/Xorg.0.log" it created a new file. I used Vi, I don't know of any other way to look at files in Fedora, and I don't even know how to edit files with Vi (last time I used Linux was FreeBSD on my OS X machine and the text program was pico).
 
Old 09-15-2006, 06:46 PM   #7
Leisy
Member
 
Registered: Sep 2006
Location: Brno, Czech Republic
Distribution: Fedora
Posts: 56

Rep: Reputation: 15
does ifconfig show any device? for your onboard ethernet should be probably name eth0. config for this card should be then in /etc/sysconfig/network-scripts and look like this:

DEVICE=eth0
BOOTPROTO=dhcp
HWADDR=00:00:00:00:00:00
ONBOOT=yes
 
Old 09-15-2006, 07:10 PM   #8
dmbyer
LQ Newbie
 
Registered: Sep 2006
Location: Minnesota, USA
Distribution: Fedora Core 5, AMD Sempron 64
Posts: 8

Original Poster
Rep: Reputation: 0
Ok, ifconfig says:
Code:
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
..and a few other things below it, but just packet loss type information, so I excluded it.

Also, I did go to /etc/sysconfig/network-scripts but found nothing that had an "eth0" in it that looked like a configuration file. The only config file I believe that was in that directory was an init.ipv6 file.

Also, for informational purposes, I ran lspci:
Code:
00.0d.0 Ethernet Controller: ALi Corporation M5263 Ethernet Controller (rev 40)
Thanks for all the help so far, at the very least I am learning a lot about Linux!
 
Old 09-15-2006, 08:28 PM   #9
Leisy
Member
 
Registered: Sep 2006
Location: Brno, Czech Republic
Distribution: Fedora
Posts: 56

Rep: Reputation: 15
so the ifconfig shows only loopback device...it seems that you have no driver for the ethernet card loaded. I tried to find which driver to use and probably it is uli526x. try looking here. you can also put here lsmod output and parts of dmesg with something you think that would be related to the network card.
 
Old 09-16-2006, 09:31 AM   #10
dmbyer
LQ Newbie
 
Registered: Sep 2006
Location: Minnesota, USA
Distribution: Fedora Core 5, AMD Sempron 64
Posts: 8

Original Poster
Rep: Reputation: 0
Ok, I ran some commands that you told me about.

Code:
dmesg | grep eth
eth0: ULi m5263 at pci0000:00:0d.0, 00:15:f2:8e:b4:5f, irq 17.

dmesg | grep ALi
agpgart: Unsupported ALi chipset (device id: 1689)

dmesg | grep ULi
Setting up ULi AGP.
uli526x: ULi m5261/M5263 net driver, version 0.9.3 (2005-7-29)
eth0: ULi m5263 at pci0000:00:0d.0, 00:15:f2:8e:b4:5f, irq 17.
lsmod returned absolutely nothing with eth, ALi, or ULi in it.

Last edited by dmbyer; 09-16-2006 at 09:33 AM.
 
  


Reply

Tags
fedora 5


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Saga of Xwindow problems in sarge jolphil Debian 1 03-20-2005 01:24 PM
xwindow to xwindow connection? ziggie216 Linux - Software 1 03-18-2004 12:53 PM
xwindow help?? robmuro Linux - Software 3 08-06-2002 04:40 AM
problems with Xwindow 4.0.3 rrivero Linux - Software 0 07-29-2002 08:36 PM
Xwindow login prompt problems uglykid General 1 07-20-2001 07:47 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 10:53 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration