LinuxQuestions.org
Share your knowledge at the LQ Wiki.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 11-29-2010, 01:31 AM   #1
ShellyCat
Member
 
Registered: Jul 2007
Distribution: Slackware 13
Posts: 178

Rep: Reputation: 29
Unhappy ISO of SP3 for Windows XP seems corrupted when burned to CD in Linux


Sorry so long...and this really is a Linux question.

I have a slow/old laptop where I just installed Windows XP Pro for a few specific apps. (Different from this laptop, which has Slackware 13.) I manually install patches and service packs so I always have what I want on CD. It allows me to avoid updates I don't want, it's faster than Automatic Updates if I reinstall, and I can use the patches on multiple machines.

So I already have SP2 and subsequent updates on CD. (I didn't use SP3 because I didn't like changes it made to the OS, like getting rid of the Address Bar in the Taskbar; it's faster to type URLs in the Taskbar. I do smaller patches instead.)

Now, however, I find that certain changes don't drive me crazy like they once did. So I decided I want SP3 on this old laptop.

I used my faster Slackware laptop to download everything...SP3, newer patches, and libraries such as .NET. The CD-RW with patches and libraries has no problem.

However, I'm having a nightmare with the SP3, which is the ISO downloaded off TechNet! At first I thought "cdrecord" wasn't making the CD-R correctly, because Windows couldn't read the CD-R at all and complained it was corrupt. I didn't make any difference if I let "cdrecord" default to "-sao" or if I used "-dao." (The CD-Rs themselves are not defective AFAIK...I've used them for other things, and I tried 3 of them.)

However, while Windows could list the contents of the CD-RW, it can't actually read files! It can't run executables nor read an ".htm" page off the CD-RW. When I try, Windows says, "the disk may be corrupt." Again, I tried more than one CD-RW, so the problem is not with the disk itself.

I tried two different ISOs, too! One was from 11/25/2010 (Microsoft made a brand new SP3 ISO this year), and the other was from 2008. Both had the same problem. It seems downloading the ISO to Linux and burning with Linux tools corrupts the ISO, but I don't know why. Is there some option I should be using (or not)?

On a whim, I even tried using "mkisofs" on the downloaded ISO first to see if that would burn the ISO in a better format or something, but that didn't help, either.

FYI, yes, I can download SP3 to the Windows machine directly after I install everything prior (installing SP2 first is required, anyway). But this is driving me nuts! I really want to figure out why this ISO seems to not burn properly under Linux.

Examples below...

**PATCHES AND LIBRRARIES** (this is fine)
Making ISO from everything, then burning to CD-RW (downloads reside in directories "Libraries" and "Patches," Volume Label will be "WinXPsp3-patches"):
Code:
mkisofs -o /root/ISOs/xpsp3_patches.iso -Jrv -V WinXPsp3-patches Patches Libraries
cdrecord -dev=3,0,0 -data -v -eject /root/ISOs/xpsp3_patches.iso
**SERVICE PACK 3**
Burning CD-R of downloaded ISO (using CD-R requires knowing the size):
Code:
mkisofs -r -print-size xpsp3_5512.080413-2113_usa_x86fre_spcd_05-06-2008.iso
mkisofs -r -print-size xpsp3_5512.080413-2113_usa_x86fre_spcd_05-06-2008.iso 2>/dev/null | cdrecord -dev=3,0,0 -data -v -eject -tsize=279643
(Note: I also tried the above command on a CD-RW, which did not require knowing the size and using -tsize.)

Burning CD-RW of downloaded ISO:
Code:
cdrecord -dev=3,0,0 -data -v -eject xpsp3_5512.080413-2113_usa_x86fre_spcd_05-06-2008.iso
Making new ISO from original, and burning it to CD-RW (download resides in directory "ServicePacks" and Volume Label will be "WinXPsp3"):
Code:
mkisofs -o /root/ISOs/xpsp3.iso -Jrv -V WinXPxp3 ServicePacks
cdrecord -dev=3,0,0 -data -v -eject /root/ISOs/xpsp3.iso
(Note: I also tried -Jv to see if -r was causing a problem in the file format for Windows.)

I can't get any useful information from the man pages. It's very bizzare!

Last edited by ShellyCat; 11-29-2010 at 01:37 AM.
 
Old 11-29-2010, 03:33 AM   #2
kbp
Senior Member
 
Registered: Aug 2009
Posts: 3,790

Rep: Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653
Have you tried comparing the md5sums of the iso and the burned cd ?
 
Old 11-29-2010, 03:45 PM   #3
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,974

Rep: Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623
Might be an issue with speed. Slow the burn down to the slowest speed possible. Many of the older laptops don't like burned cd's and most don't like (I think it is called) overburning. The tracks have to be very consistent and can not have been burned on the second time around with the laser. That caused small blips where newer drives don't care older ones don't know what to do.

Guess you could mount the iso as a virtual smb drive too and just run it that way. Could make a disk that some other windows computer reads and share it over the lan.


Could expand the files and host them on a shared folder too.
 
Old 11-29-2010, 04:24 PM   #4
stress_junkie
Senior Member
 
Registered: Dec 2005
Location: Massachusetts, USA
Distribution: Ubuntu 10.04 and CentOS 5.5
Posts: 3,873

Rep: Reputation: 335Reputation: 335Reputation: 335Reputation: 335
I wouldn't use rewritable CDs. I'd use the write once type.
 
Old 11-30-2010, 07:47 AM   #5
ShellyCat
Member
 
Registered: Jul 2007
Distribution: Slackware 13
Posts: 178

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by stress_junkie View Post
I wouldn't use rewritable CDs. I'd use the write once type.
The write-once type isn't even able to be listed in Windows Explorer, only the CD-RW. The CD-RW is working for the patches and libraries CD, just not the SP3 ISO.
 
Old 11-30-2010, 07:49 AM   #6
ShellyCat
Member
 
Registered: Jul 2007
Distribution: Slackware 13
Posts: 178

Original Poster
Rep: Reputation: 29
Quote:
Originally Posted by jefro View Post
Might be an issue with speed. Slow the burn down to the slowest speed possible. Many of the older laptops don't like burned cd's and most don't like (I think it is called) overburning. The tracks have to be very consistent and can not have been burned on the second time around with the laser. That caused small blips where newer drives don't care older ones don't know what to do.

Guess you could mount the iso as a virtual smb drive too and just run it that way. Could make a disk that some other windows computer reads and share it over the lan.


Could expand the files and host them on a shared folder too.
I don't have another Windows machine here right now, but I'll try doing it at low speed. Thanks for the info...I'm pretty much a neophyte when it comes to multimedia.
 
Old 11-30-2010, 04:10 PM   #7
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,974

Rep: Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623
I agree with the RW being worse than the R disks. This may be some clue also.
 
Old 12-24-2010, 02:20 AM   #8
ShellyCat
Member
 
Registered: Jul 2007
Distribution: Slackware 13
Posts: 178

Original Poster
Rep: Reputation: 29
Thumbs up

Quote:
Originally Posted by jefro View Post
Might be an issue with speed. Slow the burn down to the slowest speed possible. Many of the older laptops don't like...overburning. The tracks have to be very consistent and can not have been burned on the second time around with the laser. That caused small blips where newer drives don't care older ones don't know what to do.
I'm mostly certain this is the issue because further testing reveals that Rewriteable media from the same lot sometimes have problems and sometimes not, including those actually created on my old XP computer. The computer and DVD drive are very old. I just ordered a new drive to install.
 
Old 12-26-2010, 01:14 PM   #9
jefro
Moderator
 
Registered: Mar 2008
Posts: 21,974

Rep: Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623Reputation: 3623
Just borrow any xp cd and change the key with jellybean.
 
Old 12-26-2010, 01:48 PM   #10
honeybadger
Member
 
Registered: Aug 2007
Location: India
Distribution: Slackware (mainly) and then a lot of others...
Posts: 855

Rep: Reputation: Disabled
Sorry if this is wrong but sp3 for xpee is an exe file. You can download the file from microsoft.com or msdn.com. It is _not_ an iso image.
Google for 'sp3 xp microsoft.com' and you should find it.
Hope this helps.
 
Old 12-26-2010, 05:06 PM   #11
Intiakel
LQ Newbie
 
Registered: Dec 2010
Posts: 6

Rep: Reputation: 0
Service packs and rollups are also available from microsoft as physical CDs, its not unthinkable that the ISO was made from one of these
 
Old 12-26-2010, 05:23 PM   #12
MTK358
LQ 5k Club
 
Registered: Sep 2009
Posts: 6,443
Blog Entries: 3

Rep: Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723Reputation: 723
How about making an ISO image containing the SP3 file, and then burning it?

Or if using a GUI burning tool, create a "Data CD" instead of "Burn From Image".
 
Old 12-26-2010, 09:38 PM   #13
EDDY1
LQ Addict
 
Registered: Mar 2010
Location: Oakland,Ca
Distribution: wins7, Debian wheezy
Posts: 6,841

Rep: Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649Reputation: 649
I think they're actually slipstreaming SP3 to conserve space.
http://www.winsupersite.com/article/...ack-3-sp3.aspx

I've only heard of it haven't tried it.

Last edited by EDDY1; 12-26-2010 at 09:42 PM.
 
Old 01-03-2011, 04:03 AM   #14
kbp
Senior Member
 
Registered: Aug 2009
Posts: 3,790

Rep: Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653Reputation: 653
You don't need to use the iso from Technet, just copy the sp3 exe onto any cd - the installed result is the same.
 
Old 01-03-2011, 04:11 AM   #15
TobiSGD
Moderator
 
Registered: Dec 2009
Location: Germany
Distribution: Whatever fits the task best
Posts: 17,148
Blog Entries: 2

Rep: Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886Reputation: 4886
Quote:
Originally Posted by EDDY1 View Post
I think they're actually slipstreaming SP3 to conserve space.
http://www.winsupersite.com/article/...ack-3-sp3.aspx

I've only heard of it haven't tried it.
No, slipstreaming has absolutely nothing to do with that. Slipstreaming means to integrate the service pack into your Windows installation CD, so that you don't have to install the servicepack after a fresh installation of Windows.
But anyways, it shouldn't matter what is in the ISO, as long as it is not corrupted.
 
  


Reply

Tags
burning, cds, corrupt, windows



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
could not install with burned iso abtimoteo Ubuntu 2 02-26-2010 05:22 PM
Connect Linux to internett trough Windows XP PRO SP3 shadyboy Mandriva 5 11-28-2006 08:51 AM
Help: Burned ISO CD Doesn't Boot. rvijay Linux - General 4 07-18-2004 04:38 AM
Using CD's burned on Windows under Linux openglforums Linux - Laptop and Netbook 10 01-25-2004 05:25 PM
Linux PPC ISO burned by Win PC for Mac? billLinux Linux - Software 2 01-22-2004 04:27 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 08:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration