LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 09-17-2008, 01:01 PM   #1
williy0385
LQ Newbie
 
Registered: Jun 2008
Posts: 13

Rep: Reputation: 0
install terminal help


I can't seem to figure out how to install the plugin plugger. I want to view TIFF files on the internet and cant not I was told to get the plugger5.1.3 to view them the website is http://fredrik.hubbe.net/plugger.html . I don't know what to write in the terminal to be able to install this the website say's to 1. Download and untar the archive. 2. Change directory into the Plugger directory. 3. Run ./configure 4. Run make 5. If you have root access, do 'make install' as root. Otherwise, do 'make localinstall'. I have step one done, have know clue how to do the second step so i skipped it.this is what I have hopefully someone can help.

pod@pod:~$ cd Desktop
pod@pod:~/Desktop$ cd plugin
pod@pod:~/Desktop/plugin$ ls
plugger-5.1.3 plugger-5.1.3.tar.gz
pod@pod:~/Desktop/plugin$ ./config plugger-5.1.3
bash: ./config: No such file or directory
pod@pod:~/Desktop/plugin$ plugger-5.1.3 ./config
bash: plugger-5.1.3: command not found
pod@pod:~/Desktop/plugin$ make plugger-5.1.3
make: Nothing to be done for `plugger-5.1.3'.
pod@pod:~/Desktop/plugin$

please let me know where im going wrong thankyou!
 
Old 09-17-2008, 01:13 PM   #2
w3bd3vil
Senior Member
 
Registered: Jun 2006
Location: Hyderabad, India
Distribution: Fedora
Posts: 1,191

Rep: Reputation: 49
cd plugger-5.1.3
and then try ./configure or make.
 
Old 09-17-2008, 05:26 PM   #3
williy0385
LQ Newbie
 
Registered: Jun 2008
Posts: 13

Original Poster
Rep: Reputation: 0
still did not work this is what i got

pod@pod:~$ cd Desktop
pod@pod:~/Desktop$ cd plugin
pod@pod:~/Desktop/plugin$ ls
plugger-5.1.3 plugger-5.1.3.tar.gz
pod@pod:~/Desktop/plugin$ cd plugger-5.1.3
pod@pod:~/Desktop/plugin/plugger-5.1.3$ ./config
bash: ./config: No such file or directory
pod@pod:~/Desktop/plugin/plugger-5.1.3$ make
make: *** No targets specified and no makefile found. Stop.
pod@pod:~/Desktop/plugin/plugger-5.1.3$ make plugger-5.1.3
make: *** No rule to make target `plugger-5.1.3'. Stop.
pod@pod:~/Desktop/plugin/plugger-5.1.3$
 
Old 09-17-2008, 06:04 PM   #4
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
are you trying to run
./config ( WRONG COMMAND )

look for a file called " configure "
use cd to get to that folder then read the two files called README and INSTALL

run
Code:
./configure --prefix=( where ever the plugin folder is for firefox????? i am assuming you are using FF )

Last edited by John VV; 09-17-2008 at 06:05 PM.
 
Old 09-17-2008, 11:44 PM   #5
williy0385
LQ Newbie
 
Registered: Jun 2008
Posts: 13

Original Poster
Rep: Reputation: 0
I feel like im really close this is what i got thankyou for your help

pod@pod:~$ cd Desktop/plugin
pod@pod:~/Desktop/plugin$ ls
plugger-5.1.3 plugger-5.1.3.tar.gz
pod@pod:~/Desktop/plugin$ cd plugger-5.1.3
pod@pod:~/Desktop/plugin/plugger-5.1.3$ ./configure /usr/lib/mozilla-firefox/plugins
configure: WARNING: you should use --build, --host, --target
configure: WARNING: invalid host type: /usr/lib/mozilla-firefox/plugins
checking for /usr/lib/mozilla-firefox/plugins-gcc... no
checking for gcc... gcc
checking for C compiler default output... configure: error: C compiler cannot create executables
See `config.log' for more details.
pod@pod:~/Desktop/plugin/plugger-5.1.3$ ./configure --build /usr/lib/mozilla-firefox/plugins
checking for gcc... gcc
checking for C compiler default output... configure: error: C compiler cannot create executables
See `config.log' for more details.
pod@pod:~/Desktop/plugin/plugger-5.1.3$
 
Old 09-18-2008, 01:44 AM   #6
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
Quote:
./configure /usr/lib/mozilla-firefox/plugins
this is not the command I posted
use THIS copy and past it
Code:
./configure --prefix=/usr/lib/mozilla-firefox/plugins
you did not use the --prefix tag

--------
the order is
--
./configure ( options)
make
su -
( root password)
make install
--
su - is not needed in your case seeing as you are a limited user
 
Old 09-19-2008, 12:05 AM   #7
williy0385
LQ Newbie
 
Registered: Jun 2008
Posts: 13

Original Poster
Rep: Reputation: 0
I feel like an idiot but thankyou for sticking with me and helping i still get an error

pod@pod:~$ cd Desktop/plugin
pod@pod:~/Desktop/plugin$ ls
plugger-5.1.3 plugger-5.1.3.tar.gz
pod@pod:~/Desktop/plugin$ cd plugger-5.1.3
pod@pod:~/Desktop/plugin/plugger-5.1.3$ ./configure --prefix=/usr/lib/mozilla-firefox/plugins
checking for gcc... gcc
checking for C compiler default output... configure: error: C compiler cannot create executables
See `config.log' for more details.
pod@pod:~/Desktop/plugin/plugger-5.1.3$

I think it might because im running ubuntu
 
Old 09-19-2008, 12:21 AM   #8
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
well if you have all of the dev tools gcc.automake.pkgconf ,... installed
then it may be a problem compiling that old code( last worked on and updated in 2006) with gcc 4.1 .You may need to use gcc3.4 ( on fedora it is called "gcc-compact") what ubuntu calls it ?? i don't know .
 
Old 09-19-2008, 12:24 AM   #9
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,627

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
you might want to ask on the ubuntu part of the forum
http://www.linuxquestions.org/questions/ubuntu-63/
How do i "I want to view TIFF files on the internet"
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with line in terminal while trying to install charkol11 Linux - Software 4 06-08-2008 12:02 PM
Terminal Install Polantaris Linux - Newbie 1 08-09-2007 11:59 AM
How do I install this .run from a terminal?? Virtuality Linux - Newbie 37 01-23-2007 10:42 PM
Green Install In Terminal Azulongmon Linux - Newbie 2 12-20-2005 05:20 AM
methods of install in terminal??? DMZeplin Mandriva 2 02-19-2005 09:14 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:46 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration