Try the following links for help:
http://www.linuxquestions.org/questi...d.php?t=480605 http://www.linux.com/base/ldp/howto/...WTO/video.html http://linux.die.net/man/4/radeon http://dri.freedesktop.org/wiki/Download
Without a working video driver, I am not at all entirely certain how to go about installing one without at least a terminal window. I would certainly visit the Ubuntu forums at
http://www.ubuntuforums.org and ask the question. Use the Search facility there and search for "ATi Radeon 7000".
What you might be able to do is to use a Fiesty Live CD, download the appropriate driver from the last link above (choose the latest), gunzip and untar it into the memory file system and build a list of where all of the files get installed - since you do not have a working video card, you may have to replace it with one that works (temporarily) in order to accomplish the above task.
Then the idea is to capture a list of the files that were installed in which directories. From that list you can then build a tar file of the installed files list and save it or copy it to the hard disk where the files reside - after mounting the hard drive with Fiesty on it.
Build the new tar file like this after you have built the installed list of files:
# cd /
# tar -cf ./radeon-7000-installed-list.tar `cat radeon-7000-installed.list`
After you have mounted the hard drive, cd to / and then untar the file:
# tar -xf ./radeon-7000-installed-list.tar
Remember, build the list file in the RAM file system, tar the installed file list, and then mount the hard disk, and then untar the tar file of the installed file list that was installed with the Live CD environement.
That is what I would try anyway.
-- Tom