blob: b3545fce878dd88ab5e5fd146b18928212930eca (
plain)
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
=head1 NAME
urpmi.update - Updates package lists for specified media
=head1 SYNOPSIS
urpmi.update [options] [<names>]
=head1 DESCRIPTION
urpmi.update scans the specified urpmi media to update their package list.
<I<names>> is a list of names you first told to urpmi.addmedia.
=head1 OPTIONS
=over
=item B<--wget>
Use wget for downloading distant files. By default curl
is used if available, or wget instead.
=item B<--curl>
Use curl for downloading distant
files. By default curl is used if available, or wget instead.
=item B<--limit-rate I<rate>>
Try to limit the download speed, I<rate> is given in bytes/sec. This
option is not active by default.
=item B<--proxy> I<proxyhost[:port|1080]>
Use specified HTTP proxy.
=item B<--proxy-user> I<user:password>
Use specified user and password to use for proxy authentication.
Specifying B<--proxy-user=ask> will cause urpmi.update to prompt for a
username and a password.
=item B<--update>
Use only update media.
=item B<--no-md5sum>
Disable MD5SUM file checking.
=item B<--force-key>
Force update of GPG key.
=item B<--norebuild>
Don't try to rebuild the hdlist files from the RPMs if the original hdlist
wasn't readable or was corrupted.
=item B<--ignore>, B<--no-ignore>
Don't update media, but mark them
as ignored (disables them). B<--no-ignore> has the reverse behaviour: it marks
the media as enabled.
=item B<-a>
Select all media that are not using a removable device to update them.
=item B<-c>
Clean /var/cache/urpmi/headers directory on exit.
=item B<-f>
Force rebuild of base files, or of hdlist files when specified twice.
=item B<-q>
Quiet mode.
=item B<-v>
Verbose mode.
=back
=head1 SEE ALSO
urpmi(8), urpmi.addmedia(8), urpmi.removemedia(8).
=head1 AUTHOR
Pascal Rigaux (original author), FranE<ccedil>ois Pons,
Rafael Garcia-Suarez, <rgarciasuarez@mandriva.com> (current maintainer)
|