tightvnc configuration - verificação da versão do software

1

Eu tenho um pi de framboesa e só consegui configurar o TightVNC funcionando bem, mas parece que não consigo usar a transferência de arquivos no cliente. O visualizador é 2.7, mas não sei qual é o número da versão do meu tightvncserver.

Como posso verificar facilmente o número de versão de um software no Linux?

Eu usei apt-get install tightvncserver ... então tudo era automático, mas eu acho que seria ótimo rastrear as coisas e ver se eu posso fazer mais. Eu estou no prompt de comando para TightVNC não tem uma interface gráfica, tanto quanto eu sei para o Linux - apenas o visualizador.

    
por Andras Sebestyen 31.05.2014 / 13:05

1 resposta

1

Você pode usar apt-cache para descobrir informações sobre os vários pacotes conforme os instala.

$ apt-cache show <package name>

Exemplo

$ apt-cache show tightvncserver | grep Vers
Version: 1.3.9-6.4

A saída total de apt-cache show também é útil.

$ apt-cache show tightvncserver
Package: tightvncserver
Priority: optional
Section: universe/x11
Installed-Size: 1776
Maintainer: Ubuntu Developers <[email protected]>
Original-Maintainer: Ola Lundqvist <[email protected]>
Architecture: amd64
Source: tightvnc
Version: 1.3.9-6.4
Provides: vnc-server, xserver
Depends: libc6 (>= 2.15), libjpeg8 (>= 8c), libx11-6, zlib1g (>= 1:1.1.4), perl, x11-common | xserver-common, x11-utils, xauth
Recommends: xfonts-base, x11-xserver-utils
Suggests: tightvnc-java
Filename: pool/universe/t/tightvnc/tightvncserver_1.3.9-6.4_amd64.deb
Size: 835112
MD5sum: 78c295c9a39c3c62638ef58ac82b171f
SHA1: 73460682ed9705a73db15a5269239068e77620cb
SHA256: 7f5c9e47d0f5047426c4f09ff62971d6b1fb83ae8468251fa89ea08add08e500
Description-en: virtual network computing server software
 VNC stands for Virtual Network Computing. It is, in essence, a remote
 display system which allows you to view a computing 'desktop' environment
 not only on the machine where it is running, but from anywhere on the
 Internet and from a wide variety of machine architectures.
 .
 This package provides a server to which X clients can connect and the
 server generates a display that can be viewed with a vncviewer.
 .
 The difference between the tightvncserver and the normal vncserver is the
 data encoding, optimized for low bandwidth connections. If the client do not
 support jpeg or zlib encoding it can use the default one. Later versions of
 vncserver (> 3.3.3r2) support a new automatic encoding that should be equally
 good as the tightvnc encoding.
 .
 Note: This server does not support or need a display. You need a vncviewer to
 see something. However, this viewer may also be on a computer running other
 operating systems in the local net.
Homepage: http://www.tightvnc.com
Description-md5: 212aadc6932fc1ffc49df1c9619bc26a
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu
    
por 31.05.2014 / 13:28