The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Help with DosBox

    Discussion in 'Apple and Mac OS X' started by crimsonswallow, Oct 14, 2007.

  1. crimsonswallow

    crimsonswallow Notebook Geek

    Reputations:
    6
    Messages:
    97
    Likes Received:
    0
    Trophy Points:
    15
    So I was poking around for something else and I stumbled on DosBox for Mac.

    Unfortunately, I haven't been able to get it to work. I don't understand Mac systems at all, and now I've suddenly got all excited that I could play my old Dos games on the Mac side of my comp.

    Any suggestions?
     
  2. cashmonee

    cashmonee Notebook Virtuoso NBR Reviewer

    Reputations:
    787
    Messages:
    2,859
    Likes Received:
    0
    Trophy Points:
    55
  3. system_159

    system_159 Notebook Deity

    Reputations:
    363
    Messages:
    794
    Likes Received:
    0
    Trophy Points:
    30
    good link cash.

    crimson, the link describes the sequence of commands that you should enter into the terminal in order for it to work. Just open up terminal /apps/utilites/terminal.app and type line for line:
    Code:
    su
    cd /usr
    mkdir src
    wget http://www.libsdl.org/release/SDL-1.2.6.tar.gz
    gunzip SDL-1.2.6.tar.gz; tar -xf SDL-1.2.6.tar
    cd SDL-1.2.6
    ./configure; make; make install;
    cd ../
    wget http://heanet.dl.sourceforge.net/sourceforge/dosbox/dosbox-0.60.tar.gz
    gunzip dosbox-0.60.tar.gz; tar -xf dosbox-0.60.tar
    cd dosbox-0.60
    ./configure; make
    cd src/
    chmod 777 dosbox
    exit
    cp dosbox ~/Desktop/