You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Where is the file belonging to this command
whereis $CMD
# Short description of the command
whatis $CMD
# Search command by description
apropos $DESC
for file in /proc/*/status ; do awk '/VmSwap|Name/{printf $2 " " $3}END{ print ""}' $file; done | sort -k 2 -n -r | less
Delete lots of files
perl -e 'for(<*>){((stat)[9]<(unlink))}'
Get rid of failed apt-get install process
dpkg --get-selections > install_list
# -> adjust the package from install to deinstall or remove it completely out of the list
dpkg --clear-selections
dpkg --set-selections < install_list
apt-get -u dselect-upgrade
# Hash value of the certificate
openssl x509 -in $CERT -noout -hash
# Fingerprint of certificate
openssl x509 -in $CERT -noout -fingerprint
# All information about the certificate
openssl x509 -in $CERT -issuer -noout -subject -dates -text