Had a brief issue adding the libdvdcss2 ilbarary to my 8.10 install, thought I'd mention it here in case it helps someone-
apt-get update
apt-get install libdvdcss2
ran fine until I got errors:
Setting up radvd (1:1.1-2ubuntu2) ...
Starting radvd: [Apr 11 08:05:41] radvd: syntax error in /etc/radvd.conf, line 2:
[Apr 11 08:05:41] radvd: error parsing or activating the config file: /etc/radvd.conf
failed.
invoke-rc.d: initscript radvd, action "start" failed.
dpkg: error processing radvd (--configure):
subprocess post-installation script returned error exit status 1
Setting up libdvdcss2 (1.2.10-0.2medibuntu1) ...
Processing triggers for libc6 ...
ldconfig deferred processing now taking place
Errors were encountered while processing:
radvd
E: Sub-process /usr/bin/dpkg returned an error code (1)
dcerouter_1027763:~# cp /usr/share/doc/radvd/examples/simple-radvd.conf /etc/radvd.conf
I followed the steps in the following
I had the same issue. I solved it by copying radvd.conf from /usr/share/doc/radvd/examples/simple-radvd.conf to /etc/radvd.conf, and then doing apt-get install to resume the upgrade. I would concur with Murdock as it's likely an upstream issue. The radvd.conf file that was installed by apt had two blank lines in it, which is why apt barfed an error on trying to restart the service.
/Mike
And that got past the initial errors but when I reran apt-get install libdvdcss2 I got errors relating to the eth0 card:
Setting up radvd (1:1.1-2ubuntu2) ...
Starting radvd: [Apr 11 08:11:51] radvd: interface eth0 is not RUNNING
[Apr 11 08:11:51] radvd: interface eth0 does not exist
[Apr 11 08:11:51] radvd: error parsing or activating the config file: /etc/radvd.conf
failed.
invoke-rc.d: initscript radvd, action "start" failed.
dpkg: error processing radvd (--configure):
subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
radvd
E: Sub-process /usr/bin/dpkg returned an error code (1)
It seems that radvd was trying to do something with eth0 and on my system eth0 is actually the internal network... so I checked out the /etc/radvd.conf file and it had:
interface eth0
{
AdvSendAdvert on;
prefix 2001:db8::/64
{
};
};
So I switched the eth0 to eth1 in the above conf file and then the apt-get-install libdvdcss2 ran through fine.
I presume the above conf file needs to point to an external (internet) network.