1

I'm new (again) to ubuntu. I tried a few years ago and then never actually used it again. Now I'm trying again. I use dreamweaver on Windows because it has a nice side by side view of the code and the WYSIWYG, and can also manage a project. I remembered Kompozer being able to do these things as well, so tried installing it. I'm aware that Kompozer has stopped and is no longer being maintained, but I couldn't find any alternative that has these two options so started to try anyway. Following the instructions on https://help.ubuntu.com/community/InstallKompozer I managed to get it working, but when I perform a software update it gets removed again. I also get the 'Error Broken count >0' notification, and cannot update until I remove kompozer again.

While installation the only error I get is that libidl0 is not installed. When I try to install it, I get the message that it has been replaced by libidl-2-0:i386 libidl-2-0. I've installed these two packages but it doesn't solve the problem.

Any help for this newbie?

stikpet
  • 19

1 Answers1

2

It is still possible to do, although a little convoluted:

  1. The package libidl0 is no longer present in Xenial; you can still find it in Trusty. You therefore have to install it manually. Go to http://packages.ubuntu.com/trusty/libidl0 and download the file for your architecture (i. e. amd64 for 64 bit systems) and install it.

  2. Then you can follow the original instructions minus the libidl0 package installation.


The installation can be abridged to just two commands once you have the three Deb package files in the current working directory:

sudo dpkg -i libidl0_*.deb kompozer_*.deb kompozer-data_*.deb
sudo apt install -f

The first will likely end in a missing dependencies error which the 2nd command will fix.

David Foerster
  • 36,890
  • 56
  • 97
  • 151