Linux - NewbieThis 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
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
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...
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.
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)
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.
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.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.