PDA

View Full Version : some help please!!!


meko33
9th June 2007, 05:34 AM
:confused: ok here i go:
im new at this world of linux 'cause i was tired of windows and i know its gonna be hard to get use to but i will, i just need i little support first first of all: I DONT KNOW HOW TO INSTALL PROGRAMS I have been browsing looking for that but nothing concrete has found its say some scritps thing but i dont know where to write it?
please if you are gonna help me explain to me like a little kind :)

ppesci
9th June 2007, 06:32 AM
The easy way to install programs is by installing packages. The progams available and installed in your machine can be checked in one easy way:

With your mouse, click in the fedora icon located in the upper or down left corner, put your mouse in in System where a sub menu will display and select add/remove Software. Wait some time while your machine download information from internet and check in your file system.

When the operation finish, you will see the packages available (programs, libraries, utilities etc.). Browse the information to see what is a package supposed to do. If the package apear with a check mark, that says is installed in your machine, if not, they mus be downloaded fron the repository, clik on it to check to download. When installed, almos all program will appear in your machine menu.

HTH

stevea
9th June 2007, 07:28 AM

If you want to satve the package list to a text file (along with full descriptions) type:
yum info >/tmp/goodstuff.txt

To install a package from that (huge) list type
yum install PACKAGEMENT

Of course "Pirut' does something imilar - do "Applications->Add/remove Software"

leadgolem
9th June 2007, 08:23 AM
Ok, I'm going to assume your using fedora 7, and that you are using the default setup.

Many of the instructions you will be given in this forum take the form of things to type in a terminal. A terminal is similar to the old DOS prompt.

To open a terminal, click on applications go the system tools, then click on terminal. You should see something like this (http://www.fedoraforum.org/gallery/showimage.php?i=3242) . Yours will not be identical, I have customized the look of my system significantly.

Normally, after you have logged on you won't have the ability to install programs. Your account doesn't have permission to. So, we are going to log in to this terminal as the administrator.susu stands for super user. The super user is the administrator of the system, and the only one allowed to install programs. After entering that, you will be asked for your password. This is the root password you setup when you installed fedora. Enter that, and hit return. Don't worry that nothing is appearing as you type your root password, it's not supposed to show up. You should now have something like this (http://www.fedoraforum.org/gallery/showimage.php?i=3243).

Notice at the beginning of the bottom line, before the @ symbol that it now says root. Anything you tell the system to do from here will be done as root. That means you can install programs, modify important ways the system functions, etc...

There are several ways to install things in fedora. The easiest is to use a program called yum. Yum goes online and gets the packages you need to make the program you want to install run.

Now, say we want to install a free game like battle for wesnoth. First we specify what program we are talking to, in this case yum. Then we add a space, so it knows we are now telling it what kind of action we want it to take. We then specify the action. Then another space, and we tell it what to perform that action on. So, we end up with this.yum install wesnothYum then goes and gets not only that package, but anything else we didn't have required to run wesnoth. Then it asks you if this is ok, and installs the program.

I tried to simplify this as much as possible, as such I had to leave ALOT out.