I was trying to install insight debugger in ubuntu 15.10 64 bit. Here's what I did:
First I opened /etc/apt/sources.list
in gedit
sudo gedit /etc/apt/sources.list
then I add these two line at the end of the file
deb http://ppa.launchpad.net/sevenmachines/dev/ubuntu natty main
deb-src http://ppa.launchpad.net/sevenmachines/dev/ubuntu natty main
then
sudo apt-get update
finally I tried to install insight
sudo apt-get install insight
but this gives me an error here's the original error message
(Reading database ... 238526 files and directories currently installed.)
Preparing to unpack .../insight_6.8.1-0ubuntu0~sevenmachines1_amd64.deb ...
Unpacking insight (6.8.1-0ubuntu0~sevenmachines1) ...
dpkg: error processing archive /var/cache/apt/archives/insight_6.8.1-0ubuntu0~sevenmachines1_amd64.deb (--unpack):
trying to overwrite '/usr/lib/libinproctrace.so', which is also in package gdbserver 7.10-1ubuntu2
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/insight_6.8.1-0ubuntu0~sevenmachines1_amd64.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
What can I do for this error? Is there anyway I can install insight?
insight
conflicts withgdbserver
(they install the same file). Have you tried uninstalling the latter? – fkraiem Dec 16 '15 at 02:51