ightvnc 구성 - 소프트웨어 버전 확인

ightvnc 구성 - 소프트웨어 버전 확인

나는 Raspberry Pi를 가지고 있고 잘 작동하는 TightVNC를 설정했지만 클라이언트에서 파일 전송을 사용할 수 없는 것 같습니다. 뷰어는 2.7인데, 내 Tightvncserver의 버전 번호가 무엇인지 모르겠습니다.

Linux에서 소프트웨어 버전 번호를 쉽게 확인하는 방법은 무엇입니까?

저는 ...을 사용했기 apt-get install tightvncserver때문에 모든 것이 자동으로 이루어졌지만, 사물을 추적하고 더 많은 일을 할 수 있는지 확인하는 것이 좋을 것이라고 생각했습니다. 제가 아는 한 명령 프롬프트에 있습니다. Linux용 TightVNC에는 GUI가 없고 뷰어만 있습니다.

답변1

apt-cache설치된 다양한 패키지에 대한 정보를 찾는 데 사용할 수 있습니다 .

$ apt-cache show <package name>

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

의 전체 출력 apt-cache show도 매우 유용합니다.

$ 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

관련 정보