Contenu | Rechercher | Menus

Annonce

Si vous avez des soucis pour rester connecté, déconnectez-vous puis reconnectez-vous depuis ce lien en cochant la case
Me connecter automatiquement lors de mes prochaines visites.

À propos de l'équipe du forum.

#1 Le 11/05/2010, à 16:00

tifaaa

Help pour un débutant svp :( (.tar.gz)

Bonjour a tous,j'ai installer Ubuntu il y'a quelque jours,et je suis vraiment presque choqué de voir la difficulté du truk,même si avec le temps sa ira surement mieu.
Je connaissais tout de windows,mais avec ubuntu je suis perdu pour l'installation de logiciel.
Surtout pour installer Prozgui,qui est en .tar.gz
J'ai regarder beaucoup de tuto mais j'ai jamais réussi a l'installer donc m'envoyer pas de tuto s'il vous plait,je préfère que vous m'expliquiez de vous même.
En gros,j'arrive a extraire mon fichier,mais une fois extrait,tout les tuto dise : ./configure   make    makeinstall . O_o
J'ai extrait mon fichier avec un logiciel,alors j'ai penser qu'il fallait y'aller sur le terminal,j'ai taper ./configure et sa me dit "aucun fichier ou dossier de ce type" je me doutais bien qu'il allait me dire sa de toute facon.

Voila vous savez tout,j'espere avoir de l'aide de votre part,bonne journée a tous.

Hors ligne

#2 Le 11/05/2010, à 16:10

Nasman

Re : Help pour un débutant svp :( (.tar.gz)

Pour un débutant:

1) oublier les sites du genre "téléchargertouslesvirus.com"
2) Utiliser les dépôts (utilisation du gestionnaire de paquets synaptic, ou aptitude ou apt-get en mode console)
3) Si logiciel non disponible dans les dépôts, rechercher les paquets .deb
4) Si paquet .deb non disponible, chercher les .tar.gz qui peuvent contenir les fichiers exéculables
5) paquets .tar.gz ne contenant pas le binaire exécutable mais les instructions de compilation

Avec ton ./configure make en makeinstall, tu es dans le dernier cas (le plus compliqué).

Pourquoi recherches tu la difficulté quand tu débutes ? Ton logiciel est il vraiment indispensable pour commencer ?

Ah j'oubliais, une excellente doc pour bien commencer
http://www.framabook.org/ubuntu.html


PC fixe sous Bionic 64 bits et portable avec Focal 64 bits

En ligne

#3 Le 11/05/2010, à 16:15

Koshie-2.0

Re : Help pour un débutant svp :( (.tar.gz)

Salut,

Une erreur classique de débutant du shell wink.

Tout d'abord je tiens à souligner un point, sauf dans de très rare cas, tu ne devra pas compiler (ce que tu doit faire avec ce que tu as extrait de ce tar.gz), généralement tu passera par un dépôt (via Synaptic, la Logithèque Ubuntu ou la ligne de commande) qui sont trois méthodes très simple. Et comme tu dis avec le temps ça ira mieux ! J'ai été perdu complètement pendant tout un mois tu sais ?

Bon, revenons-en à nos moutons. Tu tape dans un terminal ( Application > Accessoire > Terminal sous GNOME et sous KDE Application > Système > Terminal (Konsole) ) la commande ls qui sert à lister les dossiers et fichiers présent dans le répertoire courant (qui par défaut lorsque tu lance un terminal est /home/user soit ton dossier personnel, remplace user par le nom de ton utilisateur), admettons que ton dossier extrait soit toto tu dois taper ensuite cd toto/(cd qui veut dire change directory soit changer de répertoire), en effet pour compiler (./configure, make et makeinstall) tu dois être dans le répertoire où se trouvent les fichiers à compiler en question.

Quand tu pense y être tu peux vérifier avec la commande pwd qui montre dans quel répertoire tu te trouve. Ensuite tu pourra lancer la compilation, mais si je ne dis pas de bêtise la commande makeinstall demande les droits administrateur, donc sudo.

Tu vas donc taper :

ls (tu trouve le dossier toto admettons)
cd toto/
./configure
make
sudo makeinstall (ton mot de passe sera demandé)

Tu vas voir défiler un tas de ligne, si ça ne fonctionne pas n'hésite pas à tout copier ici dans les balises quote de préférence smile !

Dernière modification par Koshie-2.0 (Le 11/05/2010, à 16:16)

#4 Le 11/05/2010, à 16:15

tifaaa

Re : Help pour un débutant svp :( (.tar.gz)

Merci beaucoup pour ta réponse Nasman.
Justement j'ai chercher le même logiciel mais qui ne serait pas en .tar.gz parce que jusqu'a maintenant j'ai réussi a installer se que je voulais,sauf en.tar.gz.
Sinon si j'yarrive toujours pas je vais devoir cherchez un autre gestionnaire de télechargement comme Prozgui.

Dernière modification par tifaaa (Le 11/05/2010, à 16:16)

Hors ligne

#5 Le 11/05/2010, à 16:17

roger3000

Re : Help pour un débutant svp :( (.tar.gz)

hello

je suis vraiment presque choqué de voir la difficulté du truk

Faut pas smile
La plus grande difficulté est de se defaire des habitudes windows et de prendre celles de Ubuntu...

Pour ton souci:
Tu as extraits ton patati.tar.gz dans un repertoire, genre /home/Bureau/Patati

Tu lances un terminal
tu tapes:

$ cd /home/Bureau/Patati

cd te permets de rentrer dans le dossier /home/Bureau/Patati.
Evidemment tu mets le chemin exact vers ton fichier.
Du coup, la console affiche un truc du style:

toi@ton-ordi:/home/Bureau/Patati$

Puis, dans l'ordre

sudo ./configure

du code va defiler

sudo make

du code va encore defiler

sudo make install

du code va encore encore defiler

Pour ne pas te rassurer, il y a des chances pour qu'apres avoir tapé ./configure, tu recoives un message d'erreur te disant qu'il manque des paquets.
Il ne te reste plus qu'à les chercher... soit dans synaptic (systeme - Administration - gestion des paquets) soit, s'ils n'y sont pas (ou qu'il y a trop de variantes...) sur google...

Hors ligne

#6 Le 11/05/2010, à 16:17

Koshie-2.0

Re : Help pour un débutant svp :( (.tar.gz)

#7 Le 11/05/2010, à 16:17

roger3000

Re : Help pour un débutant svp :( (.tar.gz)

bon ben double grillade lol

Hors ligne

#8 Le 11/05/2010, à 16:19

Koshie-2.0

Re : Help pour un débutant svp :( (.tar.gz)

Côte de porc? smile

#9 Le 11/05/2010, à 16:23

sinbad83

Re : Help pour un débutant svp :( (.tar.gz)

Bonjour,
ton problème n'est pas un problème Ubuntu. Tous les paquets officiels sont dans des dépôts et l'installation et la mise à jour se font de façon remarquablement facile. Quand on sort des chemins battus, cela peut être plus compliqué...
Si tu en as besoin, regarde les docs sur http://doc.ubuntu-fr.org/tutoriel/compilation et http://www.commentcamarche.net/contents/tutlinux/linrpm.php3#archive
En général, avec les logiciels, il y a un ReadMe qui donne la procédure d'installation.
Bon courage.


La connaissance n'est pas une denrée rare, il faut la partager avec les autres.
Linux registered #484707
Site: www.coursinforev.org/doku.php
Desktop AMD Ryzen 5-3600, RAM 16GB, Ubuntu 20.10,   HP Pavillon G6 Ubuntu 20.10 et Ten, Serveur Ubuntu 18.04

Hors ligne

#10 Le 11/05/2010, à 19:55

tifaaa

Re : Help pour un débutant svp :( (.tar.gz)

Merci beaucoup a tous pour toute vos réponses, c'est la première fois que je met un problème sur un forum et que quelqu'un se bouge pour m'aider ^^'

Alors j'ai fait se qu'a dit Roger3000

Comme tu m'avais dit,après avoir tapé le ./configure  j'ai eu un message d'erreur,je suis donc alé au gestionnaire de paquet synaptic,je sais pas comment sa marche mais j'ai tapé " Prozgui"(le logiciel que j'essaie d'installer) dans la recherche et il n'ya eu aucune réponse,donc il n'yait pas dedan je pense.

Donc que dois-je faire maintenant...?

je Vous copie se que j'ai eu :

tifa@tifa-laptop:~$ cd /home/tifa/Téléchargements/prozgui-2.0.2
tifa@tifa-laptop:~/Téléchargements/prozgui-2.0.2$ sudo ./configure
[sudo] password for tifa: 
loading cache ./config.cache
checking for a BSD compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... yes
checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking host system type... i686-pc-linux-gnu
checking for gcc... 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... yes
checking whether gcc accepts -g... yes
checking for c++... no
checking for g++... no
checking for gcc... gcc
checking whether the C++ compiler (gcc  ) works... no
configure: error: installation or configuration problem: C++ compiler cannot create executables.
tifa@tifa-laptop:~/Téléchargements/prozgui-2.0.2$ sudo make
make: *** Pas de cibles spécifiées et aucun makefile n'a été trouvé. Arrêt.
tifa@tifa-laptop:~/Téléchargements/prozgui-2.0.2$ sudo make install
make: *** Pas de règle pour fabriquer la cible « install ». Arrêt.
tifa@tifa-laptop:~/Téléchargements/prozgui-2.0.2$

Derniere chose,merci pour les encouragement  vu que je trouvait sa difficile pour le moment,mais vous avez raison sa ira avec le temps hein,comme Koshie-2.0 sa lui a pris 1 mois,sa viendra pour moi aussi smile

Hors ligne

#11 Le 11/05/2010, à 20:23

kamui57

Re : Help pour un débutant svp :( (.tar.gz)

ok, il te dit qu'il ne trouve pas g++ ni c++ :

checking for c++... no
checking for g++... no

g++ je pense que tu peux le trouver dans le gestionnaire de paquets Synaptic, concernant c++ par contre je ne sais pas ce qu'il cherche.

Il y a des autres éléments manquants ici :

checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... missing

Ces derniers outils je ne les connais pas, mais avec mes dépots courants (rien de spécial) :
il ya un paquet "autoconf" dans Synaptic
"automake" aussi
"autoheader" non
"makeinfo" non plus.


Quand le dernier arbre aura été abattu, et le dernier animal exterminé, les hommes se rendront compte que l'argent ne se mange pas (proverbe indien)
Toshiba Satellite L655 4 Go RAM, Archlinux Gnome-shell,LXDE / W7
Toshiba Satellite M30 512 Mo RAM, Archlinux Gnome 3 restreint / Crunchbang LXDE
https://help.ubuntu.com/community/Pastebinit pour poster du texte sur internet en console

Hors ligne

#12 Le 11/05/2010, à 21:04

Koshie-2.0

Re : Help pour un débutant svp :( (.tar.gz)

Je crois que tu dois seulement installer le paquet build-essential qui te permet d'avoir tout les outils pour faire une compilation.

#13 Le 11/05/2010, à 22:04

tifaaa

Re : Help pour un débutant svp :( (.tar.gz)

J'ai télécharger build essential et sa a un peu mieu marcher,mais sa a refait des erreurs a la fin,mais jy étais presque.
Je pense qu'il reste plus grand chose a faire,enfin j'ai bientôt réussi grace a vous je pense ^^

Je vous met se que j'ai recue :

checking for working autoheader... missing
checking for working makeinfo... missing
checking host system type... i686-pc-linux-gnu
checking for gcc... 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... yes
checking whether gcc accepts -g... yes
checking for c++... 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++... yes
checking whether c++ accepts -g... yes
checking how to run the C preprocessor... gcc -E
checking for a BSD compatible install... /usr/bin/install -c
checking for uname... uname
checking build system type... i686-pc-linux-gnu
checking for ranlib... ranlib
checking for ld used by GCC... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD-compatible nm... /usr/bin/nm -B
checking whether ln -s works... yes
updating cache ./config.cache
checking for object suffix... o
checking for executable suffix... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions ... no
checking if gcc static flag -static works... -static
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking command to parse /usr/bin/nm -B output... ok
checking how to hardcode library paths into programs... immediate
checking for /usr/bin/ld option to reload object files... -r
checking dynamic linker characteristics... Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for objdir... .libs
creating libtool
loading cache ./config.cache
checking for strerror in -lcposix... no
checking for ANSI C header files... yes
checking for working const... yes
checking for inline... inline
checking for off_t... yes
checking for size_t... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for unistd.h... yes
checking for getpagesize... yes
checking for working mmap... yes
checking whether we are using the GNU C Library 2.1 or newer... yes
checking for argz.h... yes
checking for limits.h... yes
checking for locale.h... yes
checking for nl_types.h... yes
checking for malloc.h... yes
checking for stddef.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for unistd.h... (cached) yes
checking for sys/param.h... yes
checking for feof_unlocked... yes
checking for fgets_unlocked... yes
checking for getcwd... yes
checking for getegid... yes
checking for geteuid... yes
checking for getgid... yes
checking for getuid... yes
checking for mempcpy... yes
checking for munmap... yes
checking for putenv... yes
checking for setenv... yes
checking for setlocale... yes
checking for stpcpy... yes
checking for strchr... yes
checking for strcasecmp... yes
checking for strdup... yes
checking for strtoul... yes
checking for tsearch... yes
checking for __argz_count... yes
checking for __argz_stringify... yes
checking for __argz_next... yes
checking for iconv... yes
checking for iconv declaration... 
         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for nl_langinfo and CODESET... yes
checking for LC_MESSAGES... yes
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... yes
checking for GNU gettext in libc... yes
checking for dcgettext... yes
checking for msgfmt... no
checking for xgettext... :
checking for bison... no
checking for catalogs to be installed...  pt_BR nl ro
checking for working const... (cached) yes
checking whether time.h and sys/time.h may both be included... yes
checking whether struct tm is in sys/time.h or time.h... time.h
checking for ANSI C header files... (cached) yes
checking for string.h... (cached) yes
checking for sys/time.h... yes
checking for sys/types.h... yes
checking for unistd.h... (cached) yes
checking for strdup... (cached) yes
checking for strcasecmp... (cached) yes
checking for strncasecmp... yes
checking for size_t... (cached) yes
checking for socklen_t... yes
checking for FL/Fl.H... no
checking for X... no
checking for pthread_create in -lpthread... yes
checking for pow in -lm... yes
checking for XOpenDisplay in -lX11... no
checking for XdbeQueryExtension in -lXext... no
checking for XpmCreatePixmapFromData in -lXpm... no
checking for numericsort in -lfltk... no
checking for glEnable in -lGL... no
checking for numericsort in -lfltk... no
updating cache ./config.cache
creating ./config.status
creating Makefile
creating src/Makefile
creating intl/Makefile
creating po/Makefile.in
creating man/Makefile
creating config.h
creating po/POTFILES
creating po/Makefile
configuring in libprozilla
running /bin/sh ./configure  --cache-file=.././config.cache --srcdir=.
loading cache .././config.cache
checking for a BSD compatible install... (cached) /usr/bin/install -c
checking whether build environment is sane... yes
checking whether make sets ${MAKE}... (cached) yes
checking for working aclocal... missing
checking for working autoconf... missing
checking for working automake... missing
checking for working autoheader... missing
checking for working makeinfo... missing
checking host system type... i686-pc-linux-gnu
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) yes
checking how to run the C preprocessor... (cached) gcc -E
checking for AIX... no
checking for strerror in -lcposix... (cached) no
checking for minix/config.h... no
checking for gcc option to accept ANSI C... none needed
checking for a BSD compatible install... /usr/bin/install -c
checking build system type... i686-pc-linux-gnu
checking for ranlib... (cached) ranlib
checking for ld used by GCC... (cached) /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... (cached) yes
checking for BSD-compatible nm... (cached) /usr/bin/nm -B
checking whether ln -s works... (cached) yes
updating cache .././config.cache
checking for object suffix... o
checking for executable suffix... no
checking for gcc option to produce PIC... -fPIC
checking if gcc PIC flag -fPIC works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.lo... yes
checking if gcc supports -fno-rtti -fno-exceptions ... no
checking if gcc static flag -static works... -static
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the linker (/usr/bin/ld) supports shared libraries... yes
checking command to parse /usr/bin/nm -B output... ok
checking how to hardcode library paths into programs... immediate
checking for /usr/bin/ld option to reload object files... -r
checking dynamic linker characteristics... Linux ld.so
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for objdir... .libs
creating libtool
loading cache .././config.cache
checking for ANSI C header files... (cached) yes
checking for working const... (cached) yes
checking for inline... (cached) inline
checking for off_t... (cached) yes
checking for size_t... (cached) yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for unistd.h... (cached) yes
checking for getpagesize... (cached) yes
checking for working mmap... (cached) yes
checking whether we are using the GNU C Library 2.1 or newer... (cached) yes
checking for argz.h... (cached) yes
checking for limits.h... (cached) yes
checking for locale.h... (cached) yes
checking for nl_types.h... (cached) yes
checking for malloc.h... (cached) yes
checking for stddef.h... (cached) yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for sys/param.h... (cached) yes
checking for feof_unlocked... (cached) yes
checking for fgets_unlocked... (cached) yes
checking for getcwd... (cached) yes
checking for getegid... (cached) yes
checking for geteuid... (cached) yes
checking for getgid... (cached) yes
checking for getuid... (cached) yes
checking for mempcpy... (cached) yes
checking for munmap... (cached) yes
checking for putenv... (cached) yes
checking for setenv... (cached) yes
checking for setlocale... (cached) yes
checking for stpcpy... (cached) yes
checking for strchr... (cached) yes
checking for strcasecmp... (cached) yes
checking for strdup... (cached) yes
checking for strtoul... (cached) yes
checking for tsearch... (cached) yes
checking for __argz_count... (cached) yes
checking for __argz_stringify... (cached) yes
checking for __argz_next... (cached) yes
checking for iconv... (cached) yes
checking for iconv declaration... (cached) 
         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
checking for nl_langinfo and CODESET... (cached) yes
checking for LC_MESSAGES... (cached) yes
checking whether NLS is requested... yes
checking whether included gettext is requested... no
checking for libintl.h... (cached) yes
checking for GNU gettext in libc... (cached) yes
checking for dcgettext... (cached) yes
checking for msgfmt... (cached) no
checking for gmsgfmt... no
checking for xgettext... (cached) no
found msgfmt program is not GNU msgfmt; ignore it
checking for bison... no
checking for catalogs to be installed...  pt_BR ro nl
checking for pthread_create in -lpthread... (cached) yes
checking for gethostent... yes
checking for setsockopt... yes
checking for ANSI C header files... (cached) yes
checking whether time.h and sys/time.h may both be included... (cached) yes
checking for stdio.h... yes
checking for stdlib.h... (cached) yes
checking for unistd.h... (cached) yes
checking for ctype.h... yes
checking for errno.h... yes
checking for sys/types.h... (cached) yes
checking for sys/socket.h... yes
checking for netinet/in.h... yes
checking for arpa/inet.h... yes
checking for netdb.h... yes
checking for pthread.h... yes
checking for memory.h... yes
checking for string.h... (cached) yes
checking for strings.h... yes
checking for time.h... yes
checking for sys/time.h... (cached) yes
checking for pwd.h... yes
checking for fcntl.h... yes
checking for assert.h... yes
checking for working const... (cached) yes
checking for size_t... (cached) yes
checking for socklen_t... (cached) yes
checking for vprintf... yes
checking for select... yes
checking for socket... yes
checking for strdup... (cached) yes
checking for strerror... yes
checking for strtol... yes
checking for strncasecmp... (cached) yes
checking for snprintf... yes
checking for vsnprintf... yes
checking for __snprintf... no
checking for __vsnprintf... yes
checking for strchr... (cached) yes
checking for strrchr... yes
checking for which type of gethostbyname_r... checking for gethostbyname_r... yes
six
updating cache .././config.cache
creating ./config.status
creating Makefile
creating docs/Makefile
creating src/Makefile
creating intl/Makefile
creating po/Makefile.in
creating config.h
creating po/POTFILES
creating po/Makefile
tifa@tifa-laptop:~/Téléchargements/prozgui-2.0.2$ sudo make
[sudo] password for tifa: 
make  all-recursive
make[1]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2 »
Making all in libprozilla
make[2]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla »
make  all-recursive
make[3]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla »
Making all in intl
make[4]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/intl »
make[4]: Rien à faire pour « all ».
make[4]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/intl »
Making all in po
make[4]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/po »
make[4]: Rien à faire pour « all ».
make[4]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/po »
Making all in docs
make[4]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/docs »
make[4]: Rien à faire pour « all ».
make[4]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/docs »
Making all in src
make[4]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/src »
/bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I..   -DLOCALEDIR=\"/usr/local/share/locale\"    -Wall -O2 -D_REENTRANT -c connect.c
mkdir .libs
gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -Wall -O2 -D_REENTRANT -Wp,-MD,.deps/connect.pp -c connect.c  -fPIC -o .libs/connect.o
gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -Wall -O2 -D_REENTRANT -Wp,-MD,.deps/connect.pp -c connect.c -o connect.o >/dev/null 2>&1
/bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I..   -DLOCALEDIR=\"/usr/local/share/locale\"    -Wall -O2 -D_REENTRANT -c connection.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -Wall -O2 -D_REENTRANT -Wp,-MD,.deps/connection.pp -c connection.c  -fPIC -o .libs/connection.o
gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -Wall -O2 -D_REENTRANT -Wp,-MD,.deps/connection.pp -c connection.c -o connection.o >/dev/null 2>&1
/bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I..   -DLOCALEDIR=\"/usr/local/share/locale\"    -Wall -O2 -D_REENTRANT -c debug.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -Wall -O2 -D_REENTRANT -Wp,-MD,.deps/debug.pp -c debug.c  -fPIC -o .libs/debug.o
debug.c: In function 'proz_debug_delete_log':
debug.c:47: error: 'PATH_MAX' undeclared (first use in this function)
debug.c:47: error: (Each undeclared identifier is reported only once
debug.c:47: error: for each function it appears in.)
debug.c:47: warning: unused variable 'logfile_name'
debug.c: In function 'proz_debug':
debug.c:75: error: 'PATH_MAX' undeclared (first use in this function)
debug.c:75: warning: unused variable 'logfile_name'
make[4]: *** [debug.lo] Erreur 1
make[4]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/src »
make[3]: *** [all-recursive] Erreur 1
make[3]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla »
make[2]: *** [all-recursive-am] Erreur 2
make[2]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla »
make[1]: *** [all-recursive] Erreur 1
make[1]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2 »
make: *** [all-recursive-am] Erreur 2
tifa@tifa-laptop:~/Téléchargements/prozgui-2.0.2$ sudo make install
Making install in libprozilla
make[1]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla »
Making install in intl
make[2]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/intl »
if test "libprozilla" = "gettext" \
	   && test '' = 'intl-compat.o'; then \
	  /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /usr/local/lib /usr/local/include; \
	  /usr/bin/install -c -m 644 libintl.h /usr/local/include/libintl.h; \
	  /bin/sh ../libtool --mode=install \
	    /usr/bin/install -c -m 644 libintl.a /usr/local/lib/libintl.a; \
	else \
	  : ; \
	fi
if test 'no' = yes; then \
	  /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /usr/local/lib; \
	  temp=/usr/local/lib/t-charset.alias; \
	  dest=/usr/local/lib/charset.alias; \
	  if test -f /usr/local/lib/charset.alias; then \
	    orig=/usr/local/lib/charset.alias; \
	    sed -f ref-add.sed $orig > $temp; \
	    /usr/bin/install -c -m 644 $temp $dest; \
	    rm -f $temp; \
	  else \
	    if test yes = no; then \
	      orig=charset.alias; \
	      sed -f ref-add.sed $orig > $temp; \
	      /usr/bin/install -c -m 644 $temp $dest; \
	      rm -f $temp; \
	    fi; \
	  fi; \
	  /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /usr/local/share/locale; \
	  test -f /usr/local/share/locale/locale.alias \
	    && orig=/usr/local/share/locale/locale.alias \
	    || orig=./locale.alias; \
	  temp=/usr/local/share/locale/t-locale.alias; \
	  dest=/usr/local/share/locale/locale.alias; \
	  sed -f ref-add.sed $orig > $temp; \
	  /usr/bin/install -c -m 644 $temp $dest; \
	  rm -f $temp; \
	else \
	  : ; \
	fi
if test "libprozilla" = "gettext"; then \
	  /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /usr/local/share/gettext/intl; \
	  /usr/bin/install -c -m 644 VERSION /usr/local/share/gettext/intl/VERSION; \
	  /usr/bin/install -c -m 644 ChangeLog.inst /usr/local/share/gettext/intl/ChangeLog; \
	  dists="Makefile.in config.charset locale.alias ref-add.sin ref-del.sin gettext.h gettextP.h hash-string.h libgnuintl.h libgettext.h loadinfo.h bindtextdom.c dcgettext.c dgettext.c gettext.c finddomain.c loadmsgcat.c localealias.c textdomain.c l10nflist.c explodename.c dcigettext.c dcngettext.c dngettext.c ngettext.c plural.y localcharset.c intl-compat.c"; \
	  for file in $dists; do \
	    /usr/bin/install -c -m 644 ./$file \
			    /usr/local/share/gettext/intl/$file; \
	  done; \
	  chmod a+x /usr/local/share/gettext/intl/config.charset; \
	  dists="plural.c"; \
	  for file in $dists; do \
	    if test -f $file; then dir=.; else dir=.; fi; \
	    /usr/bin/install -c -m 644 $dir/$file \
			    /usr/local/share/gettext/intl/$file; \
	  done; \
	  dists="xopen-msg.sed linux-msg.sed po2tbl.sed.in cat-compat.c"; \
	  for file in $dists; do \
	    rm -f /usr/local/share/gettext/intl/$file; \
	  done; \
	else \
	  : ; \
	fi
make[2]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/intl »
Making install in po
make[2]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/po »
if test -r ".././mkinstalldirs"; then \
	  .././mkinstalldirs /usr/local/share; \
	else \
	  /bin/sh ../mkinstalldirs /usr/local/share; \
	fi
mkdir /usr/local/share/locale
mkdir /usr/local/share/locale/pt_BR
mkdir /usr/local/share/locale/pt_BR/LC_MESSAGES
installing pt_BR.gmo as /usr/local/share/locale/pt_BR/LC_MESSAGES/libprozilla.mo
mkdir /usr/local/share/locale/ro
mkdir /usr/local/share/locale/ro/LC_MESSAGES
installing ro.gmo as /usr/local/share/locale/ro/LC_MESSAGES/libprozilla.mo
mkdir /usr/local/share/locale/nl
mkdir /usr/local/share/locale/nl/LC_MESSAGES
installing nl.gmo as /usr/local/share/locale/nl/LC_MESSAGES/libprozilla.mo
if test "libprozilla" = "gettext"; then \
	  if test -r ".././mkinstalldirs"; then \
	    .././mkinstalldirs /usr/local/share/gettext/po; \
	  else \
	    /bin/sh ../mkinstalldirs /usr/local/share/gettext/po; \
	  fi; \
	  /usr/bin/install -c -m 644 ./Makefile.in.in \
			  /usr/local/share/gettext/po/Makefile.in.in; \
	else \
	  : ; \
	fi
make[2]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/po »
Making install in docs
make[2]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/docs »
make[3]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/docs »
make[3]: Rien à faire pour « install-exec-am ».
make[3]: Rien à faire pour « install-data-am ».
make[3]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/docs »
make[2]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/docs »
Making install in src
make[2]: entrant dans le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/src »
/bin/sh ../libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I. -I..   -DLOCALEDIR=\"/usr/local/share/locale\"    -Wall -O2 -D_REENTRANT -c debug.c
gcc -DHAVE_CONFIG_H -I. -I. -I.. -DLOCALEDIR=\"/usr/local/share/locale\" -Wall -O2 -D_REENTRANT -Wp,-MD,.deps/debug.pp -c debug.c  -fPIC -o .libs/debug.o
debug.c: In function 'proz_debug_delete_log':
debug.c:47: error: 'PATH_MAX' undeclared (first use in this function)
debug.c:47: error: (Each undeclared identifier is reported only once
debug.c:47: error: for each function it appears in.)
debug.c:47: warning: unused variable 'logfile_name'
debug.c: In function 'proz_debug':
debug.c:75: error: 'PATH_MAX' undeclared (first use in this function)
debug.c:75: warning: unused variable 'logfile_name'
make[2]: *** [debug.lo] Erreur 1
make[2]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla/src »
make[1]: *** [install-recursive] Erreur 1
make[1]: quittant le répertoire « /home/tifa/Téléchargements/prozgui-2.0.2/libprozilla »
make: *** [install-recursive] Erreur 1
tifa@tifa-laptop:~/Téléchargements/prozgui-2.0.2$

Hors ligne

#14 Le 14/05/2010, à 00:58

tifaaa

Re : Help pour un débutant svp :( (.tar.gz)

plus personne pr maider??:s

Hors ligne

#15 Le 14/05/2010, à 01:20

lovasoa

Re : Help pour un débutant svp :( (.tar.gz)

Est-ce que tu es sûr que tu veux ce gestionnaire de téléchargement en particulier? Tu es un débutant, et la compilation d'un logiciel n'est pas ce que l'on fait de plus facile. Tu vas regarder dans Applications>Logithèque Ubuntu, et tu as plein de gestionnaires de téléchargement. Et si tu veux celui-ci spécifiquement (ce qui est idiot), tu cherches un .deb sur le net (comme on te l'a DEJA dit dans ce topic), il y en a sûrement sur le site de debian. Google est ton ami:).


Pour les pauvres idiots, il y a Windows. Pour les riches Idiots, il y a mac os. Pour moi, il y a Ubuntu.

Hors ligne

#16 Le 14/05/2010, à 02:45

bonomme

Re : Help pour un débutant svp :( (.tar.gz)

Un programme c'est comme un omelette: pour en faire une il te faut des oeuf (le programme que tu essais d'installer: prozgui-2.0.2), et d'autre ingrédient (tes dépendances), une poile et une spatule (gcc, make, etc...).

quand tu installe un programme a partir de la source (généralement un fichier compresser en .tar.gz) tu doit avoir tout les ingrédients et les outils pour pouvoir l'installer, et cela prend du temps (certaine de tes dépendance on même peu être elle même des dépendance). donc soit tu est courageux (tu installe toute les dépendances) ou sinon tu utilise d'autre type de paquet et dans le cas d'ubuntu les .deb.

les paquet .deb c'est comme du surgeler il sont deja compiler (pas en code mais en binaire donc compréhensible par ta machine) et en plus il contien une lists de leur dependance et vont les chercher automatiquement (comme des grand).

mon conseil regarde se que te raconte ta console si elle te dit qu'il ya un paquet qui manque, (ex: checking for bison... no) regarde si tu peu pas le trouve dans synaptic (tu tape le nom dans la recherche: bison) si tu le trouve pas cherche sur google ton paquet avec une extenction .deb a la fin, et si tu trouve toujours pas il va falloir que tu le compile toi meme (avec la meme methode ./configure, make, make install).

ne crois pas que windows fait les chose differament les .exe ou .msi contienne le programme et leur dependances (que tu a peu etre deja sur ton ordinateur).


linux est contagieux, en 2 ans 3 victime

Hors ligne

#17 Le 14/05/2010, à 06:44

tifaaa

Re : Help pour un débutant svp :( (.tar.gz)

Je cherche pas a installer celui-la specialement,mais jaimerai bien savoir,parce que comme ca je me prend plus la tete,jai envie dapprendre le maximum sur linux.
Jai essayer le logiciel Jdownload aussi mais cétait la même chose,jarrive pas a les trouver en .deb ou autre sorte d'installation plus dacile...

Hors ligne

#18 Le 14/05/2010, à 07:56

lovasoa

Re : Help pour un débutant svp :( (.tar.gz)

Ahh! Tu avances petit à petit. Mais si tu relis, le moyen le plus facile n'est pas d'installer avec un .deb, mais d'installer debuis les dépôts. Pour cela, tu cherches le nom du logiciel que tu cherches (en l'occurence JDownloader) dans Système>Administration>Gestionnaire de paquets Synaptic ou dans Applications>Logithèque ubuntu.
  Il est normal que tu veuilles apprendre, mais tu n'es pas obligée de chercher la difficulté. Il faut savoir le niveau que tu vises. Mais tu dis que tu te débrouillais très bien sur Windows, et tu n'as jamais compilé sous cette plateforme. Compiler un programme n'est pourtant pas spécifique à Linux, et c'est même je pense une des taches que l'on peut faire sur le plus de systèmes.


Pour les pauvres idiots, il y a Windows. Pour les riches Idiots, il y a mac os. Pour moi, il y a Ubuntu.

Hors ligne

#19 Le 16/05/2010, à 01:45

tifaaa

Re : Help pour un débutant svp :( (.tar.gz)

Je saus pas sur windows jinstallais beaucoup de logiciel...etc mais j'ai jamais eu a compiler avec un Terminal...etc
Mais bon je vais apprendre avec Linux.
Et pour la jdownload je l'ai pas trouver sur la logithèque ou sur le gestionnaire de paquet synaptic.
En voyant le résultat de l'installation de prozgui, ya personne qui peut me dire se quil faut faire?

Hors ligne