LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Fedora 7 newb here :) (https://www.linuxquestions.org/questions/linux-newbie-8/fedora-7-newb-here-568143/)

montalvo 07-10-2007 12:07 PM

Fedora 7 newb here :)
 
Hi, i just recently installed linux on my Gateway mx6421 notebook. Ive never used anything but windows, but im a fast learner,so i should be able to get the basics out on this thing. a few things have bugged me abit since i installed F7, my touchpad is EXTREMELY sensitive, which makes browsing a challenge, has anyone had the same problem?

also i downloaded my very first program that i wish to install. VLC media. I downloaded it from afterdawn.com. vlc-0.8.6c.tar.bz2, im unsure what kind of "package" it is, or how to use it. Im used to the usuall .exe, lol, as with most windows users. just need a bit of guidance or a link.

Another thing,do all programs for linux install the same way? thanks!

briealeida 07-10-2007 12:11 PM

Most programs for Linux install in a similar fashion.

I have a Gateway laptop that had Fedora 7 on it and I didn't have a problem with my touchpad. I also have a USB mini optical mouse that I used with it, though.

As for the program, you don't have to mess with the .tar.bz2

Open a terminal session and
yum -y install vlc

That should do the trick.

montalvo 07-10-2007 12:18 PM

i ran the terminal, but after i did that i got

loading "installonlyn" plugin.
you need to be root to perform this command.

do i need to have it directed somewhere?

custangro 07-10-2007 12:22 PM

You need to be root in order to perform the action.

First Become root:
Code:

su -
This will prompt you for the root password (you set that up when you installed)

Second you invoke the yum command:
Code:

yum -y install vlc

montalvo 07-10-2007 12:25 PM

awesome, worked like a charm, thanks alot!

edit: everything installed just fine but is it supposed to show up on the programs tab, or is it my job to find it?

custangro 07-10-2007 12:44 PM

Quote:

Originally Posted by montalvo
awesome, worked like a charm, thanks alot!

edit: everything installed just fine but is it supposed to show up on the programs tab, or is it my job to find it?

No problem :)

You can use yum to install just about any program you need with yum (just use the same steps as above just replacing the program name). For example. If you want to install ethereal; you would:

Become Root:
Code:

su -
Then install using yum:
Code:

yum -y install ethereal
Sometimes there are packages that are not available by default. You can install additional "repos" so that you can get a wide variety of "programs" (packages) at your disposal. I use the Livna repo (which is popular among Fedora users). You can install livna by:

Becoming root and running:
Code:

rpm -Uhv http://rpm.livna.org/livna-release-7.rpm
The above command is suitable for copying and pasting. Now every time you use yum you will also have access to the livina repo. You can find more information with google's linux search engine: http://www.google.com/linux

Hope this has been a help to you... :)

-custangro


All times are GMT -5. The time now is 02:47 PM.