Jump to content
ElementaryOS France
  • 0

Comment trouver le chemin d'un exécutable ?


Question

Bonjour,

 

J'ai un VPN (Hotspot Shield) et pour le mettre sous Elementary OS je ne peux le faire que via la console.

À chaque démarrage, je dois activer ce VPN via la console. C'est pénible aussi je leur ai demandé une solution pour démarrer le VPN au démarrage de l'ordinateur.

Voivi la solution (cela peut servir à d'autres) :

Citation
  1. Open a terminal window.
  2. Create a new service unit file using a text editor of your choice. For example, you can use nano or vi:
    code sudo nano /etc/systemd/system/hotspotshield.service
  3. Add the following lines to the file:
    code [Unit] Description=Hotspot Shield VPN After=network.target [Service] ExecStart=/path/to/hotspotshield start Type=oneshot RemainAfterExit=yes [Install] WantedBy=multi-user.target 
    Replace "/path/to/hotspotshield" with the actual path to the hotspotshield executable.
  4. Save the file and exit the text editor.
  5. Reload systemd to pick up the changes:
    code sudo systemctl daemon-reload
  6. Enable the service to start automatically at boot:
    code sudo systemctl enable hotspotshield.service
  7. Start the service:
    code sudo systemctl start hotspotshield.service

 

J'ai juste un problème pour trouver le chemin de l'exécutable [Replace "/path/to/hotspotshield" with the actual path to the hotspotshield executable.].

Où se trouve donc cet exécutable ?

Cordialement,

Marc

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...