Linux - Newbie This 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
03-14-2009, 10:17 AM
|
#1
|
|
LQ Newbie
Registered: Mar 2009
Posts: 17
Rep:
|
installing of driver and adobe flash player (fedora10)
Had a clean install on a system, how should i go about to install the driver?
graphic card etc...
and how install the adobe flash player had tried dl from the http://get.adobe.com/flashplayer/ but just couldnt get it work/installed
|
|
|
|
03-14-2009, 10:35 AM
|
#2
|
|
Member
Registered: Nov 2007
Location: /home/watcher69b
Distribution: RH, Fedora & CentOS
Posts: 539
Rep:
|
What OS are you using?
Redhat, CentOS, Fedora you should use .rpm
Umbuntu, debian use .deb
SuSe use .yum
.tar will be harder so would stay away from that until you have more exp.
The video driver we will need to know what card and again what OS
Cheers!
|
|
|
|
03-14-2009, 10:53 AM
|
#3
|
|
LQ Newbie
Registered: Mar 2009
Posts: 17
Original Poster
Rep:
|
im using fedora.
card is...nvidia geforce
|
|
|
|
03-14-2009, 11:16 AM
|
#4
|
|
Member
Registered: Nov 2007
Location: /home/watcher69b
Distribution: RH, Fedora & CentOS
Posts: 539
Rep:
|
so download the .rpm
open a terminal
su to root
cd to where ever you saved the file
type rpm -ivh filename.rpm and hit enter
watch the fun :-)
Do you have a driver for the nvidia already?
|
|
|
|
03-14-2009, 11:20 AM
|
#5
|
|
LQ Newbie
Registered: Mar 2009
Posts: 17
Original Poster
Rep:
|
i have the installation kit for the graphic card
|
|
|
|
03-14-2009, 11:27 AM
|
#6
|
|
LQ Newbie
Registered: Mar 2009
Posts: 17
Original Poster
Rep:
|
Quote:
Originally Posted by watcher69b
so download the .rpm
open a terminal
su to root
cd to where ever you saved the file
type rpm -ivh filename.rpm and hit enter
watch the fun :-)
|
thx got it done...
try it on youtube...but no sound... 
need to get all the driver install... 
|
|
|
|
03-14-2009, 11:42 AM
|
#7
|
|
Senior Member
Registered: Dec 2008
Location: /root
Distribution: Slackware & BSD
Posts: 1,188
|
trade:
Since you already have that driver installer the better. Now see if that installer is for your distro/OS which is fedora?
If that driver-installer has the extension xxxxx.rpm (an .rpm file) then you may proceed to install it according to the code given by watcher69b above. It means you will launch a terminal (a dos prompt for Windows users), you must be a root to install it, enter the code given above:
rpm -ivh "filename".rpm
filename is the name of your nvidia driver-installer.
However, if your driver-installer has the extension xxxxxx.run (a .run file, which is freely offered in the web) then you must install it in the shell. This means you logout from X window first (because the installer demands that X window is not running during installation). You must run it as root. Then at the shell installation is very easy, at the prompt you only enter the name of the installer file:
xxxxxxxxxxxxxxxxxxxx.run (hit Enter)
if prompted to answer, just click yes. If the installer needs to compile a new kernel, click yes. All you need to do is "yes" and wait. Then reboot if being asked, if not, you may proceed to enter command: startx. You'll have nice resolution by then.
Hope this helps.
Goodluck.
|
|
|
|
03-14-2009, 11:45 AM
|
#8
|
|
LQ Newbie
Registered: Mar 2009
Posts: 17
Original Poster
Rep:
|
Quote:
Originally Posted by malekmustaq
trade:
Since you already have that driver installer the better. Now see if that installer is for your distro/OS which is fedora?
If that driver-installer has the extension xxxxx.rpm (an .rpm file) then you may proceed to install it according to the code given by watcher69b above. It means you will launch a terminal (a dos prompt for Windows users), you must be a root to install it, enter the code given above:
rpm -ivh "filename".rpm
filename is the name of your nvidia driver-installer.
However, if your driver-installer has the extension xxxxxx.run (a .run file, which is freely offered in the web) then you must install it in the shell. This means you logout from X window first (because the installer demands that X window is not running during installation). You must run it as root. Then at the shell installation is very easy, at the prompt you only enter the name of the installer file:
xxxxxxxxxxxxxxxxxxxx.run (hit Enter)
if prompted to answer, just click yes. If the installer needs to compile a new kernel, click yes. All you need to do is "yes" and wait. Then reboot if being asked, if not, you may proceed to enter command: startx. You'll have nice resolution by then.
Hope this helps.
Goodluck.
|
hi thx...
what abt the extension with exe?
|
|
|
|
03-14-2009, 11:55 AM
|
#9
|
|
Senior Member
Registered: Dec 2008
Location: /root
Distribution: Slackware & BSD
Posts: 1,188
|
trade:
In linux xxx.exe, xxx.com, xxx.sys are not recognized: they are only microsoft file-formats. In linux (as well as any Unix like systems) an executable file may be named anything with or without extension, still it runs. So among linux ported drivers there is no such thing as xxx.exe. I too was a M$window user for very long time and today I have somehow managed to "unlearn" the bad habits
If xxx.rpm did not work for you, try to look for an nvidia driver-installer with a xxxxxx.run extension. So far .run installer from nvidia did good to me. Use google:: "nvidia linux driver .run download" it sure will return good quickly.
Just be sure X window is not running while you install: this means you must be on "shell" not just in a terminal "emulator".
Check back how it goes.
Goodluck.
|
|
|
|
03-15-2009, 05:10 AM
|
#10
|
|
LQ Newbie
Registered: Mar 2009
Posts: 17
Original Poster
Rep:
|
Quote:
Originally Posted by malekmustaq
trade:
In linux xxx.exe, xxx.com, xxx.sys are not recognized: they are only microsoft file-formats. In linux (as well as any Unix like systems) an executable file may be named anything with or without extension, still it runs. So among linux ported drivers there is no such thing as xxx.exe. I too was a M$window user for very long time and today I have somehow managed to "unlearn" the bad habits
If xxx.rpm did not work for you, try to look for an nvidia driver-installer with a xxxxxx.run extension. So far .run installer from nvidia did good to me. Use google:: "nvidia linux driver .run download" it sure will return good quickly.
Just be sure X window is not running while you install: this means you must be on "shell" not just in a terminal "emulator".
Check back how it goes.
Goodluck.
|
had dl the NVIDIA-Linux-x86-180.29-pkg1.run...
but had no idea how to get to the 'shell' thing...
i tried wine...
but found out the driver in the installation cd only for windows..
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 06:23 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|