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
|
<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook V4.1//EN">
<article>
<articleinfo>
<title>De Linux Reading List HOWTO</title>
<author>
<firstname>Eric</firstname>
<othername>Steven</othername>
<surname>Raymond</surname>
<affiliation>
<orgname><ulink url="http://www.tuxedo.org/~esr/">
Thyrsus Enterprises</ulink></orgname>
<address>
<email>esr@thyrsus.com</email>
</address>
</affiliation>
</author>
<author>
<firstname>Vertaald door: Ellen</firstname>
<surname>Bokhorst</surname>
<affiliation>
<address>
<email>bokkie@nl.linux.org</email>
</address>
</affiliation>
</author>
<revhistory>
<revision>
<revnumber>1.20</revnumber>
<date>14-06-2001</date>
<authorinitials>esr</authorinitials>
<revremark>
"Practical Unix Security" verwijderd, het is nu vijf jaar oud
en het materiaal wordt nu beter behandeld in andere boeken.
</revremark>
</revision>
<revision>
<revnumber>1.19</revnumber>
<date>14-06-2001</date>
<authorinitials>esr</authorinitials>
<revremark>
Toegevoegd Ross Anderson's "Security Engineering". ISBN's gecorrigeerd.
</revremark>
</revision>
</revhistory>
<copyright>
<year>2000</year>
<holder role="mailto:esr@thyrsus.com">Eric S. Raymond</holder>
</copyright>
<legalnotice>
<title>Copyright</title>
<para>Het is toegestaan dit document onder de voorwaarden van de
Open Publication License, versie 2.0 te kopiëren, distribueren en/of
wijzigen.
</para>
</legalnotice>
<abstract><para>
In dit document staan de boeken opgesomd waarvan ik denk dat ze het meest
waardevol zijn voor iemand die Unix (vooral Linux) tot op de bodem
probeert te doorgronden.
</para></abstract>
</articleinfo>
<sect1 id="introduction"><title>Introductie</title>
<sect2 id="purpose"><title>Doel van dit document</title>
<para>In dit document wordt een opsomming gegeven van wat ik beschouw als
de essentiële referenties ter grootte van een boek voor het leren van Unix
(vooral Linux) en hoe hier onder te programmeren.
</para>
</sect2>
<sect2 id="newversions"><title>Nieuwe versies van dit document</title>
<para>Nieuwe versies van de Linux Reading HOWTO zullen periodiek worden
gepost naar <ulink url="news:comp.os.linux.answers">
comp.os.linux.answers</ulink>. Ze zullen ook worden geupload naar diverse
Linux WWW en FTP sites, waaronder de LDP home page.</para>
<para>Je kunt de laatste versie hiervan ook bekijken op het World Wide Web
via de URL <ulink
url="http://sunsite.unc.edu/LDP/HOWTO/Reading-List-HOWTO.html">
http://sunsite.unc.edu/LDP/HOWTO/Reading-List-HOWTO.html</ulink>.</para>
</sect2>
<sect2 id="feedback"><title>Feedback en correcties</title>
<para>Als je vragen of opmerkingen hebt aangaande dit document (of
gewoon een boek wilt aanbevelen waarvan je vindt dat dit er in moet),
stuur dan gerust een mailtje naar
Eric S. Raymond, via <email>esr@thyrsus.com</email>. Ik verwelkom elke
suggestie of kritiek.</para>
</sect2>
<sect2 id="related"><title>Gerelateerde bronnen</title>
<para>Zie voor online HOWTO's, magazines en anderszins niet aan
boeken gerelateerd materiaal de homepage van het
<ulink url="http://www.linuxdoc.org/">Linux Documentation Project
</ulink>.</para>
<para>Een paar jaar geleden schreef ik een minder op Linux gerichte Unix
bibliografie die nog steeds van enig nut kan zijn en een bepaalde
amusante waarde behoudt. Je kunt de Loginataka vinden op
<ulink url="http://www.tuxedo.org/~esr/faqs/loginataka.html"></ulink>.</para>
<para>SAGE, de System Administrator's Guild, onderhoudt een uitstekende
<ulink url="http://www.usenix.org/sage/sysadmins/books/booklist.html">
lijst met relevante boeken</ulink>.</para>
</sect2>
<sect2 id="conventions"><title>In dit document gebruikte conventies</title>
<para>Opmerkingen die niet tussen aanhalingstekens staan, zijn of
van mij, of ze zijn van Jim Haynes (de vorige beheerder van dit document)
en zie ik geen reden ze te wijzigen. Opmerkingen die door anderen zijn
ingezonden, staan tussen aanhalingstekens, en hier is de naam van de
commentator voor geplaatst (JH is Jim Haynes).
</para>
<para>"Zie" URL's, aaneengesloten met informatie over de uitgever verwijst
direct naar de webcatalogus van de uitgever en brengt je naar een pagina
met een weergave van de boekomslag, reclame op de omslag van het boek,
en informatie over het plaatsen van een bestelling. Bij boeken waarbij dit
ontbreekt, betekent dit dat de uitgever gebruik maakt van frames en van de
catalogus pagina's geen bookmark kan worden gegeven.
</para>
<para>De onderwerpen gaan grofweg van de buitenkant tot de binnenkant
(van cultuur naar user-land programmering naar kernelprogrammering naar
hardware). Binnen secties heb ik geprobeerd de meest bruikbare boeken
als eerste op te sommen in zoverre
ik er bekend mee ben. Het is slechts een beschamende toevalligheid dat
in deze lijst één van mijn boeken als eerste wordt opgesomd,
eerlijk waar! (Suggesties voor een betere organisatie worden vrolijk
geaccepteerd.)</para>
</sect2>
</sect1>
<bibliography><title>Basis Linux en Unix bibliografie</title>
<bibliodiv><title>Boeken over Cultuur, Historie en Feiten</title>
<biblioentry>
<title>The New Hacker's Dictionary</title>
<edition>Third Edition</edition>
<editor><firstname>Eric S.</firstname><surname>Raymond</surname></editor>
<copyright><year>1996</year></copyright>
<isbn>ISBN 0-262-68092-0</isbn>
<publisher><publishername>MIT Press</publishername></publisher>
<pagenums>547pp.</pagenums>
<abstract>
<para>Um, er. Een handleiding over de Internetcultuur.
Veel mensen waarderen het.
HTML op de <ulink url="http://www.tuxedo.org/jargon">Jargon File
Resource Page</ulink>.</para> <para><ulink
url="http://www-mitpress.mit.edu/book-home.tcl?isbn=0262680920">
Bestel hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>A Quarter Century of Unix</title>
<editor><firstname>Peter H.</firstname><surname>Salus</surname></editor>
<copyright><year>1994</year></copyright>
<isbn>ISBN 0-201-54777-5</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>255pp.</pagenums>
<abstract>
<para>Linux maakt onderdeel uit van de Unix traditie. Dit boek is
een mondelinge historie van Unix --
hoe het ontstond, hoe het zich ontwikkelde, hoe het werd verspreid
door de mensen toendertijd.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>The Mythical Man Month</title>
<edition>Anniversary Edition</edition>
<author><firstname>Frederic P.</firstname><surname>Brooks</surname></author>
<copyright><year>1995</year></copyright>
<isbn>ISBN 0-201-83595-9</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<abstract>
<para>Het boek over software engineering dat iedereen zou moeten lezen.</para>
<para>Alan Cox: "Dit zou ik niet aanbevelen om zijn technische
waarde, maar zijn toepassing van gezond verstand en realiteit
betreft computerprojecten."
JH: "Oh, ja. Wat als Linus 200 programmeurs gegeven
was en hem was verteld Linux in 3 maanden te produceren!"
</para>
<para><ulink url="http://www.awl-he.com/titles/14147.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Bell System Technical Journal</title>
<publisher><publishername>AT&T</publishername></publisher>
<copyright><year>1978</year></copyright>
<pubdate>July-August 1978, Vol. 57, No. 6, part 2</pubdate>
<pagenums>416pp.</pagenums>
<abstract>
<para>Veel wat oudere stukken over Unix, waaronder
Ritchie & Thompson, "The UNIX Time
Sharing System"; Thompson, "UNIX Implementation"; Ritchie, "A
Retrospective"; Bourne, "The UNIX Shell"...</para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Linux basis</title>
<biblioentry>
<title>Linux Installation and Getting Started</title>
<editor><firstname>Matt</firstname><surname>Welsh</surname></editor>
<copyright><year>1997</year></copyright>
<publisher><publishername>Linux Documentation Project</publishername></publisher>
<abstract>
<para>Beschikbaar op de LDP homepage of direct bij
<ulink url="http://linuxdoc.org/LDP/gs/">http://linuxdoc.org/LDP/gs/</ulink>.</para>
<para>Hoe Linux op te zetten. Geeft veel uitleg over de basis van
Linux. Behandelt de beginselen van systeembeheer.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Linux System Administrator's Guide</title>
<editor><firstname>Lars</firstname><surname>Wirzenius</surname></editor>
<copyright><year>1997</year></copyright>
<publisher><publishername>Linux Documentation Project</publishername></publisher>
<abstract>
<para>Beschikbaar op de LDP homepage of direct op
<ulink url="http://linuxdoc.org/LDP/sag/">http://linuxdoc.org/LDP/sag/</ulink>.</para>
<para>Een uitstekend eerste boek over het beheren en bijhouden van
een Linux systeem.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Linux in a Nutshell</title>
<edition>Second Edition</edition>
<author><firstname>Jessica P.</firstname><surname>Hekman</surname></author>
<copyright><year>1999</year></copyright>
<isbn>ISBN 1-56592-585-8</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<abstract>
<para>Volgens O'Reilly, "De Desktop Referentie voor Linux".
Voor Linux gebruikers is "Unix In a Nutshell" hierdoor verouderd,
wat SVr4/Solaris geöriënteerd was.
</para>
<para><ulink url="http://www.oreilly.com/catalog/linuxnut2/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Running Linux</title>
<edition>Third Edition</edition>
<author><firstname>Matt</firstname><surname>Welsh</surname></author>
<copyright><year>1999</year></copyright>
<isbn>ISBN 1-56592-469-X</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<abstract>
<para>Alles wat je moet weten om het Linux besturingssysteem
te begrijpen, installeren en gebruiken. Uitstekend beginnersboek.
</para>
<para><ulink url="http://www.ora.com/catalog/runux3/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Hands-On Linux</title>
<author><firstname>Mark G.</firstname><surname>Sobel</surname></author>
<copyright><year>1998</year></copyright>
<isbn>ISBN 0-201-32569-1</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>1015pp.</pagenums>
<abstract>
<para>Precies wat de titel aangeeft -- praktische tutorials in
basis Unix, shells, editors, mailprogramma's, netwerken, Webtools,
en utility's. Behandelt de beginselen van systeembeheer.
(Dit schijnt een herdruk te zijn van 1997's ``A Practical Guide
to Linux'' van dezelfde auteur, zonder dat daar Caldera OpenLinux Lite
in is opgenomen.)</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Essential System Administration</title>
<edition>Second Edition</edition>
<author><firstname>Aeleen</firstname><surname>Frisch</surname></author>
<copyright><year>1995</year></copyright>
<isbn>ISBN 1-56592-127-5</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<abstract>
<para>Wat diepergaande behandeling van gewone systeembeheertaken.
Niet Linux specifiek, maar het bevat veel Linux materiaal.</para>
<para><ulink url="http://www.ora.com/catalog/esa2/noframes.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Systeembeveiliging</title>
<biblioentry>
<title>Security Engineering</title>
<subtitle>A Guide to Building Dependable Distributed Systems</subtitle>
<author><firstname>Ross</firstname><surname>Anderson</surname></author>
<copyright><year>2001</year></copyright>
<isbn>0-471-38922-6</isbn>
<publisher><publishername>Wiley</publishername></publisher>
<abstract>
<para>Het beste boek dat ik ooit heb gezien over technologische
beveiligingsmaatregelen en algemene computerbeveiliging.
De sectie over "How to Steal a Painting" en fysieke alarmsystemen
is de prijs waard en een erkenning op zichzelf.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Real World Linux Security</title>
<subtitle>Intrusion Prevention, Detection, and Recovery</subtitle>
<author><firstname>Bob</firstname><surname>Toxen</surname></author>
<copyright><year>2000</year></copyright>
<isbn>ISBN 0-13-028187-5</isbn>
<publisher><publishername>Prentice-Hall</publishername></publisher>
<abstract>
<para>Dit is een uitstekend werk, de standaard waardoor toekomstige
boeken over Linux beveiliging worden beoordeeld. Ik schreef er een
voorwoord voor. Combineert stap-voor-stap practische instructies
over het versterken van een Linux systeem met een goede theorie
over aanvalspaden, protectieringen, en beveiligingsanalyses.
Beschrijft veel counters voor specifieke uitbuitingen. </para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Boeken over de Shell-, Script- en Webprogrammering
</title>
<biblioentry>
<title>Programming Perl</title>
<edition>Third Edition</edition>
<authorgroup>
<author><firstname>Larry</firstname><surname>Wall</surname></author>
<author><firstname>Tom</firstname><surname>Christiansen</surname></author>
<author><firstname>Jon</firstname><surname>Orwant</surname></author>
</authorgroup>
<copyright><year>2000</year></copyright>
<isbn>ISBN 0-596-00027-8</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<pagenums>1104pp.</pagenums>
<abstract>
<para>De shell
(als een programmeertaal voor meer dan alledaagse scripts)
is dood. Perl regels daarvoor in de plaats (alhoewel het nu sterk
wordt uitgedaagd door Python). Dit is de derde editie van het
definitieve Perl boek.
</para>
<para><ulink url="http://www.ora.com/catalog/esa2/noframes.html">
Bestellen kan hier.</ulink></para>
<para>Emmanuel Pierre houdt een <ulink
url="www.e-nef.com/perl/listeperl">kleine lijst bij met
Perl boeken.
</ulink>.</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Programming Python</title>
<edition>First Edition</edition>
<author><firstname>Mark</firstname><surname>Lutz</surname></author>
<copyright><year>1997</year></copyright>
<isbn>ISBN 0-56592-197-6</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<pagenums>880pp.</pagenums>
<abstract>
<para>De volgende stap na Perl. Python is mooi ontworpen,
heeft een betere integratie met C en schaalt eleganter bij
grote projecten.
</para>
<para><ulink url="http://www.ora.com/catalog/python/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>HTML & XHTML: The Definitive Guide</title>
<edition>Fourth Edition</edition>
<authorgroup>
<author><firstname>Chuck</firstname><surname>Musciano</surname></author>
<author><firstname>Bill</firstname><surname>Kennedy</surname></author>
</authorgroup>
<copyright><year>2000</year></copyright>
<isbn>ISBN 0-596-00026-X</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<pagenums>680pp.</pagenums>
<abstract>
<para>De beste HTML tutorial/referentie die ik ooit heb gezien, en
het enige HTML-boek dat je nodig hebt, tenzij je ook gebruik wilt
maken van CGI. Ik ken geen ander boek over HTML dat ook maar in de
buurt van dit boek komt qua uitgebreidheid, diepgang en kwaliteit
in de organisatie.
</para>
<para><ulink url="http://www.ora.com/catalog/html4/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>The Unix Programming Environment</title>
<authorgroup>
<author><firstname>Brian</firstname><surname>Kernighan</surname></author>
<author><firstname>Rob</firstname><surname>Pike</surname></author>
</authorgroup>
<copyright><year>1984</year></copyright>
<isbn>ISBN 0-13-937681-X</isbn>
<publisher><publishername>Prentice-Hall</publishername></publisher>
<abstract>
<para>Een ware klassieker, mogelijk de beste expositie van de
Unix filosofie. Nuttig voor het leren van shellprogrammering.
</para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Tex and LaTeX</title>
<biblioentry>
<title>The LaTeX Companion</title>
<authorgroup>
<author><firstname>Michael</firstname><surname>Goossens</surname></author>
<author><firstname>Frank</firstname><surname>Mittelbach</surname></author>
<author><firstname>Alexander</firstname><surname>Samarin</surname></author>
</authorgroup>
<copyright><year>1994</year></copyright>
<isbn>ISBN 0-201-54199-8</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>530pp.</pagenums>
<abstract>
<para>`Ben je een van die gebruikers die wil weten hoe LaTeX zo
kan worden uitgebreid dat de mooist denkbare documenten kunnen
worden gemaakt zonder een (La)TeX goeroe te worden, dan is dit
jouw boek' uit het voorwoord.
Bruce Thompson voegt toe: "Een zeer fraai boek wat in veel informatie
voorziet over de nieuwe uitbreidingen op LaTeX, er worden veel
voorbeelden gegeven die precies laten zien hoe de lay-out van je
document kan worden gemanipuleerd"
</para>
<para><ulink url="http://www.awl-he.com/titles/13661.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>LaTeX: A Document Preparation System</title>
<author><firstname>Leslie</firstname><surname>Lamport</surname></author>
<copyright><year>1994</year></copyright>
<isbn>ISBN 0-201-52983-1</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>256pp.</pagenums>
<abstract>
<para>Bruce Thompson: "De ultieme referentie over LaTeX 2.09 door
de auteur ervan. Een nieuwe editie waarin LaTeX2e wordt behandeld
(de versie die is opgenomen in de huidige TeX/LaTeX distributie)
is in voorbereiding. LaTeX 2.09 wordt volledig ondersteund door
LaTeX2e. Verplichte kost voor iedereen die gebruik wil maken van
LaTeX. Voorziet in een aardige introductie over documentpreparation
en de diverse tools die LaTeX levert voor het produceren van
professionele kwaliteitsdocumenten.
Veel voorbeelden."</para>
<para><ulink url="http://www.awl-he.com/titles/13632.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>The TeXbook, Volume A of Computers and Typesetting</title>
<author><firstname>Donald</firstname><surname>Knuth</surname></author>
<copyright><year>1986</year></copyright>
<isbn>ISBN 0-201-13448-9</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>496pp.</pagenums>
<abstract>
<para>Bruce Thompson: "De definitieve gebruikershandleiding en
complete referentiehandleiding voor TeX. Waarschijnlijk niet nodig
voor terloops LaTeX gerbuik, maar niettemin een fascinerend boek".
Ik benadruk dat de toevoeging van dit boek niet voor
de lafaards is.
</para>
<para><ulink url="http://www.awl.com/cp/TeXbook.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>The METAFONT Book, Volume C of Computers and Typesetting</title>
<author><firstname>Donald</firstname><surname>Knuth</surname></author>
<copyright><year>1986</year></copyright>
<isbn>ISBN 0-201-13444-6</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>386pp.</pagenums>
<abstract>
<para>Bruce Thompson: "De definitieve gebruikershandleiding en
referentiehandleiding voor METAFONT, het bij TeX behorende programma
voor het ontwerpen van fonts. Een uitstekend werk als je van plan
bent je eigen fonts voor gebruik in TeX en LaTeX te ontwerpen.
METAFONT is opgenomen in de gewone TeX/LaTeX distributie." Dit boek
is <emphasis>beslist</emphasis> niet bedoeld voor de lafaards.</para>
<para><ulink url="http://www.awl.com/cp/METAFONTbook.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Goede programmeerstijl</title>
<biblioentry>
<title>The Practice of Programming</title>
<authorgroup>
<author><firstname>Brian</firstname><surname>Kernighan</surname></author>
<author><firstname>Rob</firstname><surname>Pike</surname></author>
</authorgroup>
<copyright><year>1999</year></copyright>
<isbn>ISBN 0-201-61586-X</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<abstract>
<para>Een uitstekende verhandeling over het schrijven van
programma's van hoge kwaliteit, zeker bestemd een klassieker
op dit gebied te worden.
</para>
<para><ulink url="http://cm.bell-labs.com/cm/cs/tpop/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Programming Pearls</title>
<edition>(Second Edition)</edition>
<author><firstname>Jon</firstname><surname>Bentley</surname></author>
<copyright><year>2000</year></copyright>
<isbn>ISBN 0-201-65788-0</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<abstract>
<para>Dit zijn geselecteerde essays uit Bentley's kolom in het
Communications of the ACM. Hij bespreekt een breed bereik aan
onderwerpen over het verbeteren van programma's, vaak gericht
op de efficiëntie van programma's.
</para>
<para><ulink url="http://www.programmingpearls.com/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Writing Efficient Programs</title>
<author><firstname>Jon</firstname><surname>Bentley</surname></author>
<copyright><year>1982</year></copyright>
<isbn>ISBN 0-13-970251-2 or 0-13-970244-X</isbn>
<publisher><publishername>Prentice-Hall</publishername></publisher>
<abstract>
<para>Dit boek presenteert Bentley's methodologie en set met regels
voor het verbeteren van de efficiëntie van programma's, en
er zijn een groot aantal voorbeelden in opgenomen.
</para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>C and C++</title>
<biblioentry>
<title>The C Programming Language</title>
<edition>(Second Edition)</edition>
<authorgroup>
<author><firstname>Brian</firstname><surname>Kernighan</surname></author>
<author><firstname>Rob</firstname><surname>Pike</surname></author>
</authorgroup>
<copyright><year>1988</year></copyright>
<isbn>ISBN 0-13-110362-8</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>272pp.</pagenums>
<abstract>
<para>De verbeterde tweede editie, behandelt ANSI C, van het
oorspronkelijke klassieke C boek medegeschreven door de ontwerper van C
"K&R". Nog steeds de beste!</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Who's Afraid of C++?</title>
<author><firstname>Steve</firstname><surname>Heller</surname></author>
<copyright><year>1996</year></copyright>
<isbn>ISBN 0-12-339097-4</isbn>
<publisher><publishername>Academic Press</publishername></publisher>
<pagenums>508pp.</pagenums>
<abstract>
<para>Het beste introductieboek over C++ dat ik ooit heb gezien.
Nu beschikbaar
<ulink url="http://www.steveheller.com/whos">op het Web</ulink>.</para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>C System Call Interface</title>
<biblioentry>
<title>POSIX Programmer's Guide: Writing Portable Unix Programs</title>
<author><firstname>Donald</firstname><surname>Lewine</surname></author>
<copyright><year>1992</year></copyright>
<isbn>ISBN 0-937175-73-0</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<pagenums>607pp.</pagenums>
<abstract>
<para>Linux houdt zich zeer nauw aan de regels van de POSIX standaard
(hier niet aan conformeren wordt beschouwd als een bug
en het wordt snel gecorrigeerd).
Deze uitstekende referentie voor POSIX is dus ook een uitstekende
referentie voor de Linux kernel API.
</para>
<para><ulink url="http://www.ora.com/catalog/posix/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Advanced Programming in The Unix Environment</title>
<author><firstname>Richard</firstname><surname>Stevens</surname></author>
<copyright><year>1992</year></copyright>
<isbn>ISBN 0-201-56317-7</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<abstract>
<para>Een boek over Unix programmeren in het algemeen
welke net zo goed is als Stevens klassieker over netwerkprogrammering.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Linux Application Development</title>
<authorgroup>
<author><firstname>Michael K.</firstname><surname>Johnson</surname></author>
<author><firstname>Erik W.</firstname><surname>Troan</surname></author>
</authorgroup>
<copyright><year>1998</year></copyright>
<isbn>ISBN 0-201-308215</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<abstract>
<para>De beste enkele referentie voor de Linux API. Behandelt de
features die niet kenmerkend Unix of Posix zijn.</para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Boeken over netwerken</title>
<biblioentry>
<title>Unix Network Programming, volume 1 -- Networking APIs: Sockets and XTI</title>
<author><firstname>Richard</firstname><surname>Stevens</surname></author>
<copyright><year>1998</year></copyright>
<isbn>ISBN 0-13-490012-X</isbn>
<publisher><publishername>Prentice-Hall</publishername></publisher>
<abstract>
<para>Alles wat je zou willen weten over dit onderwerp. Over het
algemeen aangemerkt als het definitieve boek over de beginselen.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Unix Network Programming, volume 2 -- Interprocess Communication</title>
<author><firstname>Richard</firstname><surname>Stevens</surname></author>
<copyright><year>1998</year></copyright>
<isbn>ISBN 0-13-081081-9</isbn>
<publisher><publishername>Prentice-Hall</publishername></publisher>
<abstract>
<para>Idem...</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Linux Network Administrator's Guide</title>
<author><firstname>Olaf</firstname><surname>Kirch</surname></author>
<copyright><year>1995</year></copyright>
<isbn>ISBN 1-56592-087-2</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<abstract>
<para>Beschikbaar op de homepage van het LDP, of direct bij
<ulink url="http://www.linuxdoc.org/LDP/nag/nag.html">
http://www.linuxdoc.org/LDP/nag/nag.html</ulink>.</para>
<para>Een uitstekend eerste boek over het beheren en onderhouden van
een Linux systeem in een netwerk.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>TCP/IP Network Administration</title>
<author><firstname>Craig</firstname><surname>Hunt</surname></author>
<copyright><year>1992</year></copyright>
<isbn>ISBN 0-937175-82-X</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<pagenums>472pp.</pagenums>
<abstract>
<para>Minder Linux specifiek dan het Kirch boek. Gaat dieper in op
de behandeling van de TCP/IP kern, waaronder routing en BGP.
</para>
<para><ulink url="http://www.ora.com/catalog/tcp2/noframes.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>DNS and BIND</title>
<edition>Second Edition</edition>
<authorgroup>
<author><firstname>Paul</firstname><surname>Albiz</surname></author>
<author><firstname>Cricket</firstname><surname>Liu</surname></author>
</authorgroup>
<copyright><year>1998</year></copyright>
<isbn>ISBN 1-56592-512-2</isbn>
<pagenums>502pp.</pagenums>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<abstract>
<para>Grondige behandeling van DNS, handig voor mensen die
gecompliceerde installaties met meerdere subnets draaien.
Behandelt het programmeren met de BIND library.</para>
<para><ulink url="http://www.ora.com/catalog/dns2/noframes.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Sendmail</title>
<edition>Second Edition</edition>
<authorgroup>
<author><firstname>Bryan</firstname><surname>Costales</surname></author>
<author><firstname>Eric</firstname><surname>Allman</surname></author>
</authorgroup>
<copyright><year>1997</year></copyright>
<isbn>ISBN 1-56592-222-0</isbn>
<pagenums>1050pp.</pagenums>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<abstract>
<para>Een grondige (en uitputtende) leidraad in de standaard
mail-transfer agent van Linux en Unix.
</para>
<para><ulink url="http://www.ora.com/catalog/sendmail2/noframes.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Voorvaderen van Linux</title>
<biblioentry>
<title>The Design of the Unix Operating System</title>
<author><firstname>Maurice J.</firstname><surname>Bach</surname></author>
<copyright><year>1996</year></copyright>
<isbn>ISBN 0-13-201799-7</isbn>
<pagenums>470pp.</pagenums>
<publisher><publishername>Prentice-Hall</publishername></publisher>
<abstract>
<para>Het boek waarmee Linus van start ging.</para>
<para><ulink url="http://www.prenhall.com/books/ptr_0132017997.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>Operating Systems, Design and Implementation</title>
<author><firstname>Andrew S.</firstname><surname>Tanenbaum</surname></author>
<copyright><year>1987</year></copyright>
<isbn>ISBN 0-13-638677-6</isbn>
<pagenums>940pp.</pagenums>
<publisher><publishername>Prentice-Hall</publishername></publisher>
<abstract>
<para>Alan Cox vindt dit een prettig boek.
Tanenbaum ontwierp Minix, het systeem
Linus Linux vanaf bootte.</para>
<para><ulink url="http://www.prenhall.com/books/esm_0136386776.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>De Linux kernel</title>
<biblioentry>
<title>The Linux Kernel book</title>
<authorgroup>
<author><firstname>Rémy</firstname><surname>Card</surname></author>
<author><firstname>Èric</firstname><surname>Dumas</surname></author>
<author><firstname>Frank</firstname><surname>Mével</surname></author>
</authorgroup>
<copyright><year>1998</year></copyright>
<isbn>ISBN 0-471-98141-9</isbn>
<publisher><publishername>John Wiley & Sons</publishername></publisher>
<abstract>
<para>(Vertaald vanuit 't Frans, editie van
"Programmation Linux 2.0"; dezelfde auteurs; 1997; Éditions
Eyrolles; Paris, France.)</para>
<para>Een zeer interessante en informatieve bestudering van de
werking van de kernel die de leemte vult tussen de POSIX interface
en "The Design of the Unix Operating System" en de
Linux broncode. Een goed begrip van het ontwerp en de werking
van een Unix OS is een voorvereiste, maar dit boek is een
uitstekende hulp verder te komen dan een algemeen begrip in het
feitelijke werk.
</para>
<para>De eerste auteur is één van de kernontwikkelaars
van het ext2 bestandssysteem, en het Linux boek toont een
een stevig houvast van de materie en duidelijke uitleg en strctuur.
Het is verbazingwekkend goed leesbaar voor iets dat op een
dergelijk laag niveau werkt. Het boek heeft wat te leiden gehad
van de vertaling naar het Engels -- er staan een paar typfouten in
en wat grammaticale fouten, maar het is goed leesbaar.
(De bestanden met codeervoorbeelden staan charmant genoeg nog in de
Franse taal.)
</para>
<para>Het boek is thans voor Linux 2.0.35 en vooruitzicht op 2.1 en 2.2.
Netwerkprotocol implementaties worden niet behandeld.</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Linux Kernal Hacker's Guide</title>
<editor><firstname>Michael K.</firstname><surname>Johnson</surname></editor>
<publisher><publishername>Linux Documentation Project</publishername></publisher>
<abstract>
<para>Beschikbaar op de homepage van het LDP, of direct op
<ulink url="http://linuxdoc.org/LDP/khg/">http://linuxdoc.org/LDP/khg/</ulink>.</para>
<para>Volgens de auteur, is dit vervangen door
Alessandro Rubini's boek (zie verderop) maar het blijft een nuttige
aanvulling.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Linux Device Drivers</title>
<author><firstname>Alessandro</firstname><surname>Rubini</surname></author>
<copyright><year>1998</year></copyright>
<isbn>ISBN 1-56592-292-1</isbn>
<publisher><publishername>O'Reilly & Associates</publishername></publisher>
<pagenums>442pp.</pagenums>
<abstract>
<para>Alles wat je moet weten over het schrijven van device drivers
onder Linux; kernel APIs, interrupt handling, de module interface.
Er zijn veel voorbeelden in opgenomen.</para>
<para><ulink url="http://www.ora.com/catalog/linuxdrive/">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
<biblioentry>
<title>LINUX Kernel Internals</title>
<edition>(Second Edition)</edition>
<authorgroup>
<author><firstname>Michael</firstname><surname>Beck</surname></author>
<author><firstname>Harold</firstname><surname>Bohme</surname></author>
<author><firstname>Mirko</firstname><surname>Dziadka</surname></author>
<author><firstname>Ulrich</firstname><surname>Kunitz</surname></author>
</authorgroup>
<copyright><year>1998</year></copyright>
<isbn>ISBN 0-201-33143-8</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<pagenums>480pp.</pagenums>
<abstract>
<para>Een handleiding in Linux kernelprogrammering; behandelt 2.0.
Behandelt de architectuur van de Linux core en netwerklaag als ook
het construeren van drivers.
</para>
<para><ulink url="http://www.awl-he.com/titles/11653.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Met betrekking tot Linux</title>
<biblioentry>
<title>The Design and Implementation of the 4.4BSD Unix Operating System</title>
<authorgroup>
<author><firstname>Marshall Kirk</firstname><surname>McKusick</surname></author>
<author><firstname>Keith</firstname><surname>Bostic</surname></author>
<author><firstname>Michael J.</firstname><surname>Karels</surname></author>
<author><firstname>John S.</firstname><surname>Quarterman</surname></author>
</authorgroup>
<copyright><year>1996</year></copyright>
<isbn>ISBN 0-201-54979-4</isbn>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<abstract>
<para>De opvolger van een klassiek boek over de implementatie
van de 4.3 BSD kernel, welke van invloed was op het ontwerp van
Linux (vooral sockets en netwerken).
Dit boek behandelt de 4.4BSD basis van BSD/OS, FreeBSD, en NetBSD.
</para>
<para><ulink url="http://www.awl-he.com/titles/13693.html">
Bestellen kan hier.</ulink></para>
</abstract>
</biblioentry>
</bibliodiv>
<bibliodiv><title>Boeken over Intel en PC hacking</title>
<biblioentry>
<title>80386 Programmer's Reference Manual</title>
<corpauthor>Intel Corporation</corpauthor>
<copyright><year>1986</year></copyright>
<isbn>ISBN 1-55512-022-9</isbn>
<abstract>
<para>Deel I. Applicatie programmering, gegevenstypen, geheugenmodel,
instructieset. Deel II. Systeemprogrammering, architectuur,
geheugenbeheer, protectie, multitasking, I/O, exceptions en
interrupts, initialisatie, coprocessing en multiprocessing. Deel
III. Compatibiliteit (met eerdere x86 machines). Deel
IV. Instructie Set</para>
</abstract>
</biblioentry>
<biblioentry>
<title>80386 System Software Writer's Guide</title>
<corpauthor>Intel Corporation</corpauthor>
<copyright><year>1987</year></copyright>
<isbn>ISBN 1-55512-023-7</isbn>
<abstract>
<para>Hierin worden de 386 features uitgelegd voor schrijvers
van besturingssystemen. Er is een hoofdstuk over Unix implementatie
opgenomen. Een groot deel van de 80386 architectuur schijnt te
zijn ontworpen met Multics in gedachten; de features zijn niet
gebruikt door DOS of door Unix.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>Programming the 80386</title>
<authorgroup>
<author><firstname>John H.</firstname><surname>Crawford</surname></author>
<author><firstname>Patrick P.</firstname><surname>Gelsinger</surname></author>
</authorgroup>
<copyright><year>1987</year></copyright>
<isbn>ISBN 0-89588-381-3</isbn>
<pagenums>774pp.</pagenums>
<abstract>
<para>Dit is het boek dat de Jolitzes gebruikten toen ze BSD naar
de 386 architectuur portte.
</para>
</abstract>
</biblioentry>
<biblioentry>
<title>80386 Hardware Reference Manual</title>
<corpauthor>Intel Corporation</corpauthor>
<copyright><year>1986</year></copyright>
<isbn>ISBN 1-55512-024-5</isbn>
<abstract>
<para>Pin connections, timing, waveforms, block diagrams, voltages,
en dat soort zaken.</para>
</abstract>
</biblioentry>
<biblioentry>
<title>The Indispensable PC Hardware Book</title>
<author><firstname>Hans-Peter</firstname><surname>Messmer</surname></author>
<copyright><year>1993</year></copyright>
<isbn>ISBN 0-201-62424-9</isbn>
<pagenums>1000pp.</pagenums>
<publisher><publishername>Addison-Wesley</publishername></publisher>
<abstract>
<para>JH: "Behandelt de wat recentere zaken zoals EIDE en PCI."</para>
</abstract>
</biblioentry>
</bibliodiv>
</bibliography>
<appendix><title>Administratieve zaken</title>
<sect1><title>Gebruiksvoorwaarden</title>
<para>Dit document is auteursrechtelijk beschermd 1999 door Eric S. Raymond.
Je mag het vrijelijk gebruiken, verspreiden en reproduceren op voorwaarde dat:
</para>
<itemizedlist>
<listitem>
<para>Je deze copyrightmelding niet achterwege laat of aanpast.</para>
</listitem>
<listitem>
<para>Je het versienummer en de datum niet achterwege laat of aanpast.</para>
</listitem>
<listitem>
<para>Je de verwijzing naar de WWW-versie van dit document niet
achterwege laat of aanpast.
</para>
</listitem>
<listitem>
<para>Duidelijk als zodanig aangeeft als het om een gewijzigde of ingekorte
versie gaat.</para>
</listitem>
</itemizedlist>
<para>Deze beperkingen zijn bedoeld om potentiële lezers te beschermen
tegen oude of verminkte versies. Vraag me erom als je denkt een goede
reden te hebben voor een uitzondering.
</para>
</sect1>
<sect1><title>Historie</title>
<para>Dit was oorspronkelijke een mini-HOWTO onderhouden door Jim Haynes.
Ik heb de nadruk wat verlegd en geprobeerd er een standalone document
van te maken en wat minder afgaand op de diverse USENET
bibliografische postings. De mini-reviews zonder kenmerk zijn van mij
en niet van hem.
</para>
</sect1>
</appendix>
</article>
<!--
The following sets edit modes for GNU EMACS
Local Variables:
fill-prefix:"\t"
compile-command: "mail -s \"Reading List HOWTO update\" submit@linuxdoc.org <Reading-List-HOWTO.sgml"
fill-column:75
End:
-->
|