You are not logged in.
Pages: 1
Hi,
I've installed Always Sometimes Monsters on Steam but it won't start. I did some Googling and found a dependencies file. I modded it to make it Archy:
echo "Installing dependences for the application..."
sudo pacman -S libsdl2-dev libsdl2-mixer-2.0-0 libopenal-dev libsdl-mixer1.2 mono-complete;
Unfortunately Arch doesn't recognise the dependencies:
Installing dependences for the application...
error: target not found: libsdl2-dev
error: target not found: libsdl2-mixer-2.0-0
error: target not found: libopenal-dev
error: target not found: libsdl-mixer1.2
error: target not found: mono-complete
./dependences.sh: line 2: $'\r': command not found
Any ideas what I can do?
Cheers
Picto
Offline
./dependences.sh: line 2: $'\r': command not foundYour script is saved in windows format (CRLF), resave it in unix format (LF) and try to run it again.
If you modified a script meant for another distribution, then the package names are different. Use
pacman -Ss searchtermto search the repositories (or search on the main site). For example, libsdl2-mixer-2.0-0 is sdl2-mixer on arch.
Also, please use code tags when posting code/console output: [code']output[/code'] (minus the ')
[ Arch x86_64 | linux | Framework 13 | AMD Ryzen™ 5 7640U | 32GB RAM | KDE Plasma Wayland ]
Offline
Thanks for your help! OK so I found most of the dependencie in Arch:
dl2_mixer 2.0.1-1 [installed]
openal 1.17.2-2 [installed]
mono 4.4.0.40-2 [installed]
sdl_mixer 1.2.12-4 [installed]But it still won't run. The only one I can't find is libsdl2-dev any ideas?
Has anyone else managed to get this to run?
Cheers
Picto
Offline
The only one I can't find is libsdl2-dev any ideas?
$ pkgfile -ri libsdl2
extra/sdl2Try installing the sdl2 package. Arch does not split the libraries into separate -dev packages like Debian and Ubuntu.
Last edited by 2ManyDogs (2016-07-01 23:30:11)
Offline
What message(s) do you get when you try to run the game from a terminal?
Sakura:-
Mobo: MSI MAG X570S TORPEDO MAX // Processor: AMD Ryzen 9 5950X @4.9GHz // GFX: AMD Radeon RX 5700 XT // RAM: 32GB (4x 8GB) Corsair DDR4 (@ 3000MHz) // Storage: 1x 3TB HDD, 6x 1TB SSD, 2x 120GB SSD, 1x 275GB M2 SSD
Making lemonade from lemons since 2015.
Offline
I'd usually run it through Steam so not sure if I'm doing it right from the command line but here's what I see if I run the .sh:
connect(2) call to /dev/shm/jack-1000/default/jack_0 failed (err=No such file or directory)
attempt to connect to server failed
Unhandled Exception:
OutOfMemoryException
AL lib: (EE) alc_cleanup: 1 device not closed
./run.sh: line 1: $'\r': command not foundAnd here's what I get if I run the .exe:
connect(2) call to /dev/shm/jack-1000/default/jack_0 failed (err=No such file or directory)
attempt to connect to server failed
Unhandled Exception:
OutOfMemoryException
AL lib: (EE) alc_cleanup: 1 device not closedOffline
Pages: 1