LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   very newbie q's (https://www.linuxquestions.org/questions/linux-newbie-8/very-newbie-qs-277292/)

compzoo 01-13-2005 07:52 AM

very newbie q's
 
I'm new to linux so here goes my dumb q's

I have suse 9.1 up and running... now i want to install mysql, php and apache. i've downloaded mysql 4.1.8 as a tar.gz
I use gunzip to unzip..... but what next?

how do i open the readme file? is there a gui for that?

what commands in terminal do i use to install, and what file is used to install...

windows geek here looking for install.exe

thanks

qwijibow 01-13-2005 08:10 AM

next you ywould use tar to un-tar the resulting .tar file.

however, tar can automatically gunzip files.

tar -zxf file.tar.gz
or
tar -xjf file.tar.bz2

it seems you have downloaded source code, compiling programs yourself can be quite confuding to newbies, may i surgest installing using Yast, or a pre-compiled RPM . the packages will probably be on your suse install disks.

however if you do want to attempt to compile, the normal procedure is...

extract the source code
cd into the extracted source code
./configure
make
make install

if any step fails, resolv the problem (probably a missing dependency)
run make clean. then try again.

merlin23 01-13-2005 08:31 AM

you can read the README file with any editor like the console-based ones (less , vi, emacs, joe...) or another one with gui (xemacs, nedit, glimmer...)

The easiest and most common tool is "less" (or more...)....--> less README

You could also make cat README...


in the README you will find all instructions for the installation(same like decribed above mostly)

hywaydave 01-13-2005 10:57 AM

Re: very newbie q's
 
Quote:

Originally posted by compzoo
windows geek here looking for install.exe
Linux doesn't use extensions for executables :)

Deeze 01-13-2005 11:02 AM

Basic question, why did you download that file? Does Suse not have those packages in it's repository to install with it's own package manager? I would think the answer would be yes, but no idea why you downloaded the files like that.

compzoo 01-13-2005 12:04 PM

yast
 
Yast r cool indeed....

thanks qwijibow

compzoo 01-13-2005 12:06 PM

Quote:

Originally posted by Deeze
Basic question, why did you download that file? Does Suse not have those packages in it's repository to install with it's own package manager? I would think the answer would be yes, but no idea why you downloaded the files like that.
i r a dumb newbie deeze....

i'm learnin, thanks

mullera 01-13-2005 01:52 PM

You might find this little page helpful - I found it this morning
http://www.faqs.org/contrib/yal/page7faq.htm#7


All times are GMT -5. The time now is 09:08 AM.