잠시만 기다려 주세요

     '애도와 추모가 책임있는 사람들에게 면죄부를 주어서는 안됩니다. -더불어 민주당 국회의원 김용민-'
전체검색 :  
이번주 로또 및 연금번호 발생!!   |  HOME   |  여기는?   |  바다물때표   |  알림 (16)  |  여러가지 팁 (1056)  |  추천 및 재미 (152)  |  자료실 (22)  |  
시사, 이슈, 칼럼, 평론, 비평 (602)  |  끄적거림 (129)  |  문예 창작 (705)  |  바람 따라 (69)  |  시나리오 (760)  |  드라마 대본 (248)  |  
살인!


    리눅스 데스크탑

리눅스 데스크탑 - Fedora 19 nVidia Drivers Install / Uninstall Guide
이 름 : 바다아이   |   조회수 : 10356         짧은 주소 : https://www.bada-ie.com/su/?431591783946
Looking Fedora 20 “Heisenbug” nVidia Drivers Install guide?

32비트에서 설치 하시는 분은 반드시 akmod 로 시작하는 거 설치 하셔야 합니다.
PAE 커널 이용자 분들 특히 조심하셔야 합니다. kernel-PAE-devel 반드시 설치 하셔야 합니다.
설치하시다 보면 부팅 후 윈도우 시작 안되시는 분들은 콘솔로 다시 부팅하여 설치하신 거 지우신 후
맞게 다시 설치 하시면 됩니다. 304 인가 아님 일반인가 잘 보시구요..
이게 한번 실패하면 윈도우 자체 부팅이 안되는데 당황하지 마시고 지우고 맞는 거 설치 하시면 되요...
64비트는 크게 문제가 없는데 PAE 가 좀 말썽을 일으키더군요...


This is guide, howto install nVidia proprietary drivers on Fedora 19 “Schrödinger’s Cat” and disable Nouveau driver. This guide works with GeForce 6/7/8/9/200/300/400/500/600/700 series cards. Older GeForce series cards works with 304.xx nVidia drivers and newer 8/9/200/300/400/500/600/700 series cards works with 331.xx nVidia drivers.

Fedora 19 nVidia driver installation is not much different from previous Fedora versions. I have tested this guide with a couple computers, so let me know, if you have some problems.
1. Before nVidia drivers installation
1.1 Check is your nVidia card supported

lspci |grep -i VGA
 
## Example output ##
01:00.0 VGA compatible controller: nVidia Corporation GT218 [GeForce G210] (rev a2)

List of Supported NVIDIA GPU Products, if your card found before 304.xx section, then use 331.xx drivers and if under 304.xx section, then use 304.xx drivers.
1.2 NVIDIA Optimus Technology

If your lspci |grep -i VGA output looks like following:

00:02.0 VGA compatible controller: Intel Corporation 2n Generation Core Processor Family Integrated Graphics Controller (rev 09)
01:00.0 VGA compatible controller: nVidia Corporation GF106 [GeForce GT 555M SDDR3] (rev a1)

Or you know that your computer have NVIDIA Optimus Technology, and it is impossible to turn Intel Graphics / NVIDIA Optimus off in the BIOS then this guide is not working on your system. Check If !1 0 forums user Viger guide instead Fedora 19 for NVIDIA Optimus users (with Nvidia driver or Bumblebee).
2. Install nVidia proprietary drivers on Fedora 19 “Schrödinger’s Cat” and disable the nouveau driver
2.1 Change root user

su -
## OR ##
sudo -i

2.2 Make sure that you are running latest kernel and have latest SELinux policy packages

If not then update kernel and reboot

yum update kernel* selinux-policy*
reboot

2.3 Add RPMFusion Repositories (Free and Non-Free)

32-bit and 64-bit

yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
 
## OR ##
 
yum localinstall --nogpgcheck http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
yum localinstall --nogpgcheck http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm


2.4 Install nVidia proprietary drivers for GeForce 6/7/8/9/200/300/400/500/600/700 series cards

Select akmod, kmod from following.
akmod-nvidia for GeForce 8/9/200/300/400/500/600/700 series cards

yum install akmod-nvidia xorg-x11-drv-nvidia-libs kernel-devel acpid

akmod-nvidia-304xx for GeForce 6/7 series cards

yum install akmod-nvidia-304xx xorg-x11-drv-nvidia-304xx-libs kernel-devel acpid

Extra package for kernel-PAE users

yum install kernel-PAE-devel

or

kmod-nvidia for GeForce 8/9/200/300/400/500/600/700 series cards

yum install kmod-nvidia xorg-x11-drv-nvidia-libs acpid

kmod-nvidia-304xx for GeForce 6/7 series cards

yum install kmod-nvidia-304xx xorg-x11-drv-nvidia-304xx-libs acpid

akmod is good option and easy way avoid problems on kernel updates and is best and only option if you use:

    self-compiled kernel
    older Fedora kernel
    quickly changing kernels from updates-testing/rawhide

Full spec of kmod and akmod differences, check this.
2.5 Remove / disable nouveau drivers from kernel initramfs

## Backup old initramfs nouveau image ##
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
 
## Create new initramfs image ##
dracut /boot/initramfs-$(uname -r).img $(uname -r)

2.6 All is done and then just reboot

reboot

2.7 VDPAU/VAAPI support

To enable video acceleration support for your player (Note: you need Geforce 8 or later).

yum install vdpauinfo libva-vdpau-driver libva-utils

3. Uninstall nVidia proprietary drivers on Fedora 19 “Schrödinger’s Cat” and enable the nouveau driver

I assume that you installed nVidia driver with this guide, then do following.
3.1 Change root user

su -
## OR ##
sudo -i

3.2 Uninstall nVidia Driver Packages

yum remove xorg-x11-drv-nvidia\* nvidia-settings nvidia-xconfig

3.3 Then Reboot System

reboot

출처 : http://www.if-not-true-then-false.com/2013/fedora-19-nvidia-guide/

 
| |





      1 page / 8 page
번 호 카테고리 제 목 이름 조회수
228 리눅스 데스크탑 ... 바다아이 477
227 리눅스 데스크탑 .... 바다아이 485
226 리눅스 데스크탑 libreoffice hwp , ... 바다아이 507
225 리눅스 데스크탑 uefi .... . 바다아이 993
224 리눅스 데스크탑 mkfs ... .. 바다아이 956
223 리눅스 데스크탑 ... hd 4600.. Ubuntu Intel graphics driver install, 바다아이 2643
222 리눅스 데스크탑 virtualbox ... ntfs.sys ... virtualbox .. 바다아이 2801
221 리눅스 데스크탑 , 10 ... archlinux, window10 dual-boot 바다아이 2786
220 리눅스 데스크탑 , .... ... 바다아이 3665
219 리눅스 데스크탑 Installation from WineHQ's repo, debian wine ... 바다아이 4159
218 리눅스 데스크탑 xfce4 debian .... uim fcitx 바다아이 4565
217 리눅스 데스크탑 archlinux , .... 바다아이 3726
216 리눅스 데스크탑 firefox .... ... 바다아이 3691
215 리눅스 데스크탑 zip , unzip 바다아이 3342
214 리눅스 데스크탑 automouse autoclick xdotool 바다아이 4260
213 리눅스 데스크탑 xfce4 pacman .. 바다아이 3739
212 리눅스 데스크탑 debian intel-microcode [Firmware Bug]: TSC_DEADLINE disabled due to Errata - what should I do about this? 바다아이 4220
211 리눅스 데스크탑 debian xfce usb . pc 바다아이 4012
210 리눅스 데스크탑 .xprofile ... .xsessionrc ... 바다아이 3778
209 리눅스 데스크탑 debian 12 nvidia 바다아이 5408
208 리눅스 데스크탑 ..... 바다아이 3610
207 리눅스 데스크탑 xfce fcitx ... 바다아이 3710
206 리눅스 데스크탑 20.04 5 .... 바다아이 4171
205 리눅스 데스크탑 , , , , alias 바다아이 5232
204 리눅스 데스크탑 manjaro archlinux pacman PGP ..... 바다아이 4425
203 리눅스 데스크탑 yaourt yay aur.... 바다아이 4353
202 리눅스 데스크탑 mirror ... . 바다아이 6253
201 리눅스 데스크탑 20.04 leafpad , euc-kr utf-8 . 바다아이 6195
200 리눅스 데스크탑 , ls . 바다아이 6330
199 리눅스 데스크탑 (Ubuntu) Snap Package , snap 바다아이 6654
| |









Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천  실행시간 : 0.05944
to webmaster... gogo sea. gogo sea.