Gah.. Fallen at the first hurdle....

darkstar782

Distinguished
Dec 24, 2005
1,375
0
19,280
I have been trying to get Linux working on my system for a little while now without sucess... PC specs in sig.

I've tried a Fedora Core 6 DVD, Ubuntu 6.10 CD, and a Ubuntu 6.10 DVD, none of them even properly start the install process.

Fedora Core throws up messages about "IRQ 50: nobody cared" or similar, then just hangs.

Ubuntu tells me the X server could not detect any displays.

Memtest86+ 1.65 reports no errors. All CD/DVD media verify correctly.

Is Linux just incompatible with 8800GTX's?

Thanks in advance!
 

linux_0

Splendid
I believe several ASUS P5 series boards have compatibility problems with Linux.

I'm sorry to say you are not alone :-(

http://forumz.tomshardware.com/software/fc6-installation-hangs-sbin-loader-ftopict234292.html

We have seen several of these issues recently.


Updating your BIOS may help, if you have not done so already. I would advise you to save your old BIOS because you may have to restore it.


Some possible solutions:

0. use the following kernel parameters at the boot: prompt

noapic acpi=off

1. try disabling things using these kernel options on this page http://fedora.redhat.com/docs/install-guide/fc6/en/sn-bootoptions-hardware.html

2. use the Silicon Image SATA controller with SATA to PATA converters if you have to

3. try the JMicron controller -- strike that - do not bother

4. disable everything you can in the BIOS and see if that helps

5. try a Knoppix LiveCD

6. disable ACPI in the BIOS

7. get a new board

GL :-D


PS Maybe this link will help: http://www.hentges.net/misc/howtos/p5wdh/index.shtml
 

darkstar782

Distinguished
Dec 24, 2005
1,375
0
19,280
JMicron Controller is disabled, all that I have on it is a couple of drives from my WinXP software RAID array, which I dont expect to be able to access under linux anyway. Plus, with this enabled, Ubuntu just hangs.

BIOS is lastest version, 1901.

The silicon image SATA simply hangs off one of the ICH7R SATA ports, which is where the SATA disk I want to install to is anyway, so I dont see that helping much, but I shall give it a try.

Here is a screenshot of Ubuntu, by the way....

 

linux_0

Splendid
Do you have another VGA card you can use for the initial install?

It doesn't matter if it's very basic, even an ancient 32bit PCI card with 8MB of VRAM will work.

After you get Ubuntu or FC6 installed and you download the updates + the nVidia driver everything should work just fine :-D

I can try to help more via PM or IM if you want.

GL :-D


JMicron Controller is disabled, all that I have on it is a couple of drives from my WinXP software RAID array, which I dont expect to be able to access under linux anyway. Plus, with this enabled, Ubuntu just hangs.

BIOS is lastest version, 1901.

The silicon image SATA simply hangs off one of the ICH7R SATA ports, which is where the SATA disk I want to install to is anyway, so I dont see that helping much, but I shall give it a try.

Here is a screenshot of Ubuntu, by the way....

 

linux_0

Splendid
If your PSU can handle it and you do not mind wasting some energy you could use BOTH cards in your machine at the same time :wink:

Naturally Linux supports multiple GPUs :-D
 

darkstar782

Distinguished
Dec 24, 2005
1,375
0
19,280
Heh... I only have one decent monitor though, without filling my desk with hulking great 22" CRTs.

Windows doesnt like both cards at once as the 8800 series has its own drivers that refuse to co-exist with the 7900GT drivers. Plus, with the two of them in so much memory address space is mapped that Win x86 only sees 2.6GB. Although I am running x64 now so I may have a play...

Anyway, Ubuntu installed with the 7900GT in place, I had a few issues though...

Firstly, it insisted on using the wrong ethernet connction for web access. Even disabling the offending adaptor (that only links to my neighbours router so that he can access my storage drive) and manually setting up the other (I have a /29 IP block so no NAT is involved), it still insisted on trying to connect to computers in the 10.0.0.XX range whenever I tried to do a DNS lookup, ping, etc.... I solved this by disconnecting the unwanted LAN cable and rebooting.

However I still could not connect to websites with Firefox (it would just say "connecting"). Ping worked, and I could traceroute to tomshardware.com, but no sites (even google.com) would open. The mail client did the same.

I figured maybe I needed new LAN drivers, and popped in my P5W DH CD in the hopes that it had Linux drivers on... it did!

They were gzipped, so I looked for somewhere on the hdd to unzip them... seems I dont have write access many places, I suppose thats because I'm not logged in as root... finally found somewhere.

The readme.txt tells me I have to run "install.sh" now... open a console, have fun trying to navigate to the relevent directory (I vaguely remember using Slackware 2.0 on a 486 for like a few hours years ago, so I have a vague idea of commands. Take about 10 mins trying to remember the Linux equivalent of "dir", have a vague recollection of "list" or "lst", but to no avil. Turns our "dir" works. Silly me....). Try to run install.sh...

"Access Denied".... This is worse than Vista UAC! :p

Decide to try to log in as root, but it seems Ubuntu didnt ask me to set a password for root, and its not blank or the same as my other password. Finally figure out that I have to set the permissions on the file under my normal login to allow it to be run.

Finally get to running the file. It errors. I give up.

Back to Win XP for now :p
 

linux_0

Splendid
Please take the ASUS CD and run it through the shredder.


Ok, I'm kidding :) but please do not touch the ASUS linux drivers. They will only break stuff.


It sounds like your DNS was not working correctly or your firewall was blocking something.

Most of the time you can fix this by editing /etc/resolv.conf and adding your nameservers in there.

The format is:

/etc/resolv.conf
[code:1:86ac8a9a5b]
nameserver 192.168.0.1
nameserver 192.168.0.2
[/code:1:86ac8a9a5b]



The best way to install software on Ubuntu is to use apt-get or a GUI front-end to apt-get


You can disable one of the network interfaces to prevent it from causing issues or simply give it a private IP ( in a different subnet ) and it will not interfere with anything you're doing.


Ubuntu by default forces you to use sudo

for example:

[code:1:86ac8a9a5b]
sudo command
[/code:1:86ac8a9a5b]

[code:1:86ac8a9a5b]
sudo su -

apt-get install package_name # install package_name
gedit /etc/resolv.conf # edit /etc/resolv.conf with gedit ( a GUI editor )
ifconfig eth0 down # bring down eth0
ifconfig eth1 down # bring down eth1
ifconfig eth0 10.0.0.2 netmask 255.255.255.0 up # configure eth0
route add default gw 10.0.0.1 # add a default router / gateway

[/code:1:86ac8a9a5b]

When you sudo you will be prompted for your password



GL :-D
 

darkstar782

Distinguished
Dec 24, 2005
1,375
0
19,280
I spent another hour or so fiddling with Ubuntu.

nVidia drivers - Cant get them to install. If I just run them it says they need to be run as root, it wont let me log in as root. Cant find a way to run them with root permissions. The add/remove packages thing doesnt seem to want to open them in any way. The nVidia drivers that come with Ubuntu dont support G80.

LAN - No longer convinced I need drivers. I can run a full traceroute to anywhere or perform a DNS lookup fine via the "network tools" section. Firefox will access my routers Web interface. No other websites can be accessed by Firefox. GAIM wont connect. Mail client wont connect. Its like it is ignoring the gateway address I have entered.

Ethernet controller is set up the same as it is in Windows, although I use DCHP in windows. IP 87.127.89.xxx, subnet 255.255.255.248, Gateway 87.127.89.xxx.

As I've said its on a block of 8 IPs so firewalls etc shouldnt be an issue... Hell WinXP shows the router (via UPnP) as a "Linux IGD gateway device" so I assume thats running some imbedded form of Linux.

I gave up with Ubuntu and managed to install Fedora Core 6... however while it installed fine, it hangs on boot, attempting to "Read all disks" or something, and throwing errors up at me. The only drives connected at the time were my SATA drive with Linux on (on the ICH7R controller) and my Plextor PX-760SA SATA DVD±RW drive, also on the ICH7R controller.

I'm beat tbh... the one annoying thing is that FC6 installed Grub with like a 1 second timeout to boot linux.... is there a way to restore the XP x64 bootloader so that I can get rid of Linux?

EDIT: Googling tells me to run fdisk /mbr... but as far as I'm aware fdisk doesnt exist in Windows XP x64... which is nice.

EDIT2: Sorted it :)
 

linux_0

Splendid
Put the FC6 install disk in the drive

Press F5

type in linux rescue

follow the prompts

let it find your FC6 partition

after it does so and mounts it and drops to a shell


chroot /mnt/sysimage

vi /etc/grub.conf



add this at the bottom:

title xp
rootnoverify (hd0,0)
chainloader +1

hd0 means the 1st HDD ,0 means the 0th ( 1st partition ) change appropriately

change default=0 to 2 ( 0 is FC6 1 is probably FC6 Xen so XP will be 2 )

change timeout= to 60 ( in seconds )


ESC :wq


shutdown -rf now