[RPG] Torment - Tides of Numerama (.sh)

Hello,

So, I’ve now a .sh file containing that game, ready for installation over Linux but how should it be done ?

In console make “chmod +x ~/path/to/sh/gog_torment_tides_of_numenera_2.0.0.1.sh”

After that run it.

I’ve placed the .sh over the most close possible folder (bin).

So :

chmod +x ~bin/gog_torment_tides_of_numerama_2.0.0.1.sh

but is doesnt go, “unable to access”
Guess the syntax is wrong somewhere ?

Thanks Yarrax, appreciated.

Please always post complete what you see: the prompt, the command, the output, thenext prompt. All we have now is the command and a lot of talking instead of the facts.


seden@linux-kbxw:~> chmod +x ~bin/gog_torment_tides_of_numerama_2.0.0.1.sh

chmod: unable to acces to '/bin/gog_torment_tides_of_numerama_2.0.0.1.sh': no file or folder of that type

This while the file is actually just on that location.

On Wed, 01 Mar 2017 18:56:02 +0000, seden wrote:

> Code:
> --------------------
>
> seden@linux-kbxw:~> chmod +x
> ~bin/gog_torment_tides_of_numerama_2.0.0.1.sh
>
> chmod: unable to acces to
> ‘/bin/gog_torment_tides_of_numerama_2.0.0.1.sh’: no file or folder of
> that type
>
> --------------------
>
>
> This while the file is actually just on that location.

Try:

“~/bin/yourfilehere”

The missing “/” means its trying to look for the home directory of the
“bin” user, which is empty IIRC.

Jim


Jim Henderson
openSUSE Forums Administrator
Forum Use Terms & Conditions at http://tinyurl.com/openSUSE-T-C

Hello Jim, thanks for the reply.
****, it was “numenara”, pure slapuse it is. Ive had this wrong for months now it is.

So, once corrected, it is ok, now, it is “hanging” :

seden@linux-kbxw:~> chmod +x ~/bin/gog_torment_tides_of_numenera_2.0.0.1.sh
seden@linux-kbxw:~> 


Tried to add in my login, but its not what is required.

Again, do not post your conclusion without showing that it exists. E.g. by some ls command.

BTW ~bin is the home directory of user bin. Are you sure that is what you mean?

If I add in "~/home/seden/bin Konsole then duplicate that part :


chmod: unable to access to '/home/seden/home/seden/bin/gog_torment_tides_of_numenera_2.0.0.1.sh': No file or folder of that type

Sorry if I do not comply, it is that I dont get that much yet

Eg : “By some is command”, I do understand the philosophy / logical sens, but I’m quite sure there is a technical meaning which I do not grab yet.

As to clarify, if it is alright, the chmod command should launch the .sh process ie : installation setup ?

Your prompt

seden@linux-kbxw:~>

shows that your working directory is your home directory (many people would say: you are in your home directory). Because you want to work in the directory bin inside your home directory, make that your working directory:

cd bin

Then check what is there:

ls -l

And when it is there (and the permission for you to execute it is not set):

chmod u+x gog_torment_tides_of_numenera_2.0.0.1.sh

And when you want to execute it then:

./gog_torment_tides_of_numenera_2.0.0.1.sh

I have no idea about what it should do. This is only a basic explanation how to give you, the owner of a file, execute permission it and then to do that execution. That all in the assumption that the file contains something that can be executed (binary or script, does not matter).

seden@linux-kbxw:~/bin> cd bin
total 4145080
seden@linux-kbxw:~/bin> ls -l
total 4145080
-rwxr-xr-x 1 seden users 4244561311  1 mars  16:21 gog_torment_tides_of_numenera_2.0.0.1.sh
drwxr-xr-x 6 seden users        130  1 mars  20:17 Jeux
seden@linux-kbxw:~/bin> chmod u+x gog_torment_tides_of_numenera_2.0.0.1.sh
seden@linux-kbxw:~/bin> .gog_torment_tides_of_numenera_2.0.0.1.sh
If '.gog_torment_tides_of_numenera_2.0.0.1.sh' is not a typo you can use command-not-found to lookup the package that contains it, like this:
    cnf .gog_torment_tides_of_numenera_2.0.0.1.sh


Could I change (simplify) the name of the sh file ? So far it could well be because of bad spelling somewhere ?

As you should have seen from the ls -l listing

-rw**x**r-xr-x 1 seden users 4244561311  1 mars  16:21 gog_torment_tides_of_numenera_2.0.0.1.sh

the x-bit for the owner seden is already set ( i made the x bold). So no use to do the chmod!
Of course setting something that is already set does no harm, but it is rather …

And then it seems to be rather difficult to copy/paste what I posted. I posted

./gog_torment_tides_of_numenera_2.0.0.1.sh

you did

.gog_torment_tides_of_numenera_2.0.0.1.sh

How is such a thing possible???

And yes, you can of course change that name and make it shorter

mv gog_torment_tides_of_numenera_2.0.0.1.sh gog

and then do

./gog

But that will be of no use when you then again leave out the /. >:(

So, not sure what command or when it changed, still, tried (again, last time was two day ago, with an error message I did not try again, thinking it would be to easy (…).
And so, right click, Actions>open z terminal here = start of the installation.

Which completed along with some (apparently, albeit I get some freeze (experienced on both the PC (windows) and now Linux setup (two machine, on two locations). As it is not reported (apparently) its quite curious, as it is not happening with any others program so far (complete system lock, cursor included, sound looping). Only remedy = reboot (guess I’ve never rebooted as often than since started playing that game).

So, closed, Ive stored the commands in case it is needed again later. Next step = installation of waterfox (no rpm, sic) and some others program who do require specific installation (specific as if coming in an archive with files and folders, still need to find how to handle this).

Not sure if it is a good idea (as the lane started did not get to completed, but the thread subject could be edited as “solved”, in case (being fine by me at last).
Thanks all, quite appreciated.

And sorry Hank, was really not being sufficiently aware, guess its no surprise. If we ever meet, Ill be sure to make amend (albeit, as to the “bene vivere” I give gifts quite commonly, mostly small, some time uncommon or even precious (see for dual wall glasses, titanium accessory etc) but mostly food related.

To be seen.

seden@linux-kbxw:~> ~/bin/zomboid_2.4.0.5.sh
bash: /home/seden/bin/zomboid_2.4.0.5.sh: Permission not accorded
seden@linux-kbxw:~> cd bin
seden@linux-kbxw:~/bin> ls -l
total 834084
-rw-r--r-- 1 seden users  48887450  3 mars  05:20 gog_stargunner_2.0.0.9.sh
drwxr-xr-x 5 seden users        62  2 mars  06:26 Game
-rw-r--r-- 1 seden users 805210397  3 mars  05:30 zomboid_2.4.0.5.sh
seden@linux-kbxw:~/bin> chmod u+x zomboid_2.4.0.5.sh


Tried to install another .sh software, this time trying to launch is (using the Actions>launch in Konsole, which gave me an error until the

chmod u+x ... command is used.

I will check with another .sh after the installation of that one (if requiring the go with that sequence of command for each .sh ?).

If so, is there a way to make it so the .sh can be installed without going trough this process or is it like the 15mn validity for YAST use a security related setting ?

Avertissement : Impossible de trouver « /home/seden/bin/gog_stargunner_2.0.0.9.sh », démarrage de « /bin/bash » à la place. Veuillez vérifier la configuration de votre profil.

This error coming until I have used the complete set of command, the part about profile configuration could have to be seen ?

Also, if it can be of use, here is what come along with every installation of a .sh from gog.com.

The game (out of Torment Tides, who freeze the pc on a random timer (requiring a reboot as far I can tell), be it in dialogue, moving or otherwise, Ive a system with 8go ram, the CG has 2Go, if it is a specification worry…) run fine otherwise.

Verifying archive integrity... All good.
Uncompressing Project Zomboid (GOG.com)  100%  
Collecting info for this system...
Operating system: linux
CPU Arch: x86_64
trying mojosetup in bin/linux/x86_64
USING 

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »

(mojosetup:22155): Gtk-WARNING **: Impossible de trouver le moteur de thème dans module_path : « murrine »


Thanks in advance, in any case.

These are just warning. You can safely ignore them if the game runs fine.

Noted as to the reports, thanks glistwan.

Now, while the win version start & Lock the system still in the same fashion, the start.sh when opened with Konsole :

Running Torment: Tides of Numenera
Set current directory to /home/seden/bin/Jeux/RPG/Torment Tides of Numenera/game
Found path: /home/seden/bin/Jeux/RPG/Torment Tides of Numenera/game/TidesOfNumenera
Mono path[0] = '/home/seden/bin/Jeux/RPG/Torment Tides of Numenera/game/TidesOfNumenera_Data/Managed'
Mono path[1] = '/home/seden/bin/Jeux/RPG/Torment Tides of Numenera/game/TidesOfNumenera_Data/Mono'
Mono config path = '/home/seden/bin/Jeux/RPG/Torment Tides of Numenera/game/TidesOfNumenera_Data/Mono/etc'
displaymanager : xrandr version warning. 1.5
client has 6 screens
displaymanager screen (0)(DVI-1): 1024 x 768
displaymanager screen (1)(DVI-0): 1680 x 1050
Using libudev for joystick management


Importing game controller configs
The futex facility returned an unexpected error code./home/seden/bin/Jeux/RPG/Torment Tides of Numenera/start.sh: line 16:  3115 Aborted                 (core dumped) ./"TidesOfNumenera"

Not sure about the 6 screens, at most, 2 (DVI-1 & DVI-2) are my std desk monitor, I did connect my smartphones (x2), still, it cant match up to 6 ?

Guess I should open a ticket with the developers (Inxile) at this state ?