[GH-ISSUE #4021] [BUG] Arma 3 server works unstable on Ubuntu 20.04 #2590

Open
opened 2026-02-27 03:03:59 +03:00 by kerem · 4 comments
Owner

Originally created by @nordost8 on GitHub (Nov 1, 2022).
Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/4021

Hello!
I have problem with arma3 on my Ubuntu 20.04.
I have been looking for help on various Arma3 forums for a long time but still have not received an answer. Mods on the server do not appear in the list of required server mod, as well as voice chat. And the problem is not in the Arma server, not in the server configuration files.

First problem:
Mods do not appear in the list of required server mods in the server browser (@ace, @cba_a3). Players can log in without these mods and play with intermittent errors. This is silly. I expected and it should have prompted them to download the necessary mods.

At first I noticed that my mods are not displayed in the list of mods on the server. People from different Arma 3 communities tried to help me and I have already demonstrated many times that I have all the mods correctly located in the server folder and correctly specified in the launch command:

./arma3server -name=server -config=server.cfg -mod="mods/@cba_a3;mods/@ace"

log:
https://pastebin.com/6sVd0yHZ

No errors in log.

You can see everything is ok. There are no fatal errors. Mods work great, you can play with them on the server. BUT THEY DO NOT SHOW IN THE LIST OF REQUIRED MODS! And that creates a million problems. Players log in without them, they get errors, sometimes the server just throws out such players:

https://imgur.com/a/rhmsSDn Mods not showing up.

Second problem:

Voice chat does not work on the server. It is configured correctly in server.cfg:

// Disable Voice over Net (VoN)
//  0 = voice enabled.
// 1 = voice disabled.
disableVoN = 0;

// VoN Codec Quality
// 0-10 = 8kHz (narrowband).
// 11-20 = 16kHz (wideband).
// 21-30 = 32kHz (ultrawideband).
vonCodecQuality = 3;

I have all required ports open.

It feels like the server just doesn't want to respond to steam about his mods, and also doesn't want to accept voices

I also tried different hosting

Maybe you can shed some light?
I am sure that many people will want to install the server on the most popular Linux machine - Ubuntu. And it is important to solve this problem :(

Originally created by @nordost8 on GitHub (Nov 1, 2022). Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/4021 Hello! I have problem with arma3 on my Ubuntu 20.04. I have been looking for help on various Arma3 forums for a long time but still have not received an answer. Mods on the server do not appear in the list of required server mod, as well as voice chat. And the problem is not in the Arma server, not in the server configuration files. First problem: Mods do not appear in the list of required server mods in the server browser (@ace, @cba_a3). Players can log in without these mods and play with intermittent errors. This is silly. I expected and it should have prompted them to download the necessary mods. At first I noticed that my mods are not displayed in the list of mods on the server. People from different Arma 3 communities tried to help me and I have already demonstrated many times that I have all the mods correctly located in the server folder and correctly specified in the launch command: ./arma3server -name=server -config=server.cfg -mod="mods/@cba_a3;mods/@ace" **log**: https://pastebin.com/6sVd0yHZ No errors in log. You can see everything is ok. There are no fatal errors. Mods work great, you can play with them on the server. BUT THEY DO NOT SHOW IN THE LIST OF REQUIRED MODS! And that creates a million problems. Players log in without them, they get errors, sometimes the server just throws out such players: https://imgur.com/a/rhmsSDn Mods not showing up. Second problem: Voice chat does not work on the server. It is configured correctly in server.cfg: // Disable Voice over Net (VoN) //  0 = voice enabled. // 1 = voice disabled. disableVoN = 0; // VoN Codec Quality // 0-10 = 8kHz (narrowband). // 11-20 = 16kHz (wideband). // 21-30 = 32kHz (ultrawideband). vonCodecQuality = 3; I have all required ports open. It feels like the server just doesn't want to respond to steam about his mods, and also doesn't want to accept voices I also tried different hosting Maybe you can shed some light? I am sure that many people will want to install the server on the most popular Linux machine - Ubuntu. And it is important to solve this problem :(
Author
Owner

@peejaybee commented on GitHub (Aug 21, 2023):

I had similar problems with mods today on Debian 11.7. I believe it is due to the quotes around the mod list that were added in PR #3845. I edited config-default/_default.cfg to remove the quotes around the mod list (note that they don't appear around the servermod list, and those work fine.)

Here's how you reproduce it:

  • Add the following lines to config-lgsm/arma3server.cfg: mods="mods/@cba_a3\;mods/@cup_terrains_core\;mods/@cup_terrains_maps" servermods="mods/@earplugs\;mods/@enhanced_movement"
  • Start the server.
  • Scroll down in the log to the List Of Mods section.
  • Note that cup_terrains_maps loads properly, that cup_terrains_core has an origin of NOT FOUND, and that cba_a3 does not appear in the list. Also note that the server mods are loaded properly.
<!-- gh-comment-id:1685477380 --> @peejaybee commented on GitHub (Aug 21, 2023): I had similar problems with mods today on Debian 11.7. I believe it is due to the quotes around the mod list that were added in PR #3845. I edited `config-default/_default.cfg` to remove the quotes around the mod list (note that they don't appear around the servermod list, and those work fine.) Here's how you reproduce it: - Add the following lines to `config-lgsm/arma3server.cfg`: `mods="mods/@cba_a3\;mods/@cup_terrains_core\;mods/@cup_terrains_maps" servermods="mods/@earplugs\;mods/@enhanced_movement"` - Start the server. - Scroll down in the log to the List Of Mods section. - Note that cup_terrains_maps loads properly, that cup_terrains_core has an origin of NOT FOUND, and that cba_a3 does not appear in the list. Also note that the server mods are loaded properly.
Author
Owner

@dgibbs64 commented on GitHub (Aug 22, 2023):

@peejaybee Quotes can be a pain at times. A discussion about the quotes is needed. Potentially by someone who is a bit more of an expert than me in this area. It can be confusing to figure out when to use " ' or " etc

<!-- gh-comment-id:1688850062 --> @dgibbs64 commented on GitHub (Aug 22, 2023): @peejaybee Quotes can be a pain at times. A discussion about the quotes is needed. Potentially by someone who is a bit more of an expert than me in this area. It can be confusing to figure out when to use " ' or \" etc
Author
Owner

@peejaybee commented on GitHub (Aug 22, 2023):

Yeah, that's for certain.

One thing I didn't try was seeing if moving to double quotes would help. Then maybe we could get the benefit of #3485 and still have things work.

<!-- gh-comment-id:1688915357 --> @peejaybee commented on GitHub (Aug 22, 2023): Yeah, that's for certain. One thing I didn't try was seeing if moving to double quotes would help. Then maybe we could get the benefit of #3485 and still have things work.
Author
Owner

@peejaybee commented on GitHub (Aug 22, 2023):

@dgibbs64 Okay, I tried using escaped double quotes, and got the same error.

Params came across as -mod="mods/@cba_a3\;mods/@cup_terrains_core\;mods/@cup_terrains_maps\;mods/@rhsafrf\;mods/@rhsgref\;mods/@rhssaf\;mods/@rhsusaf" so the escaping worked, but it appears that single or double quotes mess it up.

<!-- gh-comment-id:1689019888 --> @peejaybee commented on GitHub (Aug 22, 2023): @dgibbs64 Okay, I tried using escaped double quotes, and got the same error. Params came across as `-mod="mods/@cba_a3\;mods/@cup_terrains_core\;mods/@cup_terrains_maps\;mods/@rhsafrf\;mods/@rhsgref\;mods/@rhssaf\;mods/@rhsusaf"` so the escaping worked, but it appears that single or double quotes mess it up.
Sign in to join this conversation.
No labels
Atomic
Epic
cannot reproduce
command: backup
command: console
command: debug
command: details
command: fast-dl
command: install
command: mods
command: monitor
command: post-details
command: restart
command: send
command: start
command: stop
command: update
command: update-lgsm
command: validate
command: wipe
distro: AlmaLinux
distro: Arch Linux
distro: CentOS
distro: Debian
distro: Fedora
distro: RedHat
distro: Rocky Linux
distro: Ubuntu
distro: openSUSE
engine: goldsrc
engine: source
game: 7 Days to Die
game: ARMA 3
game: Ark: Survival Evolved
game: Assetto Corsa
game: Avorion
game: BATTALION: Legacy
game: Barotrauma
game: Battalion 1944
game: Battlefield 1942
game: Black Mesa: Deathmatch
game: Blade Symphony
game: Call of Duty 2
game: Call of Duty 4
game: Call of Duty: United Offensive
game: Counter-Strike 1.6
game: Counter-Strike 2
game: Counter-Strike: Global Offensive
game: Counter-Strike: Source
game: Day of Infamy
game: Dayz
game: Death Match Classic
game: Don't Starve Together
game: ET: Legacy
game: Eco
game: Factorio
game: Factorio
game: Garry's Mod
game: Half-Life
game: Hurtword
game: Insurgecy
game: Insurgecy
game: Insurgency: Sandstorm
game: Just Cause 3
game: Killing Floor
game: Killing Floor 2
game: Left 4 Dead 2
game: Minecraft
game: Minecraft Bedrock
game: Mordhau
game: Multi Theft Auto
game: Mumble
game: Natural Selection 2
game: No More Room in Hell
game: Pavlov VR
game: Post Scriptum
game: Project Zomboid
game: Quake 3
game: QuakeWorld
game: Red Orchestra: Ostfront 41-45
game: Return to Castle Wolfenstein
game: Rising World
game: Rust
game: San Andreas Multiplayer
game: Satisfactory
game: Soldat
game: Soldier of Fortune 2
game: Squad
game: Squad 44
game: Starbound
game: Stationeers
game: Sven Co-op
game: Team Fortress 2
game: Teamspeak 3
game: Teeworlds
game: Terraria
game: The Front
game: Unreal Tournament 2004
game: Unreal Tournament 3
game: Unreal Tournament 99
game: Unturned
game: Valheim
game: Wurm Unlimited
game: Zombie Master Reborn
game: label missing
good first issue
help wanted
info: alerts
info: dependency
info: docker
info: docs
info: email
info: query
info: steamcmd
info: systemd
info: tmux
info: website
info: website
needs more info
outcome: duplicate
outcome: issue resolved
outcome: issue resolved
outcome: issue unresolved
outcome: pr accepted
outcome: pr rejected
outcome: unconfirmed
outcome: wontfix
outcome: wrong forum
potential-duplicate
priority
pull-request
type: bug
type: feature
type: feature
type: feature request
type: game server request
type: refactor
waiting response
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/LinuxGSM#2590
No description provided.