dependencies - Linux packages Where to download complete dependency list -


where find list of dependencies (direct , transitive dependencies) of popular linux packages?

i want complete list (just list) in form of dependency graphs, exploration. there downloadable list of dependencies of popular linux packages somewhere?

there offline dvd based installations (like debian/ubuntu etc). there tool extract dependency information given packages in dvds?

i have seen question below not want. howto list dependencies of package on linux?

thnx

on debian or ubuntu can issue

apt-cache show $package_name 

you print list of package dependencies using:

for pkg in $(dpkg --get-selections | cut -f1) ; apt-cache depends  "$pkg" ; done 

Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -