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.
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?
The script above did not work for me. However I found a much simpler answer here
Edit the ati signature file:
and just replace the "UNSIGNED" line with the following code
It worked fine for me.
The resulting file should be 238 bytes long for it to work.
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.Copy and paste the code from above into a new file, save it, and do
sudo bash filename
in the terminal.For Ubuntu 11.04
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
):With terminal go to the location where you saved it and do a
to make it executable and a
to let the script remove the
enableLogo
For Ubuntu 12.10 64-bits
Running this script worked for me on Ubuntu 12.10 64bit:
One way to accomplish this:
chmod a+x logo.sh
to make the script executablesudo ./logo.sh
sudo reboot
No more logo after reboot for me.
The correct solution has been published on the unoffiical wiki page for AMD GPU Linux drivers. The signatures for the latest GPUs are available only in the latest drivers. When using an old driver, there are no signatures for the newer GPU present in the computer. The solution, as given in the wiki, is to simply copy the control file of the latest driver and put them in your computer's ATI driver directory.
Here is what you do: Download the latest driver, extract it, copy the etc/ati/control file, and overwrite the /etc/ati/control file. The steps to follow are as follows:
Please replace the URLs and filenames appropriately.
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
This should not remove fglrx but just the modaliases
If there are problems after this obviously reinstall the modaliases
edit: sorry I missed the signature answer but did not want to keep this from people.
Get a copy of the
control
file from a release that does work for you and write it over (you can extract the file from the tar.gz with fileroller)..A reboot suffices.
Example from ...
http://archive.ubuntu.com/ubuntu/pool/restricted/f/fglrx-installer/fglrx-installer_9.010.orig.tar.gz
Worked for me on 12.04, 12.10 and 13.04.
For Ubuntu 13.04 64-bits
Since the latest drivers (13.4 and greater, not 12.11 beta as is in the question) the application will automatically remove the "AMD Testing Use Only" watermark during installation.
More about, including installation instructions: http://support.amd.com/us/gpudownload/linux/Pages/radeon_linux.aspx
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:
flgrx
by launchingsudo apt-get remove flgrx
for examplemkdir /mnt/usb
followed bysudo mount /dev/sdb /mnt/usb
. Another way for this little step is explained here.cd
command to place yourself in the folder where the downloaded driver ischmod +x ./ati-driver-installer-11-11-x86.x86_64.run
sudo ./ati-driver-installer-11-11-x86.x86_64.run
sudo ./ati-driver-installer-11-11-x86.x86_64.run --force
insteadThen your two problems should both be solved!
According to the Arch Wiki's Catalyst page, the following script should do it. It's a bit hackish.
Since that script is for Arch, you may need to play with bits of it; for example, Ubuntu may have fglrx_drv.so in a different location. Be prepared to reinstall the driver from the command line if this doesn't work.