Regarding the BIOS.
It is set to RAID ON. It could also be set to RAID Audodetect/ATA
Set it to [RAID Audodetect/ATA] then!!!
I think that is your problem.
It should realize there is no RAID array present, pass AHCI info
to the OS, and the existing AHCI driver in Vista will boot.
That's my theory at the moment.
I mean, since the old and new motherboards have the same irritating
BIOS design, that's about the only option worth adjusting.
When I initially switch on the pc The BIOS screen tells me that an AHCI BIOS is installed. Do I have a conflict?
For Vista/Win7/Win8, having a pre-built machine start in AHCI
operating mode for the disk controller, is a popular choice.
My laptop does that.
In the boot options (F12) I see the hard-disk serial number. If I try to boot from here I get those green travelling bars, and then a black screen with the mouse pointer in the middle of the screen.
Note, If I switch on the machine and let it try to boot, I am asked to press F1 to continue. If I press F1, the floppy led lights and I am told that I have a non-systems disk (drive empty).
UBUNTU
I can see all my hard disk files using this OS - everything is present.
This is reassuring.
I tried to repair the disk previously using the Dell utilities, but was unsuccessful.
I have the original Dell Vista OS disk. This has the OS that is currently installed.
I am wondering if I will need to re-install using this disk. As you know I have another Dell board installed, I believe that I may not be able to re-install. If not I will consider installing UBUNTU. I believe that it would be best to create a partition and have both OS's installed in case I can ever get VISTA working.
If you examine your Dell manual, it should tell you what function key to press,
to enter the factory restoration dialog. And from there, you can restore
the factory image of Vista.
The BIOS on both the old and new motherboards, contains a "SLIC" table.
That table contains the activation information, to make the provided OS
image, work for you. You should not need to go online to activate. It
should "just work".
If you'd stuck a "foreign" motherboard in there, like an Asus, then
restoring the factory image would get stuck during activation. It
would be prompting you for a license key, or whatever. Generally,
make life unpleasant for you.
But by using the Dell motherboard, with Dell SLIC table, it should
reinstall the factory image. If that's what you really want to do.
The SLIC table, is why you bought the Dell motherboard!
At this point, I think the BIOS setting change may be enough to get
you going.
Freezing mouse.
It does freeze from time to time, but usually unfreezes after a time. I have noticed on the UBUNTU help forum that this appears common. There are all sorts of fixes, all of which appear to involve downloading programs from the repository. I can't do this because I am running UBUNTU from a live pendrive and any changes will only be temporary.
Best wishes.
There are several ways to run Ubuntu.
From the Live CD. With no persistent home directory.
Use a provided tool, to copy the operating system to a pen drive.
But still not use a persistent storage area.
But, if you *add* a persistent storage file to the pen drive, and
have room for it, the pen drive will store all your repository
related changes. And that's how I run mine.
The name of the persistent file on my pen drive is
casper-rw
4,060,086,272 bytes
That's the file that stores all the downloaded Ubuntu
programs for me. It is an image file, and is loopback
mounted when Ubuntu starts. If you were examining
the pen drive from Windows, you can't "see inside" the
casper-rw.
https://help.ubuntu.com/community/LiveCD/Persistence
"Using a Loopback File
[ This step makes a file, up to 4GB, on the pen drive.
The file is useless, unless it's at least 1GB. And
since the pen drive is FAT32, it has a 4GB upper limit
Change the 128 value, to 1024 to perhaps 4000, depending
on the space remaining on your pen drive. An 8GB pen
drive, is idea for live CDs with persistent storage. ]
dd if=/dev/zero of=/media/hda1/casper-rw bs=1M count=128
[ This formats the file as EXT3 file system. The file
system is not mounted yet. ]
mkfs.ext3 /media/hda1/casper-rw
That's it! You can now boot the Live CD as described below.
"
The idea is, the pen drive boot sequence, the Ubuntu code should
recognize the presence of casper-rw, and use it.
Now, later, if you ever want to know what is inside that
file, you'll need to loopback mount the pen drive file,
while running a Ubuntu CD. Boot the Ubuntu CD, then and
only then, plug in the pen drive. Mount the main partition
of the pen drive, which is FAT32. That would be the
/media/hda1 in the example above.
sudo mkdir /media/mypencasper
sudo mount -t ext3 -o loop /media/hda1/casper-rw /media/mypencasper
cd /media/mypencasper
ls -R <--- list contents of persistent file system
cd /
sudo umount /media/mypencasper <--- cleanup, before shutdown
HTH,
Paul