installing two things

Reply

Join Date: Aug 2006
Posts: 917
Reputation: linux is an unknown quantity at this point 
Solved Threads: 27
linux's Avatar
linux linux is offline Offline
Posting Shark

installing two things

 
0
  #1
Sep 3rd, 2006
I still haven't quite got the hang of installing / compiling programs in linux. so:

how do I install gambas? (gambas-1.0.17)
how do I install phoenix object basic (from janus-software.com)
Toshiba M1151.49 GB DDR-2 RAM1.6 GHz Centrino Duo80GB HDDWindows XP Media Center Edition
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: installing two things

 
0
  #2
Sep 3rd, 2006
Well, you must specify what you downloaded. Did you download the source code? (tarballs) Did you download a package? If you downloaded source, the general rule is:

1. Unarchive the tarball
2. In the command prompt, cd to the directory that contains the source code
3. "./configure"
4. "make"
5. [get root access if necessary]
6. "make install"

If you get errors, chances are that something needed is not installed or is out of date. Check the documentation for more details.
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Join Date: Aug 2006
Posts: 917
Reputation: linux is an unknown quantity at this point 
Solved Threads: 27
linux's Avatar
linux linux is offline Offline
Posting Shark

Re: installing two things

 
0
  #3
Sep 4th, 2006
Well, I did the ./configure thing, and it brought up some text (shown in attached picture), then I typed "make" and it brought up an error (shown in picture)
Attached Thumbnails
gambaserror.png  
Toshiba M1151.49 GB DDR-2 RAM1.6 GHz Centrino Duo80GB HDDWindows XP Media Center Edition
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: installing two things

 
0
  #4
Sep 4th, 2006
Oh, you haven't installed a compiler yet! Open your package manager, and look for the following packages:

GCC
G++
Automake (perhaps)

Then try it.
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Join Date: Aug 2006
Posts: 917
Reputation: linux is an unknown quantity at this point 
Solved Threads: 27
linux's Avatar
linux linux is offline Offline
Posting Shark

Re: installing two things

 
0
  #5
Sep 5th, 2006
Ok. So I installed everything in the "development" category of packages. now it comes up with this error message (after compiling for about 3 minutes)
Attached Thumbnails
compileerror.png  
Toshiba M1151.49 GB DDR-2 RAM1.6 GHz Centrino Duo80GB HDDWindows XP Media Center Edition
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: installing two things

 
0
  #6
Sep 5th, 2006
Means that you need the package called "xorg-x11-libs". You can get an RPM for it from Red Hat's package manager.
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Join Date: Oct 2005
Posts: 523
Reputation: pty is on a distinguished road 
Solved Threads: 37
pty's Avatar
pty pty is offline Offline
Posting Pro

Re: installing two things

 
0
  #7
Sep 7th, 2006
if you were to use a recent fedora (from the screenshot it looks like you're on redhat 9 or fc1?) you could use yum and just type (as su)

yum install gambas

and it would go and find all the prerequisite software, install that then install gambas.

as for phoenix object basic i have no idea how it comes. if they supply an RPM then type (again as su)

rpm -Uvh phoneix-object-basic-xyz.rpm

or if as code do as joe said

yum (or apt-get for debian users) is definately the way forward - makes this sort of stuff take minutes rather than hours/days/weeks



edit :

another package you may want to try out is monodevelop with the vb.net stuff. md is a really nice ide
Last edited by pty; Sep 7th, 2006 at 9:04 pm.
Note to self... pocket cup
Reply With Quote Quick reply to this message  
Join Date: Aug 2006
Posts: 917
Reputation: linux is an unknown quantity at this point 
Solved Threads: 27
linux's Avatar
linux linux is offline Offline
Posting Shark

Re: installing two things

 
0
  #8
Sep 13th, 2006
i am on redhat 9. is there a yum command in rh9?
Toshiba M1151.49 GB DDR-2 RAM1.6 GHz Centrino Duo80GB HDDWindows XP Media Center Edition
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: installing two things

 
0
  #9
Sep 13th, 2006
Originally Posted by linux View Post
i am on redhat 9. is there a yum command in rh9?
I doubt it. I think they only added it in the newer versions of Fedora Core. Try to get RPMs for both packages; that's probably easier than compiling. Then use rpm -Uvh package.rpm to install it.
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Join Date: Aug 2006
Posts: 917
Reputation: linux is an unknown quantity at this point 
Solved Threads: 27
linux's Avatar
linux linux is offline Offline
Posting Shark

Re: installing two things

 
0
  #10
Sep 23rd, 2006
thank you google! i typed in rpms for gambas and got it... now i have to install it! yay

NEW:
i downloaded it, and when i type: rpm -Uvh gambas-0.9.3 (ECT) and hit enter, it says:
Last edited by linux; Sep 23rd, 2006 at 1:08 pm.
Attached Thumbnails
gambaserror.png  
Toshiba M1151.49 GB DDR-2 RAM1.6 GHz Centrino Duo80GB HDDWindows XP Media Center Edition
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the *nix Software Forum


Views: 2911 | Replies: 17
Thread Tools Search this Thread



Tag cloud for *nix Software
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC