Old-Polack:
Next set of results:
[root@localhost ~]# lspci
00:00.0 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
00:00.1 RAM memory: nVidia Corporation C51 Memory Controller 0 (rev a2)
00:00.2 RAM memory: nVidia Corporation C51 Memory Controller 1 (rev a2)
00:00.3 RAM memory: nVidia Corporation C51 Memory Controller 5 (rev a2)
00:00.4 RAM memory: nVidia Corporation C51 Memory Controller 4 (rev a2)
00:00.5 RAM memory: nVidia Corporation C51 Host Bridge (rev a2)
00:00.6 RAM memory: nVidia Corporation C51 Memory Controller 3 (rev a2)
00:00.7 RAM memory: nVidia Corporation C51 Memory Controller 2 (rev a2)
00:03.0 PCI bridge: nVidia Corporation C51 PCI Express Bridge (rev a1)
00:04.0 PCI bridge: nVidia Corporation C51 PCI Express Bridge (rev a1)
00:05.0 VGA compatible controller: nVidia Corporation C51G [GeForce 6100] (rev a2)
00:09.0 RAM memory: nVidia Corporation MCP51 Host Bridge (rev a2)
00:0a.0 ISA bridge: nVidia Corporation MCP51 LPC Bridge (rev a3)
00:0a.1 SMBus: nVidia Corporation MCP51 SMBus (rev a3)
00:0a.2 RAM memory: nVidia Corporation MCP51 Memory Controller 0 (rev a3)
00:0b.0 USB Controller: nVidia Corporation MCP51 USB Controller (rev a3)
00:0b.1 USB Controller: nVidia Corporation MCP51 USB Controller (rev a3)
00:0d.0 IDE interface: nVidia Corporation MCP51 IDE (rev a1)
00:0e.0 IDE interface: nVidia Corporation MCP51 Serial ATA Controller (rev a1)
00:10.0 PCI bridge: nVidia Corporation MCP51 PCI Bridge (rev a2)
00:10.2 Multimedia audio controller: nVidia Corporation MCP51 AC97 Audio Controller (rev a2)
00:14.0 Bridge: nVidia Corporation MCP51 Ethernet Controller (rev a3)
00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
[root@localhost ~]# ls -l /boot |grep init
-rw------- 1 root root 5653907 Feb 8 19:47 initrd-2.6.38.8-pclos3.bfs.img
lrwxrwxrwx 1 root root 30 Jul 9 2011 initrd.img -> initrd-2.6.38.8-pclos3.bfs.img
(BTW, the 40 wire vs 80 wire cable was a dead end, as was using master instead of slave; changed to 80 wire cable, and configured drive as slave (with no master) and the problem remains.)
First we want to cd to the boot directory.
[root@localhost ~]# cd /boot <Enter>
[root@localhost boot]# <-- The prompt changes to show the new locationNext we want to save the existing initrd image, in case something goes wrong with the rebuild.
[root@localhost boot]# mv initrd-2.6.38.8-pclos3.bfs.img initrd-2.6.38.8-pclos3.bfs.img-bak <Enter>
Then a check, to see if that was successful.
[root@localhost boot]# ls -l |grep init <Enter>
The link should be broken, and the only initrd image should be
initrd-2.6.38.8-pclos3.bfs.img-bakNow we rebuild the initrd, loading the
pata_amd module first, followed by the
sata_nv module. Here, I'm just guessing, based on the information from the Magia bug report link. The idea is to get the optical device seen as
/dev/sr0.
[root@localhost boot]# mkinitrd -v --preload pata_amd --preload sata_nv initrd-2.6.38.8-pclos3.bfs.img 2.6.38.8-pclos3.bfs <Enter>
You should see a whole bunch of rolling text as the process progresses. When you are returned to the prompt, the build should be complete.
Again, try the command;
[root@localhost boot]# lsinitrd /boot/initrd.img |grep modprobe <Enter>
You should get a list
similar to the first time the command was entered, except the
first two items in the
list should be
pata_amd and
sata_nv.
Post the results of the last command.