Find the answer to your Linux question:
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
i've seen plenty of similar threads but none really let me play starcraft. i've installed it and i can get to where it says play starcraft and preview and all ...
  1. #1
    Just Joined! teheternalnewb's Avatar
    Join Date
    Jul 2006
    Location
    Arizona
    Posts
    7

    Unhappy possibly spam about starcraft

    i've seen plenty of similar threads but none really let me play starcraft. i've installed it and i can get to where it says play starcraft and preview and all the other good stuff but when i hit play it says there isnt a cd in the cdrom. i no my cdrom is hdc so what do i do any help would be severely appreciated(except for illegal stuff.)

  2. #2
    Linux Engineer Javasnob's Avatar
    Join Date
    Jul 2005
    Location
    Wisconsin
    Posts
    942
    Did you add /mnt/cdrom (or wherever you mount your CD drive) to the list of wine drives? You can do this through winecfg or by hand like this:
    Code:
    cd ~/.wine/dosdevices/
    ln -s /mnt/cdrom d:
    Once again, assuming you mount /dev/hdc on /mnt/cdrom.
    Flies of a particular kind, i.e. time-flies, are fond of an arrow.

    Registered Linux User #408794

  3. #3
    Just Joined! teheternalnewb's Avatar
    Join Date
    Jul 2006
    Location
    Arizona
    Posts
    7
    thats probably right but it won't give me permission to do so :drown: any more ideas?

  4. #4
    Linux Engineer Javasnob's Avatar
    Join Date
    Jul 2005
    Location
    Wisconsin
    Posts
    942
    What do you mean, it won't give you permission? Which command are you unable to run?
    Flies of a particular kind, i.e. time-flies, are fond of an arrow.

    Registered Linux User #408794

  5. #5
    Just Joined! teheternalnewb's Avatar
    Join Date
    Jul 2006
    Location
    Arizona
    Posts
    7
    i do the
    ln -s /mnt/cdrom d:
    command and it either says permission denied or doesnt do anything

  6. #6
    Linux Engineer Javasnob's Avatar
    Join Date
    Jul 2005
    Location
    Wisconsin
    Posts
    942
    Are you in the ~/.wine/dosdevices directory? And by "it doesn't do anything", do you mean it prints nothing out? If so, then it worked. Try ls ~/.wine/dosdevices and see if d: comes up.
    Flies of a particular kind, i.e. time-flies, are fond of an arrow.

    Registered Linux User #408794

  7. #7
    Just Joined! teheternalnewb's Avatar
    Join Date
    Jul 2006
    Location
    Arizona
    Posts
    7
    it only says"a: c: cdrom cdrom: cdrom0 d: e: h:" it still says insert the cd

  8. #8
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by teheternalnewb
    it only says"a: c: cdrom cdrom: cdrom0 d: e: h:" it still says insert the cd
    That's not very clear. Can you post the output in a more readable manner?

    Also, please post the content of /etc/fstab :
    Code:
    cat /etc/fstab
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

  9. #9
    Just Joined! teheternalnewb's Avatar
    Join Date
    Jul 2006
    Location
    Arizona
    Posts
    7
    okay here goes... the result of
    Code:
     ls ~/.wine/dosdevices
    \ is a: c: cdrom cdrom: cdrom0 d: e: h:

    i can still get starcraft into where i should start to play but it still says the cd is not in

    and
    Code:
     cat /etc/fstab
    is
    # <file system> <mount point> <type> <options> <dump> <pass>
    proc /proc proc defaults 0 0
    /dev/hda1 / ext3 defaults,errors=remount-ro 0 1
    /dev/hda5 none swap sw 0 0
    /dev/hdc /media/cdrom0 udf,iso9660 ro,user,noauto 0 0
    /dev/fd0 /media/floppy0 auto rw,user,noauto 0 0

  10. #10
    Linux Guru antidrugue's Avatar
    Join Date
    Oct 2005
    Location
    Montreal, Canada
    Posts
    3,212
    Quote Originally Posted by teheternalnewb
    /dev/hdc /media/cdrom0 udf,iso9660 ro,user,noauto 0 0
    Ok then.

    As a user (not root), do :
    Code:
    cd ~/.wine/dosdevices/
    rm d:
    ln -s /media/cdrom0 d:
    Very that the symlink is ok with :
    Code:
    ls -l ~/.wine/dosdevices/
    "To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."

    -Bruce Lee

Page 1 of 2 1 2 LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •