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 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188
|
<!doctype debiandoc system>
<book>
<title>APT HOWTO</title>
<author>
<name>Gustavo Noronha Silva</name> <email>kov@debian.org</email>
</author>
<author>
<name>ѱ : </name> <email>yooseong@debian.org</email>
</author>
<version>1.7.3 - 2001 9 September 2001</version>
<abstract>
ڿ Ű ƿƼ APT
ظ . ο ڵ鿡
ְ ý ̱ 鿡
̴. Ʈ µ ڵ鿡
Ű ؼ̴.
</abstract>
<copyright>
<copyrightsummary>
Copyright © 2001 Gustavo Noronha Silva
</copyrightsummary>
<p>
̼ GNU FDL(Free Documentation Lincense)
. ü DZ ٶ ; ϸ鼭
δ ̴.
</copyright>
<toc>
<chapt>
<p>
.tar.gz̾. ڵ α
GNU/ ýۿ ϰ ؼ Ͽ
۵Ǿ ӽſ ġǾ ִ Ű ϴ ʿϰ
Ǿ. ȿ <prgn>dpkg</prgn> Ǿ `Ű'
GNU/ Ǿ. ̴ ڽ `rpm' ý
ϱ ̾.
<p>
ο GNU/ ڵ Ҵ. ̵
ǿ̰ ȿ Ű ġϴµ ڵ ϰ
̵߿ ٷ ϰ ;. ⼭
´µ ̰ APT, Advanced Packaging Tool,ε ̴
Conectiva ؼ Ǿ rpm Բ ǰ ְ ٸ
Ʈǿ äõǾ Ǿ.
<p>
Ŵ APT Conectiva apt-rpm Ϸ ƴϰ
``ġ'' ȯѴ.
</chapt>
<chapt id="basico">⺻
<sect id="sources.list">/etc/apt/sources.list
<p>
۾ Ϻημ APT Ű `sources'
ʿϴ. <tt>/etc/apt/sources.list</tt>̴.
<p>
ϵ ¸ ϰ ִ:
<example>
deb http://site.http.org/debian distribution section1 section2 section3
deb-src http://site.http.org/debian distribution section1 section2 section3
</example>
̰ ƾѴ. ù°
ܾ <tt>deb</tt> <tt>deb-src</tt> ī̺ ¸ ǹϴµ:
̳ʸ Ű ϴ <tt>deb</tt≯ 츮 Ϲ
ϴ ̸ ϵ Ṵ̋ <tt>deb-src</tt> ǹϴ
Ű ҽ (<tt>.dsc</tt>) α
ȭ Ͽ µ ʿ changes <tt>diff.gz</tt>
ǹѴ.
<p>
밳 sources.list ⺻ ִ:
<example>
# See sources.list(5) for more information, especialy
# Remember that you can only use http, ftp or file URIs
# CDROMs are managed through the apt-cdrom tool.
deb http://http.us.debian.org/debian stable main contrib non-free
deb http://non-us.debian.org/debian-non-US stable/non-US main contrib non-free
deb http://security.debian.org stable/updates main contrib non-free
# Uncomment if you want the apt-get source function to work
#deb-src http://http.us.debian.org/debian stable main contrib non-free
#deb-src http://non-us.debian.org/debian-non-US stable non-US
</example>
⺻ ġ ʿ ̴. ù° <tt>deb</tt>
ī̺긦 Ű ι° non-US ī̺̰ °
Ʈ Ų.
<p>
ΰ # ּó Ǿ ִµ apt-get ̸
Ѵ. ̴ <tt>deb-src</tt>ε ҽ Ű
Ѵ. ̳ ؼ α ҽ ٿε Ϸ
ּ ָ ȴ.
<p>
<tt>/etc/apt/sources.list</tt>
ִ. APT <tt>http</tt>, <tt>ftp</tt>, <tt>file</tt>( Ϸ
Ʈ ISO9660 Ͻý 丮) <tt>ssh</tt>
ī̺긦 νϰ ٷ.
</sect>
<sect id="dpkg-scanpackages">ÿ APT ϱ
<p>
δ APT ̿ؼ ġϷ .deb Ű
ְ ڵ ذǾ ġǰ ϰ 찡 ̴.
<p>
丮 .deb ϴ ֱ ؼ
丮 :
<example>
mkdir /root/debs
</example>
/root 丮 ִ ̸ε ϳ
ش. APT Ұ "override" ʿѵ
θ ؾѴ. ؼ
ִ:
<example>
touch file
</example>
Ͼȿ Ű ̹ ־ ɼ ߺϿ
ɼǵ ִ. :
<example>
package priority section
</example>
Ű Ű ̸̰ 켱 low, medium̳ high̰
Ű ̴. δ Ѵ.
<p>
/root 丮 :
<example>
dpkg-scanpackages debs file | gzip > debs/Packages.gz
</example>
"override"̰ debs/Packages.gz
Ű پ ϰ ־ APT ϰ
ش. Ű ̿Ϸ ߰Ѵ:
<example>
deb file:/root debs/
</example>
̷ Ŀ APT ÿ Ѵ. ҽ Ҹ
ְ ̸ ϱ ؼ ϴµ <tt>.orig.tar.gz</tt>
<tt>.dsc</tt>, <tt>.diff.gz</tt> 丮 ְ Packages.gz
Sources.gz ϸ ȴ. α ٸ:
<prgn>dpkg-scansources</prgn>. :
<example>
dpkg-scansources debs | gzip > debs/Sources.gz
</example>
<prgn>dpkg-scansources</prgn> "overrride"
ʿ. sources.list :
<example>
deb-src file:/root debs/
</example>
</sect>
<sect id="netselect"> ̸ sources.list
ִ : netselect, netselect-apt<p>
ο ڵ κ ǽϴ : " ̷ ؼ
<tt>sources.list</tt> Խų"ϴ ̴. ̷ ϴ
ִ. ũƮ ̿ؼ
ping ð ϴ ũƮ ̸ ִ α
ִ: <strong>netselect</strong>.
<p>
netselect ġϱ ؼ :
<example>
apt-get install netselect
</example>
ĶͰ ϸ ش. и
ȣƮ(̷) ̿ؼ ϸ鼭 ȣƮ ϳ ش.
ping ð̸ hops(Ʈũ ϸ鼭
ȣƮ) ٿε ӵ( )
ݺѴ. ƿ ȣƮ ȴ(
Ʈ -vv ɼ ߰ϸ ã ִ). :<example>
bash$ netselect ftp.debian.org http.us.debian.org ftp.at.debian.org download.unesp.br ftp.debian.org.br
365 ftp.debian.org.br
bash$
</example>
ǹ̴ netselect ĶŸ Ե ̷κ
<tt>ftp.debian.org.br</tt> ٰ 365. (!
̴ ǻͿ ̰ Ʈũ Ȳ
ſ ٸ ٸ ǻͿ ƴϴ.)
<p>
<tt>/etc/apt/sources.list</tt> netselect
̷ ְ (<ref id="sources.list"> ) <ref id="apt-get"> ִ
.
<p> <strong>:</strong> ̷ Ʈ <url
id="http://www.debian.org/mirror/mirrors_full"
name="http://www.debian.org/mirror/mirrors_full"> Ȯ ִ. <p>
0.3 ߴ netselect Ű
<strong>netselect-apt</strong> ϰ ְ ̴ ڵȭ
ش. ĶŸ Ʈ Ʈ Էϰ(⺻ ̴)
<tt>sources.list</tt> main non-US ̷
丮 ̴. Ʈ
sources.list :
<example>
bash$ ls sources.list
ls: sources.list: File or directory not found
bash$ netselect-apt stable
(...)
bash$ ls -l sources.list
sources.list
bash$
</example>
<strong> :</strong> <tt>sources.list</tt>
丮 ݵ <tt>/etc/apt</tt> Ű Ѵ.
<p>
<ref id="apt-get"> ִ ȴ.
</sect>
<sect id="cdrom">CD-ROM sources.list ߰ϱ
<p>
CD-ROM Ű ġϴµ ϰų ڵ APT
̿ؼ ƮϷ <tt>sources.list</tt> ߰
ִ. ̷ ϱ ؼ <prgn>apt-cdrom</prgn>
̿ϸ ȴ:
<example>
apt-cdrom add
</example>
̺꿡 CD-ROM ְ Ѵ. ̴ CD-ROM Ʈϰ
CD-ROM̸ ũ ִ Ű ã´. CD-ROM
ټ ̸ ɼ ִ:
<example>
-h - program help
-d directory - CD-ROM mount point
-r - Rename a recognized CD-ROM
-m - No mounting
-f - Fast mode, don't check package files
-a - Thorough scan mode
</example>
:
<example>
apt-cdrom -d /home/kov/mycdrom add
</example>
Ʈ ߰ ʰ CD-ROM ν ִ:
<example>
apt-cdrom ident
</example>
α CD-ROM ý <tt>/etc/fstab</tt>
ִ 쿡 ۵Ѵ.
</sect>
</chapt>
<chapt id="apt-get">Ű ϱ
<sect id="update"> Ű Ʈ Ʈϱ
<p>
Ű¡ ý Ű ġǾ ȵǾ ġ ϴ ü
Ÿ̽ Ѵ. <prgn>apt-get</prgn> α
Ÿ̽ ̿ؼ ڰ ϴ Ű ġϴ
νϰ õ Ű ۵ϴµ ʿ ߰ Ű ִ
ã ȴ.
<p>
Ʈ Ʈϱ ؼ <prgn>apt-get update</prgn>
̿ϸ ȴ. <tt>/etc/apt/sources.list</tt> ִ
ī̺ Ű Ʈ ã´; Ͽ ڼ <ref
id="sources.list"> ϸ ȴ.
<p>
ֱ ̿ؼ ýۿ Ű
Ʈ ϰ ִ . Ư Ʈ ſ ߿ϴ.
</sect>
<sect id="install">Ű ġϱ
<p>
ٸ⸸ Ѵ! sources.list Ʈ
Ʈ ̿ؼ <tt>apt-get</tt> ̿ؼ
ϴ Ű ġϸ ȴ. :
<example>
apt-get install xchat
</example>
APT Ű ֽŹ Ÿ̽ ã ̸
<tt>sources.list</tt> ִ ش ī̺꿡 ƿ
ȴ. Ű ٸ Ϳ ϴ 쿡 APT Ȯؼ
ʿ Ű ġش. :
<example>
[root]@[/] # apt-get install nautilus
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
bonobo libmedusa0 libnautilus0
The following NEW packages will be installed:
bonobo libmedusa0 libnautilus0 nautilus
0 packages upgraded, 4 newly installed, 0 to remove and 1 not upgraded.
Need to get 8329kB of archives. After unpacking 17.2MB will be used.
Do you want to continue? [Y/n]
</example>
<package>nautilus</package> Ű ̺귯 ϴµ
APT ڵ ī̺꿡 ̰͵ ´. <tt>apt-get</tt>
̷ ̺귯 ̸ ߴٸ APT
ϱ⸦ Ѵٸ APT ̴; ̷ Ű
Ѵٸ ڵ ġ Դϴ.
<p>
APT Ű Ű ϰ Ű ġ
ʿ䰡 Ȯ 䱸ϰ ȴ.
<p>
ɼ apt-get ̿ ϴ:
<example>
-h This help text.
-d Download only - do NOT install or unpack archives
-f Attempt to continue if the integrity check fails
-s No-act. Perform ordering simulation
-y Assume Yes to all queries and do not prompt
-u Show a list of upgraded packages as well
</example>
Ű ġϰ ϴ 쿡 ٿ ȴ.
Ʈũ ؼ ٿεϸ ġĿ
<tt>/var/cache/apt/archives</tt> ġϰ ȴ.
<p>
ι° Ű ִ. '-' Ű
ڿ ȴ:
<example>
[root]@[/] # apt-get install nautilus gnome-panel-
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
bonobo libmedusa0 libnautilus0
The following packages will be REMOVED:
gnome-applets gnome-panel gnome-panel-data gnome-session
The following NEW packages will be installed:
bonobo libmedusa0 libnautilus0 nautilus
0 packages upgraded, 4 newly installed, 4 to remove and 1 not upgraded.
Need to get 8329kB of archives. After unpacking 2594kB will be used.
Do you want to continue? [Y/n]
</example>
Ű ؼ <ref id="remove"> ϶.
<p>
Ű ִٰų Ű ġϰ Ѵٸ
<tt>--reinstall</tt> ̿ϸ ȴ.
<example>
[root]@[/] # apt-get --reinstall install gdm
Reading Package Lists... Done
Building Dependency Tree... Done
0 packages upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 1 not upgraded.
Need to get 0B/182kB of archives. After unpacking 0B will be used.
Do you want to continue? [Y/n]
</example>
APT 0.5.3̾. ̴ `Ҿ'
(<tt>sid</tt>) ̿Ǵ ̴. ġǾٸ
߰ ȴ: <tt>apt-get install
package/distribution</tt> ¸ ̿ؼ ϴ Ʈǿ
Ű ġ ִ Ǵ <tt>apt-get install
package=version</tt> ̿ ִ. :
<example>
apt-get install nautilus/unstable
</example>
̷ ϴ `stable'̶ص `unstable' ƿ
Ű ġ ִ. 'Ʈ' δ
<tt>stable</tt>, <tt>testing</tt>, <tt>unstable</tt> ִ.
<p>
<em>߿</em>: `unstable' Ű
ο ε Ǵ ̴. Ʈ Ű
ȭ ִµ Ű Ű
ִ Ű ü ýۿ ִ Ű ִ. ̷
ؼ Ʈ ڳ
ʿ ؼ <em>ȵȴ</em>.
<p>
`testing' Ʈ `unstable'ٴ 鿡 .
</sect>
<sect id="remove">Ű ϱ
<p>
̻ Ű ϰ ̸ ýۿ
APT ̿ؼ ִ. ̷ ϱ ؼ <tt>apt-get remove
package</tt> ϸ ȴ. :
<example>
[root]@[/] # apt-get remove gnome-panel
Reading Package Lists... Done
Building Dependency Tree... Done
The following packages will be REMOVED:
gnome-applets gnome-panel gnome-panel-data gnome-session
0 packages upgraded, 0 newly installed, 4 to remove and 1 not upgraded.
Need to get 0B of archives. After unpacking 14.6MB will be freed.
Do you want to continue? [Y/n]
</example>
ֵ APT ɸ Ű ſ
ϴ. ϴ Ű ϴ Ű ִ
APT .
<p>
<prgn>apt-get</prgn> ϸ Ű
ִٸ ʰ ýۿ ״ ܵд. Ű
Ȯϰ ϶:
<example>
[root]@[/] # apt-get --purge remove gnome-panel
Reading Package Lists... Done
Building Dependency Tree... Done
The following packages will be REMOVED:
gnome-applets* gnome-panel* gnome-panel-data* gnome-session*
0 packages upgraded, 0 newly installed, 4 to remove and 1 not upgraded.
Need to get 0B of archives. After unpacking 14.6MB will be freed.
Do you want to continue? [Y/n]
</example>
̸ ڿ '*' ϶. ̴ Ű
ȴٴ ǹ̰ ȴ.
<p>
<tt>install</tt> ó <tt>remove</tt> ɺ Ͽ
Ư Ű ǹ̸ L. ϴ 쿡
<tt>'+'</tt> Ű ̸ ٷ ڿ ̸ Ű ϴ
Ű ġѴ.
<example>
[root]@[/] # apt-get --purge remove gnome-panel nautilus+
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
bonobo libmedusa0 libnautilus0 nautilus
The following packages will be REMOVED:
gnome-applets* gnome-panel* gnome-panel-data* gnome-session*
The following NEW packages will be installed:
bonobo libmedusa0 libnautilus0 nautilus
0 packages upgraded, 4 newly installed, 4 to remove and 1 not upgraded.
Need to get 8329kB of archives. After unpacking 2594kB will be used.
Do you want to continue? [Y/n]
</example>
<prgn>apt-get</prgn> ġ ٸ Ű鵵 ذ( Ű
ġ Ű ۵ϱ ؼ ʿ Ű)
Ű ߰ Ű ؼ ġ Ű ش.
</sect>
<sect id="upgrade">Ű ̵
<p>
Ű ̵ APT ý ̴. ϳ ɾ
ִ:<tt>apt-get upgrade</tt>. ̿ؼ
Ʈdz Ű ̵尡 ϰ ο
Ʈ ̵嵵 쿡 <tt>apt-get
dist-upgrade</tt> Ѵ; ڼ <ref id="dist-upgrade">
ϱ ٶ.
<p>
̿ <tt>-u</tt> Բ Ѵ. ɼ APT
̿ ̵ Ǵ Ű ش. ɼǾ ϸ
̵ Ǵ . APT Ű ֽŹ ٿε
ϰ ġѴ. ̸ ϱ ݵ <tt>apt-get
update</tt> ؾ ϴ ߿ϴ. <ref id="update">
϶. :
<example>
[root]@[/] # apt-get -u upgrade
Reading Package Lists... Done
Building Dependency Tree... Done
The following packages have been kept back
cpp gcc lilo
The following packages will be upgraded
adduser ae apt autoconf debhelper dpkg-dev esound esound-common ftp indent
ipchains isapnptools libaudiofile-dev libaudiofile0 libesd0 libesd0-dev
libgtk1.2 libgtk1.2-dev liblockfile1 libnewt0 liborbit-dev liborbit0
libstdc++2.10-glibc2.2 libtiff3g libtiff3g-dev modconf orbit procps psmisc
29 packages upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
Need to get 5055B/5055kB of archives. After unpacking 1161kB will be used.
Do you want to continue? [Y/n]
</example>
ſ ܼϴ. ó ٿ <tt>apt-get</tt>
Ű <tt>kept back</tt>(״ ) ˷ְ
ִ. ǹ̴ ο Ű ؼ ġ
ȵȴٴ ǹ̰ ȴ. δ ( Ű
ϴ Ű ٿε ƴѰ)̰ų ο
( Ű ϴ Ű ο Ű ϴ )
ִ ̴.
<p>
ù° 쿡 Ȯ ذ . ι° 쿡 ƯŰ
<tt>apt-get install</tt> ̿ؼ ġϸ ϴ. ᱹ
ذִ ̴. <tt>dist-upgrade</tt>
̿ϴ ε <ref id="dist-upgrade"> ϶.
</sect>
<sect id="dist-upgrade">ο ϱ
<p>
APT ü ý ͳ ϰ ο
CD(ϰ ISO̹ ̿ϰ) ̿ϰ ̵尡 ˴ϴ.
<p>
ġ Ű鰣 谡 ȭ ȴ. <tt>apt-get
upgrade</tt> ̿ؼ Ű ״ ִ(<tt>kept
back</tt>).
<p>
0 ϰ ְ 3
õ ߴٰ . APT ̿ؼ ο CD ̿ؼ
ý ̵ ִ. ̷ ϱ ؼ
<prgn>apt-cdrom</prgn> ̿ؼ(<ref id="cdrom"> ) CD
<tt>/etc/apt/sources.list</tt> ְ <tt>apt-get dist-upgrade</tt>
ش.
<p>
APT ο Ű ã´. CD ƴ
ֱ Ʈ <tt>/etc/apt/sources.list</tt> Ѵٸ
APT Ű ű⼭ ٿε Ѵ.
<p>
<ref id="upgrade"> ǿ Ͱ Ű
״(<tt>kept back</tt>) ְ ȴ. <tt>dist-upgrade</tt>
ذ ִ.
<example>
[root]@[/] # apt-get -u dist-upgrade
Reading Package Lists... Done
Building Dependency Tree... Done
Calculating Upgrade... Done
The following NEW packages will be installed:
cpp-2.95 cron exim gcc-2.95 libident libopenldap-runtime libopenldap1
libpcre2 logrotate mailx
The following packages have been kept back
lilo
The following packages will be upgraded
adduser ae apt autoconf cpp debhelper dpkg-dev esound esound-common ftp gcc
indent ipchains isapnptools libaudiofile-dev libaudiofile0 libesd0
libesd0-dev libgtk1.2 libgtk1.2-dev liblockfile1 libnewt0 liborbit-dev
liborbit0 libstdc++2.10-glibc2.2 libtiff3g libtiff3g-dev modconf orbit
procps psmisc
31 packages upgraded, 10 newly installed, 0 to remove and 1 not upgraded.
Need to get 0B/7098kB of archives. After unpacking 3118kB will be used.
Do you want to continue? [Y/n]
</example>
Ű ̵ ǰ ο Ű ġǴ ̴(Ű
ο ). lilo ״(<tt>kept back</tt>) ְ ȴ. ο
ɰ ִ. ν Ȯ
ϴ:
<example>
[root]@[/] # apt-get -u install lilo
Reading Package Lists... Done
Building Dependency Tree... Done
The following extra packages will be installed:
cron debconf exim libident libopenldap-runtime libopenldap1 libpcre2
logrotate mailx
The following packages will be REMOVED:
debconf-tiny
The following NEW packages will be installed:
cron debconf exim libident libopenldap-runtime libopenldap1 libpcre2
logrotate mailx
The following packages will be upgraded
lilo
1 packages upgraded, 9 newly installed, 1 to remove and 31 not upgraded.
Need to get 225kB/1179kB of archives. After unpacking 2659kB will be used.
Do you want to continue? [Y/n]
</example>
ó lilo debconf-tiny ʰ ġ
Ȳ̶ <package>debconf-tiny</package> Ӱ 浹 Ͼ
ִ.
</sect>
<sect id="dselect-upgrade">dselect Բ APT ϱ
<p>
<prgn>dselect</prgn> ڵ Ű ġ ؼ
ִ α̴. ټ ϰ ϰ ִ. ݸ
ϸ ܼ ncurses ̽ ͼ
̴.
<p>
dselect ϳ ϳ Ű ġ "õ"ϰ ""ϴ
Ű ̿ϴ Դϴ. ʿ
CD ROM ʰ ͳݿ Ű ٿε ϰ
Ѵٸ dselect ̿ϴ .
<p>
dselect 뿡 ڼ ˰ <url
id="http://www.debian.org/doc/ddp"
name="http://www.debian.org/doc/ddp"> dselect
캸 ˴ϴ.
<p>
dselect ̿ؼ ϴ Ŀ:
<example>
apt-get -u dselect-upgrade
</example>
Ʒ ִ ó:
<example>
[root]@[/] # apt-get -u dselect-upgrade
Reading Package Lists... Done
Building Dependency Tree... Done
The following packages will be REMOVED:
lbxproxy
The following NEW packages will be installed:
bonobo console-tools-libs cpp-3.0 enscript expat fingerd gcc-3.0
gcc-3.0-base icepref klogd libdigest-md5-perl libfnlib0 libft-perl
libgc5-dev libgcc300 libhtml-clean-perl libltdl0-dev libsasl-modules
libstdc++3.0 metamail nethack proftpd-doc psfontmgr python-newt talk tidy
util-linux-locales vacation xbill xplanet-images
The following packages will be upgraded
debian-policy
1 packages upgraded, 30 newly installed, 1 to remove and 0 not upgraded.
Need to get 7140kB of archives. After unpacking 16.3MB will be used.
Do you want to continue? [Y/n]
</example>
ýۿ apt-get dist-upgrade ϴ Ͱ ϶:
<example>
[root]@[/] # apt-get -u dist-upgrade
Reading Package Lists... Done
Building Dependency Tree... Done
Calculating Upgrade... Done
The following packages will be upgraded
debian-policy
1 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 421kB of archives. After unpacking 25.6kB will be freed.
Do you want to continue? [Y/n]
</example>
Ű ġǴµ "ȵǰų" "õ"
Ű̱ ̴. ٸ ͵ dselect ̿ؼ
ġǰų ( lbxproxy ) Ű̴. Dselect
APT Բ ִ.
</sect>
<sect id="pin">ġ Ű Ư ִ
<p>
쿡 Ű ΰ ְ ð
̷ ȭ α ű ִ.
, Ƽ 3.0 ÷
Ű ׳ 2.2 ϰ 찡 ִ.
ġϰ ϴ "pin()"ų ְ ̵
ִ.
<p>
ҽ ̿ϴ ܼϴ. <tt>/etc/apt/preferences</tt>
ʿ䰡 ִ.
<p>
ܼϴ:
<example>
Package: <package>
Pin: <pin definition>
Pin-Priority: <pin's priority>
</example>
<p>
, <package>sylpheed</package> ״ ؼ
0.4.99 "reply-to-list" ̿ؼ ϴ.
߰Ѵ:
<example>
Package: sylpheed
Pin: version 0.4.99*
</example>
⼭ <tt>*</tt> ߴ. ̴ "wildcard"̴; "pin"
0.4.99 ϴ ؼ ϰ ϰ ʹٴ ǹ̰
ȴ. ̴ Ű " " ̿ ֱ
̰ ̷ ġ ϰ ʱ ̴.
0.4.99-1 0.4.99-10 ϴٸ ġ ̴. Ű
ϰ Ѵٸ ̷ ϰ ̴.
<p>
<tt>Pin-Priority</tt> ʵ ̴; ⺻ 989
.
<p>
⼭ pin 켱 ۵ϴ ˾ƺ. 0
Ű ġ ƾѴٴ ǹ̴. 켱 0
100 ġ Ű ǹϰ ƴ϶
ǹ̴. ̴ ̴. 켱 100
ġ Ű 켱 Ҵ ̴ - ٸ ü ġ
Ű ؼ üϴ 100 켱 ƾѴ.
<p>
100 ̻ 켱 ǹϴ Ű ݵ ġǾѴٴ
ǹ̴. ġ Ű ο ̵
ȴ. 100 1000 켱 ȴ. ̷
켱 Ű ٿ̵
ʴ´. sylpheed 0.5.3 ġǾ pin 0.4.99
ϰ 켱 99 ϸ pin Ű 0.4.99
<em></em> ̴. "ٿ̵ " Ű
1000̻ Ѵ.
<p>
ٿ̵ ø̼ ִ;
<tt>stable</tt> <tt>testing</tt> Ѵٰ
ϰ ϰ 찡 ִ - <tt>testing</tt>
"Ʈ" ʾҴ. ⺻ pin Ͽ
Ű ̸ ؼ ϵī带 ̿ؼ stable ư
ִ. :
<example>
Package: *
Pin: release a=stable
Pin-Priority: 1001
</example>
<p>
̷ Ŀ <tt>apt-get -u dist-upgrade</tt> ϸ ý
ٿ̵尡 ϴ.
<p>
pin Ű <tt>version</tt>, <tt>release</tt> <tt>origin</tt>
ִ.
<p>
<tt>version</tt> ϴ ڸ ϰ ÿ Ư
Ѵ.
<!-- what's available? standard shell globs? ?*[] or more? -->
<p>
<tt>release</tt> ɼ APT ҳ CD Ͽ Ѵ.
ɼ ʴ Ű Ҹ ϴ 쿡
ȴ. <tt>/var/lib/apt/lists/</tt> ִ
ִ. ĶŸ :
<tt>a</tt> (archive), <tt>c</tt> (components), <tt>v</tt> (version),
<tt>o</tt> (origin) <tt>l</tt> (label).
<p>
:
<example>
Package: *
Pin: release v=2.2*,a=stable,c=main,o=Debian,l=Debian
Priority: 1001
</example>
ؼ 2.2* ߰(2.2r2, 2.2r3
ְ -- ̴ ϴ "point release" ϰ ̴ ſ
߿ Ʈ), <tt>stable</tt> , <tt>main</tt>
(<tt>contrib</tt> <tt>non-free</tt>ʹ ݴǴ) origin
label ߴ. Origin(o=)
ϰ label(l=) Ʈ ̸ Ѵ: ü
Ȱ ϸ ϸ ִ.
:
<example>
$ cat /var/lib/apt/lists/ftp.debian.org.br_debian_dists_potato_main_binary-i386_Release
Archive: stable
Version: 2.2r3
Component: main
Origin: Debian
Label: Debian
Architecture: i386
</example>
</sect>
</chapt>
<chapt id="search">Ű
<p>
ġ ϰų ̹ ġǾų Ű ǿ
ִ 켱 Ǵ Ű ؼ
Ű ְ ִ APT ý
Ʈ α ̴.
<p>
츮 APT ϴ
̴. ġϰ ϴ Ű ̸ ã ֳ?
<p>
̷ ۾ ؼ ҽ ִ. <tt>apt-cache</tt>
. α APT ýۿ ̿Ǵ APT Ÿ
̽ ϴµ ̿ȴ. ø̼ǿ ؼ
캼 ̴.
<sect id="cache">Ű ̸ ãƳ
<p>
Atari 2600 ϰ 쿡 Atari ķ
ġϿ ϰ ϰ ٿε ϰ Ѵٸ. ̷
ִ:
<example>
[root]@[/] # apt-cache search atari
atari-fdisk-cross - Partition editor for Atari (running on non-Atari)
circuslinux - The clowns are trying to pop balloons to score points!
madbomber - A Kaboom! clone
tcs - Character set translator.
atari800 - Atari emulator for svgalib/X/curses
stella - Atari 2600 Emulator for X windows
xmess-x - X binaries for Multi-Emulator Super System
</example>
츮 ã ϴ Ͱ Ű Բ
ã Ѵ. Ư Ű ڼ Ϸ ̸
̿ ִ:
<example>
[root]@[/] # apt-cache show stella
Package: stella
Priority: extra
Section: non-free/otherosfs
Installed-Size: 830
Maintainer: Tom Lear <tom@trap.mtview.ca.us>
Architecture: i386
Version: 1.1-2
Depends: libc6 (>= 2.1), libstdc++2.10, xlib6g (>= 3.3.5-1)
Filename: dists/potato/non-free/binary-i386/otherosfs/stella_1.1-2.deb
Size: 483430
MD5sum: 11b3e86a41a60fa1c4b334dd96c1d4b5
Description: Atari 2600 Emulator for X windows
Stella is a portable emulator of the old Atari 2600 video-game console
written in C++. You can play most Atari 2600 games with it. The latest
news, code and binaries for Stella can be found at:
http://www4.ncsu.edu/~bwmott/2600
</example>
츮 ġϰ ϰų ġϰ ʴ
Ű ڼ Ű Բ ڼ
ִ. Ű ̹ ýۿ ġǾ ְ ο
̶ ִ. :
<example>
[root]@[/] # apt-cache show lilo
Package: lilo
Priority: important
Section: base
Installed-Size: 271
Maintainer: Russell Coker <russell@coker.com.au>
Architecture: i386
Version: 1:21.7-3
Depends: libc6 (>= 2.2.1-2), debconf (>=0.2.26), logrotate
Suggests: lilo-doc
Conflicts: manpages (<<1.29-3)
Filename: pool/main/l/lilo/lilo_21.7-3_i386.deb
Size: 143052
MD5sum: 63fe29b5317fe34ed8ec3ae955f8270e
Description: LInux LOader - The Classic OS loader can load Linux and others
This Package contains lilo (the installer) and boot-record-images to
install Linux, OS/2, DOS and generic Boot Sectors of other OSes.
.
You can use Lilo to manage your Master Boot Record (with a simple text screen)
or call Lilo from other Boot-Loaders to jump-start the Linux kernel.
Package: lilo
Status: install ok installed
Priority: important
Section: base
Installed-Size: 190
Maintainer: Vincent Renardias <vincent@debian.org>
Version: 1:21.4.3-2
Depends: libc6 (>= 2.1.2)
Recommends: mbr
Suggests: lilo-doc
Description: LInux LOader - The Classic OS loader can load Linux and others
This Package contains lilo (the installer) and boot-record-images to
install Linux, OS/2, DOS and generic Boot Sectors of other OSes.
.
You can use Lilo to manage your Master Boot Record (with a simple text screen)
or call Lilo from other Boot-Loaders to jump-start the Linux kernel.
</example>
Ʈ ù° κ Ű ǹϰ ι° ġǾ ִ
̴. Ű Ϲ :
<example>
[root]@[/] # apt-cache showpkg penguin-command
Package: penguin-command
Versions:
1.4.5-1(/var/lib/apt/lists/download.sourceforge.net_debian_dists_unstable_main_binary-i386_Packages)(/var/lib/dpkg/status)
Reverse Depends:
Dependencies:
1.4.5-1 - libc6 (2 2.2.1-2) libpng2 (0 (null)) libsdl-mixer1.1 (2 1.1.0) libsdl1.1 (0 (null)) zlib1g (2 1:1.1.3)
Provides:
1.4.5-1 -
Reverse Provides:
</example>
Ű Ű ϰ ִ ã:
<example>
[root]@[/] # apt-cache depends penguin-command
penguin-command
Depends: libc6
Depends: libpng2
Depends: libsdl-mixer1.1
Depends: libsdl1.1
Depends: zlib1g
</example>
ϸ 츮 ϴ Ű ̸ ãµ ̿ϴ
ִ ̴.
</sect>
<sect id="dpkg-search">Using dpkg to find package names
<p>
Ű ̸ ϴ Ѱ Ű ߰ߵ ߿
ϵ ̸ ƴ ̴. Ͽ ʿ Ư <tt>".h"</tt>
ϴ Ű ã ؼ Ѵ:
<example>
[root]@[/] # dpkg -S stdio.h
libc6-dev: /usr/include/stdio.h
libc6-dev: /usr/include/bits/stdio.h
perl: /usr/lib/perl/5.6.0/CORE/nostdio.h
</example>
or:
<example>
[root]@[/] # dpkg -S /usr/include/stdio.h
libc6-dev: /usr/include/stdio.h
</example>
ýۿ ġǾ ִ Ű ̸ ã ؼ
ϵ̺긦 ȹ̶ ϶:
<example>
[root]@[/] # dpkg -l | grep mozilla
ii mozilla-browse 0.8-0.1 Mozilla Web Browser
</example>
Ű ̸ "߸ " ִٴ ̴.
Ű Ȯ ̸ <tt>mozilla-browser</tt>̴. ̸ ϱ
ؼ Ű ̿ϰų Ϻθ ̿ؼ Ȯ ̸
ִ:
<example>
[root]@[/] # apt-cache search "Mozilla Web Browser"
mozilla-browser - Mozilla Web Browser
</example>
</sect>
<sect id="auto-apt">"on demand" Ű ġϴ
<p>
α ϰ ִµ ȴ! ̴ ʿ
<tt>.h</tt> ̴. <prgn>auto-apt</prgn>
Ȳ ̴. ʿ Ű Ű ġ϶ ϰ
߰ Ű ġ Ŀ ̴.
<p>
⺻ ϴ ̴:
<example>
auto-apt run command
</example>
`command' ʿ ̴:
<example>
auto-apt run ./configure
</example>
ʿ Ű ġϵ 䱸ϰ ڵ apt-get
ȣѴ. X ϸ ̽ ⺻ ؽƮ ̽
ü ̴.
<p>
Auto-apt ȿ ֽ Ÿ̽ Ѵ. ̴
ؼ ϴ:<tt>auto-apt update</tt>, <tt>auto-apt
updatedb</tt> <tt>auto-apt update-local</tt>.
</sect>
<sect id="apt-listchanges">Ű ȭ
<p>
Ű ڽ
丮(<tt>/usr/share/doc/packagename</tt>)
<tt>changelog.Debian.gz</tt> ִµ ķ
Ű ȭ ϰ ִ. <tt>zless</tt>
̷ ʰ ü ý ̵
ڸ ̵ changelog ã Ѵ.
<p>
̷ ۾ ڵȭ ִ ִµ
<prgn>apt-listchanges</prgn> ̿ϸ ȴ. 켱
<package>apt-listchanges</package> Ű 켱 ġϰ Ű
ġ Debconf ̸ ̴ٰ. ϴ´
ϸ ȴ.
<p>
"Should apt-listchanges be automatically run by apt?" ſ
ѵ ̵ apt ġǴ Ű ȭ
ְ ֱ ̴. ϱ ̸ мϰ
ش. "Should apt-listchanges prompt for confirmation after
displaying changes?" ȭ Ŀ ġ
̴. ʴ´ٰ ϸ apt-listchanges
apt ġ ߴϰ ȴ.
<p>
apt-listchanges ġ ľ apt ؼ Ű ٿε ǰų
CD ų Ʈ ũ ġDZ
Ű ȭ Ʈ ְ ȴ.
</sect>
</chapt>
<chapt id="sourcehandling">ҽŰ ۾ϱ
<sect id="source">ҽ Ű ٿε ϱ
<p>
Ʈ ҽڵ带 ϰų װ ִ ڵ带
ϴ ϻ ̴. ̷ ϱ ؼ α ҽ
켱 ٿε ´. APT ý ҽڵ带 Ʈdz
Ե α鿡 ҽڵ带 ְ .deb
ؼ ʿ ϵ ؼ ش.
<p>
ҽ ٸ Ϲ α ֱ
Ҿ Ʈǿ ͼ Ʈǿ ϰ ϴ
̴. Ű ϸ Ʈǿ ִ
Ű ˸´ .deb ش.
<p>
̷ ϱ ؼ <tt>deb-src</tt>
<tt>/etc/apt/sources.list</tt> ־ Ҿ ް
ָ ȴ. ּ ְ ϸȴ. <ref id="sources.list">
κ ϶.
<p>
ҽ Ű ٿε ϱ ؼ ̿Ѵ:
<example>
apt-get source packagename
</example>
̷ ϸ Ǵµ: <tt>.orig.tar.gz</tt>,
<tt>.dsc</tt> <tt>.diff.gz</tt>. ȸ Ű 쿡
ٿε ʰ ù° ̸ <tt>"orig"</tt>
˴ϴ.
<p>
<tt>.dsc</tt> ҽ Ű <var>Ű</var> 丮 ȿ
Ǯ dpkg-source ̿Ǵ ̴. ٿε ҽŰ
<tt>debian/</tt> 丮 ִµ .deb Ű ִµ ʿ
ϵ ϰ ִ.
<p>
ٿε带 ϸ鼭 ڵ Ű ϰ ϸ <tt>-b</tt>
߰ϸ ȴ:
<example>
apt-get -b source packagename
</example>
ٿε ϸ鼭 .deb ٿε ϸ鼭 ʴٸ
߿ ϸ ȴ:
<example>
dpkg-buildpackage -rfakeroot -uc -b
</example>
ٿεĿ Ű 丮 ϸ ȴ.
<p>
<prgn>apt-get</prgn> <tt>source</tt> ٸ ̴
ִ. <tt>source</tt> Ʈ ̵ Ϲ ڵ ̿
ִ. <tt>apt-get source package</tt> 丮
ٿε ȴ.
</sect>
<sect id="build-dep">ҽŰ ϴµ ʿ Ű
<p>
Ϲ Ư ̺귯 ҽŰ ϱ
ؼ ־Ѵ. .deb Ű control Ͽ ҽ
Ͽ ߰ Ű ʿ κ Īϴ 'Build-Depends:'
ʵ带 ϰ ִ.
<p>
APT ̷ Ű ڵ ٿε ִ ܼ
ִ. <tt>apt-get build-dep package</tt> ϸ Ǵµ ⼭
'package' Ű ̸̴. :
<example>
[root]@[/] # apt-get build-dep gmc
Reading Package Lists... Done
Building Dependency Tree... Done
The following NEW packages will be installed:
comerr-dev e2fslibs-dev gdk-imlib-dev imlib-progs libgnome-dev libgnorba-dev
libgpmg1-dev
0 packages upgraded, 7 newly installed, 0 to remove and 1 not upgraded.
Need to get 1069kB of archives. After unpacking 3514kB will be used.
Do you want to continue? [Y/n]
</example>
ġ Ű <package>gmc</package> ʿ
Ű̴. α ҽ Ű ã
ʴ´. <tt>apt-get source</tt> Ͽ ̸ ִ.
</sect>
</chapt>
<chapt id="distros">APT ϴ Ʈ?
<p>
APT ̿ Ʈ ̸ :
<p>
GNU/ (<url id="http://www.debian.org" name="http://www.debian.org">)
- ̴ APT ߵ Ʈ̴.
<p>
Conectiva (<url id="http://www.conectiva.com.br" name="http://www.conectiva.com.br">)
- ̴ rpm Ͽ APT ù° Ʈ̴.
<p>
Mandrake (<url id="http://www.mandrake.com" name="http://www.mandrake.com">)
<p>
PLD (<url id="http://www.pld.org.pl" name="http://pld.org.pl">)
<p>
Vine (<url id="http://www.vinelinux.org" name="http://www.vinelinux.org">)
</chapt>
<chapt id="erros">óϴ
<sect id="erros-comuns">Ϲ
<p>
ϱ ε κ Ǹ
ڵ鿡 ؼ Ѵ. Ʈ Ǵ ̸
̸ ٷ Ͽ.
<p>
<tt>apt-get install package</tt> Ʒ ް
ȴٸ...
<example>
Reading Package Lists... Done
Building Dependency Tree... Done
W: Couldn't stat source package list 'http://people.debian.org unstable/ Packages' (/var/state/apt/lists/people.debian.org_%7ekov_debian_unstable_Packages) - stat (2 No such file or directory)
W: You may want to run apt-get update to correct these missing files
E: Couldn't find package penguineyes
</example>
̷ <tt>/etc/apt/sources.list</tt> Ŀ
<tt>apt-get update</tt> ʾҴٴ ̴.
<p>
ȴ:
<example>
E: Could not open lock file /var/lib/dpkg/lock - open (13 Permission denied)
E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?
</example>
<tt>source</tt> <prgn>apt-get</prgn> ̿ Ʈ
۹̼ ʿ䰡 ׳ Ϲ ڵ ϴ.
<p>
ÿ <prgn>apt-get</prgn> ι
µ <prgn>dpkg</prgn> Ǵ <prgn>apt-get</prgn>
ϴ 쵵 . ٸ Ͱ ÿ ִ
<tt>source</tt> ̿ϴ ̴.
<p>
μ ߰ ġ ߰ ̻ Ű ġϰų
ٸ ϶:
<example>
# apt-get -f install
# dpkg --configure -a
</example>
ٽ ض. ѹ ̻ ι° ʿ䰡 ִ. ̴
`Ҿ' ϴ 鿡Դ ſ ߿ ̴.
</sect>
<sect id="help"> ֳ?
<p>
ǽɽ κ Ű¡ ýۿ ϸ
ȴ. <tt>--help</tt> man п ٰ̰
<tt>/usr/share/doc</tt> 丮 ,
<tt>/usr/share/doc/apt</tt> ̴.
<p>
ȵǴ ϸ Ʈ ش
ãƶ. Ʈ Ư Ʈ
̴: <url id="http://www.debian.org" name="http://www.debian.org">
<p>
̷ Ʈ ҽ ڵ ̿
̿Ǿ Ѵٴ ϶; ٸ ý ڵ
Ʈ ü ̴.
</sect>
</chapt>
<chapt id="agradecimentos">غе
<p>
-BR Ʈ پ ģ鿡 縦 帰. :)
<p>
츮 Ʈ CIPSG 縦 帮 ̷
ϰ Ʈ 縦 帰.
<p>
Ư е:
<p>
Yooseong Yang <yooseong@debian.org> - ѱ
<p>
Michael Bramer <grisu@debian.org> - Ư
ԽŰ .
<p>
Bryan <Stillwell bryan@bokeoa.com> - ġ .
<p>
Pawel Tecza <pawel.tecza@poland.com> - پ
<p>
Pablo Lorenzzoni <spectra@debian.org> - netselect
.
<p>
Steve Langasek <vorlon@netexpress.net> - .
<p>
Arnaldo Carvalho de Melo <acme@conectiva.com.br> - APT
ϰ ִ ߰ (Mandrake, PLD, Vine) Ͽ .
<p>
Ross Boylan <RossBoylan@stanfordalumni.org> - ġ .
</chapt>
<chapt id="novas"> Ʃ丮
<p>
<url id="http://debian-br.sourceforge.net" name="Debian-BR">
Ʈ ̹ ڿ ְ
ߴ.
<p>
Ʈ Ȩ <url
id="http://debian-br.sourceforge.net/documentacao.html"
name="http://debian-br.sourceforge.net/documentacao.html">
ִ.
<p>
<email>kov@debian.org</email> ̸Ϸ
ֱ ٶ.
</chapt>
</book>
|