|

How to Install ATI fglrx Driver on Fedora Linux

Update on Nov. 18, 2012: ATI fglrx driver works well on Fedora 17 with GNOME 3 Shell. Should work well with later releases. Great driver, ATI! Update on Nov. 29, 2011: ATI fglrx driver works on Fedora 16 with GNOME 3 Shell with Catalyst driver 11.11 (xorg-x11-drv-catalyst-11.11). Update on Oct. 9, 2011: GNOME 3 shell works now with fglrx on Fedora 15 with Catalyst driver 11.9: xorg-x11-drv-catalyst-11.9-1.fc15.x86_64.

This post introduces how to install ATI fglrx driver on Fedora. This tutorial is based on Fedora 15 and the driver is from rpmfusion’s repository. The ATI fglrx driver works well on Gnome 3 on my computer.

Now let’s look at how to install the fglrx driver on Fedora.

Enable repository

First, enable the rpmfusion’s repository:

Enable RPM Fusion repositories

Disabled SELinux

Following This tutorial: https://www.systutorials.com/disable-selinux-in-fedora/.

Install ATI fglrx driver

Install the catalyst driver:

# yum install xorg-x11-drv-catalyst  xorg-x11-drv-catalyst-libs.i686

That’s it. Reboot the Linux and the fglrx should be enabled by default now.

Similar Posts

  • Where is MySQL / MariaDB storage location by default on CentOS 7?

    Where is MySQL / MariaDB storage location by default on CentOS 7? No special configuration to the MariaDB from official repository of CentOS. On CentOS 7 Linux it is usually by default /var/lib/mysql But here I give you another “hacky” way to find it out. The method is to find out the mysql daemon mysqld’…

  • 禁止对话框关闭按钮和Alt+F4

    在某些情况下我们需要防止用户单击窗口的标题栏中的关闭按钮关闭 MFC 应用程序。可以删除窗口的WS_SYSMENU 样式, 但是,这样最大化最小化和还原按钮也被删除,并且无法添加。 这是Windows的设计依据。 可以通过禁用关闭按钮来模拟没有关闭按钮的窗口。 在 WM_CREATE 消息处理程序中禁用关闭按钮。使用下面的代码: CMenu *pSysMenu = GetSystemMenu(FALSE); ASSERT(pSysMenu != NULL); VERIFY(pSysMenu->RemoveMenu(SC_CLOSE, MF_BYCOMMAND)); 这样删除之后关闭按钮变为灰色,用户无法点击。但是使用Alt+F4仍然可以关闭程序。要将此功能也禁用需要重载CDialog的OnSysCommand方法。代码如下: void MyDlg::OnSysCommand( UINT nID, LPARAM lParam ) { if ( ( nID & 0xFFF0 ) == IDM_ABOUTBOX ) { CAboutDlg dlgAbout; //if you have an about dialog dlgAbout.DoModal(); } //add the following code else if…

  • CloudFlare with DreamHost

    CloudFlare is a very nice service that provides CDN / optimizer / security protection and more. Good news is that DreamHost turns to be a partner with CloudFlare. The free account on CloudFlare is enough for sites such as Fclose.com. I enabled CloudFlare yesterday and it works smoothly and boosts the site’s performance. Overall, I…

Leave a Reply

Your email address will not be published. Required fields are marked *