Vnc Installations Probleme..

Vom einfachen Programm zum fertigen Debian-Paket, Fragen rund um Programmiersprachen, Scripting und Lizenzierung.
Antworten
mckani
Beiträge: 2
Registriert: 06.02.2007 11:28:18

Vnc Installations Probleme..

Beitrag von mckani » 06.02.2007 11:34:27

Hallo Liebes Debianforum Mitglieder und Gründer,
Ich bin neu im Forum deswegen Grüß ich euch alle ermal herzlich.

danach will ich auch schon mein erstes Problem mit euch teilen. Ich bin ein Absolutes Linux bzw (Debian 3.1) Anfänger.
ich Nutze es erst seid 1-2 Wochen oder so :)

Naja aufjeden fall wollte ich es mir installieren und folgende schritte die ich ausgeführt habe sind dies:
./configure

Code: Alles auswählen

Setting up libperl-dev (5.8.4-8sarge5) ...
debian:/usr/exploit/vncsrv/unix# ./configure
loading cache ./config.cache
configuring common...
loading cache ./config.cache
checking for gcc... (cached) gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) no
checking for c++... (cached) c++
checking whether the C++ compiler (c++  ) works... yes
checking whether the C++ compiler (c++  ) is a cross-compiler... no
checking whether we are using GNU C++... (cached) yes
checking whether c++ accepts -g... (cached) no
checking for ranlib... (cached) ranlib
checking whether make sets ${MAKE}... (cached) yes
checking how to run the C++ preprocessor... (cached) c++ -E
checking for X... (cached) no
configuring zlib...
Checking for gcc...
Building static library libz.a version 1.1.4 with gcc.
Checking for unistd.h... Yes.
Checking for errno.h...  Yes.
Checking for mmap support... Yes.
...done configuring zlib
checking for vsnprintf... (cached) yes
checking for socklen_t... yes
creating ./config.status
creating Makefile
creating rdr/Makefile
creating network/Makefile
creating Xregion/Makefile
creating rfb/Makefile
...done configuring common
checking for gcc... (cached) gcc
checking whether the C compiler (gcc  ) works... yes
checking whether the C compiler (gcc  ) is a cross-compiler... no
checking whether we are using GNU C... (cached) yes
checking whether gcc accepts -g... (cached) no
checking for c++... (cached) c++
checking whether the C++ compiler (c++  ) works... yes
checking whether the C++ compiler (c++  ) is a cross-compiler... no
checking whether we are using GNU C++... (cached) yes
checking whether c++ accepts -g... (cached) no
checking for ranlib... (cached) ranlib
checking whether make sets ${MAKE}... (cached) yes
checking how to run the C++ preprocessor... (cached) c++ -E
checking for X... (cached) no
creating ./config.status
creating Makefile
creating tx/Makefile
creating x0vncserver/Makefile
creating vncviewer/Makefile
creating vncconfig/Makefile
creating vncpasswd/Makefile
./make

Code: Alles auswählen

debian:/usr/exploit/vncsrv/unix# make
make[1]: Entering directory `/usr/exploit/vncsrv/common'
make[2]: Entering directory `/usr/exploit/vncsrv/common/zlib'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/usr/exploit/vncsrv/common/zlib'
make[2]: Entering directory `/usr/exploit/vncsrv/common/rdr'
make[2]: Leaving directory `/usr/exploit/vncsrv/common/rdr'
make[2]: Entering directory `/usr/exploit/vncsrv/common/network'
make[2]: Leaving directory `/usr/exploit/vncsrv/common/network'
make[2]: Entering directory `/usr/exploit/vncsrv/common/Xregion'
make[2]: Leaving directory `/usr/exploit/vncsrv/common/Xregion'
make[2]: Entering directory `/usr/exploit/vncsrv/common/rfb'
make[2]: Leaving directory `/usr/exploit/vncsrv/common/rfb'
make[1]: Leaving directory `/usr/exploit/vncsrv/common'
make[1]: Entering directory `/usr/exploit/vncsrv/unix/tx'
make[1]: Leaving directory `/usr/exploit/vncsrv/unix/tx'
make[1]: Entering directory `/usr/exploit/vncsrv/unix/vncviewer'
rm -f vncviewer
c++ -O2 -Wall  -o vncviewer DesktopWindow.o CConn.o vncviewer.o buildtime.o ../tx/libtx.a ../../common/rfb/librfb.a ../../common/network/libnetwork.a ../../common/rdr/librdr.a  ../../common/zlib/libz.a   -lXext -lX11
/usr/bin/ld: cannot find -lXext
collect2: ld returned 1 exit status
make[1]: *** [vncviewer] Error 1
make[1]: Leaving directory `/usr/exploit/vncsrv/unix/vncviewer'
make: *** [all] Error 1
Und bei Make bekomme ich das fehler LXext konnte nicht gefunden werden. Ich glaube irgentein Liberyl fehlt aber welches ?:)
Ich hoffe ihr könnt mir weiterhelfen.


Mit Freundlichen Grüßen
kaNi

PS: Ich hoffe ich habe nicht im Falschen forum gepostet. :(

gms
Beiträge: 7798
Registriert: 26.11.2004 20:08:38
Lizenz eigener Beiträge: MIT Lizenz

Beitrag von gms » 06.02.2007 13:20:33

Dann erstmal ein herzliches Willkommen !

und auch schon zu dem Problem
wenn du solche Linkerfehlermeldungen bekommst:

Code: Alles auswählen

/usr/bin/ld: cannot find -lXext
hilft oft eine entsprechende Suche:

Code: Alles auswählen

root@gms4:~# apt-file search libXext.so | grep -- -dev
libxext-dev: usr/X11R6/lib/libXext.so
libxext-dev: usr/lib/libXext.so
libxext-dev: usr/lib/libXext.so
mit nachfolgender Installation des gefundenen Pakets

Code: Alles auswählen

root@gms4:~# aptitude install libxext-dev
Gruß
gms

mckani
Beiträge: 2
Registriert: 06.02.2007 11:28:18

Beitrag von mckani » 07.02.2007 04:44:45

gms hat geschrieben:Dann erstmal ein herzliches Willkommen !

und auch schon zu dem Problem
wenn du solche Linkerfehlermeldungen bekommst:

Code: Alles auswählen

/usr/bin/ld: cannot find -lXext
hilft oft eine entsprechende Suche:

Code: Alles auswählen

root@gms4:~# apt-file search libXext.so | grep -- -dev
libxext-dev: usr/X11R6/lib/libXext.so
libxext-dev: usr/lib/libXext.so
libxext-dev: usr/lib/libXext.so
mit nachfolgender Installation des gefundenen Pakets

Code: Alles auswählen

root@gms4:~# aptitude install libxext-dev
Gruß
gms
achh super echt nett von dir. Vielen Dank
Hab wieder mal was dazu gerlern :)

Tnx
Grüße

Antworten