0

I want to install Multisystem:

wget -q http://liveusb.info/multisystem/depot/multisystem.asc -O- | sudo apt-key add - 
sudo apt-get install multisystem 

But it automaticly installs Qemu/Kvm and some Virtualbox stuff, how to prevent this?

Pilot6
  • 92,041
derich
  • 103

1 Answers1

0

Try this:

sudo apt-get clean
sudo apt-get -d install multisystem
cd /var/cache/apt/archives
ls *.deb

Then you can manually install individual packages:

dpkg --ignore-depends=unwanted-package.deb,another-unwanted.deb -i package.deb

Note that this is a way to install software without dependiences, not to make it work properly without dependiences.