<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.cchtml.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=73.208.13.153</id>
	<title>cchtml.com - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.cchtml.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=73.208.13.153"/>
	<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Special:Contributions/73.208.13.153"/>
	<updated>2026-05-14T06:22:04Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>http://wiki.cchtml.com/index.php?title=Fedora_21_Installation_Guide&amp;diff=10600</id>
		<title>Fedora 21 Installation Guide</title>
		<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Fedora_21_Installation_Guide&amp;diff=10600"/>
		<updated>2015-03-14T08:12:26Z</updated>

		<summary type="html">&lt;p&gt;73.208.13.153: moved cd line to more sensible location&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= AMD CATALYST-14.12 FOR GNOME AND KDE ENVIRONMENT =&lt;br /&gt;
&lt;br /&gt;
==First off this is still a work in progress! and not a walk in the park! but it works very good and is stable.==&lt;br /&gt;
==This  part is for &#039;&#039;&#039;KDE &amp;amp; GNOME&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;fully update your system and make sure your running kernel 3.18+ &#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;install pre-requisite packages:&lt;br /&gt;
 yum install gcc kernel-headers kernel-devel&lt;br /&gt;
 mkdir catalyst{{Catalystversion}} &amp;amp;&amp;amp; cd catalyst{{Catalystversion}}&lt;br /&gt;
 wget &amp;lt;nowiki&amp;gt;--referer=&#039;http://support.amd.com/en-us/download/desktop?os=Linux+x86&#039; http://www2.ati.com/drivers/linux/amd-catalyst-omega-&amp;lt;/nowiki&amp;gt;{{Catalystversion}}-linux-run-installers.zip &lt;br /&gt;
 unzip amd-catalyst-omega-{{Catalystversion}}-linux-run-installers.zip&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;now we need to extract the installer in order to patch &amp;quot;kcl_acpi.c&amp;quot; &#039;&#039;&#039;&lt;br /&gt;
 cd fglrx&lt;br /&gt;
 sh amd-driver-installer-14.501.1003-x86.x86_64.run --extract catalyst &lt;br /&gt;
now using gedit or whatever text editor open /catalyst/common/lib/modules/fglrx/build_mod/kcl_acpi.c&lt;br /&gt;
at &#039;&#039;&#039;line 834&#039;&#039;&#039; replace  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;#if LINUX_VERSION_CODE &amp;gt;= KERNEL_VERSION(3,12,7)&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
by &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;#if LINUX_VERSION_CODE &amp;gt;= KERNEL_VERSION(3,12,7) &amp;amp;&amp;amp; LINUX_VERSION_CODE &amp;lt; KERNEL_VERSION(3,17,0)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
save it somewhere and then replace it whit yours&lt;br /&gt;
&lt;br /&gt;
==This next part is for &#039;&#039;&#039;KDE ONLY&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
 cd catalyst{{Catalystversion}}/catalyst&lt;br /&gt;
 sh ati-installer.sh 14.501 --install&lt;br /&gt;
and reboot. your done!&lt;br /&gt;
&lt;br /&gt;
==This funny part is for &#039;&#039;&#039;GNOME&#039;&#039;&#039;==&lt;br /&gt;
 cd catalyst{{Catalystversion}}/catalyst&lt;br /&gt;
 sh ati-installer.sh 14.501 --install&lt;br /&gt;
===do not reboot after the installation===&lt;br /&gt;
Now the problem is that even though aticonfig will work, the libglx.so and fglrx_drv.so blobs provided by AMD are broken. They won’t work with GDM and Xserver 1.16.&lt;br /&gt;
&lt;br /&gt;
to fix it  open terminal and copy &amp;amp; past &#039;&#039;&#039;one line at the time&#039;&#039;&#039;&lt;br /&gt;
 cd /usr/lib64/xorg/modules/drivers/&lt;br /&gt;
 Xorg -version &amp;gt; /amd_xversion 2&amp;gt;&amp;amp;1&lt;br /&gt;
 offset=`strings -td fglrx_drv.so | grep &#039;/proc/%i/fd/0&#039; | sed &#039;s/^ *//&#039; | cut -d&#039; &#039; -f1`&lt;br /&gt;
 echo -ne &#039;/amd_xversion&#039; | dd conv=notrunc of=fglrx_drv.so bs=1 count=13 seek=$offset&lt;br /&gt;
&lt;br /&gt;
 cd ..&lt;br /&gt;
 cd /extensions/&lt;br /&gt;
 offset=`strings -td libglx.so | grep &#039;/proc/%i/fd/0&#039; | sed &#039;s/^ *//&#039; | cut -d&#039; &#039; -f1`&lt;br /&gt;
 echo -ne &#039;/amd_xversion&#039; | dd conv=notrunc of=libglx.so bs=1 count=13 seek=$offset&lt;br /&gt;
last part is to &#039;&#039;&#039;Assist Clutter in recognizing the OpenGL version&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
open gedit and edit /etc/profile&lt;br /&gt;
at the bottom add those following line&lt;br /&gt;
&lt;br /&gt;
export COGL_DRIVER=gl&lt;br /&gt;
&lt;br /&gt;
export COGL_OVERRIDE_GL_VERSION=1.4&lt;br /&gt;
&lt;br /&gt;
export COGL_RENDERER=GLX&lt;br /&gt;
&lt;br /&gt;
export LD_PRELOAD=/usr/lib64/fglrx/fglrx-libGL.so.1.2&lt;br /&gt;
&lt;br /&gt;
gnome-session&lt;br /&gt;
&lt;br /&gt;
===save it replace it ===&lt;br /&gt;
&lt;br /&gt;
Now we need to switch from GDM to lightdm in order to login {will be fix soon )&lt;br /&gt;
 dnf install lightdm&lt;br /&gt;
 systemctl disable gdm&lt;br /&gt;
 systemctl enable lightdm&lt;br /&gt;
and now you can &#039;&#039;&#039;finally reboot&#039;&#039;&#039;===&lt;br /&gt;
&lt;br /&gt;
==FlashPlayer HW Acceleration using Firefox==&lt;br /&gt;
This only applies to Firefox and other NPAPI-compatible web browsers not Pepper Flash included in Chrome.&#039;&#039;&#039;KDE user must uninstall pepper and re-intall Flash&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Add RPM Fusion Repo &#039;&#039;&#039;right-click Open link in new tab&#039;&#039;&#039; and install it.&lt;br /&gt;
&lt;br /&gt;
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-21.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-21.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
This next part will provide a generic VDPAU library. It uses OpenGL under the hood to accelerate drawing and scaling and VA-API (if available) to accelerate video decoding. &lt;br /&gt;
 yum install gstreamer1-vaapi.x86_64 libvdpau-va-gl.x86_64&lt;br /&gt;
now open text editor and add this line  &#039;&#039;&#039;export VDPAU_DRIVER=va_gl&#039;&#039;&#039; &lt;br /&gt;
  &lt;br /&gt;
to &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;/etc/profile&#039;&#039;&#039; at the end just above export COGL_DRIVER=gl&lt;br /&gt;
&lt;br /&gt;
and reboot! voila&lt;br /&gt;
&lt;br /&gt;
enjoy gang!&lt;br /&gt;
&lt;br /&gt;
winglman&lt;/div&gt;</summary>
		<author><name>73.208.13.153</name></author>
	</entry>
	<entry>
		<id>http://wiki.cchtml.com/index.php?title=Fedora_21_Installation_Guide&amp;diff=10599</id>
		<title>Fedora 21 Installation Guide</title>
		<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Fedora_21_Installation_Guide&amp;diff=10599"/>
		<updated>2015-03-14T08:03:58Z</updated>

		<summary type="html">&lt;p&gt;73.208.13.153: Added directory changing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= AMD CATALYST-14.12 FOR GNOME AND KDE ENVIRONMENT =&lt;br /&gt;
&lt;br /&gt;
==First off this is still a work in progress! and not a walk in the park! but it works very good and is stable.==&lt;br /&gt;
==This  part is for &#039;&#039;&#039;KDE &amp;amp; GNOME&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;fully update your system and make sure your running kernel 3.18+ &#039;&#039;&#039;&lt;br /&gt;
* &#039;&#039;&#039;install pre-requisite packages:&lt;br /&gt;
 yum install gcc kernel-headers kernel-devel&lt;br /&gt;
 mkdir catalyst{{Catalystversion}} &amp;amp;&amp;amp; cd catalyst{{Catalystversion}}&lt;br /&gt;
 wget &amp;lt;nowiki&amp;gt;--referer=&#039;http://support.amd.com/en-us/download/desktop?os=Linux+x86&#039; http://www2.ati.com/drivers/linux/amd-catalyst-omega-&amp;lt;/nowiki&amp;gt;{{Catalystversion}}-linux-run-installers.zip &lt;br /&gt;
 unzip amd-catalyst-omega-{{Catalystversion}}-linux-run-installers.zip&lt;br /&gt;
 cd fglrx&lt;br /&gt;
* &#039;&#039;&#039;now we need to extract the installer in order to patch &amp;quot;kcl_acpi.c&amp;quot; &#039;&#039;&#039;&lt;br /&gt;
 sh amd-driver-installer-14.501.1003-x86.x86_64.run --extract catalyst &lt;br /&gt;
now using gedit or whatever text editor open /catalyst/common/lib/modules/fglrx/build_mod/kcl_acpi.c&lt;br /&gt;
at &#039;&#039;&#039;line 834&#039;&#039;&#039; replace  &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;#if LINUX_VERSION_CODE &amp;gt;= KERNEL_VERSION(3,12,7)&#039;&#039;&#039; &lt;br /&gt;
&lt;br /&gt;
by &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;#if LINUX_VERSION_CODE &amp;gt;= KERNEL_VERSION(3,12,7) &amp;amp;&amp;amp; LINUX_VERSION_CODE &amp;lt; KERNEL_VERSION(3,17,0)&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
save it somewhere and then replace it whit yours&lt;br /&gt;
&lt;br /&gt;
==This next part is for &#039;&#039;&#039;KDE ONLY&#039;&#039;&#039;==&lt;br /&gt;
&lt;br /&gt;
 cd catalyst{{Catalystversion}}/catalyst&lt;br /&gt;
 sh ati-installer.sh 14.501 --install&lt;br /&gt;
and reboot. your done!&lt;br /&gt;
&lt;br /&gt;
==This funny part is for &#039;&#039;&#039;GNOME&#039;&#039;&#039;==&lt;br /&gt;
 cd catalyst{{Catalystversion}}/catalyst&lt;br /&gt;
 sh ati-installer.sh 14.501 --install&lt;br /&gt;
===do not reboot after the installation===&lt;br /&gt;
Now the problem is that even though aticonfig will work, the libglx.so and fglrx_drv.so blobs provided by AMD are broken. They won’t work with GDM and Xserver 1.16.&lt;br /&gt;
&lt;br /&gt;
to fix it  open terminal and copy &amp;amp; past &#039;&#039;&#039;one line at the time&#039;&#039;&#039;&lt;br /&gt;
 cd /usr/lib64/xorg/modules/drivers/&lt;br /&gt;
 Xorg -version &amp;gt; /amd_xversion 2&amp;gt;&amp;amp;1&lt;br /&gt;
 offset=`strings -td fglrx_drv.so | grep &#039;/proc/%i/fd/0&#039; | sed &#039;s/^ *//&#039; | cut -d&#039; &#039; -f1`&lt;br /&gt;
 echo -ne &#039;/amd_xversion&#039; | dd conv=notrunc of=fglrx_drv.so bs=1 count=13 seek=$offset&lt;br /&gt;
&lt;br /&gt;
 cd ..&lt;br /&gt;
 cd /extensions/&lt;br /&gt;
 offset=`strings -td libglx.so | grep &#039;/proc/%i/fd/0&#039; | sed &#039;s/^ *//&#039; | cut -d&#039; &#039; -f1`&lt;br /&gt;
 echo -ne &#039;/amd_xversion&#039; | dd conv=notrunc of=libglx.so bs=1 count=13 seek=$offset&lt;br /&gt;
last part is to &#039;&#039;&#039;Assist Clutter in recognizing the OpenGL version&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
open gedit and edit /etc/profile&lt;br /&gt;
at the bottom add those following line&lt;br /&gt;
&lt;br /&gt;
export COGL_DRIVER=gl&lt;br /&gt;
&lt;br /&gt;
export COGL_OVERRIDE_GL_VERSION=1.4&lt;br /&gt;
&lt;br /&gt;
export COGL_RENDERER=GLX&lt;br /&gt;
&lt;br /&gt;
export LD_PRELOAD=/usr/lib64/fglrx/fglrx-libGL.so.1.2&lt;br /&gt;
&lt;br /&gt;
gnome-session&lt;br /&gt;
&lt;br /&gt;
===save it replace it ===&lt;br /&gt;
&lt;br /&gt;
Now we need to switch from GDM to lightdm in order to login {will be fix soon )&lt;br /&gt;
 dnf install lightdm&lt;br /&gt;
 systemctl disable gdm&lt;br /&gt;
 systemctl enable lightdm&lt;br /&gt;
and now you can &#039;&#039;&#039;finally reboot&#039;&#039;&#039;===&lt;br /&gt;
&lt;br /&gt;
==FlashPlayer HW Acceleration using Firefox==&lt;br /&gt;
This only applies to Firefox and other NPAPI-compatible web browsers not Pepper Flash included in Chrome.&#039;&#039;&#039;KDE user must uninstall pepper and re-intall Flash&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Add RPM Fusion Repo &#039;&#039;&#039;right-click Open link in new tab&#039;&#039;&#039; and install it.&lt;br /&gt;
&lt;br /&gt;
http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-21.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-21.noarch.rpm&lt;br /&gt;
&lt;br /&gt;
This next part will provide a generic VDPAU library. It uses OpenGL under the hood to accelerate drawing and scaling and VA-API (if available) to accelerate video decoding. &lt;br /&gt;
 yum install gstreamer1-vaapi.x86_64 libvdpau-va-gl.x86_64&lt;br /&gt;
now open text editor and add this line  &#039;&#039;&#039;export VDPAU_DRIVER=va_gl&#039;&#039;&#039; &lt;br /&gt;
  &lt;br /&gt;
to &lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;/etc/profile&#039;&#039;&#039; at the end just above export COGL_DRIVER=gl&lt;br /&gt;
&lt;br /&gt;
and reboot! voila&lt;br /&gt;
&lt;br /&gt;
enjoy gang!&lt;br /&gt;
&lt;br /&gt;
winglman&lt;/div&gt;</summary>
		<author><name>73.208.13.153</name></author>
	</entry>
</feed>