Ubuntu 14.04 - Conexão SSH - Open Image

2

O que estou usando

  • Ubuntu 14.04
  • Conexão SSH com outra máquina Ubuntu 14.04

O que estou tentando fazer

  • Visualizar / exibir o conteúdo de uma imagem (.png, .jpeg, .bmp ...) no console.

Estou conectando a um VPS com o Ubuntu e preciso saber se um arquivo de imagem muda depois de atualizá-lo, por isso preciso abrir / exibir a imagem por meio do ssh.

  • Como posso fazer isso?
por AlvaroAV 19.09.2014 / 11:16

1 resposta

1

Se você quiser usar aplicativos de GUI com ssh , precisará usar as opções -X ou -Y (use -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.

Por exemplo, para usar eog para exibir a imagem remota em /path/to/file.png , você faria

ssh -Y [email protected] eog /path/to/file.png
    
por terdon 19.09.2014 / 15:03