Thanks. I have Asus P5B Deluxe motherboard with BIOS year 2006.Yes, with the exception that if your mobo has a UEFI BIOS; be sure you boot the optical drive in AHCI mode so that the Windows installer can create a MBR partitioning scheme.
Thanks. I have Asus P5B Deluxe motherboard with BIOS year 2006.
cheez
Well then I suppose I need to find out more about this "alignment" thing.As for alignment, SSDs operate on pages of 8K/16K these days. However Win5.x will write its first partition at LBA 63, which won't be at the start of a SSD page. As a result, NTFS file clusters will span multiple pages, which is bad for the performance and for the SSD. The guys in the storage forum can tell you more, but if you're going to use Server 2003 you're going to want to take care of your alignment.
Because the certain programs I run require either Server 2003 or XP.And why Server 2003 for an HTPC? Realize that if you intend to keep that box around for any length of time, support ends in 2 years.
Not in my case. It does well exactly what I want done on this PC. The only question is how well I can get SSD to co-operate with my OS.Server 2003 is not a good choice for an HTPC these days.
Hooked up this drive in Windows 7 machine just now. In this machine, the disk mgmt shows this drive as "Basic" NTFS volume. WTH... In Server 2003 it shows as GPT Protective Partition and I could not make any changes to the drive. But in Win7 I can access this drive fine. I can go into the folders and do whatever I want.I noticed one of the drives shows as "Basic" (GPT Protective Partition) and I could not make any changes through disk mgmt.. I have no control over it.
Ok I went back and booted off Windows 7 disc and ran DiskPart and followed the instruction you listed for my SSD.ViRGE makes very valid points regarding Server 2003 on an SSD, and I'll add that Server 2003 doesn't natively support the TRIM command so you'll need to install a utility to enable that very important feature as well. But if you want to give it a shot here's the procedure:
To manually align the beginning of the system partition on the 4 KB page boundary of the SSD; the SSD will need to be partitioned with an initial offset of 1024 KB, set active, and then NTFS formatted with a file allocation unit size of 4 KB prior to installing the operating system. The diskpart commandline tool is well suited for this task. It would be easiest to temporarily mount the SSD on a Windows 7 machine (or any version that already has AHCI drivers installed and will immediately recognizes the SSD), and then run diskpart from an elevated command prompt on the desktop:
diskpart
(starts diskpart)
list disk
(lists all disks by #)
select disk #
(replace # with the number of your SSD)
attributes disk clear readonly
(this prevents errors during clean operation)
clean
(makes the disk unallocated)
create partition primary offset=1024
(creates a primary partition with the correct offset of 1024 KB)
select partition 1
(puts focus on the partition you just created)
active
(marks the new primary partition as a system partition)
format fs=ntfs quick
(performs a quick NTFS format with the correct file allocation unit size of 4 KB)
.
Thanks. I will do that the first thing when I get home...If I was you; I'd update the BIOS before doing anything else. The initial release is version 0302 dated 2006.07.26, the last non-beta update is version 1101 dated 2007.04.04, and beta updates continue until version 1238 dated 2009.02.11. There are a lot of error fixes, compatibility improvements, and device support enhancements between 2006 and 2009.
