Is it possible to simulate installation of Debian packages, still marking them installed? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:30:52Z http://stackoverflow.com/feeds/question/140340 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/140340/is-it-possible-to-simulate-installation-of-debian-packages-still-marking-them-in 1 Is it possible to simulate installation of Debian packages, still marking them installed? Nicolas Marchildon 2008-09-26T15:45:50Z 2008-10-01T03:16:33Z <p>Here's what I would like. Start with a virtual sytem with no installed packages. Then I invoke a tool similar to apt-get to ask it to compute the dependencies and mark all the packages that would be installed as installed. Let this be clear: it says the packages are installed, but they are no files actually installed.</p> <p>Then if I ask for more packages to be "installed", it may propose to add or remove other packages. It wouldn't actually remove packages, but obviously just mark them removed.</p> <p>Now, how would this be useful? I would like to be able to test the installation of packages on a bare Debian or Ubuntu system. I want to know if a package is installable given a certain scenario. To do this with actual installation would take a lot of disk space and time.</p> <p>APT has a "simulate" option, but it does not mark packages as installed.</p> http://stackoverflow.com/questions/140340/is-it-possible-to-simulate-installation-of-debian-packages-still-marking-them-in/140426#140426 3 Answer by wnoise for Is it possible to simulate installation of Debian packages, still marking them installed? wnoise 2008-09-26T16:06:26Z 2008-10-01T03:16:33Z <p>You're probably best off hooking into one of the scripting interfaces that Debian has for their various package tools and writing your own simulator.</p> <p>(Edit: I can't find dpkg-perl and dpkg-python anymore. dpkg-awk and dpkg-ruby exist, but they don't look like they'll do the job.)</p> <p>However: Debian has a tool "equivs" that lets you build "empty" packages that just satisfy dependencies, but install no files beyond the control files. <a href="http://packages.debian.org/search?keywords=equivs" rel="nofollow">http://packages.debian.org/search?keywords=equivs</a></p> <p>dpkg and apt-get both have options to run with different administration and root directories. The dpkg man page has them, but the apt-get one is buried in apt.conf.</p> <blockquote> <p>DIRECTORIES</p> <p>The configuration item RootDir has a special meaning. ...</p> </blockquote> <p>aptitude lets you pick and choose what to install, and then "commits" it by running dpkg and/or apt with the right settings. Playing around with it might be sufficient for some of your needs, though you'll want to save the settings before hand, and restore afterword.</p>