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 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806
|
<html>
<head>
<title>The Linux Gazette Answer Gang Knowledge Base</title>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#0000AF"
alink="#FF0000" >
<center>
<h1>The <i>Linux Gazette</i> Answer Gang Knowledge Base</h1>
<font size="-1">
Updated Mar 23 2002<br>
Maintained by Ben Okopnik and Chris Gianakopoulous<br>
Send corrections and additions to <a href=
"mailto:%66%75%7a%7a%79%62%65%61%72%40%70%6f%63%6b%65%74%6d%61%69%6c%2e%63%6f%6d">
Ben Okopnik</a>
</font></center>
<p>
As you might imagine, we often get asked the same questions, over and over.
The perennial favorite of "It doesn't work!" is always good for a laugh;
"NEWBIE NEEDS HELP!!!!!" is another. (If <b>you</b> want avoid being
grouped with those who don't know enough to pick up the ringing Clue Phone,
do yourself - and us - a favor and read our
<a href="../tag/ask-the-gang.html">Ask The Gang</a> HOWTO.)
However, we also get asked lots of useful, interesting questions by people
who have taken the time to think out what they want to say, and many of
these are not only worth answering - they're worth preserving as reference
material for others who might encounter the same problem.
<p>
<b>NOTE:</b> The information in the Knowledge Base loses its relevance as
time goes on: syntax and usage become deprecated, tools get replaced by
newer (and presumably better) tools, and writers look back at the code that
they published years before and shrink in horror (this couldn't
<i>possibly</i> be personal experience speaking, never!) Because of this
effect, it is worth your while to read several articles on a given topic
that you're researching, with preference generally given to the later ones
in case of conflict (each category is more-or-less arranged by issue number
in reverse order - from most recent to oldest.)
<p>
Good luck with your search!
<p>
<hr size="4">
<a name="top"></a>
<a href="#backup"><b>Backup and Recovery</b></a><br>
<a href="#before"><b>Before You Install Linux</b></a><br>
<a href="#boot"><b>Boot Loaders and Booting the OS</b></a><br>
<a href="#c"><b>C, C++ and Java Programming</b></a><br>
<a href="#storage"><b>CD-ROM, Tape, Floppy and Other Storage Devices</b></a><br>
<a href="#cpu"><b>CPUs and Motherboards</b></a><br>
<a href="#compile"><b>Compiling Programs, Using C Libraries</b></a><br>
<a href="#mail"><b>Configuring Mail</b></a><br>
<a href="#db"><b>Databases</b></a><br>
<a href="#gui"><b>GUI, X-Windows and Window Managers</b></a><br>
<a href="#games"><b>Games</b></a><br>
<a href="#web"><b>HTTP/FTP/SSH/etc.</b></a><br>
<a href="#hd"><b>Hard Drives</b></a><br>
<a href="#install"><b>Installing Linux</b></a><br>
<a href="#app"><b>Installing and Using Applications</b></a><br>
<a href="#interop"><b>Interoperability with other OSs</b></a><br>
<a href="#distro"><b>Linux Distributions</b></a><br>
<a href="#techsupp"><b>Linux Tech Support Questions</b></a><br>
<a href="#misc"><b>Miscellaneous</b></a><br>
<a href="#modem"><b>Modems and Dial-Up Networking</b></a><br>
<a href="#nic"><b>Network Adapters (Ethernet, etc.)</b></a><br>
<a href="#net"><b>Network Configuration</b></a><br>
<a href="#offtopic"><b>Off-Topic (non-Linux)</b></a><br>
<a href="#peripheral"><b>Other Peripherals</b></a><br>
<a href="#fs"><b>Partitions and Filesystems</b></a><br>
<a href="#perl"><b>Perl Programming</b></a><br>
<a href="#print"><b>Printing</b></a><br>
<a href="#programming"><b>Programming in Other Languages</b></a><br>
<a href="#python"><b>Python Programming</b></a><br>
<a href="#sci"><b>Scientific Computing</b></a><br>
<a href="#security"><b>Security</b></a><br>
<a href="#shell"><b>Shell Scripting</b></a><br>
<a href="#sound"><b>Sound</b></a><br>
<a href="#switch"><b>Switching from Other Operating Systems</b></a><br>
<a href="#sysadmin"><b>System Administration</b></a><br>
<a href="#config"><b>System Configuration</b></a><br>
<a href="#startup"><b>System Startup: From Boot to Prompt</b></a><br>
<a href="#rant"><b>The Answer Guy's Most Memorable Rants</b></a><br>
<a href="#kernel"><b>The Kernel</b></a><br>
<a href="#commands"><b>UNIX Commands</b></a><br>
<a href="#uninstall"><b>Uninstalling Linux</b></a><br>
<a href="#video"><b>Video Cards</b></a><br>
<!-- This space brought to you courtesy of the International Earth
Rotation Service and the letter 'Y'. When sharing HTML with a loved
one, please pause for a moment of thought about Kibbles'n'Bits. -->
<pre>
</pre>
<hr size="4">
<pre>
</pre>
<hr noshade align="left" width="20%">
<p><a name="backup"><b>Backup and Recovery</b></a><br></p>
<A HREF="../issue65/tag/10.html">
Corrupt Tar Archive
</a><br>
<A HREF="../issue61/issue61.html#tag/7">
Data Recovery Vendor Seeks Linux Basics
</a><br>
<A HREF="../issue63/tag/1.html">
Why is diff so crazy?
</a><br>
<A HREF="../issue50/tag/2.html">
Seagate SCSI tape problem --or-- Tape Drive Errors
</a><br>
<A HREF="../issue64/tag/12.html">
Duping a Drive Under Linux
</a><br>
<A HREF="../issue48/tag/21.html">
Dell EIDE TR5 Tape Drive
</a><br>
<A HREF="../issue34/tag/recovery.html">
Automated Recovery from System Failures
</a><br>
<A HREF="../issue31/tag_backup.html">
Remote Backups (Yet Again) --or-- Backups: GNU 'tar' through 'rsh'
</a><br>
<A HREF="../issue29/tag_betterbak.html">
Remote Tape Backups
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="before"><b>Before You Install Linux</b></a><br></p>
<A HREF="../issue61/issue61.html#tag/4">
What is Linux?
</a><br>
<A HREF="../issue51/tag/2.html">
Need Help!!! --or-- Removing an OS
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="boot"><b>Boot Loaders and Booting the OS</b></a><br></p>
<A HREF="../issue65/tag/4.html">
Help on LILO stopping at LI
</a><br>
<A HREF="../issue60/issue60.html#tag/3">
Two OS --or-- Dual-booting
</a><br>
<A HREF="../issue54/tag/1.html">
LILO hangs
</a><br>
<A HREF="../issue52/tag/13.html">
LILO Windows boot --or-- Keeping Both Hard Drives Connected
</a><br>
<A HREF="../issue52/tag/15.html">
LILO Stopping at LI --or-- LBA and "linear"
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/24">
Loadlin trouble
</a><br>
<A HREF="../issue55/tag/8.html">
Windoze on 2nd Hard Drive --or--
A Usable Example of lilo.conf for 2 Drive Dual Booting
</a><br>
<A HREF="../issue55/tag/9.html">
Multi- Boot LINUX, NT and WIN98
</a><br>
<A HREF="../issue55/tag/10.html">
Lilo --or-- Boot Stops at LI
</a><br>
<A HREF="../issue55/tag/15.html">
Multiple "append=" directives in /etc/lilo.conf
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/1">
How do I do it? --or-- Installing to a 2nd HD
</a><br>
<A HREF="../issue48/tag/28.html">
LILO Lockup --or-- LILO Stops at LI
</a><br>
<A HREF="../issue48/tag/47.html">
Using LILO to boot directly to DOS --or-- Setting the LILO Default
</a><br>
<A HREF="../issue47/lg_answer47.html#boot">
LILO, SYSLINUX, and more Boot Loaders
</a><br>
<A HREF="../issue38/tag/19.html">
Linux 5.2 Loadlin.exe, where do I get it? --or--
Finding LOADLIN.EXE ... and Linux Loader for Win '9x
</a><br>
<A HREF="../issue37/tag/31.html">
I want my 10 GIGS!!! --or-- Ultra-DMA and the 8.4Gb IDE Disk Limit
</a><br>
<A HREF="../issue35/tag/bootmethod.html">
How Many Ways Can I Boot Thee: Let Me Count Them
</a><br>
<A HREF="../issue30/tag_lilostop.html">
Lilo won't boot --or-- Installed on a Secondary SCSI HD: Lilo Stops at LI
</a><br>
<A HREF="../issue29/tag_kernel.html">
Kernel crashes
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="c"><b>C, C++ and Java Programming</b></a><br></p>
<a HREF="../issue71/tag/4.html">
Is This a Good Book for Linux Programming?
</a><br>
<A HREF="../issue65/tag/23.html">
about the adaptation
</a><br>
<A HREF="../issue32/tag_progenv.html">
Help with C/C++ Environment Program --or--
Integrated Programming Environments for Linux
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="storage"><b>CD-ROM, Tape, Floppy and Other Storage Devices</b></a><br></p>
<a HREF="../issue72/tag/2.html">
Getting volume label for CD
</a><br>
<a HREF="../issue74/tag/7.html">
Getting volume label for CD (followup)
</a><br>
<a HREF="../issue68/tag/11.html">
The Best of: Burning .iso files under Windows
</a><br>
<A HREF="../issue52/tag/3.html">
When you burn an ISO image to a CD... --or-- What to do with .ISO files
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/9">
Making CDs
</a><br>
<A HREF="../issue48/tag/57.html">
CDR used in scsi emulation --or-- Mounting CDs on IDE CDRW Drives
</a><br>
<A HREF="../issue47/lg_answer47.html#removable">
CD-ROM, Tapes, and more Removable Media
</a><br>
<A HREF="../issue33/tag/floppy.html">
Floppy/mount Problems: Disk Spins, Lights are on, No one's Home
</a><br>
<A HREF="../issue32/tag_cdr.html">
CDRDAO 1.0 - Disc-at-once writing of audio CD-Rs
</a><br>
<A HREF="../issue31/tag_cdr.html">
DAO software for linux?
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="cpu"><b>CPUs and Motherboards</b></a><br></p>
<A HREF="../issue50/tag/22.html">
233mhz to 450mhz --or-- Overclocking a Motherboard
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="compile"><b>Compiling Programs, Using C Libraries</b></a><br></p>
<A HREF="../issue55/tag/5.html">
Limiting exported symbols --or--
More on Exporting Symbols from Shared Libraries
</a><br>
<A HREF="../issue48/tag/48.html">
glibc --or-- Multiple Concurrently Installed Version of glibc
</a><br>
<A HREF="../issue34/tag/testsuite.html">
Test Suites for GNU and other Open Source (TM) Software --or-- Is there a
testsuite for glibc?
</a><br>
<A HREF="../issue32/tag_libc5.html">
The last Linux C library version 5 (5.4.46) is released --or--
The End of libc5: A Mini-Interview with H.J Lu
</a><br>
<A HREF="../issue30/tag_gzipC.html">
gzip from C program --or-- Compression Libraries to Link into a C Program
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="mail"><b>Configuring Mail</b></a><br></p>
<a HREF="../issue67/tag/15.html">
Domain Renaming and E-mail Routing and Re-writing
</a><br>
<a HREF="../issue69/lg_answer69.html">
MAPS, Razor, Procmail, Junkfilter, IMAP, and DNS
</a><br>
<A HREF="../issue66/tag/6.html">
Procmail and regular expressions (Snow White)
</a><br>
<A HREF="../issue65/tag/8.html">
Setup of Microsoft Outlook Express 5 for Sending of Clear Text
</a><br>
<A HREF="../issue65/tag/11.html">
masquerade in sendmail is broken
</a><br>
<A HREF="../issue65/tag/19.html">
Linux Newbie Frustration --or-- So many users, So few POP accounts
</a><br>
<A HREF="../issue59/issue59.html#tag/1">
Aliasing in Sendmail
Linux Gazette
</a><br>
<A HREF="../issue51/tag/22.html">
IMAP/POP daemon on RH 6.0 and 6.1 --or--
Installing a POP Daemon on Red Hat Linux
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/14">
MX Records and Precedence Values
</a><br>
<A HREF="../issue55/tag/3.html">
Procmail Arguments
</a><br>
<A HREF="../issue47/lg_answer47.html#mail">
Mail Servers and Clients
</a><br>
<A HREF="../issue42/tag/7.html">
procmail and saved variables. --or--
MATCH and Replaceable Parameters in procmail
</a><br>
<A HREF="../issue38/tag/5.html">
"Integrating" Linux/sendmail with MS Exchange
</a><br>
<A HREF="../issue37/tag/9.html">
procmail --or-- getting the mail via POP3
</a><br>
<A HREF="../issue33/tag/emacs_cc.html">
Supressing cc: lines in Emacs' Mail replies
</a><br>
<A HREF="../issue34/tag/quota.html">
Quotas for Outgoing e-mail
</a><br>
<A HREF="../issue31/tag_maildns.html">
sendmail requires DNS... won't use /etc/hosts
</a><br>
<A HREF="../issue30/tag_vacation.html">
auto response for email ?
</a><br>
<A HREF="../issue29/tag_virtdom.html">
Question on sendmail... --or-- sendmail "FEATURE"
creatures for virtual domain and generic rewrite tables
</a><br>
<A HREF="../issue29/tag_basicmail.html">
Mail on a LAN Linux to NT --or-- Basic e-mail Setup for Linux?
</a><br>
<A HREF="../issue29/tag_sendmail.html">
sendmail Log Jams and Capacity Problems running extra
sendmail -q processes
</a><br>
<A HREF="../issue29/tag_procmail.html">
Automated Handling for MAILER-DAEMON Messages:
Read The Sources, Luke
</a><br>
<A HREF="../issue22/lg_answer22.html#email">
E-mail adjustment needed</a>
</a><br>
<A HREF="../issue15/answer.html#send">
Mail and Sendmail</a>
</a><br>
<A HREF="../issue15/answer.html#pop">
POP3 E-Mail</a>
</a><br>
<A HREF="../issue14/answer.html#block">
Netscape Mail Block</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="db"><b>Databases</b></a><br></p>
<a HREF="../issue67/tag/16.html">
MySQL tips and tricks
</a><br>
<A HREF="../issue59/issue59.html#tag/4">
Porting to Access
</a><br>
<A HREF="../issue30/tag_dosemu-db.html">
DOSemu and virtual terminals? --or-- Clipper/xBase Capacity Problems
</a><br>
<A HREF="../issue30/tag_database.html">
FoxPlus for Linux? --or-- Dreaming about xBase tools for Linux
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="gui"><b>GUI, X-Windows and Window Managers</b></a><br></p>
<A HREF="../issue74/tag/1.html">
Control-Left = go left one word doesn't work in X
</a><br>
<A HREF="../issue61/issue61.html#tag/35">
Xwindows
</a><br>
<A HREF="../issue60/issue60.html#tag/10">
GPM is interfering with X...
</a><br>
<A HREF="../issue59/issue59.html#tag/7">
IP Masq and X
</a><br>
<A HREF="../issue59/issue59.html#tag/8">
extra keyboard keys under X
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/13">
XDM wont start a session --or--
XFree 4.0 and ":0.0 refused by server" Errors
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/16">
Four Questions
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/21">
run any remote X server at host box --or- Remotely Executing Graphic Apps
</a><br>
<A HREF="../issue52/tag/9.html">
Redhat display --or-- Simple: Change X Resolutions on the Fly
</a><br>
<A HREF="../issue52/tag/14.html">
Icewm and open xterm with root rights --or--
ICEWM Key Bindings (Macros) and X in "Toaster" Mode
</a><br>
<A HREF="../issue52/tag/19.html">
Telnet goes X? --or-- Exporting a DISPLAY
</a><br>
<A HREF="../issue52/tag/20.html">
fvwm2 and blank screens --or-- That Blankety Blanker!
</a><br>
<A HREF="../issue52/tag/21.html">
rsh works but not -display... --or-- Permission Denied on -display
</a><br>
<A HREF="../issue58/tag/2.html">
Dual (or more) Monitor support
</a><br>
<A HREF="../issue58/tag/6.html">
Running XDM Without a console GUI
</a><br>
<A HREF="../issue48/tag/46.html">
X respawning question and answer --or--
Another Solution, or a Different Problem
</a><br>
<A HREF="../issue47/lg_answer47.html#X">
X Window Networking --or-- The X Graphical Environment
</a><br>
<A HREF="../issue39/tag/8.html">
Fvwm95-Wharf --or-- fvwm95-Wharf: xterm comes out black?
</a><br>
<A HREF="../issue37/tag/3.html">
eterm quickie + general commment (linux SUPERGRAN)
</a><br>
<A HREF="../issue37/tag/11.html">
X terminals via serial links? --or-- X Windows Over a Serial Line (Null Modem)
</a><br>
<A HREF="../issue37/tag/34.html">
Better resolution (laptop LCD) --or-- Higher Resolution X on a Laptop
</a><br>
<A HREF="../issue34/tag/xdm.html">
Remote X using xdm
</a><br>
<A HREF="../issue35/tag/magickeys.html">
Some Magic Keys for the Linux Console --or-- X and virtual terms
</a><br>
<A HREF="../issue32/tag_doslinux.html">
XFree86 Installation in DOSLinux
</a><br>
<A HREF="../issue32/tag_tuning.html">
Tuning X to work with your Monitor
</a><br>
<A HREF="../issue31/tag_multihead.html">
X Window with two monitors...
</a><br>
<A HREF="../issue24/lg_answer24.html#virtual">
Getting Rid of Virtual Screens</a>
</a><br>
<A HREF="../issue16/answer.html#map">
Problems with Keyboard Mapping</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="games"><b>Games</b></a><br></p>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="web"><b>HTTP/FTP/SSH/etc.</b></a><br></p>
<a HREF="../issue68/tag/4.html">
Bulk File Transfers from Windows to ???
</a><br>
<A HREF="../issue60/issue60.html#tag/17">
Internet server specifications --or--
Web server/firewall hardware specifications, Apache and Zope
</a><br>
<A HREF="../issue59/issue59.html#tag/6">
LinuxRedHat Errno 404
</a><br>
<A HREF="../issue48/tag/22.html">
Some basic ftp questions --or-- FTP Daemon: Special Requirements
</a><br>
<A HREF="../issue42/tag/1.html">
Setting up a Loopback Mount --or-- Loopback (localhost) NFS Mounting for FTP
</a><br>
<A HREF="../issue42/tag/3.html">
TCP Sockets --or-- SYN, SYN/ACK, ACK, ACK, ACK: TCP Handshaking
</a><br>
<A HREF="../issue38/tag/1.html">
FTP Only Access: Trickier than it Seems
</a><br>
<A HREF="../issue38/tag/3.html">
A Reader Answers: What is the TCP/IP SACK feature?
</a><br>
<A HREF="../issue38/tag/24.html">
win95->wingate ; linux->? --or-- Drop-in Replacement for "WinGate"
</a><br>
<A HREF="../issue38/tag/28.html">
xntpd --or-- How 'ntpdate' finds IP addresses?
</a><br>
<A HREF="../issue38/tag/32.html">
Telnetd and pausing
</a><br>
<A HREF="../issue37/tag/6.html">
Getting my new linux box to run the ftp server
</a><br>
<A HREF="../issue37/tag/22.html">
System clock is too fast... --or-- Ahh ... The Toils of Time
</a><br>
<A HREF="../issue37/tag/49.html">
TCP patch for SACK? (RFC 2018) --or-- TCP/IP SACK Support: When? Now!
</a><br>
<A HREF="../issue35/tag/ftproot.html">
FTP Login as 'root' --- Don't!
</a><br>
<A HREF="../issue32/tag_apache.html">
MS FrontPage for Linux/Apache
</a><br>
<A HREF="../issue32/tag_ftpd.html">
wu-ftpd guest account on a Linux Box --or-- WU-FTP guestgroup problems
</a><br>
<A HREF="../issue30/tag_nullmodem.html">
Connecting Linux to Win '95 via Null Modem
</a><br>
<A HREF="../issue13/answer.html#server">
WWW Server</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="hd"><b>Hard Drives</b></a><br></p>
<a HREF="../issue72/tag/8.html">
SCSI
</a><br>
<A HREF="../issue60/issue60.html#tag/9">
Classified Disk - Low-level Format
</a><br>
<A HREF="../issue59/issue59.html#tag/9">
cloning with dd
</a><br>
<A HREF="../issue50/tag/24.html">
Here's a good question for you... --or-- CRC Error - System Halted
</a><br>
<A HREF="../issue50/tag/30.html">
Hard drive --or-- Adding a Disk
</a><br>
<A HREF="../issue48/tag/33.html">
Coping with Bad Sectors
</a><br>
<A HREF="../issue47/lg_answer47.html#disk">
Hard Disk Drives, Filesystems and Partitioning
</a><br>
<A HREF="../issue42/tag/10.html">
One Bad Sector that's getting on my nerves! --or-- One Bad Sector
Doesn't Ruin the Whole Disk
</a><br>
<A HREF="../issue38/tag/12.html">
Question from an old friend
</a><br>
<A HREF="../issue37/tag/39.html">
Removing Bad Sectors
</a><br>
<A HREF="../issue33/tag/scsi.html">
Partition your HD before you try to use it
</a><br>
<A HREF="../issue31/tag_badblock.html">
Bad Cluster
</a><br>
<A HREF="../issue31/tag_idescsi.html">
Lilo not working on SCSI when IDE drives installed
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="install"><b>Installing Linux</b></a><br></p>
<a HREF="../issue73/tag/9.html">
Just wondering
</a><br>
<a HREF="../issue67/tag/10.html">
RE: Download Linux
</a><br>
<a HREF="../issue67/tag/12.html">
Kernel upgrade
</a><br>
<A HREF="../issue65/tag/2.html">
Unable to Install Linux
</a><br>
<A HREF="../issue65/tag/15.html">
Installing Linux without cdrom
</a><br>
<A HREF="../issue63/tag/6.html">
Por favor Ayuda!
</a><br>
<A HREF="../issue61/issue61.html#tag/5">
Linux Installation question
</a><br>
<A HREF="../issue63/tag/7.html">
LINUX for SGI Visual Workstation
</a><br>
<A HREF="../issue61/issue61.html#tag/28">
New to Linux
</a><br>
<A HREF="../issue64/tag/3.html">
Please help I am at wits end
</a><br>
<A HREF="../issue60/issue60.html#tag/5">
newbie installation question
</a><br>
<A HREF="../issue50/tag/43.html">
Now what? --or-- Using a Downloaded .iso Image for System Upgrade
</a><br>
<A HREF="../issue42/tag/16.html">
pcmcia install on debian
</a><br>
<A HREF="../issue42/tag/20.html">
Upgrade Breaks Several Programs, "/proc" Problems
--or-- A visit to "Library Hell"
</a><br>
<A HREF="../issue39/tag/19.html">
Plee for help
</a><br>
<A HREF="../issue38/tag/18.html">
help with partitions --or--
Installing on a Big Drive: more about the 1023 Cylinder Limit
</a><br>
<A HREF="../issue38/tag/23.html">
Is it possible to run Debian on 4 MB? --or-- Low Memory Installation
</a><br>
<A HREF="../issue37/tag/44.html">
Custom Install --or-- Unable to Open Console after "Custom" Install
</a><br>
<A HREF="../issue34/tag/current.html">
Updates: Risks and Rewards --or-- Upgrading With Caution
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="app"><b>Installing and Using Applications</b></a><br></p>
<a HREF="../issue71/tag/3.html">
Dependency Hell
</a><br>
<a HREF="../issue70/tag/6.html">
question about fingerd
</a><br>
<A HREF="../issue66/tag/8.html">
3d linux
</a><br>
<A HREF="../issue63/tag/5.html">
linux anti virus?
</a><br>
<A HREF="../issue54/tag/13.html">
calculate cpu load --or- Use the Sources, Dude!
</a><br>
<A HREF="../issue38/tag/26.html">
Jim Dennis: Re: Gimp on RH5.1
</a><br>
<A HREF="../issue37/tag/12.html">
copy of Microsoft Office --or--
Free Copy of MS Office for Linux? It isn't April Yet!
</a><br>
<A HREF="../issue33/tag/autocad.html">
AutoCAD for Linux? Not Yet. Sorry.
</a><br>
<A HREF="../issue32/tag_DVI.html">
How to read DVI files?
</a><br>
<A HREF="../issue32/tag_notfound.html">
"/usr/bin/open": command not found
</a><br>
<A HREF="../issue31/tag_rpm.html">
What is an RPM?
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="interop"><b>Interoperability with other OSs</b></a><br></p>
<a HREF="../issue70/tag/8.html">
Re: Linux solution to syncing with Exchange Address books
</a><br>
<A HREF="../issue52/tag/6.html">
libguile --or-- A Be-GUILE-ing Question
</a><br>
<A HREF="../issue52/tag/17.html">
source code of fsck --or-- Getting to the Source(s) of fsck
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/16">
Uninstalling a tar.gz (tarball) installation
</a><br>
<A HREF="../issue55/tag/22.html">
Find the source for specific program
</a><br>
<A HREF="../issue50/tag/46.html">
Idled Daemon on Linux --or-- idled RPM for Red Hat
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/3">
Telnet not working on recent RedHat/Mandrake --or--
Incoming Telnet for Mandrake Users
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/14">
Which RPM Provides A Given Set of Files?
</a><br>
<A HREF="../issue42/tag/23.html">
"Network Neighborhood" --or-- Heterogenous File Sharing
</a><br>
<A HREF="../issue37/tag/37.html">
DOS --or-- Mounting a DOS partition
</a><br>
<A HREF="../issue35/tag/office.html">
Linux as a File/Print Server for Window and DOS boxes: Of course!
</a><br>
<A HREF="../issue35/tag/netware.html">
Needs to Login to Netware --or-- Question about networking with NetWare
</a><br>
<A HREF="../issue31/tag_NDS.html">
Linux NDS --or-- Linux as a Netware Directory Services Printer Client?
</a><br>
<A HREF="../issue30/tag_NTauth.html">
NT Domain and Linux --or-- Linux as a "Domain Controller"
for a WinNT Domain? Not Yet!
</a><br>
<A HREF="../issue30/tag_emulate.html">
help on unix --or-- Running Unix/Linux Under Win '9x
</a><br>
<A HREF="../issue24/lg_answer24.html#pdt">
Linux as a PDT</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="distro"><b>Linux Distributions</b></a><br></p>
<a HREF="../issue73/tag/7.html">
SuSE 7.1 installation CD not recognized
</a><br>
<A HREF="../issue65/tag/28.html">
Here is a very stupid question... --or-- How do I choose?
</a><br>
<A HREF="../issue63/tag/3.html">
Distros
</a><br>
<A HREF="../issue60/issue60.html#tag/4">
Best Linux Distro For A Newbie...?
</a><br>
<A HREF="../issue54/tag/10.html">
Question from a quasi Novice... --or-- Linux is {Now|Not} UNIX
</a><br>
<A HREF="../issue48/tag/44.html">
RedHat 6.0 - various problems --or-- Laundry List of RH 6.0 Problems
</a><br>
<A HREF="../issue42/tag/12.html">
hal91 --or-- Floppy Based Linux Distributions
</a><br>
<A HREF="../issue41/tag/2.html">
Best Place to "Download Linux"
</a><br>
<A HREF="../issue39/tag/11.html">
How to Create a New Linux Distribution: Why?
</a><br>
<A HREF="../issue32/tag_distrib.html">
More on Distribution Preferences
</a><br>
<A HREF="../issue31/tag_distrib.html">
Yggdrasil: A Breath of Life for the Root of the Linux Distributions?
...and what about OpenLinux Base?
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="techsupp"><b>Linux Tech Support Questions</b></a><br></p>
<A HREF="../issue75/tips/linux_help.html">
How can I get help on Linux? --or-- How do I find the help files?
</a><br>
<A HREF="../issue75/tips/wine.html">
Can I run Windows applications under Linux?
</a><br>
<A HREF="../issue75/tips/mswin.html">
Do you answer Windows questions too?
</a><br>
<A HREF="../issue75/tips/winmodem.html">
So I'm having trouble with this internal modem...
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="misc"><b>Miscellaneous</b></a><br></p>
<a HREF="../issue74/tag/8.html">
random crashes - how to prepare bug report?
</a><br>
<a HREF="../issue73/tag/1.html">
clock setting
</a><br>
<a HREF="../issue72/tag/3.html">
clock problem
</a><br>
<a HREF="../issue71/tag/8.html">
HOWTO find a good laptop
</a><br>
<a HREF="../issue70/tag/6.html">
question about fingerd
</a><br>
<A HREF="../issue65/tag/5.html">
How can you do a recursive search to find broken symbolic links?
</a><br>
<A HREF="../issue63/tag/4.html">
Re: Is Solaris UNIX?
</a><br>
<A HREF="../issue61/issue61.html#tag/8">
a question --or-- Linux, UNIX, what's the difference?
</a><br>
<A HREF="../issue61/issue61.html#tag/25">
e-mails not getting through
</a><br>
<A HREF="../issue59/issue59.html#tag/13">
background processes in Linux
</a><br>
<A HREF="../issue54/tag/7.html">
Win4Lin and NT = nil --or- Win4Lin's Limitations: VMWare's Strength?
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/7">
rcp question --or-- UNIX User Tries Linux 'rsh'
</a><br>
<A HREF="../issue51/tag/18.html">
problem with bash/vi editing mode --or- ksh Keybindings (vi Keys)
</a><br>
<A HREF="../issue58/tag/4.html">
How do you pronounce Linux?
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/25">
linux mail server to an MS Exchange? --or--
Linux vs. MS Exchange for Mail Server
</a><br>
<A HREF="../issue50/tag/34.html">
Redirecting stdin on telnet --or-- Redirecting stdin into telnet
</a><br>
<A HREF="../issue50/tag/42.html">
Daemons
</a><br>
<A HREF="../issue48/tag/7.html">
virus protection --or- Virus Protection for Linux: A Non-Issue
</a><br>
<A HREF="../issue47/lg_answer47.html#services">
Other Servers
</a><br>
<A HREF="../issue47/lg_answer47.html#social">
Etiquette and More Social Questions
</a><br>
<A HREF="../issue47/lg_answer47.html#else">
If that could possibly have missed it... --or-- Everything Else
</a><br>
<A HREF="../issue42/tag/13.html">
ping at a different port --or-- Ping a Port: NOT
</a><br>
<A HREF="../issue39/tag/22.html">
Linux and Y2K
</a><br>
<A HREF="../issue37/tag/10.html">
Linux Diagnostic Tool --or-- Hardware Info Under Linux: MSD.EXE Clone?
</a><br>
<A HREF="../issue37/tag/16.html">
ps to gif --or-- more about automated PostScript to GIF Conversion
</a><br>
<A HREF="../issue32/tag_ping.html">
Online Status Detector --or-- Failover and High Availability for Web Servers:
Conditional Execution Based on Host Availability
</a><br>
<A HREF="../issue31/tag_guy.html">
Stupid question --or-- AnswerGUY? Who is Heather?
</a><br>
<A HREF="../issue30/tag_lockups.html">
PC lockups --or-- Hardware Lockups due to Graphics Load
</a><br>
<A HREF="../issue29/tag_dumbterm.html">
Hello --or-- Connecting a Dumb Terminal to your Linux System
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="modem"><b>Modems and Dial-Up Networking</b></a><br></p>
<a HREF="../issue72/tag/1.html">
pppd problem
</a><br>
<A HREF="../issue66/tag/12.html">
getting 2 dynamic ip addresses
</a><br>
<a HREF="../issue71/tag/5.html">
What ISPs Do We Use for Linux
</a><br>
<A HREF="../issue61/issue61.html#tag/27">
Multiplexing ppp connections
</a><br>
<a HREF="../issue68/tag/1.html">
Dial-on-demand users should know:
</a><br>
<A HREF="../issue61/issue61.html#tag/30">
The New Network On The Block
</a><br>
<A HREF="../issue66/tag/12.html">
getting 2 dynamic ip addresses
</a><br>
<A HREF="../issue60/issue60.html#tag/7">
What IS "The Internet" anyway?
</a><br>
<A HREF="../issue63/tag/2.html">
State of the Art in softmodems
</a><br>
<A HREF="../issue59/issue59.html#tag/5">
Issues with a modem
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/17">
Kermit protocol --or-- G-Kermit: The GPL Kermit Transfer Package
</a><br>
<A HREF="../issue51/tag/17.html">
Kermit --or-- A bit more about C-Kermit
</a><br>
<A HREF="../issue58/tag/8.html">
Free Linux ISPs in France
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/20">
windows telnet/linux --or- automating windows telnet to linux
</a><br>
<A HREF="../issue50/tag/44.html">
Automated Login Around a Challenge Card
</a><br>
<A HREF="../issue50/tag/47.html">
Monthly Win (Lose) Modem Question
</a><br>
<A HREF="../issue48/tag/9.html">
Modem Noises --or-- Quiet, Modem!
</a><br>
<A HREF="../issue47/lg_answer47.html#losemodem">
Winmodems
</a><br>
<A HREF="../issue47/lg_answer47.html#serial">
Ordinary Modems and other Useful Serial Devices
</a><br>
<A HREF="../issue42/tag/15.html">
New Kernel Loses Ether Driver; Dial on Demand and Masquerading
</a><br>
<A HREF="../issue39/tag/10.html">
Multilink PPP using Linux --or-- Modem Multi-link PPP: EQL
</a><br>
<A HREF="../issue39/tag/16.html">
diald dials every hour... --or-- overactive diald
</a><br>
<A HREF="../issue38/tag/14.html">
[Q]: Winmodem under Linux
</a><br>
<A HREF="../issue38/tag/29.html">
Sportys --or-- Sportster modems
</a><br>
<A HREF="../issue37/tag/19.html">
Curious modem hangup... --or-- PPP Disconnects
</a><br>
<A HREF="../issue37/tag/30.html">
modem problems under linux --or-- X Prevents/Kills Modem Connection
</a><br>
<A HREF="../issue33/tag/connect.html">
O.K. It's not a Winmodem --or-- connect script failed
</a><br>
<A HREF="../issue34/tag/serial.html">
RE how to find out the serial connect speed of a modem
</a><br>
<A HREF="../issue32/tag_BBS.html">
Finding BBS Software for Linux
</a><br>
<A HREF="../issue32/tag_permission.html">
Permission to Set up a Linux Server
</a><br>
<A HREF="../issue32/tag_modem.html">
ANOTHER MODEM PROB Plus, More on Grammar
</a><br>
<A HREF="../issue31/tag_modem.html">
115K Baud from a Modem: In your dreams!
</a><br>
<A HREF="../issue29/tag_winmodem.html">
Winmodems --or-- More on 'WinModems': How to "lose" Gracefully - Just say No!
</a><br>
<A HREF="../issue29/tag_dialdppp.html">
PPP connection and diald --or-- >Co-ordinating diald and Manual PPP
</a><br>
<A HREF="../issue29/tag_ppp233.html">
getting ppp-2.3.3 to work
</a><br>
<A HREF="../issue22/lg_answer22.html#fax">
Faxing and Dialing-Out on the Same Line</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="nic"><b>Network Adapters (Ethernet, etc.)</b></a><br></p>
<a HREF="../issue73/tag/8.html">
Installing tulip.o in 6.2
</a><br>
<A HREF="../issue62/tag/1.html">
Renaming Ethernet Devices
</a><br>
<A HREF="../issue51/tag/1.html">
linux ether16 support --or-- isapnptools
</a><br>
<A HREF="../issue50/tag/9.html">
Can't See Ethernet Card --or-- More on Linksys Ether16 Cards
</a><br>
<A HREF="../issue34/tag/ether.html">
NE2000 "clones" --- not "cloney" enough!
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="net"><b>Network Configuration</b></a><br></p>
<a HREF="../issue74/tag/2.html">
Hi Gazzete (Squid)
</a><br>
<a HREF="../issue74/tag/2.html">
SQL on the internet
</a><br>
<a HREF="../issue71/tag/6.html">
How to let the world find your Linux Server when using DHCP
</a><br>
<A HREF="../issue66/tag/7.html">
Timely Samba Release?
</a><br>
<a HREF="../issue70/tag/11.html">
inetd and figlet
</a><br>
<A HREF="../issue65/tag/3.html">
DNS and telnet
</a><br>
<a HREF="../issue70/tag/3.html">
Piercing the Veil (ssh NAT/Firewall Piercing Trick)
</a><br>
<A HREF="../issue62/tag/6.html">
IP Forwarding
</a><br>
<a HREF="../issue68/tag/8.html">
File Tranfers with AIM (AOL Instant Messenger)
</a><br>
<A HREF="../issue61/issue61.html#tag/15">
For Jim Dennis...Hello from South Texas --or-- Firewall for a SOHO
</a><br>
<A HREF="../issue65/tag/3.html">
DNS and telnet
</a><br>
<A HREF="../issue61/issue61.html#tag/22">
multiple subnets, one DNS
</a><br>
<A HREF="../issue60/issue60.html#tag/19">
Networking
</a><br>
<A HREF="../issue60/issue60.html#tag/21">
DSL on Linux Information
</a><br>
<A HREF="../issue54/tag/3.html">
Suse Linux telnet problem --or-- Can't telnet to Linux server
</a><br>
<A HREF="../issue52/tag/12.html">
Question --or-- Shutting Down the "ping Daemon"
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/20">
Shutting Down the "ping Daemon" --or-- Shutting Down the Ping Daemon: Revised
</a><br>
<A HREF="../issue52/tag/18.html">
Linux as a Win NT server --or-- Singing the Song for Samba
</a><br>
<A HREF="../issue51/tag/5.html">
Routing a Linux Subnet --or-- Subnetting
</a><br>
<A HREF="../issue51/tag/6.html">
soho linux network --or-- Two Node Network: How
</a><br>
<A HREF="../issue51/tag/9.html">
question about ProxyArp --or-- ProxyARP
</a><br>
<A HREF="../issue57/tag/5.html">
Telnet to linux box from NT workstation in NT LAN --or-- Connection Refused
</a><br>
<A HREF="../issue57/tag/6.html">
connecting red hat workstation to nt server --or--
Linux in a Windows NT Domain (under a PDC)
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/4">
linux using nt server data --or-- Accessing an NT Fileserver
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/18">
More on TCP Wrappers and telnet Connection Delays
</a><br>
<A HREF="../issue55/tag/12.html">
Disabling Anonymous FTP
</a><br>
<A HREF="../issue55/tag/16.html">
Getting Addresses Routed: Use IP Masquerading or Application Proxies
</a><br>
<A HREF="../issue55/tag/17.html">
Linux as a firewall/router --or-- FTP Through a "Firewall"
</a><br>
<A HREF="../issue50/tag/1.html">
DNS ports... --or-- DNS Ports: A bit about Name Resolution Protocols
</a><br>
<A HREF="../issue50/tag/8.html">
routing -masquerading --or-- Hello Routing, Goodbye Masquerading
</a><br>
<A HREF="../issue50/tag/40.html">
Double Reverse DNS Strikes Again
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/10">
Windows 95 Connectivity --or-- Needs Samba Configuration Advice
</a><br>
<A HREF="../issue48/tag/15.html">
Red Hat --or-- Telnet gives: "Connection closed by foreign host..."
</a><br>
<A HREF="../issue48/tag/27.html">
Linux Workstations Behind a Proxy/Firewall
</a><br>
<A HREF="../issue48/tag/43.html">
rsh --or-- Really Wants 'rsh' to Work. Really
</a><br>
<A HREF="../issue48/tag/55.html">
"telnetd connected:" But No "login" Prompt
</a><br>
<A HREF="../issue47/lg_answer47.html#net">
Routing, Firewalls, and other "raw" Networking
</a><br>
<A HREF="../issue42/tag/19.html">
Advanced ipfwadm question. icmp forwarding. --or-- ICMP Masquerading
</a><br>
<A HREF="../issue39/tag/13.html">
Personal LAN setup... --or-- Setting up a Personal/Home LAN
</a><br>
<A HREF="../issue38/tag/17.html">
proxy & router combination --or-- Proxying over PPP
</a><br>
<A HREF="../issue37/tag/7.html">
setting up an ISP to serve email --or--Setting up ISP Mail Services
</a><br>
<A HREF="../issue37/tag/8.html">
[Fwd: rsh on 2.0.34] --or-- More on: 'rsh' as 'root' Denied
</a><br>
<A HREF="../issue37/tag/17.html">
Re: Routing and Subnetting for Classes
</a><br>
<A HREF="../issue33/tag/virthost.html">
"Virtual Hosting" inetd based services using TCP Wrappers --or--
root, twist, and other rescue-boot fun
</a><br>
<A HREF="../issue33/tag/samba_pdc.html">
Linux/Samba as a Primary Domain Controller
</a><br>
<A HREF="../issue33/tag/ipmasq.html">
IP and Sendmail Masquerading over a Cablemodem
</a><br>
<A HREF="../issue33/tag/hostavail.html">
Conditional Execution Based on Host Availability
</a><br>
<A HREF="../issue36/tag/a.html">
Routing and Subnetting 101
</a><br>
<A HREF="../issue36/tag/21.html">
Linux as Router and Proxy Server: HOWTO?
</a><br>
<A HREF="../issue36/tag/78.html">
Linux as a Home Internet Gateway and Server
</a><br>
<A HREF="../issue32/tag_proxy.html">
IP Masquerading/Proxy?
</a><br>
<A HREF="../issue32/tag_disable.html">
The "Difficulty" is in <em>Disabling</em> the Services
</a><br>
<A HREF="../issue32/tag_cluster.html">
Web Server Clustering Project
</a><br>
<A HREF="../issue29/tag_netcard.html">
Network Cards
</a><br>
<A HREF="../issue27/lg_answer27.html#holloway">
IP Masquerading/Proxy?
</a><br>
<A HREF="../issue23/lg_answer23.html#ospf">
Linux and OSPF</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="offtopic"><b>Off-Topic (non-Linux)</b></a><br></p>
<A HREF="../issue65/tag/6.html">
BIOS passwords - Bane of my existance
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/9">
Recover password for SUN sparcstation --or-
Root Password Recovery on non-Linux UNIX Systems
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/11">
Lost CMOS Password
</a><br>
<A HREF="../issue48/tag/51.html">
Comcast and IPmasq --or-- Short names for Long Domains?
</a><br>
<A HREF="../issue47/lg_answer47.html#notlinux">
Non-Linux OS Questions
</a><br>
<A HREF="../issue30/tag_SCOkeys.html">
Linux and SCO Keymap --or-- SCO Compatible Console Keymaps?
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="peripheral"><b>Other Peripherals</b></a><br></p>
<A HREF="../issue50/tag/31.html">
How can I view ascii data coming across my serial port? --or-- Serial Capture
</a><br>
<A HREF="../issue48/tag/6.html">
Questions about Linux --or- Setting COM port speeds
</a><br>
<A HREF="../issue48/tag/52.html">
serial port snooping --or-- Snooping on a Serial Port
</a><br>
<A HREF="../issue42/tag/6.html">
Hubs --or-- Ethernet Switches vs. Hubs
</a><br>
<A HREF="../issue39/tag/2.html">
Using a 286 as a Serial Terminal
</a><br>
<A HREF="../issue32/tag_rs422.html">
High Speed Serial (RS422) under Linux
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="fs"><b>Partitions and Filesystems</b></a><br></p>
<A HREF="../issue67/tag/13.html">
LFS: Large File Summit/Support
</a><br>
<a HREF="../issue72/tag/4.html">
Please need help !!! ext2 problem !!!
</a><br>
<A HREF="../issue61/issue61.html#tag/14">
I can't seem to write to my vfat (Windoze) file system with any user
other than root
</a><br>
<A HREF="../issue54/tag/12.html">
Sizing the Home Directories: Quotas and Partitioning
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/4">
accessing windows files --or--
Accessing Local DOS/Windows9x Drives from Linux
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/15">
Which filesystem? --or-- Determining the Type of Each Filesystem
</a><br>
<A HREF="../issue58/tag/11.html">
Partitioning Linux
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/5">
booting larger than 8.4gb --or-- FIPS
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/6">
LI boot problems --or-- Removing Linux Partitions
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/11">
Binfmt/Exec Format Errors in /linuxrc on initrd
</a><br>
<A HREF="../issue55/tag/14.html">
Linux DEVFS --or-- Linux devfs (Device Filesystem)
</a><br>
<A HREF="../issue55/tag/20.html">
help... need to delete a linux partition
</a><br>
<A HREF="../issue55/tag/21.html">
UVFAT --or-- Getting UVFAT
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/7">
Disk Druid UI Failure? USE fdisk!
</a><br>
<A HREF="../issue48/tag/39.html">
Need Advice --or-- Partitioning Advice
</a><br>
<A HREF="../issue42/tag/5.html">
Resizing partitions --or-- Filesystem Management
</a><br>
<A HREF="../issue42/tag/18.html">
Question about 2 GB max? --or-- Maximum Filesize vs. Maximum Filesystem Size
</a><br>
<A HREF="../issue38/tag/21.html">
help with partitions --or-- Partitioning Mini-HOWTO
</a><br>
<A HREF="../issue37/tag/18.html">
Partitioning my new Linux box... --or-- Disk Partitioning: Review
</a><br>
<A HREF="../issue35/tag/largedisk.html">
Suggestions for Linux Users with Ultra Large Disks
</a><br>
<A HREF="../issue32/tag_superblock.html">
Bad Super-block on Filesystem
</a><br>
<A HREF="../issue22/lg_answer22.html#swap">
Swap partition and Modems</a>
</a><br>
<A HREF="../issue22/lg_answer22.html#mvusr">
Moving /usr subdirectory to another drive..</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="perl"><b>Perl Programming</b></a><br></p>
<a HREF="../issue71/tag/2.html">
"crypt" function in Linux
</a><br>
<A HREF="../issue52/tag/10.html">
2c Tip: Show TCP/UDP port usage --or-- Cross Comment: 2cent Tips
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="print"><b>Printing</b></a><br></p>
<a HREF="../issue67/tag/3.html">
Re: Printing to specific forms
</a><br>
<a HREF="../issue67/tag/3.html">
Checks vs. Plain Paper
</a><br>
<A HREF="../issue66/tag/3.html">
Winprinters
</a><br>
<A HREF="../issue61/issue61.html#tag/34">
About Epson Stylus Color 670 --or-- Setting up print filters
</a><br>
<A HREF="../issue58/tag/5.html">
Printing Trouble in Linux
</a><br>
<A HREF="../issue36/tag/39.html">
Advanced Printer Support: 800x600 dpi + 11x17" Paper --or-- Real PS Printing
</a><br>
<A HREF="../issue31/tag_solprint.html">
Remote lpd Solaris to Linux
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="programming"><b>Programming in Other Languages</b></a><br></p>
<A HREF="../issue64/tag/15.html">
Fortran Compiler
</a><br>
<A HREF="../issue33/tag/shuffle.html">
Shuffling Lines in a File
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="python"><b>Python Programming</b></a><br></p>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="sci"><b>Scientific Computing</b></a><br></p>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="security"><b>Security</b></a><br></p>
<a HREF="../issue71/tag/2.html">
"crypt" function in Linux
</a><br>
<A HREF="../issue61/issue61.html#tag/9">
linux question
</a><br>
<a HREF="../issue70/tag/3.html">
Piercing the Veil (ssh NAT/Firewall Piercing Trick)
</a><br>
<a HREF="../issue68/tag/10.html">
Closing Ports
</a><br>
<A HREF="../issue59/issue59.html#tag/17">
Confused About Internet Access to My Home Computer --or--
Does Internet access require an ISP?
</a><br>
<A HREF="../issue57/tag/7.html">
ACLs on Linux
</a><br>
<A HREF="../issue55/tag/13.html">
Login as root problem --or--
Remote Login as 'root': Don't do it! (Except using SSH or ...)
</a><br>
<A HREF="../issue50/tag/27.html">
"harden" Linux DNS server --or-- "Hardening" a Red Hat (into a Helmet?)
</a><br>
<A HREF="../issue50/tag/41.html">
Open ports --or-- Closing Ports, Disabling Unwanted Services
</a><br>
<A HREF="../issue48/tag/23.html">
RedHat Login Problems --or-- login, su, and passwd dies: Everybody dies!
</a><br>
<A HREF="../issue48/tag/41.html">
PAM applications running as root (Was Re: WebTrends Enterprise
Reporting Server)
</a><br>
<A HREF="../issue48/tag/49.html">
Limiting Internet Access through Cable Modems
</a><br>
<A HREF="../issue42/tag/4.html">
CVS tree for pam --or-- PAM chroot (wherein Jim rants about PAM)
</a><br>
<A HREF="../issue39/tag/12.html">
login source code --or-- Seeing Stars During Login
</a><br>
<A HREF="../issue37/tag/2.html">
Simplified Security? --or-- Simple Security Tips
</a><br>
<A HREF="../issue37/tag/45.html">
Securing a modem dial-out line
</a><br>
<A HREF="../issue39/tag/21.html">
security issue, /etc/passwd --or-- Secure Shutdown from the Console
</a><br>
<A HREF="../issue35/tag/crypto.html">
Crypto Support for Linux --or-- FS Security using Linux
</a><br>
<A HREF="../issue36/tag/15.html">
'chroot()' Jails or Cardboard Boxes --or-- PAM & chroot
</a><br>
<A HREF="../issue30/tag_chroot.html">
linux kernel security --or--
breaking out of the "chroot()" jail
</a><br>
<A HREF="../issue29/tag_tacacs.html">
TACACS+ client for Linux --or- TACACS and RADIUS Authentication
Models for Linux and/or PAM
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="shell"><b>Shell Scripting</b></a><br></p>
<a HREF="../issue74/tag/4.html">
printing the timestamp of a given file
</a><br>
<a HREF="../issue73/tag/3.html">
fine-grained delay in shell scripts
</a><br>
<a HREF="../issue70/tag/5.html">
Bash
</a><br>
<A HREF="../issue66/tag/4.html">
Search and Replace Without Breaking Permissions
</a><br>
<a HREF="../issue68/tag/6.html">
Tips: Yet another way to find
</a><br>
<A HREF="../issue65/tag/20.html">
script --or-- parsing files with Bash
</a><br>
<A HREF="../issue64/tag/7.html">
netscape bash function script
</a><br>
<A HREF="../issue54/tag/8.html">
login script --or-- "Unary Command Expected" in Shell Script
</a><br>
<A HREF="../issue54/tag/11.html">
Embedding Newlines in Shell and Environment Values
</a><br>
<A HREF="../issue64/tag/11.html">
Readline Features in the Bash 'read' built-in
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/2">
Extracting a block of text from a file
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/18">
shell cannot see an existing file --or--
./script: No such file or directory
</a><br>
<A HREF="../issue52/tag/7.html">
co-processes --or-- zsh Co-processes
</a><br>
<A HREF="../issue58/tag/10.html">
More on: Shell Variable Scoping
</a><br>
<A HREF="../issue57/tag/1.html">
Linux read --or-- a problem with pipes in ksh
</a><br>
<A HREF="../issue57/tag/4.html">
Simple shell and cron question
shell script
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/3">
Comparing files locally to those on an FTP server
</a><br>
<A HREF="../issue55/tag/4.html">
Random Numbers --or-- Getting Random Values in sh
</a><br>
<A HREF="../issue47/lg_answer47.html#script">
Scripting and Programming (including Startup Scripts)
</a><br>
<A HREF="../issue41/tag/1.html">
Here's a shell scripting question for you. --or--
How to Make a Shell Script "Unbreakable"
</a><br>
<A HREF="../issue38/tag/6.html">
Win 95 computer/NT server environment --or--
Shell Scripting: Getting Host and User Names
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="sound"><b>Sound</b></a><br></p>
<A HREF="../issue64/tag/9.html">
More help with Linux Multimedia
</a><br>
<A HREF="../issue47/lg_answer47.html#sound">
Sweet Music?
</a><br>
<A HREF="../issue38/tag/11.html">
OPL-3 Sound Drivers
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="switch"><b>Switching from Other Operating Systems</b></a><br></p>
<a HREF="../issue74/tag/8.html">
linux book
</a><br>
<A HREF="../issue32/tag_emulate.html">
Virtual System Emulator for Linux and Why NOT to Use Them
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="sysadmin"><b>System Administration</b></a><br></p>
<a HREF="../issue74/tag/6.html">
pseudo-chroot
</a><br>
<a HREF="../issue67/tag/9.html">
Password aging
</a><br>
<A HREF="../issue61/issue61.html#tag/13">
setting root password
</a><br>
<A HREF="../issue54/tag/14.html">
Scheduling 3rd party services --or-- Cron
</a><br>
<A HREF="../issue51/tag/10.html">
Is there any.. --or- Syslog Events from a Particular Host to a Particular File
</a><br>
<A HREF="../issue55/tag/18.html">
Simple Shell and Cron Question
</a><br>
<A HREF="../issue50/tag/4.html">
Linux password lost --or-- Lost Password
</a><br>
<A HREF="../issue48/tag/16.html">
multiple root accounts --or-- Multiple Root Accounts: Delegation
</a><br>
<A HREF="../issue42/tag/11.html">
Server shutdown/restart: 2-key keyboard --or-- Server Shutdown Button
</a><br>
<A HREF="../issue39/tag/9.html">
Another "No Login" Problem: A little tip
</a><br>
<A HREF="../issue38/tag/31.html">
Great Job !!! --or-- Linux as a Loghost (Syslog Server)
</a><br>
<A HREF="../issue34/tag/recovery.html">
Automated Recovery from System Failures
</a><br>
<A HREF="../issue35/tag/remoteroot.html">
Remote Login as 'root' - DON'T!
</a><br>
<A HREF="../issue36/tag/24.html">
More on: "Remote Login as root"
</a><br>
<A HREF="../issue32/tag_accounts.html">
SysAdmin: User Administration: Disabling Accounts
</a><br>
<A HREF="../issue31/tag_uidgid.html">
Assigning UID/GID --or-- UID/GID Synchronization and Management
</a><br>
<A HREF="../issue30/tag_vc1shell.html">
Help Wanted --or-- User Shell on Virtual Console 1
</a><br>
<A HREF="../issue29/tag_shadow.html">
"adduser"
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="config"><b>System Configuration</b></a><br></p>
<A HREF="../issue73/tag/5.html">
Shut down when turning computer off
</a><br>
<A HREF="../issue59/issue59.html#tag/16">
serial consoles, install, boot, etc --or-- Serial Consoles
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/13">
Linux, Laptops, and Cooling Fans --or-- Making the Laptop's Fan Run
</a><br>
<A HREF="../issue48/tag/42.html">
International Keyboard Mappings for (Linux)
</a><br>
<A HREF="../issue42/tag/14.html">
Hey answer guy!!! --or-- Linux as a Job! Hobbies become fun and profit
</a><br>
<A HREF="../issue37/tag/47.html">
RAM --or-- how much memory do I have?
</a><br>
<A HREF="../issue33/tag/tty.html">
Pseudo-tty Becomes Unusable
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="startup"><b>System Startup: After the Boot up to the Login Prompt</b></a><br></p>
<A HREF="../issue52/tag/8.html">
virtual console login --or-- Console Logins Fail; KDM Okay?
</a><br>
<A HREF="../issue48/tag/50.html">
The Linux Startup Script?
</a><br>
<A HREF="../issue48/tag/53.html">
Maximal mount reached; check forced --or-- Maximal Mount Count Reached
</a><br>
<A HREF="../issue42/tag/2.html">
sites for general disk info? --or-- General HD Info and Boot Code
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="rant"><b>The Answer Guy's Most Memorable Rants</b></a><br></p>
<A HREF="../issue54/tag/4.html">
question on trees --or-- Another Homework Assignment from Hotmail
</a><br>
<A HREF="../issue56/lg_answer56.html#tag/15">
unable to open a initial console --or-- A Short Guide on How to do Backups and Recovery
</a><br>
<A HREF="../issue37/tag/23.html">
you are the man --or-- The Complaint Department: Typos and Grammatical Errors
</a><br>
<A HREF="../issue28/tag_hoax.html">
"Good Times" Are Here Again? NOT!
</a><br>
<A HREF="../issue29/tag_whylinux.html">
Why Linux?
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="kernel"><b>The Kernel</b></a><br></p>
<a HREF="../issue67/tag/8.html">
Linux Kernel Crashdumps: HOW?
</a><br>
<a HREF="../issue64/tag/16.html">
Modules cannot load with kernel recompile
</a><br>
<A HREF="../issue62/tag/4.html">
Comments to "A rather unique query (I hope)" --or-- symlink considered harmful
</a><br>
<A HREF="../issue48/tag/26.html">
Segmentation Faults --or-- segfault
</a><br>
<A HREF="../issue48/tag/34.html">
Linux memory management --or--
Homework Assignment: Write about Linux Memory Management
</a><br>
<A HREF="../issue42/tag/9.html">
Unix Internal --or-- Inodes Numbering: An Academic Question
</a><br>
<A HREF="../issue41/tag/4.html">
"core" files appearing here and there --or-- Dealing with "core" files
</a><br>
<A HREF="../issue39/tag/4.html">
Error starting recompiling process?
</a><br>
<A HREF="../issue39/tag/6.html">
No rule to make target "config" --or--
Recompiling Kernel to Support CD-ROM
</a><br>
<A HREF="../issue37/tag/4.html">
nr_files and nr_inodes --or--
Max Open Files and Inodes: Use The Entries under "/proc"
</a><br>
<A HREF="../issue32/tag_startup.html">
Linux System Administration. --or-- Where to put "insmod" and
"modprobe" Commands for Start-up
</a><br>
<A HREF="../issue32/tag_clock.html">
The BIOS Clock, Y2K, Linux and Everything
</a><br>
<A HREF="../issue31/tag_kernel.html">
Kernel Overview needed...
</a><br>
<A HREF="../issue31/tag_memleak.html">
Question on Memory Leak --or-- Memory Leaks and the OS that Allows Them
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="commands"><b>UNIX Commands</b></a><br></p>
<a HREF="../issue71/tag/2.html">
Q: avoid getting answers from apropos in the man sections 3 and 3x
</a><br>
<A HREF="../issue62/tag/3.html">
about Unix command rm
</a><br>
<a HREF="../issue68/tag/7.html">
Dash it All! Coping with ---Unruly--- Filenames
</a><br>
<A HREF="../issue54/tag/2.html">
question on rm command --or-- Homework Answer: All about 'rm'
</a><br>
<a HREF="../issue68/tag/9.html">
reverse dns
</a><br>
<A HREF="../issue54/tag/15.html">
a quick question --or-- DIR /S
</a><br>
<A HREF="../issue63/tag/1.html">
Why is diff so crazy?
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/9">
unix system admin --or-- Getting Familiar with a UNIX System
</a><br>
<A HREF="../issue62/tag/3.html">
about Unix command rm
</a><br>
<A HREF="../issue53/lg_answer53.html#tag/11">
control another VT? --or-- Temporarily Controlling a VT
</a><br>
<A HREF="../issue41/tag/5.html">
Xterm and "Log to file" --or--
Flexible Logging of Terminal Output to Files: Use 'screen'
</a><br>
<A HREF="../issue39/tag/5.html">
How Can I Delete? --or-- Deleting Files and UNIX Permissions
</a><br>
<A HREF="../issue35/tag/links.html">
Listing "Just the Links": It's the only way, Luke
</a><br>
<A HREF="../issue32/tag_detach.html">
Detaching and Re-attaching to Interactive Background Processes
</a><br>
<A HREF="../issue23/lg_answer23.html#madness">
VC Madness</a>
</a><br>
<A HREF="../issue23/lg_answer23.html#ref">
An Interesting De-Referencing Problem</a>
</a><br>
<A HREF="../issue23/lg_answer23.html#program">
Compression Program</a>
</a><br>
<A HREF="../issue22/lg_answer22.html#chattr">
chattr +i</a>
</a><br>
<A HREF="../issue15/answer.html#chown">
chown Question</a>
</a><br>
<A HREF="../issue13/answer.html#file">
File Referencing</a>
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="uninstall"><b>Uninstalling Linux</b></a><br></p>
<A HREF="../issue61/issue61.html#tag/19">
Removing Linux: Sacrilege!
</a><br>
<A HREF="../issue61/issue61.html#tag/32">
Another uninstall: Getting to a Root Prompt to Blow it All Away
</a><br>
<A HREF="../issue48/tag/30.html">
Uninstall Linux --or-- Uninstalling Linux
</a><br>
<A HREF="../issue55/tag/19.html">
Left in the Lurch or: Uninstalling Linux the Hard Way
</a><br>
<A HREF="../issue29/tag_lilo.html">
Removing Lilo from a multi-boot machine
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<hr noshade align="left" width="20%">
<p><a name="video"><b>Video Cards</b></a><br></p>
<A HREF="../issue65/tag/16.html">
Installing RedHat 7.0 and a driver for the Chipset Cirrus CL-GD5436
</a><br>
<A HREF="../issue65/tag/25.html">
Linux, X, Dell Video Card
</a><br>
<A HREF="../issue61/issue61.html#tag/29">
Trident Providia 9685
</a><br>
<A HREF="../issue52/tag/1.html">
graphic chipset Linux/CA-810 --or--
Linux on an Intel "Camino" CA810 Motherboard
</a><br>
<A HREF="../issue52/tag/23.html">
Intel's integrated Chipset --or-- Identifying the Integrated Video Chipset
</a><br>
<A HREF="../issue58/tag/9.html">
driver d'installazione --or- SIS 6236
</a><br>
<A HREF="../issue50/tag/33.html">
X Server --or-- Jaton 107 Blade 3D and XFree86
</a><br>
<A HREF="../issue49/lg_answer49.html#tag/8">
Driver for Savage 4 pro --or-- Savage 4 Pro
</a><br>
<p><a href="#top"><b>Back to top</b></a></p>
<p><br></p>
<hr size="4">
<p><br></p>
</body>
</html>
|