Sunday 10 December 2017 photo 2/15
![]() ![]() ![]() |
Aptitude list manually installed packages: >> http://boj.cloudz.pw/download?file=aptitude+list+manually+installed+packages << (Download)
Aptitude list manually installed packages: >> http://boj.cloudz.pw/read?file=aptitude+list+manually+installed+packages << (Read Online)
apt-get view installed packages
debian list held packages
apt-mark showmanual
apt-mark
debian list requested packages
apt list --installed
apt get selections
apt unmark package
29 Oct 2010 Get the list of manually installed packages. For aptitude, the additional sed strips out remaining whitespace at the end of the line. Get the list of packages installed right after a fresh install. Compare the files, only output the lines in file 1 that are not present in file 2.
26 Dec 2009 Does anyone knows how can I list manually installed packages with aptitude? Or something like the 'world' file in Gentoo. What I mean is, when you install package A have deps package B and C, more later you install package D, E, F, that has deps G, H, etc. And what I want is a way to see in a list,
16 Aug 2010 Get the list of manually installed packages. For aptitude, the additional sed strips out remaining whitespace at the end of the line. Get the list of packages installed right after a fresh install. Compare the files, only output the lines in file 1 that are not present in file 2.
7 Dec 2016 apt-mark showmanual. It is supposed to show what packages were installed "manually". It is not 100% reliable though, as many automatically installed packages are flagged as manually installed (because of reasons too long to describe here). You may also (if allowed) run security tools such as clamav
This could be done using the Python apt API. The packages you see in apt-mark showmanual are exactly the ones in apt.cache.Cache() for which is_installed is true and is_auto_installed is false. But, it's easier to process the dependencies: #! /usr/bin/env python3 from apt import cache manual = set(pkg for pkg in cache.
22 Feb 2017 To list all packages installed through aptitude , you should run the following command: cat /var/log/aptitude* | grep INSTALL]. edit. The follwing command will display the installed package with their dependencies: cat /var/log/aptitude* | grep INSTALL. To exclude the DEPENDENCIES you can add the ] or
3 Oct 2012 That do what you want: cat /var/log/apt/history.log | grep 'apt-get install '
2 Aug 2015 This page is about the ways to list the installed packages in a Debian system and how to create a file with this list. This file can be uploaded to List all installed packages. With version and architecture information, and description, in a table: dpkg-query -l. Package names only, one per line: dpkg-query -f
#!/bin/bash. ## List all manually installed packages on a debian/ubuntu system. ## manually installed means: ## 1. not pre-installed with the system. ## 2. not marked auto-installed by apt (not dependencies of other. ## packages). ## Note: pre-installed packages that got updated still needs to be. ## filtered out.
19 Apr 2010 You can save a list of installed packages on the old machine with the command dpkg --get-selections > ~/packages and then restore it on the new one with sudo dpkg --set-selections < ~/packages && apt-get dselect-upgrade . You shouldn't have to worry about the default install having a load of stuff
Annons