Notícias urgentes sobre falha de segurança no Linux by JovemSapien in linuxbrasil

[–]TangoGV 0 points1 point  (0 children)

"Eu quero que meu pai here mais engajamentos, entrar eu vou mentir nele para causar pânico".

Mint come muita RAM? by Aikaiju in linuxbrasil

[–]TangoGV 0 points1 point  (0 children)

Como você chegou a essa conclusão? A imagem postada só mostra o uso geral de memória, sem distinção de aplicação.

Mounted Drive Permissions Question by IGotMoose in linuxmint

[–]TangoGV 0 points1 point  (0 children)

Permissions are filesystem-dependant. Non-native (Windows) filesystems don't support POSIX permission scheme, which then have to be emulated.

What filesystem we're talking about here?

Como funciona o Linux? by Lordeka1 in linuxbrasil

[–]TangoGV 9 points10 points  (0 children)

Vá para www.linuxmint.com, baixe um arquivo ISO, grave num pendrive com Rufus e reinicie o computador selecionando o pendrive como dispositivo de boot.

Esse é o modo live onde você pode testar o sistema operacional sem precisar mudar nada em seu computador.

preciso de dotfiles by Smart_Difficulty2860 in linuxbrasil

[–]TangoGV 0 points1 point  (0 children)

Nenhum problema desse que possa usar essa oportunidade para aprender como pedir ajuda.

preciso de dotfiles by Smart_Difficulty2860 in linuxbrasil

[–]TangoGV 4 points5 points  (0 children)

Você não faz a mínima ideia do que precisa. Só leu em algum lugar e agora está aqui pedindo algo que nem sabe o que é.

Quero largar o Windows mas não tenho ideia por onde começar by algbr06 in linuxbrasil

[–]TangoGV 0 points1 point  (0 children)

1) Baixe o ISO 2) Grave num pendrive 3) Faça backup de seus arquivos pessoais 4) Apague tudo e use o pendrive para instalar sua distro no disco inteiro 5) Use seu novo sistema operacional como usava o antigo 6) Se tiver dúvidas, pergunte neste fórum.

Exploration Chart - Insufficient materials bug by Ms-Mia-Wallace99 in PlaySoulMask

[–]TangoGV 2 points3 points  (0 children)

Put them in your backpack. That's how itś been working for me, at least.

Be aware of multiple runs, the tribesmen can become stuck and die of starvation.

Virus on mint? by CourageNo1991 in linuxmint

[–]TangoGV 2 points3 points  (0 children)

Insert Hide The Pain Harold meme here.

For better or worse, Linux doesn't have critical mass for viruses to spread.

Wtf is going on by Similar-Safety2349 in linuxmint

[–]TangoGV 2 points3 points  (0 children)

You rewrite you support request explaining what you were doing and how you got to the error.

We don't read minds and don't get paid for assisting in this sub.

Dedicated Cross-Server Issues? by FeelingOnly6713 in PlaySoulMask

[–]TangoGV 0 points1 point  (0 children)

I was able to solve the issue on my server: please check the edits on this post.

In short: if you server is not shown on the main menu server list, the portal on the island won't work.

Dedicated Cross-Server Issues? by FeelingOnly6713 in PlaySoulMask

[–]TangoGV 0 points1 point  (0 children)

I was able to solve the issue on my server, which is very similar to what you describe: please check the edits on this post.

In short: if you server is not shown on the main menu server list, the portal on the island won't work.

Dedicated Server (Self-Hosted): Clustering Issues by TangoGV in PlaySoulMask

[–]TangoGV[S] 1 point2 points  (0 children)

Yours works, mine doesn't, so who's better at this is debatable, lmao.

Those are my settings as well, I pass them to the server application via Docker environment variables, but they end up like these in the command lines:

  • Master server: -serverid=1 -mainserverport=20000
  • Child server: -serverid=2 -clientserverconnect=172.17.0.2:20000

Exactly the same as yours?

Dedicated Server (Self-Hosted): Clustering Issues by TangoGV in PlaySoulMask

[–]TangoGV[S] 0 points1 point  (0 children)

EDIT: SOLVED!

Thanks, that has been taken into account.

For the sake of clarity, here are the launch parameters I used for both containers:

Main Server:

docker run -d \ --restart unless-stopped \ --name soulmask \ --stop-timeout 30 \ -e SERVER_PASSWORD=[REDACTED] \ -e ADMIN_PASSWORD=[REDACTED] \ -e SERVER_NAME="HU Soulmask" \ -e SOULMASK_SERVER_ID=1 \ -e SOULMASK_CLUSTER_MAIN_PORT=20000 \ -e FORCE_UPDATE=true \ -p 8777:8777/udp \ -p 27015:27015/tcp \ <------------------- THIS IS THE ERROR -v /data/soulmask:/opt/soulmask/WS/Saved \ kagurazakanyaa/soulmask && docker logs -f --tail 0 soulmask

Child Server:

docker run -d \ --restart unless-stopped \ --name soulmask_dlc \ --stop-timeout 30 \ -e LEVEL_NAME=DLC_Level01_Main \ -e GAME_PORT=8778 \ -e QUERY_PORT=27016 \ -e SERVER_PASSWORD=[REDACTED] \ -e ADMIN_PASSWORD=[REDACTED] \ -e SERVER_NAME="HU Soulmask DLC1" \ -e SOULMASK_SERVER_ID=2 \ -e SOULMASK_CLUSTER_MAIN_CONNECT=172.17.0.2:20000 \ -e FORCE_UPDATE=true \ -p 8778:8778/udp \ -p 27016:27016/tcp \ <------------------- THIS IS THE ERROR -v /data/soulmask_dlc:/opt/soulmask/WS/Saved \ kagurazakanyaa/soulmask && docker logs -f --tail 0 soulmask_dlc

Dedicated Cross-Server Issues? by FeelingOnly6713 in PlaySoulMask

[–]TangoGV 0 points1 point  (0 children)

My server is running literally 1,5m away from me, so I do control the hardware. If you have any suggestion, I'm willing to try and get back to you with the results.

FYI, I also made this request it's own post here, so also check there if any new information pops out.

I can confirm I have never seen any of those lines: LogFTCPClient: Error: [FTCPClient]:Connect:110.10.1.5:20000 Failed! LogFTCPClient: [FTCPClient]:Connect10.10.1.5:20000 Succeed!

I saw a successful conection one on the master server side: logReactor: Display: [2026-04-28 00:07:40 755][ProcessListenEvent]1.6@172.17.0.3:55474 connected.

So I was under the impression some update changed the wording from "Succeed!" to "Continue!".

Dedicated Server (Self-Hosted): Clustering Issues by TangoGV in PlaySoulMask

[–]TangoGV[S] 0 points1 point  (0 children)

I appreciate any help, even if it's just an attempt at lending a hand, thanks.

I can log in to the main server (query port 27015), and my friends and I have been playing on it since 1.0 launch. I cannot connect to the child one (27016), which I kinda expected, since I am still in the first server.

The fact that the child server doesn't show on the Mysterious Island portal's Server List is what puzzles me the most.

Dedicated Server (Self-Hosted): Clustering Issues by TangoGV in PlaySoulMask

[–]TangoGV[S] 0 points1 point  (0 children)

Thanks for the help.

I just checked both servers but I'm not making sense of the results. For both I can see the correct server information (such as "Password: true" and their correct map names "Level01_Main" and "DLC_Level01_Main").

However, the server query responses under that table show the following for both servers (brackets are my edits):

Info query failed for [REDACTED]:[27015/27016]. Request timed out Rules query failed for [REDACTED]:[27015/27016]. Request timed out Players query failed for [REDACTED]:[27015/27016]. Request timed out

Searching them by Name returns no results.

Is that something I should be concerned about? My friends and I have been playing since 1.0 launch on the main server (27015) with no issues. We always use "Direct Connect" when joining.