After I tried installing vim
using apt-get install
, apt-get
keeps giving me a segmentation fault while trying to install vim-runtime
. I'm pretty sure it's just with that one specific package, and whenever I try to do apt-get install
to install any other package, vim-runtime
is in the list of packages that will be installed, and it's always the first package that tries to install, so I can't install any other packages.
How can I remove vim-runtime
from the list of packages that will be installed? It always shows up even if it is not a dependency of a package I want to install.
Note: This is on an Ubuntu rootfs running on ARM.
apt-get
segfaults — please report it. – ulidtko Jan 28 '11 at 22:40dpkg --remove vim-runtime
and see if it helps. – ulidtko Jan 28 '11 at 22:47apt-get -f install
to fix install issues like this, but if it segfaults during configuration, I am not sure it will work... – Born2Smile Apr 11 '16 at 21:42