also @ TechSpot: Nortel's internal network "owned" by hackers for almost a decade
Welcome to the TechSpot OpenBoards. Please read the FAQ if you have any questions. Sign up or Login to participate.

Go Back   TechSpot OpenBoards > Software > The Alternative OS

Download Now:

Installing software in linux

Page 1 of 2 1 2
Thread Tools Search this Thread
  #1  
Old 11-05-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
Installing software in linux

I am using Suse 8.1 on my laptop. I use it for college, typing and other work like compiling java, when i was using windows.

Can somebody show me how they can install an SDK?

The instructions on Suns website don't cut if with me, being a n00b and all to this.

Lets start by saying i have the SDK sitting on my desktop, whats the next step? The SDK is a bin file.


Another issue i have with installing software is mozilla and licq, this is for my desktop machine. licq is for version 8.0 of suse, which i am sure will work with 8.1, the file is an rpm and mozilla is a gz file.
I've read the readme on the gz file btw.

Lets also assume i know nothing of the command line.
  #2  
Old 11-05-2002
Phantasm66's Avatar
TechSpot Evangelist
 
Location: Glasgow, Scotland
Member since: Feb 2002, 6,504 posts
rpms are installed with:

rpm -Uvh filename.rpm

where "filename.rpm" is the name of the file.

Any errors post them back here.

The tar.gz file is probably installed like this:

unpack it first:

tar -zxvf filename.tar.gz

unpacks to a directory, change dir into that directory:

cd filename

now there will be an INSTALL file or README file, read it like this:

more INSTALL

or

more README

it will tell you what to do. Its more than likely going to be something along the lines of:

./configure
make
make install


Remember that these operations will require you to become root. Either log in as root or "su" to root with the "su" command.
  #3  
Old 11-05-2002
Mictlantecuhtli's Avatar
TechSpot Special Forces
 
Location: Finland
Member since: Feb 2002, 4,886 posts
System specs
Re: Installing software in linux

Quote:
Originally posted by CrackedButter
Can somebody show me how they can install an SDK?

The instructions on Suns website don't cut if with me, being a n00b and all to this.

Lets start by saying i have the SDK sitting on my desktop, whats the next step? The SDK is a bin file.
Open up terminal (command line window) and start the bin file by going to that directory (changing directories is done with cd command, note that directory delimiter is /, not \ like in non-alternative OSs), whatever it is (it might be easier to move the file to your home directory), simply by typing ./j2sdk-1_4_1_01-linux-i586.bin or whatever the filename is. It's a self-extracting installer which installs Java SDK in a directory named j2sdk1.4.1_<version number> in the current directory.
  #4  
Old 11-05-2002
Nodsu's Avatar
TechSpot Evangelist
 
Location: Estonia
Member since: Feb 2002, 9,431 posts
System specs
U sure it's the current directory? My really bad memory says it was /usr
  #5  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
While i will try these suggestions don't be surprised if i cannot do it.
  #6  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
As a side note, i installed Licq on my system, at this time i have not been able to get it to work. I click on it in the menu and the flower icon appears then after a period of time, everything just disappears. Is there something i can do to get this to work?

This is the version of licq that i said should work on suse 8.1 when licq is for version 8.0!

Last edited by CrackedButter; 11-06-2002 at 07:12 AM..
  #7  
Old 11-06-2002
Mictlantecuhtli's Avatar
TechSpot Special Forces
 
Location: Finland
Member since: Feb 2002, 4,886 posts
System specs
Try starting licq from command line - applications usually display some information there if something goes wrong.
  #8  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
How do i do that? Remember i said i am a total n00b with the command line
  #9  
Old 11-06-2002
Mictlantecuhtli's Avatar
TechSpot Special Forces
 
Location: Finland
Member since: Feb 2002, 4,886 posts
System specs
Just type licq at the command line, it should start.
  #10  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
meltedbutter@linux:~> licq
13:24:14: [WRN] Licq: Ignoring stale lockfile (pid 3148)
13:24:14: [ERR] Unable to load plugin (qt-gui): /usr/local/lib/licq/licq_qt-gui.so: undefined symbol: __ti7QDialog.

Thats what i get when i type "licq"
  #11  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
as a side note whats the command that gives a systems uptime, showing how long its been running for?
  #12  
Old 11-06-2002
Mictlantecuhtli's Avatar
TechSpot Special Forces
 
Location: Finland
Member since: Feb 2002, 4,886 posts
System specs
Those licq problems seem like wrong QT version, though I'm not 100% sure. I guess SuSE ChangeLog doesn't show those details. Hmm.. one option would be downloading licq source and doing the "./configure, make, make install"-dance.

Uptime command is uptime, w displays a bit more information, too.
  #13  
Old 11-06-2002
Phantasm66's Avatar
TechSpot Evangelist
 
Location: Glasgow, Scotland
Member since: Feb 2002, 6,504 posts
I hardly ever bother with RPMs myself, its meant to make things easy but it leans towards complications for me always.... I tend to always download the source code and ./configure, make, make install, etc...
  #14  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
Quote:
Originally posted by Phantasm66
I hardly ever bother with RPMs myself, its meant to make things easy but it leans towards complications for me always.... I tend to always download the source code and ./configure, make, make install, etc...
While i can understand your method, is this the better way for someone like myself?

Is it not harder?
  #15  
Old 11-06-2002
Phantasm66's Avatar
TechSpot Evangelist
 
Location: Glasgow, Scotland
Member since: Feb 2002, 6,504 posts
Well, not really much harder when you realise that its like the same set of 6 or so commands in 95% of cases....

Its certainly more likely to work if you do it properly....
  #16  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
Okay i have the tar file unzipped and its inside a folder i create called "licq", thats sitting on the desktop. Whats the next stage now?

you can give me the instructions for mozilla as well if you want since that is also in a folder extracted from the tar file.

Last edited by CrackedButter; 11-06-2002 at 11:57 AM..
  #17  
Old 11-06-2002
Phantasm66's Avatar
TechSpot Evangelist
 
Location: Glasgow, Scotland
Member since: Feb 2002, 6,504 posts
open a command prompt
navigate to the directory that you just untarred.

The desktop is probably not the best place - I would suggest a "download" directory in your home directory in which you can untar files.

Your desktop will be something like .gnome-desktop or .desktop or something directory in your home directory.

Once inside, consult the INSTALL file, which you can read by entering the following command:

more INSTALL

or it may be called README, thus:

more README

Anyway, there will be simple instructions. Read and follow those, but its very likely to be:

./configure
make
make install


which is it for about 95% of software out there in this form.
  #18  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
Just out of curiosty, where i am to enter the command, in the location bar or open a console?
  #19  
Old 11-06-2002
Phantasm66's Avatar
TechSpot Evangelist
 
Location: Glasgow, Scotland
Member since: Feb 2002, 6,504 posts
ABSOLUTELY...


....on an open console....
  #20  
Old 11-06-2002
CrackedButter's Avatar
TechSpot Member
 
Location: The 51st State of America
Member since: Nov 2002, 41 posts
There are 4 README files each explaining an issue hte software has with clients and servers whatever. But there are 2 makefile files. Are these what you mean?

Also can you explain what you mean by this:

"./configure
make
make install"
Closed Thread
Page 1 of 2 1 2

Similar Topics
Topic Replies Forum
Need help installing linux 3 The Alternative OS
Adobe and Macromedia Software on Linux 4 The Alternative OS
Installing Linux Again. 5 The Alternative OS
Installing Linux 13 The Alternative OS
mdadm (software RAID in Linux) 5 The Alternative OS

Thread Tools Search this Thread
Search this Thread:

Advanced Search
All times are GMT -4. The time now is 12:33 PM.