I installed driver from Additional drivers.... AMD Radeon HD 6450

My resolution is at maximum and Catalist Control Center is working but I have AMD Unsupported hardware image on the right bottom of my screen. How can I remove it without reinstalling driver? Because the drivers from official amd site does not work.

enter image description here

link|improve this question

20% accept rate
Can you post a screenshot? askubuntu.com/questions/6558/… – djeikyb Mar 21 '11 at 1:03
screenshot is not possible from the system itself: the image is not added to your screenshot (it also shows up when playing a fullscreen movie for instance so I expect it to be layered over the screenshot). I found one where a user used a camera though :D – Rinzwind Sep 10 '11 at 9:54
feedback

5 Answers

I found this elsewhere on the net and I ran it on a Ubuntu 11.04 - it works great!

http://phoronix.com/forums/showthread.php?19875-Unsupported-Hardware-watermark

Put this in a text file and save it (call it fixwatermark.sh):

#!/bin/sh
DRIVER=/usr/lib/fglrx/xorg/modules/drivers/fglrx_drv.so
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/\x90\x90\x90\x90\x90/g" $DRIVER
done

With terminal go to the location where you saved it and do a

chmod +x fixwatermark.sh

to make it executable and a

sudo ./fixwatermark.sh

to let the script remove the enableLogo

link|improve this answer
It's preferable if you don't just post a link solving the problem. If you write out the steps it really helps the asker and others who come here. – root45 Sep 2 '11 at 15:14
@root45 done. Btw... this worked once for me on Oneiric. I just got the watermark back after updating my system, so I did this again but the script did not work... – Rinzwind Sep 10 '11 at 9:53
script doesn't work, and and there is no fglrx-modaliases packages. – user26586 Oct 10 '11 at 11:17
I did a re-install last week (due to various crashes of 11.10). I got the watermark back, removed it with the script and it did work again. I got the watermark back after an update and this time the watermark script worked again. – Rinzwind Oct 10 '11 at 11:41
problem does not solve after run the script. What need to do? – shantanu Nov 1 '11 at 16:14
feedback

I think this is caused by the modaliases that gets your pc to recognise your hardware.

When I have previously removed the ATI catayst application I have had to reinstall the fglrx-modaliases so that it can be installable through the additional drivers at a later stage.

So I would open a terminal up and enter

sudo apt-get remove fglrx-modaliases

This should not remove fglrx but just the modaliases

If there are problems after this obviously reinstall the modaliases

sudo apt-get install fglrx-modaliases
link|improve this answer
I get a Virtual packages like 'fglrx-modaliases' can't be removed after issueing the sudo apt-get remove fglrx-modaliases. – Rinzwind Sep 10 '11 at 9:52
feedback

Change the path in the above to /usr/lib/fglrx/xorg/modules/drivers/fglrx_drv.so.

There are two copies.

link|improve this answer
feedback

Check http://support.amd.com/us/gpudownload/linux/Pages/radeon_linux.aspx and install it manually.

I have the same problem, but the controller works properly.

link|improve this answer
feedback

I had the same problem, and also another one that you seem to also have at the same time: not knowing how to install the right AMD Radeon HD 6450 driver. As a consequence, when I tried to install Ubuntu 10.10, it froze just after the login screen and when I tried to install Ubuntu 11.10, it did not even arrive to the login screen.

Here is what I did, which solved the problem:

  • using another computer, download the latest proprietary driver from ATI on the official site. In my case I had to download it from here.
  • put the driver on a USB key
  • reboot the computer we want to repair
  • in the grub menu, select the recovery mode. This results in arriving at a command line interface. This is a proof that the Ubuntu operating system is functioning but that the problem is indeed the graphical card.
  • uninstall all previous versions of flgrx by launching sudo apt-get remove flgrx for example
  • mount the USB key with something close to mkdir /mnt/usb followed by sudo mount /dev/sdb /mnt/usb. Another way for this little step is explained here.
  • use the cd command to place yourself in the folder where the downloaded driver is
  • if necessary, make the driver be executable with something like chmod +x ./ati-driver-installer-11-11-x86.x86_64.run
  • execute the driver using sudo ./ati-driver-installer-11-11-x86.x86_64.run
  • follow the instructions given on the installer
  • if this step did not work, you may want to try sudo ./ati-driver-installer-11-11-x86.x86_64.run --force instead
  • reboot your computer

Then your two problems should both be solved!

link|improve this answer
feedback

protected by Community Dec 30 '11 at 22:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.