LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 01-11-2005, 06:25 AM   #1
jmcdonald21
LQ Newbie
 
Registered: Jan 2005
Location: CT
Distribution: MandrakeLinux 10.1
Posts: 27

Rep: Reputation: 15
Quanta help... anyone? Install help please!


OK, heres the deal. I am new to linux. I have used the quanta web editor for a few days now. Like it. Downloaded the new beta version. Opened with ARK. Extracted the files to a folder named quanta in /home/user/quanta. Can't install it. Install directions say:
In order to compile and install Quanta Plus on your system, type the following in the base directory of the Quanta Plus distribution:

% ./configure
% make
% make install


Since Quanta Plus uses autoconf and automake you should have no trouble compiling it. Should you run into problems please report them to the KDE mailing lists.

Allright. This means nothing to me. I opened the Konsole thingy and typed this in... nothing. Logged in as the SU and still nothing. I can't install anything on linux. Only things I have been able to install are firefox and thunderbird. But that pretty much did it self. Some please help. I will forever be in your debt.

PS Don't recommend another editor, I've tried Screem, mozilla, I like the quanta a lot! I am determined to figure this linux install stuff out! I also don't really know what I am doing with extracting stuff either. Kinda just wingin it.

Thanks
 
Old 01-11-2005, 06:28 AM   #2
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
do you have a compiler(gcc and g++) and autoconf, automake, make, libtool, etc... from the development section of the install cd?
 
Old 01-11-2005, 06:33 AM   #3
jmcdonald21
LQ Newbie
 
Registered: Jan 2005
Location: CT
Distribution: MandrakeLinux 10.1
Posts: 27

Original Poster
Rep: Reputation: 15
I am not sure??? I downloaded the file from the internet. I don't have a CD for it. When I installed Mandrake I told it to install all of the stuff it offered up.
 
Old 01-11-2005, 06:38 AM   #4
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
forget the file for just a sec, I'm asking about the Mandrake installation itself. try this in a console/xterm:

g++ -v

and see what the output is.

If there's not any at all, then we have to install some packages ( development packages ).
 
Old 01-11-2005, 06:39 AM   #5
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
I haven't used Mandrake 10.1 ( did use 10.0 a little ), but check your menu's for an software tool of some sort
 
Old 01-11-2005, 06:40 AM   #6
jmcdonald21
LQ Newbie
 
Registered: Jan 2005
Location: CT
Distribution: MandrakeLinux 10.1
Posts: 27

Original Poster
Rep: Reputation: 15
I found a tutorial on how to use a compiler but I don't know where to begin: heres a link http://www.linuxquestions.org/questi...ticle&artid=15

This tutorial tell me to create this compiler, but doesn't say how. It tells me the code to put in, but doesn't say where to put it in at. I don't know very much about linux at all, so any help is going toneed tobe provided from the ground up. Thanks
 
Old 01-11-2005, 06:47 AM   #7
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
ok, first thing we have to do is make sure you have a compiler and the necessary development tools on your system. for the compiler itself, run the following in a xterm/console:

g++ -v

and let me know if you have any output ( or a command not found error).
 
Old 01-11-2005, 06:48 AM   #8
jmcdonald21
LQ Newbie
 
Registered: Jan 2005
Location: CT
Distribution: MandrakeLinux 10.1
Posts: 27

Original Poster
Rep: Reputation: 15
Here is what I found out with the g++ thing

Reading specs from /usr/lib/gcc/i586-mandrake-linux-gnu/3.4.1/specs
Configured with: ../configure --prefix=/usr --libdir=/usr/lib --with-slibdir=/lib --mandir=/usr/share/man --infodir=/usr/share/info --enable-shared --enable-threads=posix --disable-checking --enable-long-long --enable-__cxa_atexit --enable-clocale=gnu --disable-libunwind-exceptions --enable-languages=c,c++,ada,f77,objc,java --host=i586-mandrake-linux-gnu --with-system-zlib
Thread model: posix
gcc version 3.4.1 (Mandrakelinux 10.1 3.4.1-4mdk)
 
Old 01-11-2005, 06:55 AM   #9
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
good, we have the c++ compiler. Now its time to go back to quanta and see what we get.

cd to /home/user/quanta and execute the command "ls" (no quotes) which will give you the current files in the current working directory. There should be a file called configure in there. If there is, then try the following:

./configure

and let me know how it goes. ( you will need to install it to the kde root directory which is probably /opt/kde ( check and see if there is an /opt/kde)). If this is the case, then the line above will need to be :

./configure --prefix=/opt/kde
 
Old 01-11-2005, 07:02 AM   #10
kevinatkins
Member
 
Registered: Jan 2004
Location: cheshire, uk
Distribution: Ubuntu Hoary
Posts: 605

Rep: Reputation: 33
hi,

as well as a compiler, you'll need some more development tools, such as autoconf (as alluded to in the Quanta documentation) - check you've got autoconf installed by issuing the following in a console -

Code:
which autoconf
if it is installed, output of above should show the location of the installed program (/usr/bin/autoconf).. Chances are, if you opted to install the development programs during Mandrake installation, you should have everything you need.

you say you get nothing when you type .configure. are you in the quanta directory you extracted to? what exactly happens when you type the command?

i'm assuming you are typing ./configure, then pressing the return key - the % signs are just notation for the command prompt - you don't need to type those!
 
Old 01-11-2005, 07:03 AM   #11
jmcdonald21
LQ Newbie
 
Registered: Jan 2005
Location: CT
Distribution: MandrakeLinux 10.1
Posts: 27

Original Poster
Rep: Reputation: 15
should I use the Konsole terminal? Or something else?
 
Old 01-11-2005, 07:04 AM   #12
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
konsole is fine.
 
Old 01-11-2005, 07:06 AM   #13
jmcdonald21
LQ Newbie
 
Registered: Jan 2005
Location: CT
Distribution: MandrakeLinux 10.1
Posts: 27

Original Poster
Rep: Reputation: 15
Also, how do i execute the ls? I need you to hold my hand through this one, step by step. I know less than nothing about programming.
 
Old 01-11-2005, 07:07 AM   #14
jmcdonald21
LQ Newbie
 
Registered: Jan 2005
Location: CT
Distribution: MandrakeLinux 10.1
Posts: 27

Original Poster
Rep: Reputation: 15
this is where I am at

[josh@c-xxxxxxxxxx josh]$ /home/josh/quanta
bash: /home/josh/quanta: is a directory
 
Old 01-11-2005, 07:09 AM   #15
__J
Senior Member
 
Registered: Dec 2004
Distribution: Slackware, ROCK
Posts: 1,973

Rep: Reputation: 46
type:

cd /home/josh/quanta

then:

ls

and see if one of the files in that directory is named configure
 
  


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
Quanta install can't find X include Ezplan Linux - Software 6 12-03-2005 04:00 PM
=: M E D I T A T I O N F O R T H E D A Y :=. Install Quanta, ploblem in Qt PICOspark Linux - Software 4 06-02-2005 11:46 PM
Quanta Mr T Donegal Linux - Software 6 06-24-2004 03:13 AM
trying to install http://quanta.sourceforge.net/ ftcnt Linux - Newbie 2 06-20-2004 08:25 PM
What is Quanta??? cathodion Linux - Software 1 05-16-2002 09:30 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 01:24 PM.

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