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?
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?
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.