File: apt-move.8

package info (click to toggle)
apt-move 4.1.21
  • links: PTS
  • area: main
  • in suites: woody
  • size: 160 kB
  • ctags: 62
  • sloc: sh: 818; awk: 205; cpp: 113; makefile: 63; perl: 53
file content (536 lines) | stat: -rw-r--r-- 13,051 bytes parent folder | download
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
.\" Copyright (c) 1999 Michael Merten <mikemerten@yahoo.com>
.\" Copyright (c) 2000 Herbert Xu <herbert@debian.org>
.\" May be distributed under the terms of version 2 of the
.\" GNU GPL. See the LICENSE file included with this package.
.\" $Id: apt-move.8,v 1.8.2.3 2002/03/02 07:59:34 herbert Exp $
.TH APT\-MOVE 8 "2000 June 17th" "APT-MOVE"

.SH NAME
apt\-move \- move cache of Debian packages into a mirror hierarchy.

.SH SYNOPSIS

.B apt\-move
.RB [ \-c
.IR conffile ]
.RB [ \-ft ]
.I command


.SH DESCRIPTION

The
.B apt\-move
script is used to move a collection of Debian package files into a proper
archive hierarchy of the form
.B $LOCALDIR/dists/...
where
.B LOCALDIR
is specified in the configuration file.
It is intended as a tool to help manage the
.BR apt\-get (8)
file cache, but could be configured to work with any collection
of Debian packages.

.PP
Additionally, using the
.I sync
and 
.I mirror
commands, you can build your own local mirror of portions of a selected
binary and/or source distribution.

.PP
Running
.B apt\-move
periodically will assist in managing the resulting partial mirror
by (optionally) removing obsolete packages and creating valid local
Packages.gz and Sources.gz files using
.BR dpkg\-scanpackages (8)
and
.BR dpkg\-scansources (8).

.SS "Commands"
The following commands are accepted by
.BR apt\-move :

.TP
.B get
This generates the master files using Packages and Sources files from the
.BR apt (8)
cache.  The master files are used to keep track of what packages are
available, and where packages should be installed.

.TP
.B getlocal
This is an alias of get.  It may be removed in future releases.

.TP
.B move
Moves a collection of packages into the local mirror tree.  Uses existing
master files (see
.IR get )
to repair any mangling done to the package names.  Any packages that aren't
listed in the master files will be left in the file cache directory.

.TP
.B delete
Delete obsolete package files.  Configurable through the
.I DELETE
and
.I MAXDELETE 
settings in the
.B /etc/apt\-move.conf
file (see the 
.I CONFIGURATION
section below).

.TP
.B packages
Builds new local versions of Packages.gz and Sources.gz files.

.TP
.B fsck
Rebuilds all index files used to make Packages and Sources files and create
symbolic links for binary-all packages.  Use this if you are upgrading from an
old version (<< 4.0) of apt-move, if your index files are corrupted, or if
you are adding a new architecture to your mirror.  This will use your existing
master files, or your local Packages and Sources files if they aren't
available.

.TP
.B update
This is an alias, equivalent to
.RI ' get
.I move
.I delete
.IR packages '.
This is the preferred method for moving package files from your
cache into a local mirror.

.TP
.B local
This is an alias, equivalent to
.RI ' move
.I delete
.IR packages '.

.TP
.B localupdate
This is an alias for update.  It may be removed in future releases.

.TP
.B mirror
This command automatically runs
.IR get , 
then uses
.B /usr/lib/apt-move/fetch
and
.BR apt-get (8)
to download any packages missing from your mirror.  The downloaded files will
be installed into the repository using
.IR move .
Finally, it runs 
.I packages
and exits.
See the 
.I DIST
and
.I PKGTYPE
settings in
.BR /etc/apt\-move.conf .
Before using this command, you need to set up a 
.B $LOCALDIR/.exclude
file containing patterns to exclude
unwanted files from your mirror.  See the 
.B SAMPLE.exclude
file for an example.  See also the
.I "Exclude file"
section of 
.I NOTES 
below.  Note that this command will only mirror packages for the architecture
that you are running on.  It will, however, mirror all source packages.

.TP
.B sync
Similar to the
.I mirror
function, but only gets the packages that are currently installed on
your system.  It uses 
.BR dpkg (8)
.I \-\-get\-selections
to find out what files to download.  It will skip any files that
match one of the patterns in the
.B $LOCALDIR/.exclude
file (if it exists).
.B sync
will get the latest versions of the packages, regardless of the
version currently installed on your system (think about it).

.TP
.B exclude
This command is used to test your
.B $LOCALDIR/.exclude
pattern file.  It will 
go through the master lists and print any file that matches one
of the patters in
.BR $LOCALDIR/.exclude .
This will show you exactly what
files you have EXCLUDED from your mirror.  The 
.B \-t
(test) flag has no affect on this command.  This
uses your existing master files, and does not require an internet
connection.

.TP
.BI movefile \ files...
This command is similar to move.  Instead of moving files from
.IR FILECACHE ,
it will move the files specified on the command line.

.TP
\fBlistbin \fR[ \fBmirror \fR| \fBsync \fR| \fBrepo \fR]
This command prints a list of packages which may serve as the input to
mirrorbin or mirrorsrc.  If the argument is
.B mirror
or
.BR sync ,
it will produce the same lists that the
.B mirror
and
.B sync
commands use.  If the argument is
.BR repo ,
the list produced will contain the packages that are currently in the
apt-move repository.

.TP
.B mirrorbin
This command will fetch the list of packages specified on the standard input,
and place them into the archive in the same way as
.B mirror
does.

.TP
.B mirrorsrc
This commands acts like
.BR mirrorbin ,
except that it fetches source packages instead of binary ones.

.SS Options
The following options are available from the command line:

.TP
\fB\-c \fIconffile
Use
.I conffile
as the configuration file instead of
.BR /etc/apt\-move.conf .

.TP
.B \-f
Forces deletion of files even when the percentage of files to
delete exceeds the
.I MAXDELETE
setting.  This is useful if 
.B apt\-move 
aborts with an error saying that too many files would be deleted, and you 
want to delete the files anyway.  (Use with caution.) If you get this error,
using 
.B \-ft
will show you the complete list of files, so you can verify them before
you use
.BR \-f.

.TP
.B \-t
Makes a 'test run' and reports what WOULD be done for 
.B option
but does not modify any of the cache or mirror files.

.SH CONFIGURATION

Before using
.BR apt\-move ,
edit the 
.B /etc/apt\-move.conf
file to match your local setup.  Always remember to use the 
.I test
parameter after any change in your configuration to make sure it will
work like you want it to.  You may also want to set the
.I DELETE
option to
.I no
to turn off file deletes until everything else is working successfully.

.PP
The following settings are recognized by 
.B apt-move
(shown here with their defaults):

.TP
.BR APTSITES= """debian.midco.net non-us.debian.org """
Set this to the names of sites in your
.B /etc/apt/sources.list
that you wish to mirror.

.TP
.BR ARCHS= """alpha arm hurd-i386 i386 m68k powerpc sparc"""
This is a list of the architectures that you mirror.
As of potato, set to only one of: 
.IR alpha ,
.IR arm ,
.IR hurd\-i386 ,
.IR i386 ,
.IR m68k ,
.I powerpc
or
.IR sparc .
Determines the creation of links to binary-all packages, as well as Packages
and Sources files.

.TP
.BR LOCALDIR= /mirrors/debian
This is the full (absolute) path to your debian directory (the top of your
local mirror).

.TP
.BR DIST= potato
Set this to a distribution name (such as slink or potato) to follow a 
particular distribution throughout its life cycle, or to a distribution
branch (such as stable or unstable) to always mirror that branch, regardless
of its current name.  Your local mirror will be constructed accordingly.
It is generally safer to use the code name (e.g., potato), and then create
symbolic links under
.BR LOCALDIR .

.TP
.BR PKGTYPE= binary
Set this to your choice of:
.IR binary ,
.I source
or
.I both
to tell the
.IR mirror ,
.I sync
and
.I movefile
which type(s) of files to get.

.TP
.BR FILECACHE= /var/cache/apt/archives
The directory where your local cache of packages are. The default will work
for the 
.BR apt-get (8)
packages, unless you've changed the configuration in 
.BR /etc/apt/apt.conf .

.TP
.BR LISTSTATE= /var/state/apt/lists
The directory to your local cache of Packages files. The default will work
for the
.BR apt-get (8)
packages, unless you've changed the configuration in
.BR /etc/apt/apt.conf .

.TP
.BR DELETE= no
Determines whether obsolete packages (packages not listed in the master file,
or packages that have been superceded in the repository) are to be removed.

.TP
.BR MAXDELETE= 20
Maximum percentage of files 
.B apt\-move
is allowed to delete during a normal run.  Anything exceeding this will
produce an error and abort the script.  I added this as a precaution
so that you won't lose your entire mirror when a new distribution is 
released.  You can override this (with caution) using the
.I \-f
parameter with 
.BR apt\-move .

.TP
.BR STRICTMOVE= no
If set to yes, files will only be allowed into the cache if their version
without the epoch is equal to the version listed in the master file.  If
no version is recorded in the entry for this package in the master file,
then it will still be allowed in.

.PP
For the
.I sync
and
.I mirror
commands to function correctly, you need to list your
.B apt\-move
repository at the top of
.BR /etc/apt/sources.list
as a
.BR file\ URI .

.SH FILES

.TP
.B /usr/bin/apt\-move
The script.

.TP
.B /etc/apt\-move.conf
Configuration file for the script.

.TP
.B /usr/share/man/man8/apt\-move.8.gz
The manpage.

.TP
.B /tmp/MOVE_*
The temporary files created at runtime.

.TP
.B /usr/lib/apt-move/fetch
Utility to fetch files just like
.IR "apt-get install -d" .
Except that no dependency analysis is done.

.TP
.B .apt-move/*.{binary, source}.local
Put entries of local packages here.  The fields are
``package priority section source'' for the binary file, and
``package priority section'' for the source file.

.SH "SEE ALSO"

.BR dpkg\-scanpackages (8),
.BR dpkg\-scansources (8),
.BR dpkg (8),
.BR apt\-get (8)

.SH NOTES
.SS "Exclude file"
The 
.I mirror
command uses a file in the
.B $LOCALDIR/
directory called '.exclude' which contains
exclude patterns that are applied against the files to be mirrored.
These patterns were created with the following limitation: they must work
the same with with 
.BR grep (1),
after any '*' characters are removed.  Unless you're careful setting this up,
you'll get unexpected results.  Run
.RB "'" apt-move
.B \-t
.BR mirror "'"
first, to make sure you're getting the results you intended.  Another way to
verify your exclude file is the use the 
.I exclude
command for 
.B apt\-move
to print a list of files your are excluding from your mirror.  See the sample
 .exclude file (SAMPLE.exclude) for an example of an .exclude file.

.SH WARNINGS

The
.B apt\-move
.B mirror
and
.B sync
commands
do not test for available disk space.  The current
potato (main binary) distribution is over 1Gb in size.  Add the sources to
that and it can eat up the space on a partition really fast. I would advise you
to put your mirror somewhere other than the root partition.  Set up your
exclude file and run
.BR "apt\-move -t mirror"
and examine the result.

.SH DIAGNOSTICS

.B apt\-move
may exit with one of the following error messages:

.TP
.B "Could not find configuration."
.B apt\-move
could not find the
.B /etc/apt-move.conf
file.  Run the install script.

.TP
.B "You must specify at least one APTSITES in..."
You did not specify anything in
.IR APTSITES .
Which implies that there is nothing to mirror.

.TP
.B "Could not create directory."
For some reason, a necessary directory could not be created.

.TP
.B "You failed to select a distribution."
You did not configure a 
.I DIST
setting in /etc/apt-move.conf.

.TP
.B "You specified an invalid pacakge type."
You can only use
.IR binary ,
.I source
or
.I both
for the PKGTYPE setting.

.TP
.B "No master files exist!"
You need to run 
.B apt-\move
with the
.B get
command at least once in order to create the master files which determine
where packages are to be installed.

.TP
.B "bc calculation returned invalid result"
.B apt\-move
uses the 
.BR bc (1)
program to determine when the number of files to delete will exceed the
.I MAXDELETE
setting in
.BR apt\-move.conf .
If you get this error, make sure that 
.I MAXDELETE
is set to a number in the range of 1 to 100, without the % sign.  Otherwise
you need to report this as a bug.

.TP
.B "Too many files to delete!"
.B apt\-move
will report this error if the number of files to be deleted exceeds the 
.I MAXDELETE
setting in 
.BR apt\-move.conf .
You need to study the output to determine if this is normal (in which case
you can override this using the 
.I force
parameter), or if its due to some drastic change on the mirror site (like 
a new release) or possibly due to a partial download of the master
Packages.gz or Sources.gz file. 

.TP
.B "Your current mirror directory is incompatible..."
You have just upgraded from an old version of apt-move.  Update your
configuration, then run
.I apt-move fsck
and finally remove
.BR .apt-move/ancient .

.SH AUTHOR

Michael Merten <mikemerten@yahoo.com>

Herbert Xu <herbert@debian.org>