DOOM + DOOM II
Недостаточно оценок
Brutal Doom on Linux, the easy way
От eMakks マックス
This guide tries to show step by step how to setup Brutal Doom on Linux without suffering all the obscure nonsense some articles tell you to do (such as compilling a whole doom engine fork from github... seriously?).

You'll end up having a Steam library entry, popping a short list of wad files to load, and will even enjoy a brutal experience with Steam Overlay enabled.

This has been tested on Ubuntu 12.10 aka Utopic Unicorn (but should be relevant to any Linux distribution).
   
Наградить
В избранное
В избранном
Удалить
How to setup Brutal Doom on Linux (Ubuntu in particular)
You'll basically only have to do the following:

  1. Install Zandronum
  2. Get your WAD files, Brutal Doom and its Metal Soundtrack
  3. Create a script file, link it with a desktop file and add it to Steam
  4. ???
  5. Profit!

Install Zandronum (or GzDoom)

This is the trickiest part of that guide, as Zandronum may not be in your distribution's default repositories. Zandronum should be packaged on a specific gaming repository however.

Installing Zandronum on Ubuntu (or other Debian-based distributions) is pretty simple, as you only have to add a repository, as described here:
http://wiki.zandronum.com/Install_Zandronum_on_Ubuntu#Installation_with_Packages

sudo apt-add-repository 'deb http://debian.drdteam.org/ stable multiverse' wget -O - http://debian.drdteam.org/drdteam.gpg | sudo apt-key add -

sudo apt-get update sudo apt-get install zandronum

Getting game files


Now, time to setup

  • Create some directories and empty files, by executing in a terminal:
    mkdir -p ~/.bin ~/.local/share/zandronum touch ~/.bin/brutal_doom.sh `xdg-user-dir DESKTOP`/Brutal_Doom.desktop chmod +x ~/.bin/brutal_doom.sh `xdg-user-dir DESKTOP`/Brutal_Doom.desktop

  • Please note that you'll "frequently" have to access your .bin and .local directories. As they're hidden, you may have issues finding them and might need to display hidden files in your file manager, or run a simple command that'll open a new file manager window for you. This may be quite useful if you're willing to transfer files from multiple (or remote) locations:
    xdg-open ~/.local/share/zandronum && xdg-open ~/.bin

  • Edit ~/.bin/brutal_doom.sh using your favorite text editor, write the following and sve it:
    #!/bin/sh cd $HOME/.local/share/zandronum zandronum -file DoomMetalVol4.wad brutal19.pk3

  • Copy your WAD files, brutaldoom19.pk3 and DoomMetalVol4.wad to ~/.local/share/zandronum.

  • Hang on, you're almost done! Edit your Brutal_Doom.desktop file (which should be located... on your desktop!) using a text editor, copy the following (don't forget to replace USERNAME with your Unix account name!):
    [Desktop Entry] Version=1.0 Exec=/home/USERNAME/.bin/brutal_doom.sh Name=Brutal Doom GenericName=Brutal Doom Encoding=UTF-8 Terminal=true Type=Application Categories=Game;

  • You're done. You may want to rename your desktop file and find a nice icon for it, but you really just have to add it to your Steam Library now (you should see it listed directly).

  • Enjoy.
Комментариев: 6
25 ноя. 2024 г. в 10:04 
video please?
e-girl (male) 22 сен. 2024 г. в 20:16 
do you know if this will also work to get myhouse working? all the tutorials i could find said to run the file with gzdoom or drag it into the window but neither worked
ymelkonyan 21 сен. 2024 г. в 9:03 
The real problem is you are using Linux
LateNightD'Light 19 авг. 2022 г. в 7:19 
Any way to get Brutalizer to run on Linux/Steam Deck? A very useful, expandable, launcher with many options and WADS right out of the gate.

https://www.moddb.com/mods/brutal-doom/downloads/doom-brutalizer-starter-pack-with-launcher
cringeybabey 31 июл. 2021 г. в 22:13 
FYI if anyone else comes to this in the future, in brutal_doom.sh you should change "brutal19.pk3" to "brutalv21.pk3" I missed the 'v' at first and couldn't figure out why it wasn't working.
Easy 16 мар. 2017 г. в 20:16 
Worked like a charm, thank you.