- Community Home
- >
- Servers and Operating Systems
- >
- Legacy
- >
- ProLiant Deployment and Provisioning
- >
- Deploy Win2k3 using Scripting Toolkit Linux Editio...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-04-2007 04:34 PM
04-04-2007 04:34 PM
Deploy Win2k3 using Scripting Toolkit Linux Edition?
been a while since I've messed with the STK...and back then (~2+ years) everything was DOS. WinPE is a &#@%& to get a hold of so I figure Linux is the way to go. I've got everything working up to the point of creating the fat partition to drop the Win install files. The sample script install_win.sh has a couple of lines where ntldr.bss and ntldr2.bss are referenced. With the number of mistakes i found in these scripts i'm not sure if these are mistakes or if there are actually supposed to be two .bss files....regardless, the STK comes with one...freedos.bss. What am I missing, i'm sure it's something trivial.
Thanks!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2007 03:17 AM
04-06-2007 03:17 AM
Re: Deploy Win2k3 using Scripting Toolkit Linux Edition?
ntldr.bss and ntldr2.bss are the boot sectors used to perform NTLDR boots on a fat32 filesystem.
They're not included in the toolkit because they belong to Microsoft. HP Includes a linux utility, "bootextract", that can extract those two boot sectors from ufat.dll, which you'll have to copy from Windows media or a running system.
What other issues have you found? I'd like to get those addressed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2007 05:26 AM
04-06-2007 05:26 AM
Re: Deploy Win2k3 using Scripting Toolkit Linux Edition?
Thanks for your help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-06-2007 11:44 AM
04-06-2007 11:44 AM
Re: Deploy Win2k3 using Scripting Toolkit Linux Edition?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-30-2007 02:32 PM
04-30-2007 02:32 PM
Re: Deploy Win2k3 using Scripting Toolkit Linux Edition?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-28-2007 04:26 AM
06-28-2007 04:26 AM
Re: Deploy Win2k3 using Scripting Toolkit Linux Edition?
The script has a line to correct the number of hidden sectors set by mkdosfs, the line starts with "echo -ne "\400" | dd". That line is setting the number of hidden sectors to 32, which is correct for most systems, but not all. Some systems report/use 64 sectors per track. DL380G4 w/ a P600 controller has that issue.
I've also seen times when the hidden sectors are incorrect because sfdisk uses the existing partition information in the mbr when creating the new one. Add a sfdisk command to clear the partitions to work around that.
When the # of hidden sectors is incorrect, the boot code cannot find the filesystem. It usually leaves you at a black screen, but could cause other issues.
Using the NTLDR method requires a precise configuration of the filesystem, even if all the boot sectors are correct, it's really not well documented.
Basically if you start a CD based install, then stop the install at the first reboot, copy all those files off. Those are what you'll need to make the NTLDR method work.
After the script has prepared the partition, formatted it, made it bootable, copy those files down.
I really recommend sticking with the FreeDOS method.