1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
solv(1)
=======
:man manual: LIBSOLV
:man source: libsolv
Name
----
solv - example package manager based on libsolv
Synopsis
--------
*solv* install [OPTIONS] PKG...
*solv* erase [OPTIONS] PKG...
*solv* list [OPTIONS] PKG...
*solv* info [OPTIONS] PKG...
*solv* search [OPTIONS] STRING...
*solv* verify [OPTIONS] PKG...
*solv* update [OPTIONS] PKG...
*solv* dist-upgrade [OPTIONS] PKG...
*solv* repolist [OPTIONS]
Description
-----------
The solv tool demos some features of the libsolv library. It is not
meant to replace a real package manager, for example it does not cache
downloaded packages.
*--root* 'ROOTDIR'::
Install packages using 'ROOTDIR' as root of the filesystem. This also
means that the package database of 'ROOTDIR' will be used.
*--clean*::
Also get rid of no longer needed packages when erasing, like libraries
that have been used by the erased packages.
*--best*::
Force usage of the best package (normally the one with the highest
version) for install and update operations.
*--testcase*::
Write a testcase after dependency solving.
The following options can be used to filter the packages. If the
same option is used multiple times, the result is ORed together.
*-i*::
Limit the packages to installed ones.
*-r* 'REPO'::
Limit the packages to the specified repository.
*--arch* 'ARCHITECTURE'::
Limit the packages to the specified package architecture.
*--type* 'TYPE'::
Limit the packages to the specified package type.
Author
------
Michael Schroeder <mls@suse.de>
////
vim: syntax=asciidoc
////
|