New answers tagged license
2
You are only required to share your modifications to the people you distribute the code to. However, nothing forbids your customer to redistribute this GPL'd code to whoever he/she wants.
This doesn't apply if your code is original, licensed with something different than the GPL and you link it with an LGPL library.
1
Apt doesn't really support licencing queries like that but you always try aptitude -F "%p %s" search "?not(?installed)" That will tell you what section of the repository it's in.
There is also
packages=dpkg --get-selections | awk '{ print $1 }'
for package in $packages; do echo "$package: "; cat /usr/share/doc/$package/copyright;echo ""; echo ""; ...
Top 50 recent answers are included