recherche:softs:thermocalc

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentes Révision précédente
Prochaine révision
Révision précédente
recherche:softs:thermocalc [01/04/2025 15:42] mathieu.traversierrecherche:softs:thermocalc [19/06/2025 17:13] (Version actuelle) jules.lhostis
Ligne 107: Ligne 107:
      ```      ```
 (Replace **XXX** with the process ID from `top`.) (Replace **XXX** with the process ID from `top`.)
 +
 +-----------------------------------------
 +
 +**Alternative file transfer method (SSH/Linux) - SSH-X/SSHFS**
 +
 +If you are connecting to the remote pc with **SSH**, you can 'mount' the remote pc's folders to your computed, and thus not need an **SSH** client.
 +
 +1) Install **sshfs** via your package manager (ex: `apt install sshfs` on unbuntu)
 +
 +2) Create a folder (directory) on **your** computer to act as a mount point (ex: `mkdir ~/thermocalc-remote`, meaning you create a directory called `thermocalc-remote` in your personnal folder)
 +
 +3) Use the following command to mount the remote pc folder to the one you just created :
 +  ```
 +  sshfs -o idmap=user <your EMSE id>@193.49.173.62:/home/local/EMSE2000/<your EMSE id> ~/thermocalc-remote
 +  ```
 +  
 +to be sure about the right path on the remote server, when in ssh, you can type `pwd` which will show you the path to the current (remote) folder
 +
 +4) *Extra tip* you can even create an alias in your (*local*) terminal to not have to type this big command :
 +- Edit your (*local*) `~/.bashrc` file and add this at the end of the file (if I am M. Jean Bon, creating the alias `mountemse` or whichever name you choose) :
 +
 +  ```
 +  # Custom aliases
 +  alias mountemse="sshfs -o idmap=user jean.bon@193.49.173.62:/home/local/EMSE2000/jean.bon ~/thermocalc-remote"
 +  ```
 +  
 +- Then restart a terminal session so that the change can go into effect, and type the command `mountemse` and after a password prompt, you will mount your remote folder on the thermocalc pc on your local machine, so that you can access its content from your file manager seamlessly.
 +
  
 ----------------------------------------- -----------------------------------------
  • recherche/softs/thermocalc.1743514938.txt.gz
  • Dernière modification : 01/04/2025 15:42
  • de mathieu.traversier