[GH-ISSUE #613] [Ark] Functions problem on debian #492

Closed
opened 2026-02-27 02:01:51 +03:00 by kerem · 11 comments
Owner

Originally created by @Dravord on GitHub (Jan 7, 2016).
Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/613

Hi,
I've got this with ./arkserver command :
./arkserver
Usage: ./arkserver [option]
ARK: Survivial Evolved - Linux Game Server Manager - Version 271215
http://gameservermanagers.com/arkserver

Commands
/home/arkserver/functions/core_getopt.sh: line 68: column: command not found

./arkserver details give me that :
./arkserver details
fetching functions/command_details.sh...OK
fetching functions/check_systemdir.sh...OK
fetching functions/check_logs.sh...OK
fetching functions/check_ip.sh...OK
fetching functions/check_config.sh...OK
fetching functions/info_config.sh...OK
fetching functions/info_distro.sh...OK
fetching functions/info_glibc.sh...OK

Distro Details

/home/arkserver/functions/command_details.sh: line 25: column: command not found

Performance

/home/arkserver/functions/command_details.sh: line 35: column: command not found

/home/arkserver/functions/command_details.sh: line 41: column: command not found

ARK: Survivial Evolved Server Details

/home/arkserver/functions/command_details.sh: line 129: column: command not found

arkserver Script Details

/home/arkserver/functions/command_details.sh: line 182: column: command not found

Backups

No Backups created

Command-line Parameters

./ShooterGameServer TheIsland?listen

Ports

Change ports by editing the parameters in
/home/arkserver/serverfiles/ShooterGame/Saved/Config/LinuxServer/GameUserSettings.ini.

Useful port diagnostic command:
netstat -atunp | grep ShooterGame

/home/arkserver/functions/command_details.sh: line 576: column: command not found

Status: ONLINE

Can you fix it ?

Thanks for your great job !

Julien from France

Originally created by @Dravord on GitHub (Jan 7, 2016). Original GitHub issue: https://github.com/GameServerManagers/LinuxGSM/issues/613 Hi, I've got this with ./arkserver command : ./arkserver Usage: ./arkserver [option] ARK: Survivial Evolved - Linux Game Server Manager - Version 271215 http://gameservermanagers.com/arkserver Commands /home/arkserver/functions/core_getopt.sh: line 68: column: command not found ./arkserver details give me that : ./arkserver details fetching functions/command_details.sh...OK fetching functions/check_systemdir.sh...OK fetching functions/check_logs.sh...OK fetching functions/check_ip.sh...OK fetching functions/check_config.sh...OK fetching functions/info_config.sh...OK fetching functions/info_distro.sh...OK fetching functions/info_glibc.sh...OK # Distro Details /home/arkserver/functions/command_details.sh: line 25: column: command not found # Performance /home/arkserver/functions/command_details.sh: line 35: column: command not found /home/arkserver/functions/command_details.sh: line 41: column: command not found # ARK: Survivial Evolved Server Details /home/arkserver/functions/command_details.sh: line 129: column: command not found # arkserver Script Details /home/arkserver/functions/command_details.sh: line 182: column: command not found # Backups No Backups created # Command-line Parameters ./ShooterGameServer TheIsland?listen # Ports Change ports by editing the parameters in /home/arkserver/serverfiles/ShooterGame/Saved/Config/LinuxServer/GameUserSettings.ini. Useful port diagnostic command: netstat -atunp | grep ShooterGame /home/arkserver/functions/command_details.sh: line 576: column: command not found Status: ONLINE Can you fix it ? Thanks for your great job ! Julien from France
kerem 2026-02-27 02:01:51 +03:00
Author
Owner

@UltimateByte commented on GitHub (Jan 7, 2016):

Salut Julien ! :p

Did you update your server functions recently ?
There was a huge function renaming that could have broken some compatibility. You may have to re-download and re-configure the script (not the whole server don't worry).

<!-- gh-comment-id:169521780 --> @UltimateByte commented on GitHub (Jan 7, 2016): Salut Julien ! :p Did you update your server functions recently ? There was a huge function renaming that could have broken some compatibility. You may have to re-download and re-configure the script (not the whole server don't worry).
Author
Owner

@dgibbs64 commented on GitHub (Jan 7, 2016):

column: command not found

is the issue. so you need to install column on your server

<!-- gh-comment-id:169803975 --> @dgibbs64 commented on GitHub (Jan 7, 2016): column: command not found is the issue. so you need to install column on your server
Author
Owner

@UltimateByte commented on GitHub (Jan 7, 2016):

I must be blind ! (thought it was an error due to missing functions, not package)

<!-- gh-comment-id:169834158 --> @UltimateByte commented on GitHub (Jan 7, 2016): I must be blind ! (thought it was an error due to missing functions, not package)
Author
Owner

@UltimateByte commented on GitHub (Jan 9, 2016):

Well, i guess it's sovled, closing this for now, feel free to re-open if neded !
Have a great admin time !

<!-- gh-comment-id:170161731 --> @UltimateByte commented on GitHub (Jan 9, 2016): Well, i guess it's sovled, closing this for now, feel free to re-open if neded ! Have a great admin time !
Author
Owner

@Dravord commented on GitHub (Jan 11, 2016):

How can i get column ? I search with apt-get but don't find on my Debian :S
(Nerd on Linux)

<!-- gh-comment-id:170726294 --> @Dravord commented on GitHub (Jan 11, 2016): How can i get column ? I search with apt-get but don't find on my Debian :S (Nerd on Linux)
Author
Owner

@UltimateByte commented on GitHub (Jan 12, 2016):

apt-get update
dpkg --add-architecture i386
apt-get install tmux mailutils postfix ca-certificates curl lib32gcc1 libstdc++6 libstdc++6:i386
?

BTW
" The column command is part of the util-linux package and is available
from ftp://ftp.kernel.org/pub/linux/utils/util-linux/."
http://man7.org/linux/man-pages/man1/column.1.html

So i guess what you need is : apt-get util-linux
Normally it's always installed, i'm not sure why you don't have it.

<!-- gh-comment-id:170758690 --> @UltimateByte commented on GitHub (Jan 12, 2016): apt-get update dpkg --add-architecture i386 apt-get install tmux mailutils postfix ca-certificates curl lib32gcc1 libstdc++6 libstdc++6:i386 ? BTW " The column command is part of the util-linux package and is available from ftp://ftp.kernel.org/pub/linux/utils/util-linux/." http://man7.org/linux/man-pages/man1/column.1.html So i guess what you need is : apt-get util-linux Normally it's always installed, i'm not sure why you don't have it.
Author
Owner

@Dravord commented on GitHub (Jan 12, 2016):

I've try this yesterday but it still no working.
Maybe not working with debian 8 ?

UltimateByte : Je ne m'en sort pas avec cette histoire ! j'ai passé 2h hier à essayer de remettre ce qui pouvais manquer mais je ne vois pas pourquoi column n'est pas dans le package...

Tu as d'autres idées ?

<!-- gh-comment-id:170902709 --> @Dravord commented on GitHub (Jan 12, 2016): I've try this yesterday but it still no working. Maybe not working with debian 8 ? UltimateByte : Je ne m'en sort pas avec cette histoire ! j'ai passé 2h hier à essayer de remettre ce qui pouvais manquer mais je ne vois pas pourquoi column n'est pas dans le package... Tu as d'autres idées ?
Author
Owner

@UltimateByte commented on GitHub (Jan 12, 2016):

Except apt-get util-linux , i don't know !

<!-- gh-comment-id:170960939 --> @UltimateByte commented on GitHub (Jan 12, 2016): Except apt-get util-linux , i don't know !
Author
Owner

@Dravord commented on GitHub (Jan 12, 2016):

I've install a fresh debian 7 and column works !
I think it's a problem with debian 8...

Thanks for help =D

<!-- gh-comment-id:170969523 --> @Dravord commented on GitHub (Jan 12, 2016): I've install a fresh debian 7 and column works ! I think it's a problem with debian 8... Thanks for help =D
Author
Owner

@UltimateByte commented on GitHub (Jan 12, 2016):

Weird, i'm running Debian 8.2 x64 and never had an issue with column...
Looks more of a problem with a modification, maybe made by your server provider on Debian 8.
BTW, thanks for the feedback ;)

<!-- gh-comment-id:170984569 --> @UltimateByte commented on GitHub (Jan 12, 2016): Weird, i'm running Debian 8.2 x64 and never had an issue with column... Looks more of a problem with a modification, maybe made by your server provider on Debian 8. BTW, thanks for the feedback ;)
Author
Owner

@lock[bot] commented on GitHub (Jul 19, 2018):

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.

<!-- gh-comment-id:406332448 --> @lock[bot] commented on GitHub (Jul 19, 2018): This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
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#492
No description provided.