- if you happen to have a fallout installation folder you can copy it to your Linux machine and just run it with:
export WINEPREFIX="${HOME}/falloutWinePrefix"
export WINEDLLOVERRIDES='ddraw.dll=n,b;mscoree,mshtml='
wineboot -u
wine explorer "${HOME}/path/to/falloutDir/falloutw.exe"
- if you have to install it on Linux, the process is roughly:
export WINEPREFIX="${HOME}/falloutWinePrefix"
export WINEDLLOVERRIDES='ddraw.dll=n,b;mscoree,mshtml='
export WINEARCH='win32' # installer won't run otherwise
wineboot -u
winecfg # select Windows 95!, installer won't run otherwise
wine explorer "/dev/sr0/setup.exe" # if you have the CD inserted (this is for Arch Linux, on Ubuntu it may be /media/cd... or something - can't remember)
# or: wine explorer "${HOME}/path/to/mounted/falloutIso/setup.exe" # if you mounted a fallout.iso somewhere
# the files end up in "${HOME}/falloutWinePrefix/drive_c/<path you chose in the installer>"
You can also take a look at this script for some pointers (although it does not contain the CD/iso based installation method):
http://www.nma-fallout.com/threads/...linux-with-my-fallout-wine-0-1-script.217946/
Edit: Browsing the forums, I just saw that there already exists a much more detailed guide here:
http://www.nma-fallout.com/threads/installing-fallout-fallout-fixt-on-linux-using-wine.203552/