StarCraft 2 (DVD) with Linux + Wine

27 Jul
2010

I just got my StarCraft 2 Collectors Edition.

Right after unpacking it, I inserted the DVD and was wondering “They ship a whole DVD with just 2 Files, not more than 3 MB of size?”

The thing is: The DVD has a file system called UDF which supports hidden files and directories. Unlike with normal filesystems in linux, even a ls -lah does not show these files.

1. Unmount the DVD
Make sure to unmount the DVD first.
Close every filemanager and console that has the DVD folder open.
In my Ubuntu installation, the DVD is mounted to /media/cdrom0

Do the following in a console

sudo umount -f /media/cdrom0

If it does not work, look which processes still have a lock on the directory using

sudo lsof /media/cdrom0

and kill those.

2. Mount the DVD correctly
First, get your own user Id. Most of the times its just 1000.

id

should return something like this

uid=1000(domdorn) gid=1000(domdorn) groups=4(adm),20(dialout),24(cdrom),46(plugdev),103(fuse),104(lpadmin),114(admin),118(sambashare),1000(domdorn)

Note the values of uid=… and gid=…. (here both are 1000)

Next, mount the DVD the following way:

mount /dev/cdrom /media/cdrom0 -o uid=1000,gid=1000,unhide,umask=0000

unhide makes linux show the hidden files on the dvd, uid/gid makes sure you’re allowed to read the files.

3. Start the Installer
Now try to start the installer: Open a console, change to /media/cdrom0 and start it.

cd /media/cdrom0
wine Installer.exe

If you’re lucky, it now works out of the box and you are finished.

If not (like me), it simply does nothing and we have to do the following.

4. Copy the DVD
If the Installer does not work out of the box, create a folder on your filesystem, e.g.
~/.wine/drive_c/sc2install
and copy the whole DVDs contents to this directory. After this is finished, try to start the Installer from there.


Log into your Battle.net Account.
http://www.battle.net
and Add your CD-Key to your Account. If you don’t have an Battle.net Account yet, create one, you’ll need it anyway.

After you’ve added the Game to your account, download the Windows Installer.
Start up the downloaded installer and select a folder in your wines Drive C. Let it download a few bytes and then quit the installer.
Now copy the files

Installer Tome 1.MPQE.part
Installer UI 1.MPQ.part
Installer UI 2.MPQE.part

from /media/cdrom0 to the created folder. In my case its ~/.wine/drive_c/sc2download/SC2-WingsOfLiberty-enGB-Installer

Now startup the downloaded installer again.
It should start checking the downloaded files (you might not see a difference in the progress bar, but the CPU goes up, watch with “top”).
After the file check is finished, the installer should start.

18 Responses to StarCraft 2 (DVD) with Linux + Wine

Avatar

Nick

July 28th, 2010 at 03:11

Well it was released today! I am attempting to install the copy and can not get it to mount as easily as yours. Mine mounts to

/media/SC2-L100-D1

I can get it to unmount correctly by typing:

user@computer:~$ sudo umount -f /media/SC2-L100-D1

Then attempting the mount command (I have the same uid and gid numbers).

user@computer:~$ sudo mount /dev/cdrom /media/cdrom0 -o uid=1000,gid=1000,unhide,umask=0000

I get:

mount: mount point /media/cdrom0 does not exist

Although it does. My cdrom0 is under the same alias as yours. And after that command, I can see the unmounted “SC2-L100-D1” in the drop down menu ‘places’. Hmmm…. So I tried:

user@computer:~$ sudo mount /dev/cdrom /media/SC2-L100-D1 -o uid=1000,gid=1000,unhide,umask=0000

I get:

mount: mount point /media/SC2-L100-D1 does not exist

Not sure why. Is there another way to force it to mount with those options?

Avatar

Strafe Sawdoffe

July 28th, 2010 at 06:13

Thank you so much for this! Between your help and the ‘how to’ from winehq I got SC2 working on the release day. Well done, Sir.

Avatar

Nick

July 28th, 2010 at 06:51

Silly me, I forgot my ‘/dev/cdrom’ is actually names ‘/dev/sr0’. No idea why, but there’s the problem. Thanks!

Avatar

Mark

July 28th, 2010 at 18:58

This is very, helpful, but I’m having a problem:
Like you, I had to go on to step 4, copying the DVD to the computer. But I can’t select a folder anywhere in WINE, because wine is hidden. And in the blizzard downloader, there’s no way for me to see any hidden files. Also, you can’t make wine unhidden (that I’m aware of, anyway). Any advice?

(Also, I tried just downloading it to the desktop, planning to maybe move it over to WINE later. I’m not sure if that would have worked, but regardless, it didn’t let me do that– it said Invalid File Path Chosen. Hopefully that doesn’t happen if I ever figure out how to download it to wine’s C folder…)

Avatar

Jason

July 29th, 2010 at 01:51

Hi, I am a new Ubuntu user here and this is the first game im installing on the new system.

I followed you up till the first part of step 2.

domdorn ~ $ id
uid=1000(domdorn) gid=1000(domdorn) groups=4(adm),20(dialout),24(cdrom),46(plugdev),103(fuse),104(lpadmin),114(admin),118(sambashare),1000(domdorn)

I have no idea where I was supposed to put this. The terminal has a fit with the first ( if put in there so i don’t think thats it. Can you someone give me a crash course?

Avatar

Jason

July 29th, 2010 at 02:13

Ok i assumed i have simular settings due to this OS being nearly fresh out of the box

I typed in these 2 commands and got this

jason@jason-desktop:~$ sudo umount -f /media/SC2-L100-D1
jason@jason-desktop:~$ sudo mount /dev/sr0 /media/SC2-L100-D1 -o uid=1000,gid=1000,unhide,umask=0000
mount: mount point /media/SC2-L100-D1 does not exist

I have the same thing where it is named sr0 instead of cdrom

Avatar

Duke

July 29th, 2010 at 05:25

Tried

sudo mount /dev/sr0 /media/cdrom0 -o uid=1000,gid=1000,unhide,umask=0000 and

sudo mount /dev/sr0 /media/CS2-L100-D1 -o uid=1000,gid=1000,unhide,umask=0000

and get the same error message!

Avatar

Bob Dole

July 30th, 2010 at 05:18

This worked for me

sudo mount -o remount,unhide /dev/sr0

Avatar

Bob

July 30th, 2010 at 12:40

didnt work for me I got this message

mount: special device /dev/cdrom does not exist

Avatar

Bob

July 30th, 2010 at 12:48

SOLVED:
so I took the /dev/cdrom out of the line — mount /dev/cdrom /media/cdrom0 -o uid=1000,gid=1000,unhide,umask=0000

this worked for me!

mount /media/cdrom0 -o uid=1000,gid=1000,unhide,umask=0000

read only

Avatar

Sam

July 31st, 2010 at 05:39

I copied the entire cd, but when I run the Installer I get a message dialog the just says the program Installer.exe has encountered a serious problem and is being shut down. 🙁

Avatar

KnufflPuffl

August 2nd, 2010 at 16:42

corresponding to your mount problems if /media/cdrom0 doesn’t exist. simpy create this folder by doing:

sudo mkdir /media/cdrom0

worked fine for me…

Avatar

Chepech

August 5th, 2010 at 02:32

Mr, I just wiped 2 guys in a 2vs2 match and painted your name with pylons at the center of battlefield as a token of my gratitude

=)

Avatar

Dominik Dorn

August 5th, 2010 at 09:44

@Chepech: Would love to see a screenshot of it!

Avatar

Ashwin

August 9th, 2010 at 11:14

Copied DVD contents to disk and installation initiated . At 51% i received an a Visual C++ Runtime error.
I installed vc2008 prior to that but yet no change. At 51 % i get the error.

Any solution ?

Avatar

mike

August 13th, 2010 at 22:19

when I finished install starcraft2, I meet some problem
when patching, wine crash
the following is dumped by terminal
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (2000): STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT 2000
fixme:shdocvw:PersistStreamInit_Load (0x138270)->(0x32de10)
fixme:shdocvw:OleControl_FreezeEvents (0x138270)->(1)
fixme:shdocvw:OleControl_FreezeEvents (0x138270)->(0)
fixme:advapi:ParseStringSidToSid String constant not supported: L”DU”
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (60000): STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT 60000
fixme:urlmon:URLMoniker_BindToObject use running object table
fixme:shdocvw:BindStatusCallback_OnProgress status code 1
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (60000): STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT 60000
fixme:shdocvw:BindStatusCallback_OnProgress status code 2
fixme:shdocvw:BindStatusCallback_OnProgress status code 11
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (60000): STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT 60000
fixme:msvcrt:_setmbcp trail bytes data not available for DBCS codepage 0 – assuming all bytes
fixme:system:SetProcessDPIAware stub!
fixme:dwmapi:DwmIsCompositionEnabled 0x32d348
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (60000): STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT 60000
fixme:winsock:WSAIoctl unsupported WS_IOCTL cmd (9800012c)
fixme:winsock:WSAIoctl unsupported WS_IOCTL cmd (9800012c)
fixme:iphlpapi:NotifyAddrChange (Handle 0x32be8d8, overlapped 0x32be8e0): stub
0[188ac8]: IMM32: InitKeyboardLayout, aKeyboardLayout=e0010404, sCodePage=950, sIMEProperty=00090000
fixme:shdocvw:ClOleCommandTarget_QueryStatus (0x138318)->((null) 1 0x32da80 (nil))
fixme:shdocvw:ClOleCommandTarget_QueryStatus command_0: 27, 0x0
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented cmdid 25
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented cmdid 26
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented group {000214d1-0000-0000-c000-000000000046}
fixme:mshtml:nsHttpChannelInternal_SetDocumentURI (0x34d3a80)->()
fixme:shdocvw:ClientSite_GetContainer (0x138318)->(0x32da50)
fixme:shdocvw:ClOleCommandTarget_Exec Unimplemented group {000214d1-0000-0000-c000-000000000046}
fixme:wininet:InternetLockRequestFile STUB
fixme:mshtml:nsChannel_GetRequestHeader (0x34d3a80)->(0x32c5a4 0x34d428c)
fixme:mshtml:nsChannel_GetRequestMethod (0x34d3a80)->(0x32c764)
fixme:mshtml:nsURI_GetHostPort default action not implemented
fixme:mshtml:nsChannel_GetReferrer (0x34d3a80)->(0x32cc84)
fixme:mshtml:nsChannel_IsNoStoreResponse (0x34d3a80)->(0x32cb70)
fixme:mshtml:nsChannel_IsNoCacheResponse (0x34d3a80)->(0x32cb6c)
fixme:mshtml:nsChannel_GetReferrer (0x34d3a80)->(0x32ccc4)
fixme:mshtml:nsChannel_SetResponseHeader (0x34d3a80)->(0x32cdc4 0x32cc44 1)
fixme:mshtml:nsChannel_Open (0x34ea9c0)->(0x329a04)
fixme:mshtml:nsURI_GetOriginCharset default action not implemented
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (60000): STUB
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT 60000
fixme:mshtml:nsChannel_SetRequestHeader (0x3505f68)->(0x32c3c4 0x3458e0c 0)
fixme:mshtml:nsHttpChannelInternal_SetDocumentURI (0x3505f68)->()
fixme:mshtml:nsChannel_SetReferrer (0x3505f68)->(0x34d4758)
fixme:mshtml:nsChannel_SetResponseHeader (0x34d3a80)->(0x32d144 0x32cfc4 1)
fixme:resource:GetGuiResources (0xffffffff,0): stub
wine: Unhandled page fault on write access to 0x0a001100 at address 0x3505ad9 (thread 0029), starting debugger…
Unhandled exception: page fault on write access to 0x0a001100 in 32-bit code (0x03505ad9).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:0033 GS:003b
EIP:03505ad9 ESP:00327f2c EBP:0032902c EFLAGS:00210206( R- — I – -P- )
EAX:0a001100 EBX:034dba20 ECX:00110064 EDX:001561e0
ESI:02a70278 EDI:0032bcd4
Stack dump:
0x00327f2c: 00327fbc 682a8b0a 682cd3c0 00041130
0x00327f3c: 7cfc7ef0 7cfb8d30 00000003 7ce1bd10
0x00327f4c: 681e5f9c 681e5f9c 00000028 682cd3cc
0x00327f5c: 00000003 68cb9ff4 7ce1b330 7cfc7ed8
0x00327f6c: 00327fbc 68c9356a 00000000 00000014
0x00327f7c: 0032800c 682a8b0a 682cd3c0 00041148
Backtrace:
=>0 0x03505ad9 (0x0032902c)
1 0x023bd962 in xul (+0xb3d961) (0x0032905c)
2 0x023bd784 in xul (+0xb3d783) (0x003290ac)
3 0x023be495 in xul (+0xb3e494) (0x003290dc)
4 0x01ade5e6 in xul (+0x25e5e5) (0x0032911c)
5 0x01ade569 in xul (+0x25e568) (0x0032913c)
6 0x01b6caa3 in xul (+0x2ecaa2) (0x0032917c)
7 0x01b6d667 in xul (+0x2ed666) (0x0032a46c)
8 0x01b6c155 in xul (+0x2ec154) (0x0032b4bc)
9 0x01b6bd67 in xul (+0x2ebd66) (0x0032b82c)
10 0x01b6e51c in xul (+0x2ee51b) (0x0032b8bc)
11 0x01b76a15 in xul (+0x2f6a14) (0x0032ba2c)
12 0x01b76f73 in xul (+0x2f6f72) (0x0032ba5c)
13 0x01b02c7a in xul (+0x282c79) (0x0032badc)
14 0x01adeff1 in xul (+0x25eff0) (0x0032bb7c)
15 0x01b7f39f in xul (+0x2ff39e) (0x0032bbcc)
16 0x01b7f4a2 in xul (+0x2ff4a1) (0x0032bbec)
17 0x01b21abd in xul (+0x2a1abc) (0x0032bc1c)
18 0x01b17d6e in xul (+0x297d6d) (0x0032bc4c)
19 0x01b21519 in xul (+0x2a1518) (0x0032bcec)
20 0x01b3da9b in xul (+0x2bda9a) (0x0032bdbc)
21 0x01b3b122 in xul (+0x2bb121) (0x0032bdec)
22 0x01b3aee9 in xul (+0x2baee8) (0x0032be2c)
23 0x01b0ce81 in xul (+0x28ce80) (0x0032bfdc)
24 0x01b11535 in xul (+0x291534) (0x0032c11c)
25 0x01b1109f in xul (+0x29109e) (0x0032c1ec)
26 0x0260cfd0 in xul (+0xd8cfcf) (0x0032c21c)
27 0x01b4a274 in xul (+0x2ca273) (0x0032c3ac)
28 0x01b08aa8 in xul (+0x288aa7) (0x0032c43c)
29 0x01b08656 in xul (+0x288655) (0x0032c4fc)
30 0x01b082d2 in xul (+0x2882d1) (0x0032c63c)
31 0x01b06381 in xul (+0x286380) (0x0032c73c)
32 0x01b051ff in xul (+0x2851fe) (0x0032c86c)
33 0x01b03578 in xul (+0x283577) (0x0032ca1c)
34 0x01b0fa80 in xul (+0x28fa7f) (0x0032ca6c)
35 0x01b077fe in xul (+0x2877fd) (0x0032ccfc)
36 0x01b06130 in xul (+0x28612f) (0x0032cdfc)
37 0x01b051ff in xul (+0x2851fe) (0x0032cf2c)
38 0x01b03578 in xul (+0x283577) (0x0032d0dc)
39 0x01b0fa80 in xul (+0x28fa7f) (0x0032d12c)
40 0x01b077fe in xul (+0x2877fd) (0x0032d3bc)
41 0x01b06130 in xul (+0x28612f) (0x0032d4bc)
42 0x01b051ff in xul (+0x2851fe) (0x0032d5ec)
43 0x01b03578 in xul (+0x283577) (0x0032d79c)
44 0x01b17e92 in xul (+0x297e91) (0x0032d80c)
45 0x01b3a3aa in xul (+0x2ba3a9) (0x0032d9cc)
46 0x01b17e92 in xul (+0x297e91) (0x0032da3c)
47 0x01b31ff4 in xul (+0x2b1ff3) (0x0032db8c)
48 0x01b32200 in xul (+0x2b21ff) (0x0032dc5c)
49 0x01b329e6 in xul (+0x2b29e5) (0x0032dd6c)
50 0x01b17e92 in xul (+0x297e91) (0x0032dddc)
51 0x01b7b9b1 in xul (+0x2fb9b0) (0x0032df3c)
52 0x01af9a85 in xul (+0x279a84) (0x0032e0dc)
53 0x01af9d0e in xul (+0x279d0d) (0x0032e12c)
54 0x01af371a in xul (+0x273719) (0x0032e1ac)
55 0x01af9434 in xul (+0x279433) (0x0032e1ec)
56 0x024aa675 in xul (+0xc2a674) (0x0032e26c)
57 0x02463591 in xul (+0xbe3590) (0x0032e29c)
58 0x024aa41f in xul (+0xc2a41e) (0x0032e2dc)
59 0x024b89ff in xul (+0xc389fe) (0x0032e2fc)
60 0x024b89cb in xul (+0xc389ca) (0x0032e31c)
61 0x024af834 in xul (+0xc2f833) (0x0032e33c)
62 0x024aa675 in xul (+0xc2a674) (0x0032e3bc)
63 0x02463591 in xul (+0xbe3590) (0x0032e3ec)
64 0x024aa41f in xul (+0xc2a41e) (0x0032e42c)
65 0x024b89ff in xul (+0xc389fe) (0x0032e44c)
66 0x024b89cb in xul (+0xc389ca) (0x0032e46c)
67 0x024af834 in xul (+0xc2f833) (0x0032e48c)
68 0x024aa675 in xul (+0xc2a674) (0x0032e50c)
69 0x024634e4 in xul (+0xbe34e3) (0x0032e53c)
70 0x0240b086 in xul (+0xb8b085) (0x0032e56c)
71 0x023d77ce in xul (+0xb577cd) (0x0032e58c)
72 0x683b6afa WINPROC_wrapper+0x19() in user32 (0x0032e5bc)
73 0x683b85fc in user32 (+0x985fb) (0x0032e60c)
74 0x683b874a CallWindowProcW+0x59() in user32 (0x0032e65c)
75 0x004a2e8b in starcraftii (+0xa2e8a) (0x0032e6d4)
76 0x683b6afa WINPROC_wrapper+0x19() in user32 (0x0032e704)
77 0x683b85fc in user32 (+0x985fb) (0x0032e754)
78 0x683b995f in user32 (+0x9995e) (0x0032e7a4)
79 0x6837c3ae DispatchMessageW+0x9d() in user32 (0x0032e894)
80 0x004a6b25 in starcraftii (+0xa6b24) (0x6838f020)
0x03505ad9: subl $1869903201,%eax
Modules:
Module Address Debug info Name (129 modules)
PE 400000- 6ad000 Export starcraftii
PE 1880000- 2b58000 Export xul
PE 2b60000- 2c7b000 Deferred js3250
PE 2c80000- 2cbb000 Deferred nspr4
PE 2cc0000- 2d8b000 Deferred nss3
PE 2d90000- 2da5000 Deferred nssutil3
PE 2db0000- 2dba000 Deferred plds4
PE 2dc0000- 2dca000 Deferred plc4
PE 2dd0000- 2df1000 Deferred smime3
PE 2e00000- 2e7d000 Deferred sqlite3
PE 2e80000- 2eaa000 Deferred ssl3
PE 10000000-10008000 Deferred xpcom
ELF 20000000-2005a000 Deferred riched20
\-PE 20010000-2005a000 \ riched20
ELF 2005a000-2005e000 Deferred libnss_mdns4_minimal.so.2
ELF 2005e000-20064000 Deferred libnss_dns.so.2
ELF 20064000-2007f000 Deferred wsock32
\-PE 20070000-2007f000 \ wsock32
ELF 2007f000-200a3000 Deferred usp10
\-PE 20090000-200a3000 \ usp10
ELF 200a3000-200b8000 Deferred t2embed
\-PE 200b0000-200b8000 \ t2embed
ELF 2608c000-260e9000 Deferred urlmon
\-PE 260a0000-260e9000 \ urlmon
ELF 33ebe000-33f40000 Deferred msvcrt
\-PE 33ed0000-33f40000 \ msvcrt
ELF 3429c000-3432d000 Deferred winmm
\-PE 342a0000-3432d000 \ winmm
ELF 41b2b000-41b40000 Deferred dwmapi
\-PE 41b30000-41b40000 \ dwmapi
ELF 478cd000-479a3000 Deferred mshtml
\-PE 478e0000-479a3000 \ mshtml
ELF 63b4b000-63b91000 Deferred shdocvw
\-PE 63b50000-63b91000 \ shdocvw
ELF 68000000-6801d000 Deferred ld-linux.so.2
ELF 6801d000-6815d000 Deferred libwine.so.1
ELF 6815d000-68176000 Deferred libpthread.so.0
ELF 68176000-682d0000 Deferred libc.so.6
ELF 682d0000-682d4000 Deferred libdl.so.2
ELF 682d4000-682dc000 Deferred libnss_compat.so.2
ELF 682dc000-682f3000 Deferred libnsl.so.1
ELF 682f3000-682fd000 Deferred libnss_nis.so.2
ELF 682fd000-68309000 Deferred libnss_files.so.2
ELF 68309000-6843b000 Export user32
\-PE 68320000-6843b000 \ user32
ELF 6843b000-684c6000 Deferred gdi32
\-PE 68450000-684c6000 \ gdi32
ELF 684c6000-684da000 Deferred msimg32
\-PE 684d0000-684da000 \ msimg32
ELF 684da000-68591000 Deferred comdlg32
\-PE 684e0000-68591000 \ comdlg32
ELF 68591000-68769000 Deferred shell32
\-PE 685a0000-68769000 \ shell32
ELF 68769000-687cb000 Deferred shlwapi
\-PE 68780000-687cb000 \ shlwapi
ELF 687cb000-688b6000 Deferred comctl32
\-PE 687d0000-688b6000 \ comctl32
ELF 688b6000-688ee000 Deferred winspool
\-PE 688c0000-688ee000 \ winspool
ELF 688ee000-6891d000 Deferred oledlg
\-PE 688f0000-6891d000 \ oledlg
ELF 6891d000-68a1d000 Deferred ole32
\-PE 68940000-68a1d000 \ ole32
ELF 68a1d000-68b06000 Deferred oleaut32
\-PE 68a30000-68b06000 \ oleaut32
ELF 68b06000-68b33000 Deferred ws2_32
\-PE 68b10000-68b33000 \ ws2_32
ELF 68b33000-68b8f000 Deferred wininet
\-PE 68b40000-68b8f000 \ wininet
ELF 68b8f000-68bb3000 Deferred mpr
\-PE 68ba0000-68bb3000 \ mpr
ELF 68bb3000-68bcc000 Deferred version
\-PE 68bc0000-68bcc000 \ version
ELF 68bcc000-68be0000 Deferred lz32
\-PE 68bd0000-68be0000 \ lz32
ELF 68be0000-68c01000 Deferred iphlpapi
\-PE 68bf0000-68c01000 \ iphlpapi
ELF 68c01000-68c15000 Deferred libresolv.so.2
ELF 68c15000-68c8b000 Deferred libfreetype.so.6
ELF 68c8b000-68cbb000 Deferred libfontconfig.so.1
ELF 68cbb000-68ce2000 Deferred libexpat.so.1
ELF 68ce2000-68d85000 Deferred winex11
\-PE 68cf0000-68d85000 \ winex11
ELF 68d85000-68d8e000 Deferred libsm.so.6
ELF 68d8e000-68da7000 Deferred libice.so.6
ELF 68da7000-68db7000 Deferred libxext.so.6
ELF 68db7000-68ed4000 Deferred libx11.so.6
ELF 68ed4000-68ed9000 Deferred libuuid.so.1
ELF 68ed9000-68edd000 Deferred libxau.so.6
ELF 68edd000-68ee3000 Deferred libxdmcp.so.6
ELF 68ee3000-68f05000 Deferred imm32
\-PE 68ef0000-68f05000 \ imm32
ELF 68f05000-68f09000 Deferred libxinerama.so.1
ELF 68f09000-68f0f000 Deferred libxxf86vm.so.1
ELF 68f0f000-68f13000 Deferred libxcomposite.so.1
ELF 68f13000-68f19000 Deferred libxfixes.so.3
ELF 68f19000-68f23000 Deferred libxcursor.so.1
ELF 68f23000-68f57000 Deferred uxtheme
\-PE 68f30000-68f57000 \ uxtheme
ELF 68f57000-68f9e000 Deferred libcups.so.2
ELF 68f9e000-68fcd000 Deferred libgssapi_krb5.so.2
ELF 68fcd000-69068000 Deferred libgnutls.so.26
ELF 69068000-69074000 Deferred libavahi-common.so.3
ELF 69074000-69085000 Deferred libavahi-client.so.3
ELF 69085000-69136000 Deferred libkrb5.so.3
ELF 69136000-6915a000 Deferred libk5crypto.so.3
ELF 6915a000-6915e000 Deferred libcom_err.so.2
ELF 6915e000-69166000 Deferred libkrb5support.so.0
ELF 69166000-6916a000 Deferred libkeyutils.so.1
ELF 6916a000-6917b000 Deferred libtasn1.so.3
ELF 6917b000-691ee000 Deferred libgcrypt.so.11
ELF 691ee000-69227000 Deferred libdbus-1.so.3
ELF 69227000-69230000 Deferred librt.so.1
ELF 69230000-69235000 Deferred libgpg-error.so.0
ELF 6a24a000-6a252000 Deferred libxrandr.so.2
ELF 6a8dc000-6a937000 Deferred advapi32
\-PE 6a8f0000-6a937000 \ advapi32
ELF 6dc62000-6dc81000 Deferred libgcc_s.so.1
ELF 6fdc5000-6fdeb000 Deferred libm.so.6
ELF 6fe7a000-6fe84000 Deferred libxrender.so.1
ELF 77fde000-77ff8000 Deferred libxcb.so.1
ELF 7a78f000-7a7a4000 Deferred libz.so.1
ELF 7b800000-7b972000 Deferred kernel32
\-PE 7b810000-7b972000 \ kernel32
ELF 7bc00000-7bcb8000 Deferred ntdll
\-PE 7bc10000-7bcb8000 \ ntdll
ELF 7bf00000-7bf04000 Deferred
ELF 7c2f4000-7c369000 Deferred rpcrt4
\-PE 7c300000-7c369000 \ rpcrt4
Threads:
process tid prio (all id:s are in hex)
00000008 StarCraft_2_TW_zh-TW.exe
0000002e 0
0000002d 0
0000002c 0
00000027 0
00000025 0
00000024 0
00000023 0
00000021 0
00000020 0
0000001c 0
0000001b 0
00000009 0
0000000e services.exe
00000043 0
0000004a 0
00000049 0
00000026 0
00000014 0
00000010 0
0000000f 0
00000011 winedevice.exe
00000018 0
00000017 0
00000013 0
00000012 0
00000019 explorer.exe
0000001a 0
00000038 (D) C:\Program_Files\StarCraftII\StarCraftII.exe
0000003e 0
00000044 0
0000000b 0
0000003c 0
0000001f 0
00000048 0
00000030 0
00000034 0
00000022 0
00000032 0
00000033 0
00000037 0
0000002b 0
00000028 0
00000045 0
0000000c 0
00000029 0 0 0x03505ad9 (0x0032902c)
1 0x023bd962 in xul (+0xb3d961) (0x0032905c)
2 0x023bd784 in xul (+0xb3d783) (0x003290ac)
3 0x023be495 in xul (+0xb3e494) (0x003290dc)
4 0x01ade5e6 in xul (+0x25e5e5) (0x0032911c)
5 0x01ade569 in xul (+0x25e568) (0x0032913c)
6 0x01b6caa3 in xul (+0x2ecaa2) (0x0032917c)
7 0x01b6d667 in xul (+0x2ed666) (0x0032a46c)
8 0x01b6c155 in xul (+0x2ec154) (0x0032b4bc)
9 0x01b6bd67 in xul (+0x2ebd66) (0x0032b82c)
10 0x01b6e51c in xul (+0x2ee51b) (0x0032b8bc)
11 0x01b76a15 in xul (+0x2f6a14) (0x0032ba2c)
12 0x01b76f73 in xul (+0x2f6f72) (0x0032ba5c)
13 0x01b02c7a in xul (+0x282c79) (0x0032badc)
14 0x01adeff1 in xul (+0x25eff0) (0x0032bb7c)
15 0x01b7f39f in xul (+0x2ff39e) (0x0032bbcc)
16 0x01b7f4a2 in xul (+0x2ff4a1) (0x0032bbec)
17 0x01b21abd in xul (+0x2a1abc) (0x0032bc1c)
18 0x01b17d6e in xul (+0x297d6d) (0x0032bc4c)
19 0x01b21519 in xul (+0x2a1518) (0x0032bcec)
20 0x01b3da9b in xul (+0x2bda9a) (0x0032bdbc)
21 0x01b3b122 in xul (+0x2bb121) (0x0032bdec)
22 0x01b3aee9 in xul (+0x2baee8) (0x0032be2c)
23 0x01b0ce81 in xul (+0x28ce80) (0x0032bfdc)
24 0x01b11535 in xul (+0x291534) (0x0032c11c)
25 0x01b1109f in xul (+0x29109e) (0x0032c1ec)
26 0x0260cfd0 in xul (+0xd8cfcf) (0x0032c21c)
27 0x01b4a274 in xul (+0x2ca273) (0x0032c3ac)
28 0x01b08aa8 in xul (+0x288aa7) (0x0032c43c)
29 0x01b08656 in xul (+0x288655) (0x0032c4fc)
30 0x01b082d2 in xul (+0x2882d1) (0x0032c63c)
31 0x01b06381 in xul (+0x286380) (0x0032c73c)
32 0x01b051ff in xul (+0x2851fe) (0x0032c86c)
33 0x01b03578 in xul (+0x283577) (0x0032ca1c)
34 0x01b0fa80 in xul (+0x28fa7f) (0x0032ca6c)
35 0x01b077fe in xul (+0x2877fd) (0x0032ccfc)
36 0x01b06130 in xul (+0x28612f) (0x0032cdfc)
37 0x01b051ff in xul (+0x2851fe) (0x0032cf2c)
38 0x01b03578 in xul (+0x283577) (0x0032d0dc)
39 0x01b0fa80 in xul (+0x28fa7f) (0x0032d12c)
40 0x01b077fe in xul (+0x2877fd) (0x0032d3bc)
41 0x01b06130 in xul (+0x28612f) (0x0032d4bc)
42 0x01b051ff in xul (+0x2851fe) (0x0032d5ec)
43 0x01b03578 in xul (+0x283577) (0x0032d79c)
44 0x01b17e92 in xul (+0x297e91) (0x0032d80c)
45 0x01b3a3aa in xul (+0x2ba3a9) (0x0032d9cc)
46 0x01b17e92 in xul (+0x297e91) (0x0032da3c)
47 0x01b31ff4 in xul (+0x2b1ff3) (0x0032db8c)
48 0x01b32200 in xul (+0x2b21ff) (0x0032dc5c)
49 0x01b329e6 in xul (+0x2b29e5) (0x0032dd6c)
50 0x01b17e92 in xul (+0x297e91) (0x0032dddc)
51 0x01b7b9b1 in xul (+0x2fb9b0) (0x0032df3c)
52 0x01af9a85 in xul (+0x279a84) (0x0032e0dc)
53 0x01af9d0e in xul (+0x279d0d) (0x0032e12c)
54 0x01af371a in xul (+0x273719) (0x0032e1ac)
55 0x01af9434 in xul (+0x279433) (0x0032e1ec)
56 0x024aa675 in xul (+0xc2a674) (0x0032e26c)
57 0x02463591 in xul (+0xbe3590) (0x0032e29c)
58 0x024aa41f in xul (+0xc2a41e) (0x0032e2dc)
59 0x024b89ff in xul (+0xc389fe) (0x0032e2fc)
60 0x024b89cb in xul (+0xc389ca) (0x0032e31c)
61 0x024af834 in xul (+0xc2f833) (0x0032e33c)
62 0x024aa675 in xul (+0xc2a674) (0x0032e3bc)
63 0x02463591 in xul (+0xbe3590) (0x0032e3ec)
64 0x024aa41f in xul (+0xc2a41e) (0x0032e42c)
65 0x024b89ff in xul (+0xc389fe) (0x0032e44c)
66 0x024b89cb in xul (+0xc389ca) (0x0032e46c)
67 0x024af834 in xul (+0xc2f833) (0x0032e48c)
68 0x024aa675 in xul (+0xc2a674) (0x0032e50c)
69 0x024634e4 in xul (+0xbe34e3) (0x0032e53c)
70 0x0240b086 in xul (+0xb8b085) (0x0032e56c)
71 0x023d77ce in xul (+0xb577cd) (0x0032e58c)
72 0x683b6afa WINPROC_wrapper+0x19() in user32 (0x0032e5bc)
73 0x683b85fc in user32 (+0x985fb) (0x0032e60c)
74 0x683b874a CallWindowProcW+0x59() in user32 (0x0032e65c)
75 0x004a2e8b in starcraftii (+0xa2e8a) (0x0032e6d4)
76 0x683b6afa WINPROC_wrapper+0x19() in user32 (0x0032e704)
77 0x683b85fc in user32 (+0x985fb) (0x0032e754)
78 0x683b995f in user32 (+0x9995e) (0x0032e7a4)
79 0x6837c3ae DispatchMessageW+0x9d() in user32 (0x0032e894)
80 0x004a6b25 in starcraftii (+0xa6b24) (0x6838f020)
can you give me some advice of it, tks
PS sorry for my poor English

Avatar

mynameisntimportant

August 21st, 2010 at 16:24

hello can you modify the first commandbox in “2. Mount the DVD correctly” so it is just the command and not the prompt?
and put the answer outside of the box?

Avatar

max

February 26th, 2011 at 15:43

this is what i keep getting and i need to know what im doing wrong thanks

mount: block device /dev/sr0 is write-protected, mounting read-only
mount: wrong fs type, bad option, bad superblock on /dev/sr0,
missing codepage or helper program, or other error
In some cases useful info is found in syslog – try
dmesg | tail or so

Comment Form

top