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.
Introduction to Linux - A Hands on Guide
This guide was created as an overview of the Linux Operating System, geared toward new users as an exploration tour and getting started guide, with exercises at the end of each chapter.
For more advanced trainees it can be a desktop reference, and a collection of the base knowledge needed to proceed with system and network administration. This book contains many real life examples derived from the author's experience as a Linux system and network administrator, trainer and consultant. They hope these examples will help you to get a better understanding of the Linux system and that you feel encouraged to try out things on your own.
Click Here to receive this Complete Guide absolutely free.
I was looking for a program that would be equal to MS Frontpage. I came across Coffee Cup. http://www.coffeecup.com/linux/. I downloaded it, and there are no RPMs so I guess I have to complie it. What file do I compile, Coffee_install or installer.script?
My next question is, how do I compile any software that doesn't come with an RPM?
Try to look for a README or INSTALL file, these normaly tells you how to install.
Normally you go into the directory, where the files have been unpacked, and then run:
./configure
make
su -c 'make install'
At the last command, you are beeing asked for roots password, this is because you are writing to a directory, only root can write to.
That coffee cup editor is crap (but so is frontpage), if you want a straight html editor check out bluefish or quanta, if you want WYSIWYG editing check out mozilla composer, nvu, or quanta. You can also run dreamweaver upto the MX version under wine.
I am skipping the coffee cup install for right now. I am trying to compile gphoto2 for my digital camera.
As the readme states, I typed ./configure and I get an error stating:
configure: error: Library requirements (libgphoto2 >= 2.1.2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
[kc2cfy@localhost gphoto2]$ make
make: *** No targets specified and no makefile found. Stop.
You'll need two packages: libgphoto2 and libgphoto2-devel. First one is just the library packed so it can be used. Second file has more - it's needed to compile program using the library. You'll find the same scheme with many more packages. So when configure says you don't have a library but you know that you have it, check if the right devel package is installed.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.