We are still actively working on the spam issue.
Difference between revisions of "Package manager"
(Created page with "This is the software repositories that you will meet with some linux os. They are used to download your software in opposition to compiling them from source. In other words th...") |
|||
Line 1: | Line 1: | ||
This is the software repositories that you will meet with some linux os. They are used to download your software in opposition to compiling them from source. In other words they automatate every thing for the dumb shit you are and allow you to install, update and remove the application you need cause youre to retarded to write them by yourself with a magnifying glass and the sun directly on your hard drive. | This is the software repositories that you will meet with some linux os. They are used to download your software in opposition to compiling them from source. In other words they automatate every thing for the dumb shit you are and allow you to install, update and remove the application you need cause youre to retarded to write them by yourself with a magnifying glass and the sun directly on your hard drive. | ||
− | The most common package managers are [[yum]] and [[aptitude]]. | + | The most common package managers are [[yum]] (RHEL - rpm) and [[aptitude]] (Debian - deb). |
Line 18: | Line 18: | ||
to install: sudo yum install _________ | to install: sudo yum install _________ | ||
+ | |||
+ | == Zypper == | ||
+ | Zypper is a cli frontend for openSUSEs package manager. | ||
+ | usage: | ||
+ | <code> zypper in <name of package> <code> | ||
+ | <code> zypper rm <name of package> <code> | ||
+ | installs or removes a package | ||
+ | |||
+ | <code> zypper ar <name of package> <code> | ||
+ | <code> zypper rr <name of package> <code> | ||
+ | adds or removes a repository | ||
+ | |||
+ | <code> zypper update <code> | ||
+ | updates. |
Revision as of 05:41, 28 January 2014
This is the software repositories that you will meet with some linux os. They are used to download your software in opposition to compiling them from source. In other words they automatate every thing for the dumb shit you are and allow you to install, update and remove the application you need cause youre to retarded to write them by yourself with a magnifying glass and the sun directly on your hard drive. The most common package managers are yum (RHEL - rpm) and aptitude (Debian - deb).
aptitude
you run it like this:
to install: sudo apt-get install _________
to update: sudo apt-get update
to remove: sudo apt-get remove _________
yum
you run it like this
to install: sudo yum install _________
Zypper
Zypper is a cli frontend for openSUSEs package manager.
usage:
zypper in <name of package>
zypper rm <name of package>
installs or removes a package
zypper ar <name of package>
zypper rr <name of package>
adds or removes a repository
zypper update
updates.