Page 1 of 2

iso size of wxp-x64 is huge !

PostPosted: 19.01.2011, 08:39
by rupat
Hi !

I have a simple question.

We have to update often windows systems so we use wsusoffline to create every wednesday update cd´s. We make One CD per OS.

Code: Select all
ls -la iso/
insgesamt 21257900
drwxr-xr-x  2 root    root           4096 18. Jan 15:08 .
drwxr-xr-x 13 root    root           4096 18. Jan 15:04 ..
-rw-r--r--  1 root    root              0  5. Dez 11:15 dummy.txt
-rw-r--r--  1 ftpuser ftpgroup 1662728192 18. Jan 14:18 wsusoffline-w2k3-deu.iso
-rw-r--r--  1 ftpuser ftpgroup 3002673152 18. Jan 14:27 wsusoffline-w2k3-x64-deu.iso
-rw-r--r--  1 ftpuser ftpgroup 2056067072 18. Jan 15:04 wsusoffline-w60-glb.iso
-rw-r--r--  1 ftpuser ftpgroup 3101276160 18. Jan 15:12 wsusoffline-w60-x64-glb.iso
-rw-r--r--  1 ftpuser ftpgroup  232663040 18. Jan 14:37 wsusoffline-w61-glb.iso
-rw-r--r--  1 ftpuser ftpgroup  346961920 18. Jan 14:40 wsusoffline-w61-x64-glb.iso
-rw-r--r--  1 ftpuser ftpgroup 1462140928 18. Jan 14:34 wsusoffline-wxp-deu.iso
-rw-r--r--  1 ftpuser ftpgroup 9882257408 18. Jan 14:58 wsusoffline-wxp-x64-deu.iso


As you can see the wxp-x64 is very very big.
Is this normal ? If i look in the iso i can see w2k3 w2k3-x64 w60 w60-x64 w61 w61-x64 folders ? It seems that is create a iso with ALL updates

A second question is what is the best combination of os to save disk space ? should i create isos for w61 (x86 and x64) oder isos for w60 x86 and w61 x64.
i also can create an iso with all in it, but we have to download often the isos at different locations from our servers, so it would be stupid to create 12gb isos ;)

we have to find a good consent between saving diskspace and size of isos !

hope you understand my matter

You can also answer in german ;)

Greetings from robert !

Re: iso size of wxp-x64 is huge !

PostPosted: 19.01.2011, 08:57
by rupat
after reviewing the CreateIso script i found the following:

my command
Code: Select all
 sh/CreateISOImage.sh wxp-x64 deu


produce in the script the variables:
Code: Select all
excludeiso1="../exclude/ExcludeListISO-${sys}.txt"    # is ../exclude/ExcludeListISO-wxp-x64.txt
excludeiso2="../exclude/ExcludeListISO-${sys}-x86.txt"  # is ../exclude/ExcludeListISO-wxp-x64-x86.txt


both dosent exist. so the resulting ../temp/ExcludeListISO-wxp-x64.txt has the following content:
Code: Select all
dotnet*
msse*
enu*
*nld*
*esn*
*fra*
*ptg*
*ptb*
*ita*
*rus*
*plk*
*ell*
*csy*
*dan*
*nor*
*sve*
*fin*
*jpn*
*kor*
*chs*
*cht*
*hun*
*trk*
*ara*
*heb*


this mirrors the result of the huge iso. It contains ALL Updates in the language "deu" ;)

So please help me which exlude lists have to be used for wxp-x64 ? I could also make a patch file for the CreateIso script for you.

Thanks Robert !

Re: iso size of wxp-x64 is huge !

PostPosted: 19.01.2011, 09:43
by rupat
i think the file ExcludeListISO-wxp-x64.txt is missing or it should be so ?

i created a the file with this in it:
Code: Select all
*ofc*
*o2k*
*oxp*
*w2k*
*w6*
*ie6setup*
*ie6.0sp1*
*oe6.0sp1*
*directx8*
*windowsmedia7*
*windowsmedia8*
*mdac25*
*mdac27*
*windows2000*
*directx_*
*.au3
*-x86*
*x86-glb\/*
*wxp\/*


but now the iso is only
-rw-r--r-- 1 ftpuser ftpgroup 60018688 19. Jan 09:35 wsusoffline-wxp-x64-deu.iso
60 mb ;(

I think there is a more complicated mechanic behind the update structur ;)

hope somebody can help !

Re: iso size of wxp-x64 is huge !

PostPosted: 19.01.2011, 10:12
by harry
Hi rupat!

Ihr benötigt kein extra ISO für wxp-x64!
Windows XP x64 basiert auf Windows Server 2003 x64;
nehmt also einfach wsusoffline-w2k3-x64-deu.iso.

Gruß, Harry

Re: iso size of wxp-x64 is huge !

PostPosted: 19.01.2011, 10:55
by rupat
hmm ist das irgendwo nachzulesen ?

wenn das stimmt is der parameter wxp-x64 natürlich total sinnlos, oder man sollte ihn direkt mappen auf w2k3-x64 ;)

Re: iso size of wxp-x64 is huge !

PostPosted: 20.01.2011, 10:15
by boco
hmm ist das irgendwo nachzulesen ?


Aus http://de.wikipedia.org/wiki/Windows_XP#Editionen:
Windows XP Professional x64 Edition

Die Windows XP „64-Bit Edition“ (Codename „Anvil“) ist eine Version, die ausschließlich für Prozessoren mit AMD64- oder Intel-64-Erweiterung entwickelt wurde. Sie läuft nicht auf 64-Bit-Prozessoren anderer Hersteller und ist ähnlich zu Windows XP Professional, bis auf die Tatsache, dass sie auf dem Kernel von Windows Server 2003 basiert und somit eine modernere Basis (NT 5.2) besitzt.

Re: iso size of wxp-x64 is huge !

PostPosted: 20.01.2011, 12:10
by WSUSUpdateAdmin
Moin!

rupat wrote:[...]wenn das stimmt is der parameter wxp-x64 natürlich total sinnlos, oder man sollte ihn direkt mappen auf w2k3-x64 ;)

DownloadUpdates.sh tat das auch schon:
Code: Select all
if [ "$sys" == "wxp-x64" ]; then
   sys="w2k3-x64"
fi

Aus CreateISOImage.sh habe ich das 'target' "wxp-x64" nun 'rausoperiert ( :arrow: http://trac.wsusoffline.net/browser/trunk (r203)).

Danke & Gruß
Torsten

ISO für x64?

PostPosted: 02.09.2011, 06:51
by gpburth
Ist es möglich, eine ISO für alle x64-Versionen gemeinsam zu erstellen, so wie dies auch für x86 passiert, wenn man "pro Sprache, produktübergreifend" anwählt?
Gerne alternativ auch eine für x86 und x64 gemeinsam :-)

Grund ist, dass ich nach der Installation der virtuellen Server noch bevor großartig Verbindungen ins Netz bestehen die Updates einfügen will und aus Übersichtlichkeitsgründen eine DVD für x64 bevorzuge (DVDs sind ohne Netz für den Client einbindbar).

Theoretisch ist natürlich möglich, aus den Dateien für USB-Stick manuell eine ISO zu basteln, aber das ist ein Zusatzschritt, den ich gerne vermeiden würde.

Re: ISO für x64?

PostPosted: 02.09.2011, 07:59
by Gerby
Moinmoin gpburth!

Du kannst die Batch-Datei cmd/CreateISOImage.cmd mit dem entsprechenden Parameter aufrufen:
Code: Select all
CreateISOImage all-x64

Alle für den Aufruf der Batch-Datei möglichen Paramter werden aufgelistet, wenn Du sie ohne Paramter aufrufst.

Gruß
Gerby

Re: ISO für x64?

PostPosted: 02.09.2011, 15:42
by boco
War es nicht so, daß ein kombinierter x64-Datenträger viel zu groß für DVD war?