Migrating Ubuntu 8.04 / 10.04 OpenVZ guests to LXC?

You will have to tweak the conf file for the machine, but 10.04 does indeed work. You also need to edit the /usr/share/perl5/PVE/LXC/Setup/Ubuntu.pm file and add:

Code:
'10.04' => 1, # lucid LTS

To the $known_versions hash and then update on if statement to include this version as well:

Code:
if ($version eq '10.04' || $version eq '12.04' || $version eq '14.04') {

After that we were able to start a 10.04 container and everything was working for us. Remember if this is a cluster you need to edit the Ubuntu.pm on EVERY machine!