Hello.

I am running Ubuntu 12.04 on my laptop and trying to connect a monitor through a DisplayLink adapter.

I was following the steps of this guide: http://how-to.cc/get-a-displaylink-v...h-ubuntu-12-04

First I needed to install the DisplayLink drivers.
When I tried:
Code:
sudo apt-get install xserver-xorg-video-displaylink


I got a dependency problem:
Code:
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you haverequested an impossible situation or if you are using the unstabledistribution that some required packages have not yet been createdor been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies: 
xserver-xorg-video-displaylink : Depends: xorg-video-abi-11
                                  Depends: xserver-xorg-core (>= 2:1.10.99.901)
E: Unable to correct problems, you have held broken packages.

So I installed these dependencies:
Code:
sudo apt-get update
sudo apt-get install xserver-xorg-core
sudo apt-get install xorg-video-abi-11
I tried to reboot but now Ubuntu doesn't load.
It doesn't reach the login screen.

Any advice?

Thanks, Assaf.