Monday, April 29, 2024
 Popular · Latest · Hot · Upcoming
20
rated 0 times [  20] [ 0]  / answers: 1 / hits: 62339  / 2 Years ago, mon, july 4, 2022, 9:36:03

I've installed the latest catalyst driver (beta) following the step in this guide for Ubuntu Quantal Quetzal.

My system is 64 bit and my graphic card is an ATI RadeonHD 6670, this g.c. is Officially Supported (Catalyst & Open Source), you can confirm that from this AMD Linux Community thread.



I don't have any problem, except the AMD testing use only watermark. I see the following frame in any stage into the OS (logged, unlloged, etc.) except in the terminals.



IMG0
IMG1



I found different versions of how to remove this image, but this change according to the system, so I want an answer from this popular (trusted) site.




  • How to solve this issue in Ubuntu 12.10 32b?

  • This procedure is different in a 64b system?


More From » ati

 Answers
5

For Ubuntu 12.10 64-bits


I fixed it using the following script. Found At: http://ubuntuforums.org/showthread.php?t=2076381


Under Ubuntu 12.10 x64 and driver AMD 12.11 beta.


#!/bin/sh
DRIVER=/usr/lib/fglrx/xorg/modules/drivers/fglrx_drv.so
echo "Come on AMD!"
echo "Removing AMD logo from "$DRIVER
for x in $(objdump -d $DRIVER|awk '/call/&&/EnableLogo/{print "x"$2"x"$3"x"$4"x"$5"x"$6}'); do
sed -i "s/$x/x90x90x90x90x90/g" $DRIVER
done
echo "Reboot computer to finish"

Copy and paste the code from above into a new file, save it, and do sudo bash filename in the terminal.


[#34695] Tuesday, July 5, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
terneive

Total Points: 329
Total Questions: 117
Total Answers: 105

Location: Denmark
Member since Tue, Oct 18, 2022
2 Years ago
;