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 03-15-2005, 11:09 PM   #1
Lyko
Member
 
Registered: Mar 2005
Posts: 69

Rep: Reputation: 15
Very Basic Help


I have had Linux for an hour. I was born and raised on Windows, so I am like a fish out of water on this thing.

After fiddling with basic things for 30 minuets, I decided to go get some programs. I downloaded LimeWire for Linux as well as 3ddesktop. Right now, there are 2 rpm files sitting in my home folder I have no idea what to do with. I know there is a command line, but I don't know how to use it. When I click on the rpm files, it just gives me an option to extract it, which I did. Now I have two rpm files and 2 white documents that read gibberish to me. How do I install stuff on Linux?
 
Old 03-15-2005, 11:23 PM   #2
detpenguin
Senior Member
 
Registered: Oct 2003
Location: lost in the midwest...
Distribution: Slackware
Posts: 1,098

Rep: Reputation: 54
what distro?

if you have fedora, suse, mandrake...rpm based distro's, you can open a terminal (konsole, xterm) and type:

su
password
rpm -ivh <packagename>.rpm

and it *should* install for you...
 
Old 03-15-2005, 11:38 PM   #3
Lyko
Member
 
Registered: Mar 2005
Posts: 69

Original Poster
Rep: Reputation: 15
I am using Ubuntu. If this is a bad distro for beginners, I dont mind switching.
 
Old 03-15-2005, 11:58 PM   #4
Lyko
Member
 
Registered: Mar 2005
Posts: 69

Original Poster
Rep: Reputation: 15
Ok, here is what I have come up with so far. I downloaded 3ddesktop, an rpm file. RIght now, it is sitting in the "My Downloads" folder. I have opened it with archive manager, and I dont know where to go from there.

I followed the Read Me instructions on the main page, and it told me to hit...

tar zxvf 3ddesktop-x.y.z.tar.gz
./configure
make
make install

But it comes up with an error message, which reads as follows...

tar zxvf 3ddesktop-x.y.z.tar.gz
tar: 3ddesktop-x.y.z.tar.gz: Cannot open: No such file or directory
tar: Error is not recoverable: exiting now
tar: Child returned status 2
tar: Error exit delayed from previous errors
root@cpe-24-174-165-252:/home/bobby # ./configure
bash: ./configure: No such file or directory
root@cpe-24-174-165-252:/home/bobby # make
make: *** No targets specified and no makefile found. Stop.
root@cpe-24-174-165-252:/home/bobby # make install

On the LimeWire file, I don't know where to begin.
 
Old 03-16-2005, 01:58 AM   #5
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
when u open up the terminal you must cd (change directory) to the My Downloads folder or wherever you saved the file, first before running those commands.
open up the terminal and type
Code:
cd "~/My Downloads"
or if that doesnt work try (although they should both do the same thing)
Code:
cd "/home/bobby/My Downloads"
including the quotes.. your My Downloads folder is in your home directory, right? after cd'ing to this downlaods folder, then proceed with the commands (ie ./configure, etc)

Last edited by nadroj; 03-16-2005 at 02:04 AM.
 
Old 03-16-2005, 02:05 AM   #6
Lyko
Member
 
Registered: Mar 2005
Posts: 69

Original Poster
Rep: Reputation: 15
I get this error message

Code:
bash: cd: ~/my downloads: No such file or directory
[edit] ah, second one worked

Last edited by Lyko; 03-16-2005 at 02:06 AM.
 
Old 03-16-2005, 02:06 AM   #7
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
linux is case sensitive, which is why i typed My Downloads... type in the _exact_ name of the folder. My Downloads is different from my Downloads different from my downloads different from..... etc
 
Old 03-16-2005, 02:08 AM   #8
Lyko
Member
 
Registered: Mar 2005
Posts: 69

Original Poster
Rep: Reputation: 15
One I am in the My Downloads directory, where do I go from there? I typed ./config, but nothing happened
 
Old 03-16-2005, 02:12 AM   #9
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
did you extract the 3ddesktop file already? did it create a folder name 3ddesktop or something?

Last edited by nadroj; 03-16-2005 at 02:13 AM.
 
Old 03-16-2005, 02:13 AM   #10
JaseP
Senior Member
 
Registered: Jun 2002
Location: Eastern PA, USA
Distribution: K/Ubuntu 18.04-14.04, Scientific Linux 6.3-6.4, Android-x86, Pretty much all distros at one point...
Posts: 1,802

Rep: Reputation: 157Reputation: 157
You have to untar a tarball package before you can do a make install on it.

I fyou have an RPM for your package, and your distro supports RPMs, installation is easier.

it's simply:

rpm -ivh packagename

from where the package resides. Of course you have to be root.

Most distros have a graphical package manager though. I don't know about Ubunto. Never used it.
 
Old 03-16-2005, 02:15 AM   #11
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
yup, ubuntu uses synaptic
 
Old 03-16-2005, 02:16 AM   #12
Lyko
Member
 
Registered: Mar 2005
Posts: 69

Original Poster
Rep: Reputation: 15
Same error message.

Forget 3ddesktop, lets move on to something simpler. Limewire. It is in the same place, and on the website, it says type...

Code:
sh ./LimeWireLinux.bin
but when I do that in the directory you gave me, it says...

Code:
./LimeWireLinux.bin: ./LimeWireLinux.bin: No such file or directory
 
Old 03-16-2005, 02:17 AM   #13
nadroj
Senior Member
 
Registered: Jan 2005
Location: Canada
Distribution: ubuntu
Posts: 2,539

Rep: Reputation: 60
did you download just that one .bin file? or did it come in some package and you extracted it?
 
Old 03-16-2005, 02:18 AM   #14
JaseP
Senior Member
 
Registered: Jun 2002
Location: Eastern PA, USA
Distribution: K/Ubuntu 18.04-14.04, Scientific Linux 6.3-6.4, Android-x86, Pretty much all distros at one point...
Posts: 1,802

Rep: Reputation: 157Reputation: 157
have you tried using apt-get???

Ubuntu probably supports that.
 
Old 03-16-2005, 02:19 AM   #15
Lyko
Member
 
Registered: Mar 2005
Posts: 69

Original Poster
Rep: Reputation: 15
When I extracted it, I got an SH file
 
  


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 on basic C vivekr Programming 12 12-01-2005 07:20 AM
really basic os? gravy Linux - Newbie 7 02-26-2005 09:20 PM
basic Ryan450 Linux - General 5 08-20-2004 11:59 PM
Really Basic ?'s Susan Linux - Newbie 3 10-26-2001 01:51 PM
I'm a BASIC chap, looking for some info on BASIC programming CragStar Programming 2 01-21-2001 09:19 AM

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

All times are GMT -5. The time now is 12:00 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