mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-24 11:35:26 +02:00
createrepo: add page (#7789)
Co-authored-by: Muhammad Falak R Wani <falakreyaz@gmail.com> Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>
This commit is contained in:
parent
adf4448df8
commit
b645de29cd
1 changed files with 16 additions and 0 deletions
16
pages/linux/createrepo.md
Normal file
16
pages/linux/createrepo.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# createrepo
|
||||
|
||||
> Initializes an RPM repository in the given directory, including all XML and SQLite files.
|
||||
> More information: <https://manned.org/createrepo>.
|
||||
|
||||
- Initialize a basic repository in a directory:
|
||||
|
||||
`createrepo {{path/to/directory}}`
|
||||
|
||||
- Initialize a repository, exclude test RPMs and display verbose logs:
|
||||
|
||||
`createrepo -v -x {{test_*.rpm}} {{path/to/directory}}`
|
||||
|
||||
- Initialize a repository, using SHA1 as the checksum algorithm, and ignoring symbolic links:
|
||||
|
||||
`createrepo -S -s {{sha1}} {{path/to/directory}}`
|
Loading…
Add table
Reference in a new issue