Tag Archives: purge

Ubuntu Jaunty & ATI

This is quick’n’dirty writeup to help others who might have the same problem. I’ll clean this up later in the week …

Ubuntu Jaunty is the new beta version of Ubuntu. It comes with a new version of X.Org and the ATI drivers have been incompatible with this version of X.Org. ATI recently released drivers that support X.Org 1.6. If you have problems with X not starting follow the instructions here:
https://wiki.ubuntu.com/X/Troubleshooting/FglrxInteferesWithRadeonDriver

For me what happened is that X wouldn’t start properly and cause my Lenovo T400 to freeze and lock up. The laptop would boot but when X would start (when the login screen appears) I’d get a black screen with red lines at the top. To solve this I booted to runlevel 1, also known as failsafe mode. If your using a laptop with wireless, I suggest you connect directly to your router using a network cable, otherwise you may have to configure wireless manually (it’s not that hard).

When your system starts, select failsafe mode, on the next screen to appear choose the option to go to a “root shell with networking”.

Next remove the install ATI drivers and install from scratch the ones you need:

sudo apt-get remove –purge xorg-driver-fglrx xserver-xorg-video-ati xserver-xorg-video-radeon
sudo apt-get install xserver-xorg-video-ati
sudo apt-get install –reinstall libgl1-mesa-glx libgl1-mesa-dri
dpkg-reconfigure -phigh xserver-xorg

If this doens’t work for you see the Ubuntu page mentioned above.

e17 on Ubuntu Revisited

Ever since my original post on installing Enlightenment E17 on Debian and Ubuntu things have changed, such as the server that hosted the package repositories for both Debian & Ubuntu going off-line (supposedly temporarily but it’s been offline for almost 6 months).

Also, I’ve been having issues with E17 working correctly on my laptop running Ubuntu. This is probably because of conflicts between old and new packages, and because E17 is still beta code.

In this posting I’ll concentrate on installing or reinstalling E17 on Ubuntu 8.04 otherwise know as Hardy Heron. You should be able to use the same instructions to install E17 on other recent versions of Ubuntu. I’ll also try and the same for installing E17 on Debian at some point in the future.

First, remove all existing traces of any previous E17 installs.

sudo apt-get remove --purge e17 emodule* libevas* libefreet*

You’ll notice that I’ll use a mixture of apt-get and aptitude to remove and install packages. I’ve found that sometimes aptitude is a little too aggressive in removing packages, and sometime will remove package that I need. For instance when I started to remove E17, aptitude also wanted to remove xserver-xorg which would mean X wouldn’t work (no GUI).

Next, remove any old repositories for E17 from you sources.list. But, first make a back-up copy of the file:

sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak

Then, remove or comment out any other E17 repositories from the file, by editing the file with your favourite text editor. I normally use emacs:

sudo emacs /etc/apt/sources.list

Or if you don’t have X running and are doing this from a console:

sudo emacs -nw /etc/apt/sources.list

You can use # to comment out lines. Remove any references to edevelop.org or soulmachine.net .

Then, add the dunnewinde.net repository, by adding the following lines:

# dunnewind e17 repository for Ubuntu Hardy
deb http://e17.dunnewind.net/ubuntu hardy e17

You can replace hardy with either gutsy or feisty if your running either of those versions of Ubuntu.

Now your ready to install/reinstall Enlightenment E17! 🙂

sudo aptitude install e17

Or if you also want to play with a media player based on E17 libraries install eclair also.

sudo aptitude install e17 eclair


Once the install is completed, logout. At the login screen (GDM) change your session to Enlightenment and login and you should see something that looks like the following:

Sorry that screenshot is missing. I deleted it as someone was leeching the image by linking directly to the image from their blog (using up my bandwidth instead of theirs). I’ll upload a new image in the near future.

No other themes are installed, I’ll write another post in the next few days showing how to get themes from get-e.org and install them. In the meantime here’s a screen-shot using the Darkness theme:

This posting originally at:

http://timony.com/mickzblog/2008/04/15/e17-on-ubuntu-revisitede17-on-ubuntu-revisited/