It seems that you're using an outdated browser. Some things may not work as they should (or don't work at all).
We suggest you upgrade newer and better browser like: Chrome, Firefox, Internet Explorer or Opera

×
This is more of a note to myself but perhaps will help someone else too:

I just Bought blood 1 for Linux but seems you have to setup sound and graphics yourself if your not on mac or windows. On a hi-res laptop I get a huge black border round the game and no music. The game setup menu doesn't help.

Edit dosbox settings in dosboxBlood.conf

Scale the display:
# set fullresolution to your screen native resolution
fullresolution=2560x1440
output=openglnb


Fix the music
1. sudo aptitude install timidity

2. Add these settings under [midi] - the key names listed in the comments are wrong - use mididevice not device
mpu401=intelligent
mididevice=default
midiconfig=128:0

Bonus: if you get audio sync issues and your using a bluetooth speaker... its because your using a bluetooth speaker. You can adjust the offset in pavucontrol somewhat but its still kinda crappy

...Well that was my playing time for the day gone on fixing this - have lots of funs
because I didn't want to make a whole new thread related to blood on linux mine keeps crashing for some reason this is the output I get when I run it in the terminal

Running Blood: One Unit Whole Blood
Starting DOSBox
DOSBox version 0.74
Copyright 2002-2010 DOSBox Team, published under GNU GPL.
---
CONFIG:Loading primary settings from config file dosboxBlood.conf
CONFIG:Loading additional settings from config file dosboxBlood_single.conf
Memory sizes above 31 MB are NOT recommended.
Stick with the default values unless you are absolutely certain.
MIXER:Got different values from SDL: freq 44100, blocksize 1024
ALSA lib seq_hw.c:466:(snd_seq_hw_open) open /dev/snd/seq failed: No such device
ALSA:Can't open sequencer
MIDI:Opened device:none
Exit to error: DRC64:Unhandled memory reference

Done.
I proceeded to change the memsize in dosboxBlood.conf to 31 and got the same issue so im not entirely sure what to do from here
avatar
BasedDrWorm: because I didn't want to make a whole new thread related to blood on linux mine keeps crashing for some reason this is the output I get when I run it in the terminal

Running Blood: One Unit Whole Blood
Starting DOSBox
DOSBox version 0.74
Copyright 2002-2010 DOSBox Team, published under GNU GPL.
---
CONFIG:Loading primary settings from config file dosboxBlood.conf
CONFIG:Loading additional settings from config file dosboxBlood_single.conf
Memory sizes above 31 MB are NOT recommended.
Stick with the default values unless you are absolutely certain.
MIXER:Got different values from SDL: freq 44100, blocksize 1024
ALSA lib seq_hw.c:466:(snd_seq_hw_open) open /dev/snd/seq failed: No such device
ALSA:Can't open sequencer
MIDI:Opened device:none
Exit to error: DRC64:Unhandled memory reference

Done.
avatar
BasedDrWorm: I proceeded to change the memsize in dosboxBlood.conf to 31 and got the same issue so im not entirely sure what to do from here
The memory thing isn't really an issue. Everything below that seems like there may be some dependencies that DOSBox is looking for but can't find.

Which Linux distribution are you running?
avatar
BasedDrWorm: because I didn't want to make a whole new thread related to blood on linux mine keeps crashing for some reason this is the output I get when I run it in the terminal

I proceeded to change the memsize in dosboxBlood.conf to 31 and got the same issue so im not entirely sure what to do from here
avatar
DustyStyx: The memory thing isn't really an issue. Everything below that seems like there may be some dependencies that DOSBox is looking for but can't find.

Which Linux distribution are you running?
ah. Arch
avatar
DustyStyx: The memory thing isn't really an issue. Everything below that seems like there may be some dependencies that DOSBox is looking for but can't find.

Which Linux distribution are you running?
avatar
BasedDrWorm: ah. Arch
I'm sure you've found it already but it looks like the Arch wiki has a list of the dependencies required for DOSBox.
alsa-lib, gcc-libs, glu, libgl, libpng, sdl_net, sdl_sound, zlib, gendesk, mesa-libgl
So I go to play blood after I upgrade Ubuntu and mine crashes too with error:
Exit to error: DRC64:Unhandled memory reference

Seems to be related to memory size when using a dynamic core (must use <= 16)

I was able to keep the above settings by replacing vendored dosbox from GOG with newer one from ubuntu:

sudo apt install -y dosbox
cd ~/GOG\ Games/Blood\ One\ Unit\ Whole\ Blood/
mv dosbox dosbox.nouse
mkdir dosbox
ln -s /usr/bin/dosbox dosbox/dosbox

...HTH