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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>
How to use rpm2html site</title>
<meta name="GENERATOR" content="amaya V1.2">
</head>
<body bgcolor="#ffffff">
<h1 align=center>How to use the Web rpm2html database</h1>
<p>
Welcome to the rpm2html archive.</p>
<p>
The goals of rpm2html are also to identify the dependencies between various
packages and to find the package(s) providing the resources needed to install
a given package. Every package is analyzed to retrieve its dependencies and
the resources it offers. These relationships are expressed using hyperlinks in
the generated pages. Finding the package providing the resource you need is
just a matter of a few clicks!</p>
<p>
However, navigating a large rpm2html database can be non trivial, here are
some information with the hope that it will help you to to find the RPM
packages you need to maintain your system:</p>
<ul>
<li>
<a href="#header">The navigator header</a>
<li>
<a href="#main">The main page</a>
<li>
<a href="#colormap">The colormap header</a>
<li>
<a href="#group">The index by group pages</a>
<li>
<a href="#vendor">The indexes by Maintainer and Distribution pages</a>
<li>
<a href="#date">The index by Creation Date page</a>
<li>
<a href="#name">The index by Name page</a>
<li>
<a href="#package">Package pages</a>
<li>
<a href="#resource">Resource pages</a>
</ul>
<h2><a name="header">The navigator header</a></h2>
<p>
All the pages generated by rpm2html includes a standard template like this
one:</p>
<hr>
<table border="5" cellspacing="5" cellpadding="5">
<tbody>
<tr>
<td>
<a href="index.html">Index</a>
</td>
<td>
<a href="Groups.html">RPM sorted by Group</a>
</td>
<td>
<a href="Distribs.html">RPM sorted by Distribution</a>
</td>
<td>
<a href="Vendors.html">RPM sorted by Vendor</a>
</td>
<td>
<a href="ByDate.html">RPM sorted by creation date</a>
</td>
<td>
<a href="ByName.html">RPM sorted by Name</a>
</td>
</tr>
</tbody>
</table>
<hr>
<p>
This can be used to move faster from one place in the Web site one of the main
pages. Further development will allow site maintainers to link-in extra pages
like the help system or a search engine. Here are the standard links:</p>
<ul>
<li>
Index brings you back to the rpm2html database main page.
<li>
RPM sorted by Group is a shortcut to the Group page, listing all the
categories for which RPMs are available.
<li>
RPM sorted by Distribution is a shortcut to the Distribution page, listing all
the distributions for which RPMs are available.
<li>
RPM sorted by Vendor is a shortcut to the Vendor page, listing all the vendor
or packagers who provided the RPM for the database.
<li>
RPM sorted by Group is a shortcut to the Group page, listing all the
categories for which RPMs are available.
<li>
RPM sorted by Nane is a shortcut to the Name page, allowing to search a
package using its name.
<li>
RPM sorted by creation date, or RPM sorted by installation date list all the
packages available (or installed) on the site, showing the most recent first,
this is useful if you're tracking a recently released package
</ul>
<h2><a name="main">The main page</a></h2>
<p>
This page is the front-end of this rpm2html database, it intent is to show
what packages are available.</p>
<p>
Following a one line summary of the amount of packages indexed, it gives a set
of generic links to the main indexes:</p>
<hr>
<ul>
<li>
The list of <a href="Groups.html">RPM indexed by category</a>
<li>
The list of <a href="ByDate.html">RPM indexed by date of creation</a>
<li>
The list of <a href="ByName.html">RPM indexed by name</a>
<li>
The list of <a href="Vendors.html">RPM indexed by maintainer</a>
<li>
The list of <a href="Distribs.html">RPM indexed by distribution</a>
</ul>
<hr>
<p>
Then all the directories indexed in the base are listed to advertize the
available set of packages, their name, the origin server, the local one and a
set of mirrors. <strong>Important</strong>, it also show the associed color
code for packages coming from this distribution, e.g.:</p>
<hr>
<table bgcolor="#e0ffe0">
<tbody>
<tr>
<td bgcolor="#e0ffe0" colspan="2">
<a
href="ftp://ftp.redhat.com/pub/redhat/redhat-5.0/i386/RedHat/RPMS">RedHat-5.0
for i386</a>
</td>
</tr>
<tr>
<td bgcolor="#e0ffe0">
Repository for sources:
</td>
<td bgcolor="#e0ffe0">
<a
href="ftp://ftp.redhat.com/pub/redhat/redhat-5.0/SRPMS">ftp://ftp.redhat.com/pub/redhat/redhat-5.0/SRPMS</a>
</td>
</tr>
<tr>
<td bgcolor="#e0ffe0">
Local mirror:
</td>
<td bgcolor="#e0ffe0">
<a
href="ftp://rpmfind.net/linux/redhat/redhat-5.0/i386/RedHat/RPMS">ftp://rpmfind.net/linux/redhat/redhat-5.0/i386/RedHat/RPMS</a>
</td>
</tr>
<tr>
<td bgcolor="#e0ffe0" colspan="2">
Mirrors
</td>
</tr>
<tr>
<td bgcolor="#e0ffe0" colspan="2">
<a
href="ftp://ftp.redhat.com/pub/redhat/redhat-5.0/i386/RedHat/RPMS">ftp://ftp.redhat.com/pub/redhat/redhat-5.0/i386/RedHat/RPMS</a>
</td>
</tr>
</tbody>
</table>
<hr>
<p>
The color scheme may be extremely useful is a package is available from
various distribution and for different architectures.</p>
<h2><a name="colormap">The colormap header</a></h2>
<p>
Most of the pages listing a set of RPMs also provide a colormap in the header.
This is a reminder of the color codes used to help localize the packages
pertaining to a given distribution/architecture, for example:</p>
<hr>
<table align=center>
<tbody>
<tr>
<td bgcolor="#e0ffe0">
RedHat-5.0 for i386
</td>
<td bgcolor="#ffe0ff">
RedHat-5.0 for alpha
</td>
<td bgcolor="#c0ffc0">
RedHat-5.0 Updates for i386
</td>
<td bgcolor="#ffc0ff">
RedHat-5.0 Updates for alpha
</td>
</tr>
<tr>
<td bgcolor="#fff0ff">
RedHat Contribs for alpha
</td>
<td bgcolor="#efffef">
Hurricane Contribs for i386
</td>
<td bgcolor="#fff0ff">
Hurricane Contribs for alpha
</td>
<td bgcolor="#ffe0e0">
RedHat-4.2 for i386
</td>
</tr>
<tr>
<td bgcolor="#ffc0c0">
RedHat-4.2 Updates for i386
</td>
<td bgcolor="#c0c0ff">
RedHat-4.2 Updates for Sparc
</td>
<td bgcolor="#ffffd0">
SuSE 5.1
</td>
<td bgcolor="#ffffb0">
SuSE Updates
</td>
</tr>
<tr>
<td bgcolor="#ffd683">
RedHat Labs
</td>
<td bgcolor="#9aeef6">
Linux/PPC
</td>
<td>
</td>
<td>
</td>
</tr>
</tbody>
</table>
<hr>
<h2><a name="group">The index by groups pages</a></h2>
<p>
This page lists all the groups founds in the set of RPM indexed e.g.:</p>
<hr>
<ul>
<li>
<a href="Admin.html">Admin</a>
<li>
<a href="Administration.html">Administration</a>
<li>
<a href="Applications.html">Applications</a>
</ul>
<hr>
<p>
Each item is a link to the page listing all the RPM packages found in this
group. Each group pages includes the navigation header, the colormap header
and a list of packages exemple:</p>
<hr>
<table>
<tbody>
<tr>
<td width="250">
dozer-0.7.2b-1
</td>
<td width="450">
No summary !
</td>
<td bgcolor="#ffffff" width="75">
<a href="contrib/dozer-0.7.2b-1.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
ed-0.2-5B
</td>
<td width="450">
GNU Line Editor
</td>
<td bgcolor="#9aeef6" width="75">
<a href="linuxPPC/ed-0.2-5B.ppc.html">Linux/ppc</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
ed-0.2-5
</td>
<td width="450">
GNU Line Editor
</td>
<td bgcolor="#ffe0e0" width="75">
<a href="i386/ed-0.2-5.i386.html">Linux/i386</a>
</td>
<td bgcolor="#ffffd0" width="75">
<a href="suse/5.1/ap1/ed-0.2-5.i386.html">Linux/i386</a>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
ed-0.2-7
</td>
<td width="450">
GNU Line Editor
</td>
<td bgcolor="#e0ffe0" width="75">
<a href="5.0/i386/ed-0.2-7.i386.html">Linux/i386</a>
</td>
<td bgcolor="#ffe0ff" width="75">
<a href="5.0/alpha/ed-0.2-7.alpha.html">Linux/alpha</a>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
elvis-2.0-1
</td>
<td width="450">
Elvis
</td>
<td bgcolor="#ffffff" width="75">
<a href="contrib/elvis-2.0-1.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-0.97.14-4
</td>
<td width="450">
A small fast editor
</td>
<td bgcolor="#ffe0e0" width="75">
<a href="i386/jed-0.97.14-4.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-0.98.7-2
</td>
<td width="450">
A small fast editor
</td>
<td bgcolor="#efffef" width="75">
<a href="contrib/hurricane/i386/jed-0.98.7-2.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-0.98.4-1
</td>
<td width="450">
A small fast editor
</td>
<td bgcolor="#ffffff" width="75">
<a href="contrib/jed-0.98.4-1.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-0.98.4-2
</td>
<td width="450">
A small fast editor
</td>
<td bgcolor="#e0ffe0" width="75">
<a href="5.0/i386/jed-0.98.4-2.i386.html">Linux/i386</a>
</td>
<td bgcolor="#ffe0ff" width="75">
<a href="5.0/alpha/jed-0.98.4-2.alpha.html">Linux/alpha</a>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-xjed-0.97.14-4
</td>
<td width="450">
Jed editor - X version
</td>
<td bgcolor="#ffe0e0" width="75">
<a href="i386/jed-xjed-0.97.14-4.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-xjed-0.98.7-2
</td>
<td width="450">
Jed editor - X version
</td>
<td bgcolor="#efffef" width="75">
<a href="contrib/hurricane/i386/jed-xjed-0.98.7-2.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-xjed-0.98.4-1
</td>
<td width="450">
Jed editor - X version
</td>
<td bgcolor="#ffffff" width="75">
<a href="contrib/jed-xjed-0.98.4-1.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
jed-xjed-0.98.4-2
</td>
<td width="450">
Jed editor - X version
</td>
<td bgcolor="#e0ffe0" width="75">
<a href="5.0/i386/jed-xjed-0.98.4-2.i386.html">Linux/i386</a>
</td>
<td bgcolor="#ffe0ff" width="75">
<a href="5.0/alpha/jed-xjed-0.98.4-2.alpha.html">Linux/alpha</a>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
joe-2.8-7
</td>
<td width="450">
easy to use editor
</td>
<td bgcolor="#ffe0e0" width="75">
<a href="i386/joe-2.8-7.i386.html">Linux/i386</a>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td width="250">
joe-2.8-10
</td>
<td width="450">
easy to use editor
</td>
<td bgcolor="#c0ffc0" width="75">
<a href="5.0/i386/updates/joe-2.8-10.i386.html">Linux/i386</a>
</td>
<td bgcolor="#ffffff" width="75">
<a href="contrib/joe-2.8-10.i386.html">Linux/i386</a>
</td>
<td bgcolor="#ffc0ff" width="75">
<a href="5.0/alpha/updates/joe-2.8-10.alpha.html">Linux/alpha</a>
</td>
</tr>
<tr>
<td width="250">
joe-2.8-9
</td>
<td width="450">
easy to use editor
</td>
<td bgcolor="#e0ffe0" width="75">
<a href="5.0/i386/joe-2.8-9.i386.html">Linux/i386</a>
</td>
<td bgcolor="#ffe0ff" width="75">
<a href="5.0/alpha/joe-2.8-9.alpha.html">Linux/alpha</a>
</td>
<td>
</td>
</tr>
</tbody>
</table>
<hr>
<p>
All the packages with identical software name, revision number and packaging
number are represented by one row in the table. It lists the package name, the
summary and a set of links pointing to the packages pages. Note that there may
be more than one line per row (i.e. if a package is available in more than one
distribution), in that case, use the color indexing to find the appropritate
link. The link is labelled with the OperatingSystem/Architecture to avoid
using a package for a different architecture.</p>
<h2><a name="vendor">The indexes by Maintainer and Distribution pages</a></h2>
<p>
There are extremely similar to the Group file, they just use the Maintainer
and Distribution fields to index the database instead of the Group field. The
page and links schemes are quite similar otherwise.</p>
<h2><a name="date">The index by Creation Date page</a></h2>
<p>
This page lists all the packages found in the database sorted by creation (or
installation) date, the most recent being listed first:</p>
<hr>
<h3>RPMs less than three days old</h3>
<table>
<tbody>
<tr>
<td bgcolor="#fff0ff" width="250">
<a
href="contrib/alpha/check-packages-1.1-1.alpha.html">check-packages-1.1-1.alpha</a>
</td>
<td bgcolor="#fff0ff" width="450">
Watches for changes between RPM database and actual system
</td>
<td>
Wed Feb 18 09:39:06 1998
</td>
</tr>
<tr>
<td bgcolor="#ffffff" width="250">
<a href="contrib/check-packages-1.1-1.i386.html">check-packages-1.1-1.i386</a>
</td>
<td bgcolor="#ffffff" width="450">
Watches for changes between RPM database and actual system
</td>
<td>
Wed Feb 18 09:38:39 1998
</td>
</tr>
<tr>
<td bgcolor="#9aeef6" width="250">
<a href="linuxPPC/festival-1.2.1-3a.ppc.html">festival-1.2.1-3a.ppc</a>
</td>
<td bgcolor="#9aeef6" width="450">
Festival Speech Synthesis System. General framework for building speech
synthesis systems.
</td>
<td>
Wed Feb 18 13:13:32 1998
</td>
</tr>
<tr>
<td bgcolor="#efffef" width="250">
<a
href="contrib/hurricane/i386/fetchmail-4.3.7-1.i386.html">fetchmail-4.3.7-1.i386</a>
</td>
<td bgcolor="#efffef" width="450">
No summary !
</td>
<td>
Tue Feb 17 21:32:59 1998
</td>
</tr>
<tr>
<td bgcolor="#efffef" width="250">
<a
href="contrib/hurricane/i386/freetype-1.0-1.i386.html">freetype-1.0-1.i386</a>
</td>
<td bgcolor="#efffef" width="450">
Truetype font rasterizer
</td>
<td>
Wed Feb 18 18:19:48 1998
</td>
</tr>
</tbody>
</table>
<a href="1ByDate.html">...</a>
<hr>
<p>
Each line list exactly one package, the color scheme is used to differentiate
packages from various distribution platforms. The first field gives the name,
this is also a link to the package page, then there is the summary and the
date of creation (or installation). Separators title are used to mark
arbitrary times limits at 3 days, one week, two weeks, one month and two
months, anything older is not listed. Also to avoid creating too big pages the
page may be splitted into multiples pages, using the "..." link at the bottom
of the page for the next page.</p>
<h2><a name="name">The index by Name page</a></h2>
<p>
This page indexes all packages using their first name (case insensitive!),</p>
<hr>
<h3 align=center>RPM sorted by Name</h3>
<p>
<a href="AByName.html">158 Packages beginning with letter A</a></p>
<p>
<a href="BByName.html">122 Packages beginning with letter B</a></p>
<p>
<a href="CByName.html">162 Packages beginning with letter C</a></p>
<hr>
<p>
Each line is a link to a page listing all the packages whose name starts with
the same letter and sorted by name:</p>
<hr>
<table>
<tbody>
<tr>
<td width="250">
a2ps-4.3-6
</td>
<td width="450">
Converts ASCII text into PostScript
</td>
<td bgcolor="#ffffd0" width="75">
<a href="suse/5.1/ap1/a2ps-4.3-6.i386.html">Linux/i386</a>
</td>
</tr>
<tr>
<td width="250">
a2ps-4.9.8-1A
</td>
<td width="450">
Text to Postscript filter.
</td>
<td bgcolor="#9aeef6" width="75">
<a href="linuxPPC/a2ps-4.9.8-1A.ppc.html">Linux/ppc</a>
</td>
</tr>
<tr>
<td width="250">
aaa_base-97.12.12-0
</td>
<td width="450">
S.u.S.E. Linux base package
</td>
<td bgcolor="#ffffd0" width="75">
<a href="suse/5.1/a1/aaa_base-97.12.12-0.i386.html">Linux/i386</a>
</td>
</tr>
<tr>
<td width="250">
aaa_dir-97.11.28-0
</td>
<td width="450">
S.u.S.E. Linux directory structure
</td>
<td bgcolor="#ffffd0" width="75">
<a href="suse/5.1/a1/aaa_dir-97.11.28-0.i386.html">Linux/i386</a>
</td>
</tr>
<tr>
<td width="250">
aboot-0.5-2
</td>
<td width="450">
Bootloader which can be started from SRM console
</td>
<td bgcolor="#ffe0ff" width="75">
<a href="5.0/alpha/aboot-0.5-2.alpha.html">Linux/alpha</a>
</td>
</tr>
</tbody>
</table>
<hr>
<p>
The format of each line is package name, summary and the usual links with the
color indicator.</p>
<h2><a name="package">Package pages</a></h2>
<p>
The pages described previously are only indexes whose purpose is to locate
easily the packages you are actually interested in. Let's look at a package
page. It starts with the usual navigation header, then two titles are
provided:</p>
<hr>
<h3 align=center><a
href="ftp://rpmfind.net/linux/redhat/redhat-5.0/updates/i386/netscape-communicator-4.04-3.i386.rpm">netscape-communicator-4.04-3
RPM for i386</a></h3>
<h3 align=center>From <a
href="ftp://ftp.redhat.com/pub/redhat/redhat-5.0/updates/i386">RedHat-5.0
Updates for i386</a></h3>
<hr>
<p>
The first one is a link to the local copy of the package. To load it click on
the link while pressing shift (this may depend on your browser though). The
second link explains the origin of the package and is usually a link to the
repository where the files where fetched (the origin server). Use this link if
you don't trust the local repository.</p>
<p>
The next item on the page is a table displaying most of the information
concerning this RPM package:</p>
<hr>
<table align=center border="5" cellspacing="5" cellpadding="5"
bgcolor="#c0ffc0">
<tbody>
<tr>
<td>
Name: netscape-communicator
</td>
<td>
Distribution: <a href="/linux/RPM/Red_Hat_Linux_Biltmore.html">Red Hat Linux
Biltmore</a>
</td>
</tr>
<tr>
<td>
Version: 4.04
</td>
<td>
Vendor: <a href="/linux/RPM/Red_Hat_Software_<bugs@redhat.com>.html">Red Hat
Software</a>
</td>
</tr>
<tr>
<td>
Release: 3
</td>
<td>
Build date: Fri Jan 23 16:59:22 1998
</td>
</tr>
<tr>
<td>
Group: <a
href="/linux/RPM/X11_Applications_Networking.html">X11/Applications/Networking</a>
</td>
<td>
Build host: porky.redhat.com
</td>
</tr>
<tr>
<td>
Size: 14386762
</td>
<td>
Source RPM: <a
href="ftp://ftp.redhat.com/pub/redhat/redhat-5.0/updates/SRPMS/netscape-4.04-3.src.rpm">netscape-4.04-3.src.rpm</a>
</td>
</tr>
<tr>
<td colspan="2">
Packager: <a href="mailto:bugs@redhat.com">Red Hat Software</a>
</td>
</tr>
<tr>
<td colspan="2">
Summary: Netscape Communicator internet browser, news reader, and mail client
</td>
</tr>
</tbody>
</table>
<hr>
<p>
The background color again explain the origin of the package. The table tries
to list all the important informations like:</p>
<ul>
<li>
name
<li>
distribution
<li>
group
<li>
build infromations, when, where, who, a link to the sources package is
available
<li>
Size
<li>
Summary
<li>
Links to the package home page or the maintainer's.
</ul>
<p>
Usually package have a small readme embedded explaining the purpose of the
package and useful information, this is printed next if available</p>
<hr>
<pre>Netscape Communicator is the industry-leading web browser. It supports
the latest HTML standards, Java, and JavaScript. It also includes
full-featured Usenet news reader as well as a complete email client.
Information on the Netscape Communicator license may be found in the file
/usr/doc/netscape-3-3/LICENSE.update.</pre>
<hr>
<p>
The two next items in the page are a sets of links to ressources. A ressource
is usually a library or a program name, most packages requires others
resources for proper installation, for example most programs will requires a C
library, this will be listed in the requires list. On the other hand when
installing a package, you provides new resources on your system allowing other
packages to make use of it (this is especially true with libraries or standard
unix programs). Hence each RPM package has a set of requirements for resources
and a set of resources it provides:</p>
<hr>
<h3>Provides</h3>
<ul>
<li>
<a href="/linux/RPM/netscape-communicator.html">netscape-communicator</a>
<li>
<a href="/linux/RPM/libnullplugin.so.html">libnullplugin.so</a>
<li>
<a href="/linux/RPM/libjsd.so.html">libjsd.so</a>
<li>
<a href="/linux/RPM/libTrueDoc.so.html">libTrueDoc.so</a>
<li>
<a href="/linux/RPM/gnumalloc.glibc.so.html">gnumalloc.glibc.so</a>
</ul>
<h3>Requires</h3>
<ul>
<li>
<a href="/linux/RPM/libm.so.5.html">libm.so.5</a>
<li>
<a href="/linux/RPM/libdl.so.1.html">libdl.so.1</a>
<li>
<a href="/linux/RPM/libc.so.5.html">libc.so.5</a>
<li>
<a href="/linux/RPM/libXt.so.6.html">libXt.so.6</a>
<li>
<a href="/linux/RPM/libXpm.so.4.html">libXpm.so.4</a>
<li>
<a href="/linux/RPM/libXmu.so.6.html">libXmu.so.6</a>
<li>
<a href="/linux/RPM/libXext.so.6.html">libXext.so.6</a>
<li>
<a href="/linux/RPM/libX11.so.6.html">libX11.so.6</a>
<li>
<a href="/linux/RPM/libSM.so.6.html">libSM.so.6</a>
<li>
<a href="/linux/RPM/libICE.so.6.html">libICE.so.6</a>
</ul>
<hr>
<p>
Each item in both lists is a link to the corresponding package page (see
below). Following the links from the Requires section allow to locate the
package providing some resources not available on your system, and which may
cause the installation of the RPM to abort.</p>
<hr>
<h2 align=center style="color : #ff0000">Warning: this package does not export
valid resources lists</h2>
<h2 align=center><a href="/linux/RPM/autoconf.html">Try to pick
another</a></h2>
<hr>
<p>
Some package are incorectly built and don't export a valid lists of required
and exported resources. This banner is here to avoid using incorrect packages
but sometimes it may be wrong, some packages just don't requires any other
resources. Anyway it's alway better to follow the link to check for more
suitable packages, if they exists.</p>
<p>
The next item explains the Copyright associated with this program:</p>
<hr>
<h3>Copyright</h3>
<pre>Commercial</pre>
<hr>
<p>
The last item on the package page is a list of all the files that the package
will install on the system</p>
<hr>
<h3>Files</h3>
<pre>/etc/X11/wmconfig/netscape-communicator
/usr/bin/netscape
/usr/bin/netscape-communicator
/usr/doc/netscape-communicator-4.04-3
/usr/doc/netscape-communicator-4.04-3/LICENSE
/usr/doc/netscape-communicator-4.04-3/LICENSE.update
/usr/doc/netscape-communicator-4.04-3/Netscape.ad
/usr/doc/netscape-communicator-4.04-3/README
/usr/lib/netscape
/usr/lib/netscape/bookmark.htm
/usr/lib/netscape/dynfonts
/usr/lib/netscape/dynfonts/libTrueDoc.so
/usr/lib/netscape/gnumalloc.glibc.so
/usr/lib/netscape/java
/usr/lib/netscape/java/classes
...</pre>
<hr>
<h2><a name="resource">Resource page</a></h2>
<p>
A ressource page list the RPM packages providing this ressource. It displays
the usual navigation header, the resource name and a list of all the
packages:</p>
<hr>
<h3 align=center>RPM resource libdl.so.1</h3>
<h3>Provided by</h3>
<table>
<tbody>
<tr>
<td bgcolor="#e0ffe0" width="250">
<a href="5.0/i386/ld.so-1.9.5-5.i386.html">ld.so-1.9.5-5.i386</a>
</td>
<td bgcolor="#e0ffe0" width="450">
Shared library configuration tool and old dynamic loader
</td>
<td>
Wed Nov 26 11:26:56 1997
</td>
</tr>
<tr>
<td bgcolor="#c0ffc0" width="250">
<a href="5.0/i386/updates/ld.so-1.9.5-5.i386.html">ld.so-1.9.5-5.i386</a>
</td>
<td bgcolor="#c0ffc0" width="450">
Shared library configuration tool and old dynamic loader
</td>
<td>
Wed Nov 26 11:26:56 1997
</td>
</tr>
<tr>
<td bgcolor="#ffffff" width="250">
<a href="contrib/jdk-1.1.3-3.i386.html">jdk-1.1.3-3.i386</a>
</td>
<td bgcolor="#ffffff" width="450">
Java Developer's Kit
</td>
<td>
Tue Oct 7 19:36:54 1997
</td>
</tr>
<tr>
<td bgcolor="#ffe0e0" width="250">
<a href="i386/ld.so-1.7.14-4.i386.html">ld.so-1.7.14-4.i386</a>
</td>
<td bgcolor="#ffe0e0" width="450">
Linux dynamic loader
</td>
<td>
Mon Aug 26 11:38:10 1996
</td>
</tr>
<tr>
<td bgcolor="#ffc0c0" width="250">
<a href="i386/updates/ld.so-1.7.14-5.i386.html">ld.so-1.7.14-5.i386</a>
</td>
<td bgcolor="#ffc0c0" width="450">
Linux dynamic loader
</td>
<td>
Fri Jul 18 09:57:53 1997
</td>
</tr>
</tbody>
</table>
<hr>
<p>
As usual, each row gives information on one of the packages, it's name which
is also a link to the corresponding package page, the sumary, and the creation
(installation) date.</p>
<hr>
<p>
Updated for version <a href="http://rpmfind.net/linux/rpm2html/">rpm2html
0.70</a></p>
<p>
<a href="mailto:daniel@veillard.com">Daniel Veillard</a>, $Id: help.html,v 1.1
1998/02/20 23:59:53 veillard Exp $</p>
<p>
</p>
<p>
</p>
<p>
</p>
</body>
</html>
|