Advertisement
Guest User

Untitled

a guest
Dec 18th, 2014
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. apt-get remove <name of program>
  2.  
  3. apt-get purge <name of program>
  4.  
  5. apt-get purge -y <name of program>
  6.  
  7. purge
  8. purge is identical to remove except that packages are removed and purged (any configuration files are deleted too).
  9.  
  10. --purge
  11. Use purge instead of remove for anything that would be removed. An asterisk ("*") will be displayed next to packages which are scheduled to be purged. remove --purge is equivalent to the purge command. Configuration Item: APT::Get::Purge.
  12.  
  13. -y, --yes, --assume-yes
  14. Automatic yes to prompts; assume "yes" as answer to all prompts and run non-interactively. If an undesirable situation, such as changing a held package, trying to install a unauthenticated package or removing an essential package occurs then apt-get will abort. Configuration Item: APT::Get::Assume-Yes.
  15.  
  16. remove
  17. remove is identical to install except that packages are removed
  18. instead of installed. Note that removing a package leaves its
  19. configuration files on the system. If a plus sign is appended to
  20. the package name (with no intervening space), the identified
  21. package will be installed instead of removed.
  22.  
  23. purge
  24. purge is identical to remove except that packages are removed and
  25. purged (any configuration files are deleted too).
  26.  
  27. -y, --yes, --assume-yes
  28. Automatic yes to prompts; assume "yes" as answer to all prompts and
  29. run non-interactively. If an undesirable situation, such as
  30. changing a held package, trying to install a unauthenticated
  31. package or removing an essential package occurs then apt-get will
  32. abort. Configuration Item: APT::Get::Assume-Yes.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement