3 votes

Comment puis-je ouvrir et visualiser un fichier image via une connexion SSH ?

Ce que j'utilise

  • Ubuntu 14.04
  • Connexion SSH à une autre machine Ubuntu 14.04

Ce que j'essaie de faire

  • Afficher/afficher le contenu d'une image ( .png , .jpeg , .bmp ...) à partir de la console.

Je me connecte à un VPS avec Ubuntu et j'ai besoin de savoir si un fichier image change après que je l'ai mis à jour, donc j'ai besoin d'ouvrir/afficher l'image par ssh.

Comment puis-je le faire ?

4voto

Stewart Points 1385

Si vous voulez utiliser des applications GUI avec ssh vous devez utiliser l'option -X ou -Y options (utiliser -Y ):

 -X      Enables X11 forwarding.  This can also be specified on a per-host
         basis in a configuration file.

         X11 forwarding should be enabled with caution.  Users with the
         ability to bypass file permissions on the remote host (for the
         user's X authorization database) can access the local X11 display
         through the forwarded connection.  An attacker may then be able
         to perform activities such as keystroke monitoring.

         For this reason, X11 forwarding is subjected to X11 SECURITY
         extension restrictions by default.  Please refer to the ssh -Y
         option and the ForwardX11Trusted directive in ssh_config(5) for
         more information.
 -Y      Enables trusted X11 forwarding.  Trusted X11 forwardings are not
         subjected to the X11 SECURITY extension controls.

Ainsi, par exemple, pour utiliser eog pour afficher l'image distante à /path/to/file.png vous feriez

ssh -Y liarez@remote.host eog /path/to/file.png

SistemesEz.com

SystemesEZ est une communauté de sysadmins où vous pouvez résoudre vos problèmes et vos doutes. Vous pouvez consulter les questions des autres sysadmins, poser vos propres questions ou résoudre celles des autres.

Powered by:

X