FreeBSDAn Absolute Beginners Guide to FreeBSDChrisColemanMarkMayo Started on Feb 13, 1997, Last Updated on August 14, 1997This is An Absolute Beginners Guide to Setting up a FreeBSD Server. This is a work in progress, the sections that have been worked on are noted with a "*". Please send us e-mail if you want a chapter section completed quickly.If you have any questions that you don't see addressed by this page. Please send any comments to fbsd-book@quickweb.comHelp!Not Yet ScheduledIndex of ErrorsNot Yet ScheduledKernel Config Optionsmachine "i386"This directive is mandatory; it defines the architecture to be configured for; in this case, the 386 family based IBM-PC and compatibles. ident LINT# This is the ``identification'' of the kernel. Usually this should # be the same as the name of your kernel. # # # The `maxusers' parameter controls the static sizing of a number of # internal system tables by a complicated formula defined in param.c. # maxusers 10 # # Certain applications can grow to be larger than the 128M limit # that FreeBSD initially imposes. Below are some options to # allow that limit to grow to 256MB, and can be increased further # with changing the parameters. MAXDSIZ is the maximum that the # limit can be set to, and the DFLDSIZ is the default value for # the limit. You might want to set the default lower than the # max, and explicitly set the maximum with a shell command for processes # that regularly exceed the limit like INND. # options "MAXDSIZ=(256*1024*1024)" options "DFLDSIZ=(256*1024*1024)" # When this is set, be extra conservative in various parts of the kernel # and choose functionality over speed (on the widest variety of systems). options FAILSAFE # This allows you to actually store this configuration file into # the kernel binary itself, where it may be later read by saying: # strings /kernel | grep ^___ | sed -e 's/^___//' > MYKERNEL # options INCLUDE_CONFIG_FILE # Include this file in kernel # # This directive defines a number of things: # - The compiled kernel is to be called `kernel' # - The root filesystem might be on partition wd0a # - Crash dumps will be written to wd0b, if possible. Specifying the # dump device here is not recommended. Use dumpon(8). # config kernel root on wd0 dumps on wd0 ##################################################################### # SMP OPTIONS: # # SMP enables building of a Symmetric MultiProcessor Kernel. # APIC_IO enables the use of the IO APIC for Symmetric I/O. # NCPU sets the number of CPUs, defaults to 2. # NBUS sets the number of busses, defaults to 4. # NAPIC sets the number of IO APICs on the motherboard, defaults to 1. # NINTR sets the total number of INTs provided by the motherboard. # # Notes: # # An SMP kernel will ONLY run on an Intel MP spec. qualified motherboard. # # Be sure to disable 'cpu "I386_CPU"' && 'cpu "I486_CPU"' for SMP kernels. # # Check the 'Rogue SMP hardware' section to see if additional options # are required by your hardware. # # Mandatory: options SMP # Symmetric MultiProcessor Kernel options APIC_IO # Symmetric (APIC) I/O # Optional, these are the defaults plus 1: options NCPU=5 # number of CPUs options NBUS=5 # number of busses options NAPIC=2 # number of IO APICs options NINTR=25 # number of INTs # # Rogue SMP hardware: # # Bridged PCI cards: # # The MP tables of most of the current generation MP motherboards # do NOT properly support bridged PCI cards. To use one of these # cards you should refer to ??? ##################################################################### # CPU OPTIONS # # You must specify at least one CPU (the one you intend to run on); # deleting the specification for CPUs you don't need to use may make # parts of the system run faster. This is especially true removing # I386_CPU. # cpu "I386_CPU" cpu "I486_CPU" cpu "I586_CPU" # aka Pentium(tm) cpu "I686_CPU" # aka Pentium Pro(tm) # # Options for CPU features. # # CPU_BLUELIGHTNING_FPU_OP_CACHE enables FPU operand cache on IBM # BlueLightning CPU. It works only with Cyrix FPU, and this option # should not be used with Intel FPU. # # CPU_BLUELIGHTNING_3X enables triple-clock mode on IBM Blue Lightning # CPU if CPU supports it. The default is double-clock mode on # BlueLightning CPU box. # # CPU_BTB_EN enables branch target buffer on Cyrix 5x86 (NOTE 1). # # CPU_DIRECT_MAPPED_CACHE sets L1 cache of Cyrix 486DLC CPU in direct # mapped mode. Default is 2-way set associative mode. # # CPU_DISABLE_5X86_LSSER disables load store serialize (i.e. enables # reorder). This option should not be used if you use memory mapped # I/O device(s). # # CPU_FASTER_5X86_FPU enables faster FPU exception handler. # # CPU_I486_ON_386 enables CPU cache on i486 based CPU upgrade products # for i386 machines. # # CPU_IORT defines I/O clock delay time (NOTE 1). Default vaules of # I/O clock delay time on Cyrix 5x86 and 6x86 are 0 and 7,respectively # (no clock delay). # # CPU_LOOP_EN prevents flushing the prefetch buffer if the destination # of a jump is already present in the prefetch buffer on Cyrix 5x86(NOTE # 1). # # CPU_RSTK_EN enables return stack on Cyrix 5x86 (NOTE 1). # # CPU_SUSP_HLT enables suspend on HALT. If this option is set, CPU # enters suspend mode following execution of HALT instruction. # # CYRIX_CACHE_WORKS enables CPU cache on Cyrix 486 CPUs with cache # flush at hold state. # # CYRIX_CACHE_REALLY_WORKS enables (1) CPU cache on Cyrix 486 CPUs # without cache flush at hold state, and (2) write-back CPU cache on # Cyrix 6x86 whose revision < 2.7 (NOTE 2). # # NOTE 1: The options, CPU_BTB_EN, CPU_LOOP_EN, CPU_IORT, # CPU_LOOP_ENand CPU_RSTK_EN should no be used becasue of CPU bugs. # These options may crash your system. # # NOTE 2: If CYRIX_CACHE_REALLY_WORKS is not set, CPU cache is enabled # in write-through mode when revision < 2.7. If revision of Cyrix # 6x86 >= 2.7, CPU cache is always enabled in write-back mode. # options "CPU_BLUELIGHTNING_FPU_OP_CACHE" options "CPU_BLUELIGHTNING_3X" options "CPU_BTB_EN" options "CPU_DIRECT_MAPPED_CACHE" options "CPU_DISABLE_5X86_LSSER" options "CPU_FASTER_5X86_FPU" options "CPU_I486_ON_386" options "CPU_IORT" options "CPU_LOOP_EN" options "CPU_RSTK_EN" options "CPU_SUSP_HLT" options "CYRIX_CACHE_WORKS" options "CYRIX_CACHE_REALLY_WORKS" # # A math emulator is mandatory if you wish to run on hardware which # does not have a floating-point processor. Pick either the original, # bogus (but freely-distributable) math emulator, or a much more # fully-featured but GPL-licensed emulator taken from Linux. # options MATH_EMULATE #Support for x87 emulation # Don't enable both of these in a real config. options GPL_MATH_EMULATE #Support for x87 emulation via #new math emulator ##################################################################### # COMPATIBILITY OPTIONS # # Implement system calls compatible with 4.3BSD and older versions of # FreeBSD. You probably do NOT want to remove this as much current code # still relies on the 4.3 emulation. # options "COMPAT_43" # # Allow user-mode programs to manipulate their local descriptor tables. # This option is required for the WINE Windows(tm) emulator, and is # not used by anything else (that we know of). # options USER_LDT #allow user-level control of i386 ldt # # These three options provide support for System V Interface # Definition-style interprocess communication, in the form of shared # memory, semaphores, and message queues, respectively. # options SYSVSHM options SYSVSEM options SYSVMSG # # This option includes a MD5 routine in the kernel, this is used for # various authentication and privacy uses. # options "MD5" ##################################################################### # DEBUGGING OPTIONS # # Enable the kernel debugger. # options DDB # # Don't drop into DDB for a panic. Intended for unattended operation # where you may want to drop to DDB from the console, but still want # the machine to recover from a panic # options DDB_UNATTENDED # # If using GDB remote mode to debug the kernel, there's a non-standard # extension to the remote protocol that can be used to use the serial # port as both the debugging port and the system console. It's non- # standard and you're on your own if you enable it. See also the # "remotechat" variables in the FreeBSD specific version of gdb. # options GDB_REMOTE_CHAT # # KTRACE enables the system-call tracing facility ktrace(2). # options KTRACE #kernel tracing # # The DIAGNOSTIC option is used in a number of source files to enable # extra sanity checking of internal structures. This support is not # enabled by default because of the extra time it would take to check # for these conditions, which can only occur as a result of # programming errors. # options DIAGNOSTIC # # PERFMON causes the driver for Pentium/Pentium Pro performance counters # to be compiled. See perfmon(4) for more information. # options PERFMON # XXX - this doesn't belong here. # Allow ordinary users to take the console - this is useful for X. options UCONSOLE # XXX - this doesn't belong here either options USERCONFIG #boot -c editor options USERCONFIG_BOOT #imply -c and parse info area options VISUAL_USERCONFIG #visual boot -c editor ##################################################################### # NETWORKING OPTIONS # # Protocol families: # Only the INET (Internet) family is officially supported in FreeBSD. # Source code for the NS (Xerox Network Service) is provided for amusement # value. # options INET #Internet communications protocols options IPX #IPX/SPX communications protocols options IPXIP #IPX in IP encapsulation (not available) options IPTUNNEL #IP in IPX encapsulation (not available) options NETATALK #Appletalk communications protocols # These are currently broken but are shipped due to interest. #options NS #Xerox NS protocols # These are currently broken and are no longer shipped due to lack # of interest. #options CCITT #X.25 network layer #options ISO #options TPIP #ISO TP class 4 over IP #options TPCONS #ISO TP class 0 over X.25 #options LLC #X.25 link layer for Ethernets #options HDLC #X.25 link layer for serial lines #options EON #ISO CLNP over IP #options NSIP #XNS over IP # # Network interfaces: # The `loop' pseudo-device is MANDATORY when networking is enabled. # The `ether' pseudo-device provides generic code to handle # Ethernets; it is MANDATORY when a Ethernet device driver is # configured. # The 'fddi' pseudo-device provides generic code to support FDDI. # The `sppp' pseudo-device serves a similar role for certain types # of synchronous PPP links (like `cx', `ar'). # The `sl' pseudo-device implements the Serial Line IP (SLIP) service. # The `ppp' pseudo-device implements the Point-to-Point Protocol. # The `bpfilter' pseudo-device enables the Berkeley Packet Filter. Be # aware of the legal and administrative consequences of enabling this # option. The number of devices determines the maximum number of # simultaneous BPF clients programs runnable. # The `disc' pseudo-device implements a minimal network interface, # which throws away all packets sent and never receives any. It is # included for testing purposes. # The `tun' pseudo-device implements the User Process PPP (iijppp) # pseudo-device ether #Generic Ethernet pseudo-device fddi #Generic FDDI pseudo-device sppp #Generic Synchronous PPP pseudo-device loop #Network loopback device pseudo-device sl 2 #Serial Line IP pseudo-device ppp 2 #Point-to-point protocol pseudo-device bpfilter 4 #Berkeley packet filter pseudo-device disc #Discard device pseudo-device tun 1 #Tunnel driver(user process ppp) # # Internet family options: # # TCP_COMPAT_42 causes the TCP code to emulate certain bugs present in # 4.2BSD. This option should not be used unless you have a 4.2BSD # machine and TCP connections fail. # # MROUTING enables the kernel multicast packet forwarder, which works # with mrouted(8). # # IPFIREWALL enables support for IP firewall construction, in # conjunction with the `ipfw' program. IPFIREWALL_VERBOSE sends # logged packets to the system logger. IPFIREWALL_VERBOSE_LIMIT # limits the number of times a matching entry can be logged. # # IPDIVERT enables the divert IP sockets, used by ``ipfw divert'' # # TCPDEBUG is undocumented. # options "TCP_COMPAT_42" #emulate 4.2BSD TCP bugs options MROUTING # Multicast routing options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about # dropped packets options "IPFIREWALL_VERBOSE_LIMIT=100" #limit verbosity options IPDIVERT #divert sockets options TCPDEBUG ##################################################################### # FILESYSTEM OPTIONS # # Only the root, /usr, and /tmp filesystems need be statically # compiled; everything else will be automatically loaded at mount # time. (Exception: the UFS family---FFS, MFS, and LFS---cannot # currently be demand-loaded.) Some people still prefer to statically # compile other filesystems as well. # # NB: The LFS, PORTAL, and UNION filesystems are known to be buggy, # and WILL panic your system if you attempt to do anything with them. # They are included here as an incentive for some enterprising soul to # sit down and fix them. # # Note: 4.4BSD NQNFS lease checking has relatively high cost for # _local_ I/O as well as remote I/O. Don't use it unless you will # using NQNFS. # # One of these is mandatory: options FFS #Fast filesystem options NFS #Network File System # The rest are optional: options NQNFS #Enable NQNFS lease checking # options NFS_NOSERVER #Disable the NFS-server code. options "CD9660" #ISO 9660 filesystem options FDESC #File descriptor filesystem options KERNFS #Kernel filesystem options LFS #Log filesystem options MFS #Memory File System options MSDOSFS #MS DOS File System options NULLFS #NULL filesystem options PORTAL #Portal filesystem options PROCFS #Process filesystem options UMAPFS #UID map filesystem options UNION #Union filesystem # This DEVFS is experimental but seems to work options DEVFS #devices filesystem # Make space in the kernel for a MFS root filesystem. Define to the number # of kilobytes to reserve for the filesystem. options MFS_ROOT=10 # Allow the MFS_ROOT code to load the MFS image from floppy if it is missing. options MFS_AUTOLOAD # Allow this many swap-devices. options NSWAPDEV=20 # Disk quotas are supported when this option is enabled. If you # change the value of this option, you must do a `make clean' in your # kernel compile directory in order to get a working kernel. # options QUOTA #enable disk quotas # Add more checking code to various filesystems #options NULLFS_DIAGNOSTIC #options KERNFS_DIAGNOSTIC #options UMAPFS_DIAGNOSTIC #options UNION_DIAGNOSTIC # In particular multi-session CD-Rs might require a huge amount of # time in order to "settle". If we are about mounting them as the # root f/s, we gotta wait a little. # # The number is supposed to be in seconds. options "CD9660_ROOTDELAY=20" # Add some error checking code to the null_bypass routine # in the NULL filesystem #options SAFETY ##################################################################### # SCSI DEVICES # SCSI DEVICE CONFIGURATION # The SCSI subsystem consists of the `base' SCSI code, a number of # high-level SCSI device `type' drivers, and the low-level host-adapter # device drivers. The host adapters are listed in the ISA and PCI # device configuration sections below. # # Beginning with FreeBSD 2.0.5 you can wire down your SCSI devices so # that a given bus, target, and LUN always come on line as the same # device unit. In earlier versions the unit numbers were assigned # in the order that the devices were probed on the SCSI bus. This # means that if you removed a disk drive, you may have had to rewrite # your /etc/fstab file, and also that you had to be careful when adding # a new disk as it may have been probed earlier and moved your device # configuration around. # This old behavior is maintained as the default behavior. The unit # assignment begins with the first non-wired down unit for a device # type. For example, if you wire a disk as "sd3" then the first # non-wired disk will be assigned sd4. # The syntax for wiring down devices is: # controller scbus0 at ahc0 # Single bus device # controller scbus1 at ahc1 bus 0 # Single bus device # controller scbus3 at ahc2 bus 0 # Twin bus device # controller scbus2 at ahc2 bus 1 # Twin bus device # disk sd0 at scbus0 target 0 unit 0 # disk sd1 at scbus3 target 1 # disk sd2 at scbus2 target 3 # tape st1 at scbus1 target 6 # device cd0 at scbus? # "units" (SCSI logical unit number) that are not specified are # treated as if specified as LUN 0. # All SCSI devices allocate as many units as are required. # The "unknown" device (uk? in pre-2.0.5) is now part of the base SCSI # configuration and doesn't have to be explicitly configured. controller scbus0 #base SCSI code device ch0 #SCSI media changers device sd0 #SCSI disks device st0 #SCSI tapes device cd0 #SCSI CD-ROMs device od0 #SCSI optical disk # The previous devices (ch, sd, st, cd) are recognized by config. # config doesn't (and shouldn't) know about these newer ones, # so we have to specify that they are on a SCSI bus with the "at scbus?" # clause. device worm0 at scbus? # SCSI worm device pt0 at scbus? # SCSI processor type device sctarg0 at scbus? # SCSI target # SCSI OPTIONS: # SCSIDEBUG: When defined enables debugging macros # NO_SCSI_SENSE: When defined disables sense descriptions (about 4k) # SCSI_REPORT_GEOMETRY: Always report disk geometry at boot up instead # of only when booting verbosely. options SCSIDEBUG #options NO_SCSI_SENSE options SCSI_REPORT_GEOMETRY # Options for the `od' optical disk driver: # # If drive returns sense key as 0x02 with vendor specific additional # sense code (ASC) and additional sense code qualifier (ASCQ), or # illegal ASC and ASCQ. This cause an error (NOT READY) and retrying. # To suppress this, use the following option. # options OD_BOGUS_NOT_READY # # For an automatic spindown, try this. Again, preferably as an # option in your config file. # WARNING! Use at your own risk. Joerg's ancient SONY SMO drive # groks it fine, while Shunsuke's Fujitsu chokes on it and times # out. # options OD_AUTO_TURNOFF ##################################################################### # MISCELLANEOUS DEVICES AND OPTIONS # # Of these, only the `log' device is truly mandatory. The `pty' # device usually turns out to be ``effectively mandatory'', as it is # required for `telnetd', `rlogind', `screen', `emacs', and `xterm', # among others. # If you wish to run certain # system utilities which are compressed by default (like /stand/sysinstall) # then `gzip' becomes mandatory too. # pseudo-device pty 16 #Pseudo ttys - can go as high as 256 pseudo-device speaker #Play IBM BASIC-style noises out your speaker pseudo-device log #Kernel syslog interface (/dev/klog) pseudo-device gzip #Exec gzipped a.out's pseudo-device vn #Vnode driver (turns a file into a device) pseudo-device snp 3 #Snoop device - to look at pty/vty/etc.. pseudo-device ccd 4 #Concatenated disk driver # These are only for watching for bitrot in old tty code. # broken #pseudo-device tb # These are only for watching for bitrot in old SCSI code. pseudo-device su #scsi user pseudo-device ssc #super scsi ##################################################################### # HARDWARE DEVICE CONFIGURATION # ISA and EISA devices: # EISA support is available for some device, so they can be auto-probed. # Micro Channel is not supported at all. # # Mandatory ISA devices: isa, sc or vt, npx # controller isa0 # # Options for `isa': # # AUTO_EOI_1 enables the `automatic EOI' feature for the master 8259A # interrupt controller. This saves about 0.7-1.25 usec for each interrupt. # This option breaks suspend/resume on some portables. # # AUTO_EOI_2 enables the `automatic EOI' feature for the slave 8259A # interrupt controller. This saves about 0.7-1.25 usec for each interrupt. # Automatic EOI is documented not to work for for the slave with the # original i8259A, but it works for some clones and some integrated # versions. # # BOUNCE_BUFFERS provides support for ISA DMA on machines with more # than 16 megabytes of memory. It doesn't hurt on other machines. # Some broken EISA and VLB hardware may need this, too. # # MAXMEM specifies the amount of RAM on the machine; if this is not # specified, FreeBSD will read the amount of memory from the CMOS RAM, # so the amount of memory will be limited to 64MB or 16MB depending on # the BIOS. The amount is in kilobytes, so for a machine with 128MB of # RAM, it would be 131072 (128 * 1024). # # TUNE_1542 enables the automatic ISA bus speed selection for the # Adaptec 1542 boards. Does not work for all boards, use it with caution. # # BROKEN_KEYBOARD_RESET disables the use of the keyboard controller to # reset the CPU for reboot. This is needed on some systems with broken # keyboard controllers. # # PAS_JOYSTICK_ENABLE enables the gameport on the ProAudio Spectrum options "AUTO_EOI_1" #options "AUTO_EOI_2" options BOUNCE_BUFFERS options "MAXMEM=(128*1024)" #options "TUNE_1542" #options BROKEN_KEYBOARD_RESET #options PAS_JOYSTICK_ENABLE # Enable this and PCVT_FREEBSD for pcvt vt220 compatible console driver device vt0 at isa? port "IO_KBD" tty irq 1 vector pcrint options PCVT_FREEBSD=210 # pcvt running on FreeBSD >= 2.0.5 options XSERVER # support for running an X server. options FAT_CURSOR # start with block cursor # This PCVT option is for keyboards such as those used on IBM ThinkPad laptops options PCVT_SCANSET=2 # IBM keyboards are non-std # The syscons console driver (sco color console compatible) - default. device sc0 at isa? port "IO_KBD" tty irq 1 vector scintr options MAXCONS=16 # number of virtual consoles options SLOW_VGA # do byte-wide i/o's to TS and GDC regs options "STD8X16FONT" # Compile font in makeoptions "STD8X16FONT"="cp850" # # `flags' for sc0: # 0x01 Use a 'visual' bell # 0x02 Use a 'blink' cursor # 0x04 Use a 'underline' cursor # 0x06 Use a 'blinking underline' (destructive) cursor # 0x08 Force detection of keyboard, else we always assume a keyboard # 0x10 Old-style (XT) keyboard support, useful for older ThinkPads # 0x20 Don't reset keyboard, useful for some newer ThinkPads # # The Numeric Processing eXtension driver. This should be configured if # your machine has a math co-processor, unless the coprocessor is very # buggy. If it is not configured then you *must* configure math emulation # (see above). If both npx0 and emulation are configured, then only npx0 # is used (provided it works). device npx0 at isa? port "IO_NPX" iosiz 0x0 flags 0x0 irq 13 vector npxintr # # `flags' for npx0: # 0x01 don't use the npx registers to optimize bcopy # 0x02 don't use the npx registers to optimize bzero # 0x04 don't use the npx registers to optimize copyin or copyout. # The npx registers are normally used to optimize copying and zeroing when # all of the following conditions are satisfied: # "I586_CPU" is an option # the cpu is an i586 (perhaps not a Pentium) # the probe for npx0 succeeds # INT 16 exception handling works. # Then copying and zeroing using the npx registers is normally 30-100% faster. # The flags can be used to control cases where it doesn't work or is slower. # Setting them at boot time using userconfig works right (the optimizations # are not used until later in the bootstrap when npx0 is attached). # # # `iosiz' for npx0: # This can be used instead of the MAXMEM option to set the memory size. If # it is nonzero, then it overrides both the MAXMEM option and the memory # size reported by the BIOS. Setting it at boot time using userconfig takes # effect on the next reboot after the change has been recorded in the kernel # binary (the size is used early in the boot before userconfig has a chance # to change it). # # # Optional ISA and EISA devices: # # # SCSI host adapters: `aha', `aic', `bt', `nca' # # aha: Adaptec 154x # ahc: Adaptec 274x/284x/294x # aic: Adaptec 152x and sound cards using the Adaptec AIC-6360 (slow!) # bt: Most Buslogic controllers # nca: ProAudioSpectrum cards using the NCR 5380 or Trantor T130 # uha: UltraStore 14F and 34F # sea: Seagate ST01/02 8 bit controller (slow!) # wds: Western Digital WD7000 controller (no scatter/gather!). # # Note that the order is important in order for Buslogic cards to be # probed correctly. # controller bt0 at isa? port "IO_BT0" bio irq ? vector bt_isa_intr controller aha0 at isa? port "IO_AHA0" bio irq ? drq 5 vector ahaintr controller uha0 at isa? port "IO_UHA0" bio irq ? drq 5 vector uhaintr controller aic0 at isa? port 0x340 bio irq 11 vector aicintr controller nca0 at isa? port 0x1f88 bio irq 10 vector ncaintr controller nca1 at isa? port 0x1f84 controller nca2 at isa? port 0x1f8c controller nca3 at isa? port 0x1e88 controller nca4 at isa? port 0x350 bio irq 5 vector ncaintr controller sea0 at isa? bio irq 5 iomem 0xdc000 iosiz 0x2000 vector seaintr controller wds0 at isa? port 0x350 bio irq 15 drq 6 vector wdsintr # # ST-506, ESDI, and IDE hard disks: `wdc' and `wd' # # NB: ``Enhanced IDE'' is NOT supported at this time. # # The flags fields are used to enable the multi-sector I/O and # the 32BIT I/O modes. The flags may be used in either the controller # definition or in the individual disk definitions. The controller # definition is supported for the boot configuration stuff. # # Each drive has a 16 bit flags value defined: # The low 8 bits are the maximum value for the multi-sector I/O, # where 0xff defaults to the maximum that the drive can handle. # The high bit of the 16 bit flags (0x8000) allows probing for # 32 bit transfers. # # The flags field for the drives can be specified in the controller # specification with the low 16 bits for drive 0, and the high 16 bits # for drive 1. # e.g.: #controller wdc0 at isa? port "IO_WD1" bio irq 14 flags 0x00ff8004 vector wdintr # # specifies that drive 0 will be allowed to probe for 32 bit transfers and # a maximum multi-sector transfer of 4 sectors, and drive 1 will not be # allowed to probe for 32 bit transfers, but will allow multi-sector # transfers up to the maximum that the drive supports. # # controller wdc0 at isa? port "IO_WD1" bio irq 14 vector wdintr disk wd0 at wdc0 drive 0 disk wd1 at wdc0 drive 1 controller wdc1 at isa? port "IO_WD2" bio irq 15 vector wdintr disk wd2 at wdc1 drive 0 disk wd3 at wdc1 drive 1 # # Options for `wdc': # # CMD640 enables serializing access to primary and secondary channel # of the CMD640B IDE Chip. The serializing will only take place # if this option is set *and* the chip is probed by the pci-system. # options "CMD640" #Enable work around for CMD640 h/w bug # # ATAPI enables the support for ATAPI-compatible IDE devices # options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC #Don't do it as an LKM # IDE CD-ROM driver - requires wdc controller and ATAPI option device wcd0 # # Standard floppy disk controllers and floppy tapes: `fdc', `fd', and `ft' # controller fdc0 at isa? port "IO_FD1" bio irq 6 drq 2 vector fdintr # # Activate this line instead of the fdc0 line above if you happen to # have an Insight floppy tape. Probing them proved to be dangerous # for people with floppy disks only, so it's "hidden" behind a flag: #controller fdc0 at isa? port "IO_FD1" bio flags 1 irq 6 drq 2 vector fdintr disk fd0 at fdc0 drive 0 disk fd1 at fdc0 drive 1 tape ft0 at fdc0 drive 2 # # Options for `fd': # # FDSEEKWAIT selects a non-default head-settle time (i.e., the time to # wait after a seek is performed). The default value (1/32 s) is # usually sufficient. The units are inverse seconds, so a value of 16 # here means to wait 1/16th of a second; you should choose a power of # two. # XXX: this seems to be missing! options FDSEEKWAIT=16 # # Other standard PC hardware: `lpt', `mse', `psm', `sio', etc. # # lpt: printer port # lpt specials: # port can be specified as ?, this will cause the driver to scan # the BIOS port list; # the irq and vector clauses may be omitted, this # will force the port into polling mode. # mse: Logitech and ATI InPort bus mouse ports # psm: PS/2 mouse port [note: conflicts with sc0/vt0, thus "conflicts" keywd] # sio: serial ports (see sio(4)) device lpt0 at isa? port? tty irq 7 vector lptintr device lpt1 at isa? port "IO_LPT3" tty irq 5 vector lptintr device mse0 at isa? port 0x23c tty irq 5 vector mseintr device psm0 at isa? port "IO_KBD" conflicts tty irq 12 vector psmintr # Options for psm: options PSM_CHECKSYNC #checks the header byte for sync. options PSM_HOOKAPM #hook the APM resume event, useful #for some laptops options PSM_RESETAFTERSUSPEND #reset the device at the resume event device sio0 at isa? port "IO_COM1" tty flags 0x10 irq 4 vector siointr # # `flags' for serial drivers that support consoles (only for sio now): # 0x10 enable console support for this unit. The other console flags # are ignored unless this is set. Enabling console support does # not make the unit the preferred console - boot with -h or set # the 0x20 flag for that. Currently, at most one unit can have # console support; the first one (in config file order) with # this flag set is preferred. Setting this flag for sio0 gives # the old behaviour. # 0x20 force this unit to be the console (unless there is another # higher priority console). This replaces the COMCONSOLE option. # 0x40 reserve this unit for low level console operations. Do not # # Options for serial drivers that support consoles (only for sio now): options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to #DDB, if available. options CONSPEED=9600 #default speed for serial console (default 9600) # Options for sio: options COM_ESP #code for Hayes ESP options COM_MULTIPORT #code for some cards with shared IRQs options DSI_SOFT_MODEM #code for DSI Softmodems # Other flags for sio that aren't documented in the man page. # 0x20000 enable hardware RTS/CTS and larger FIFOs. Only works for # ST16650A-compatible UARTs. # # Network interfaces: `cx', `ed', `el', `ep', `ie', `is', `le', `lnc' # # ar: Arnet SYNC/570i hdlc sync 2/4 port V.35/X.21 serial driver (requires sppp) # cx: Cronyx/Sigma multiport sync/async (with Cisco or PPP framing) # ed: Western Digital and SMC 80xx; Novell NE1000 and NE2000; 3Com 3C503 # el: 3Com 3C501 (slow!) # ep: 3Com 3C509 (buggy) # fe: Fujitsu MB86960A/MB86965A Ethernet # ie: AT& T StarLAN 10 and EN100; 3Com 3C507; unknown NI5210 # le: Digital Equipment EtherWorks 2 and EtherWorks 3 (DEPCA, DE100, # DE101, DE200, DE201, DE202, DE203, DE204, DE205, DE422) # lnc: Lance/PCnet cards (Isolan, Novell NE2100, NE32-VL) # sr: RISCom/N2 hdlc sync 1/2 port V.35/X.21 serial driver (requires sppp) # wl: Lucent Wavelan (ISA card only). # ze: IBM/National Semiconductor PCMCIA ethernet controller. # zp: 3Com PCMCIA Etherlink III (It does not require shared memory for # send/receive operation, but it needs 'iomem' to read/write the # attribute memory) # device ar0 at isa? port 0x300 net irq 10 iomem 0xd0000 vector arintr device cx0 at isa? port 0x240 net irq 15 drq 7 vector cxintr device ed0 at isa? port 0x280 net irq 5 iomem 0xd8000 vector edintr device eg0 at isa? port 0x310 net irq 5 vector egintr device el0 at isa? port 0x300 net irq 9 vector elintr device ep0 at isa? port 0x300 net irq 10 vector epintr device ex0 at isa? port? net irq? vector exintr device fe0 at isa? port 0x300 net irq ? vector feintr device ie0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector ieintr device ie1 at isa? port 0x360 net irq 7 iomem 0xd0000 vector ieintr device le0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector le_intr device lnc0 at isa? port 0x300 net irq 10 drq 0 vector lncintr device sr0 at isa? port 0x300 net irq 5 iomem 0xd0000 vector srintr options WLCACHE # enables the signal-strength cache options WLDEBUG # enables verbose debugging output device wl0 at isa? port 0x300 net irq ? vector wlintr # Needed so that we can (bogusly) include both the dedicated PCCARD # drivers and the generic support options LINT_PCCARD_HACK device ze0 at isa? port 0x300 net irq 5 iomem 0xd8000 vector zeintr device zp0 at isa? port 0x300 net irq 10 iomem 0xd8000 vector zpintr # # ATM related options # # The `en' device provides support for Efficient Networks (ENI) # ENI-155 PCI midway cards, and the Adaptec 155Mbps PCI ATM cards (ANA-59x0). # # atm pseudo-device provides generic atm functions and is required for # atm devices. # NATM enables the netnatm protocol family that can be used to # bypass TCP/IP. # # the current driver supports only PVC operations (no atm-arp, no multicast). # for more details, please read the original documents at # http://www.ccrc.wustl.edu/pub/chuck/bsdatm/wucs.html # pseudo-device atm device en0 device en1 options NATM #native ATM # # Audio drivers: `snd', `sb', `pas', `gus', `pca' # # snd: Voxware sound support code # sb: SoundBlaster PCM - SoundBlaster, SB Pro, SB16, ProAudioSpectrum # sbxvi: SoundBlaster 16 # sbmidi: SoundBlaster 16 MIDI interface # pas: ProAudioSpectrum PCM and MIDI # gus: Gravis Ultrasound - Ultrasound, Ultrasound 16, Ultrasound MAX # gusxvi: Gravis Ultrasound 16-bit PCM (do not use) # mss: Microsoft Sound System # opl: Yamaha OPL-2 and OPL-3 FM - SB, SB Pro, SB 16, ProAudioSpectrum # uart: stand-alone 6850 UART for MIDI # mpu: Roland MPU-401 stand-alone card # # Beware! The addresses specified below are also hard-coded in # i386/isa/sound/sound_config.h. If you change the values here, you # must also change the values in the include file. # # pca: PCM audio through your PC speaker # # If you don't have a lpt0 device at IRQ 7, you can remove the # ``conflicts'' specification in the appropriate device entries below. # # If you have a GUS-MAX card and want to use the CS4231 codec on the # card the drqs for the gus max must be 8 bit (1, 2, or 3). # # If you would like to use the full duplex option on the gus, then define # flags to be the ``read dma channel''. # # options BROKEN_BUS_CLOCK #PAS-16 isn't working and OPTI chipset # options SYMPHONY_PAS #PAS-16 isn't working and SYMPHONY chipset # options EXCLUDE_SBPRO #PAS-16 # options SBC_IRQ=5 #PAS-16. Must match irq on sb0 line. # PAS16: The order of the pas0/sb0/opl0 is important since the # sb emulation is enabled in the pas-16 attach. # # The i386/isa/sound/sound.doc has more information. # Controls all sound devices controller snd0 device pas0 at isa? port 0x388 irq 10 drq 6 vector pasintr device sb0 at isa? port 0x220 irq 5 drq 1 vector sbintr device sbxvi0 at isa? drq 5 device sbmidi0 at isa? port 0x330 device awe0 at isa? port 0x620 device gus0 at isa? port 0x220 irq 12 drq 1 vector gusintr #device gus0 at isa? port 0x220 irq 12 drq 1 flags 0x3 vector gusintr device mss0 at isa? port 0x530 irq 10 drq 1 vector adintr device opl0 at isa? port 0x388 device mpu0 at isa? port 0x330 irq 6 drq 0 device uart0 at isa? port 0x330 irq 5 vector "m6850intr" # More undocumented sound devices with bogus configurations for linting. # broken #device sscape0 at isa? port 0x330 irq 6 drq 0 #device trix0 at isa? port 0x330 irq 6 drq 0 vector sscapeintr # Not controlled by `snd' device pca0 at isa? port IO_TIMER1 tty # # Miscellaneous hardware: # # mcd: Mitsumi CD-ROM # scd: Sony CD-ROM # matcd: Matsushita/Panasonic CD-ROM # wt: Wangtek and Archive QIC-02/QIC-36 tape drives # ctx: Cortex-I frame grabber # apm: Laptop Advanced Power Management (experimental) # spigot: The Creative Labs Video Spigot video-acquisition board # meteor: Matrox Meteor video capture board # bktr: Bt848 capture boards (http://www.freebsd.org/~fsmp/HomeAuto/Bt848.html) # cy: Cyclades serial driver # dgb: Digiboard PC/Xi and PC/Xe series driver (ALPHA QUALITY!) # gp: National Instruments AT-GPIB and AT-GPIB/TNT board # asc: GI1904-based hand scanners, e.g. the Trust Amiscan Grey # gsc: Genius GS-4500 hand scanner. # joy: joystick # labpc: National Instrument's Lab-PC and Lab-PC+ # rc: RISCom/8 multiport card # tw: TW-523 power line interface for use with X-10 home control products # si: Specialix SI/XIO 4-32 port terminal multiplexor # stl: Stallion EasyIO and EasyConnection 8/32 (cd1400 based) # stli: Stallion EasyConnection 8/64, ONboard, Brumby (intelligent) # # Notes on APM # The flags takes the following meaning for apm0: # 0x0020 Statclock is broken. # 0x0011 Limit APM protocol to 1.1 or 1.0 # 0x0010 Limit APM protocol to 1.0 # # # Notes on the spigot: # The video spigot is at 0xad6. This port address can not be changed. # The irq values may only be 10, 11, or 15 # I/O memory is an 8kb region. Possible values are: # 0a0000, 0a2000, ..., 0fffff, f00000, f02000, ..., ffffff # The start address must be on an even boundary. # Add the following option if you want to allow non-root users to be able # to access the spigot. This option is not secure because it allows users # direct access to the I/O page. # options SPIGOT_UNSECURE # # Notes on the Digiboard driver: # # The following flag values have special meanings: # 0x01 - alternate layout of pins # 0x02 - use the windowed PC/Xe in 64K mode # Notes on the Specialix SI/XIO driver: # **This is NOT a Specialix supported Driver!** # The host card is memory, not IO mapped. # The Rev 1 host cards use a 64K chunk, on a 32K boundary. # The Rev 2 host cards use a 32K chunk, on a 32K boundary. # The cards can use an IRQ of 11, 12 or 15. # Notes on the Stallion stl and stli drivers: # See src/i386/isa/README.stl for complete instructions. # This is version 0.0.5alpha, unsupported by Stallion. # The stl driver has a secondary IO port hard coded at 0x280. You need # to change src/i386/isa/stallion.c if you reconfigure this on the boards. # The "flags" and "iosiz" settings on the stli driver depend on the board: # EasyConnection 8/64 ISA: flags 23 iosiz 0x1000 # EasyConnection 8/64 EISA: flags 24 iosiz 0x10000 # EasyConnection 8/64 MCA: flags 25 iosiz 0x1000 # ONboard ISA: flags 4 iosiz 0x10000 # ONboard EISA: flags 7 iosiz 0x10000 # ONboard MCA: flags 3 iosiz 0x10000 # Brumby: flags 2 iosiz 0x4000 # Stallion: flags 1 iosiz 0x10000 device mcd0 at isa? port 0x300 bio irq 10 vector mcdintr # for the Sony CDU31/33A CDROM device scd0 at isa? port 0x230 bio # for the SoundBlaster 16 multicd - up to 4 devices controller matcd0 at isa? port 0x230 bio device wt0 at isa? port 0x300 bio irq 5 drq 1 vector wtintr device ctx0 at isa? port 0x230 iomem 0xd0000 device spigot0 at isa? port 0xad6 irq 15 iomem 0xee000 vector spigintr device qcam0 at isa? port "IO_LPT3" tty device apm0 at isa? device gp0 at isa? port 0x2c0 tty device gsc0 at isa? port "IO_GSC1" tty drq 3 device joy0 at isa? port "IO_GAME" device cy0 at isa? tty irq 10 iomem 0xd4000 iosiz 0x2000 vector cyintr device dgb0 at isa? port 0x220 iomem 0xfc0000 iosiz ? tty device labpc0 at isa? port 0x260 tty irq 5 vector labpcintr device rc0 at isa? port 0x220 tty irq 12 vector rcintr # the port and irq for tw0 are fictitious device tw0 at isa? port 0x380 tty irq 11 vector twintr device si0 at isa? iomem 0xd0000 tty irq 12 vector siintr device asc0 at isa? port IO_ASC1 tty drq 3 irq 10 vector ascintr device bqu0 at isa? port 0x150 device stl0 at isa? port 0x2a0 tty irq 10 vector stlintr device stli0 at isa? port 0x2a0 tty iomem 0xcc000 flags 23 iosiz 0x1000 # # EISA devices: # # The EISA bus device is eisa0. It provides auto-detection and # configuration support for all devices on the EISA bus. # # The `ahb' device provides support for the Adaptec 174X adapter. # # The `ahc' device provides support for the Adaptec 274X and 284X # adapters. The 284X, although a VLB card responds to EISA probes. # # fea: DEC DEFEA EISA FDDI adapter # controller eisa0 controller ahb0 controller ahc0 device fea0 # enable tagged command queuing, which is a major performance win on # devices that support it (and controllers with enough SCB's) options AHC_TAGENABLE # enable SCB paging - See the ahc.4 man page options AHC_SCBPAGING_ENABLE # The aic7xxx driver will attempt to use memory mapped I/O for all PCI # controllers that have it configured only if this option is set. Unfortunately, # this doesn't work on some motherboards, which prevents it from being the # default. options AHC_ALLOW_MEMIO # By default, only 10 EISA slots are probed, since the slot numbers # above clash with the configuration address space of the PCI subsystem, # and the EISA probe is not very smart about this. This is sufficient # for most machines, but in particular the HP NetServer LC series comes # with an onboard AIC7770 dual-channel SCSI controller on EISA slot #11, # thus you need to bump this figure to 12 for them. options "EISA_SLOTS=12" # # PCI devices: # # The main PCI bus device is `pci'. It provides auto-detection and # configuration support for all devices on the PCI bus, using either # configuration mode defined in the PCI specification. # # The `ahc' device provides support for the Adaptec 29/3940(U)(W) # and motherboard based AIC7870/AIC7880 adapters. # # The `ncr' device provides support for the NCR 53C810 and 53C825 # self-contained SCSI host adapters. # # The `amd' device provides support for the Tekram DC-390 and 390T # SCSI host adapters, but is expected to work with any AMD 53c974 # PCI SCSI chip and the AMD Ethernet+SCSI Combo chip, after some # local patches were applied to the sources (that had originally # been written by Tekram and limited to work with their SCSI cards). # # The `de' device provides support for the Digital Equipment DC21040 # self-contained Ethernet adapter. # # The `fxp' device provides support for the Intel EtherExpress Pro/100B # PCI Fast Ethernet adapters. # # The `vx' device provides support for the 3Com 3C590 and 3C595 # early support # # The `fpa' device provides support for the Digital DEFPA PCI FDDI # adapter. pseudo-device fddi is also needed. # # The `meteor' device is a PCI video capture board. It can also have the # following options: # options METEOR_ALLOC_PAGES=xxx preallocate kernel pages for data entry # figure (ROWS*COLUMN*BYTES_PER_PIXEL*FRAME+PAGE_SIZE-1)/PAGE_SIZE # options METEOR_DEALLOC_PAGES remove all allocated pages on close(2) # options METEOR_DEALLOC_ABOVE=xxx remove all allocated pages above the # specified amount. If this value is below the allocated amount no action # taken # option METEOR_SYSTEM_DEFAULT={METEOR_PAL|METEOR_NTSC|METEOR_SECAM}, used # for initialization of fps routine when a signal is not present. # # The 'bktr' device is a PCI video capture board. It also has a TV tuner # on board. # controller pci0 controller ahc1 controller ncr0 controller amd0 device de0 device fxp0 device vx0 device fpa0 device meteor0 device bktr0 # # PCCARD/PCMCIA # # crd: slot controller # pcic: slots controller crd0 controller pcic0 at crd? controller pcic1 at crd? # # Laptop/Notebook options: # # See also: # apm under `Miscellaneous hardware' # above. # For older notebooks that signal a powerfail condition (external # power supply dropped, or battery state low) by issuing an NMI: options POWERFAIL_NMI # make it beep instead of panicing # Kernel BOOTP support options BOOTP # Use BOOTP to obtain IP address/hostname options BOOTP_NFSROOT # NFS mount root filesystem using BOOTP info options "BOOTP_NFSV3" # Use NFS v3 to NFS mount root options BOOTP_COMPAT # Workaround for broken bootp daemons. # # An obsolete option to test kern_opt.c. # options GATEWAY # More undocumented options for linting. options CLK_CALIBRATION_LOOP options "CLK_USE_I8254_CALIBRATION" options "CLK_USE_I586_CALIBRATION" options CLUSTERDEBUG options COMPAT_LINUX options CPU_UPGRADE_HW_CACHE options DEBUG options DEVFS_ROOT options "EXT2FS" options "I586_CTR_GUPROF" options "I586_PMC_GUPROF=0x70000" options "IBCS2" options LOCKF_DEBUG options KBD_MAXRETRY=4 options KBD_MAXWAIT=6 options KBD_RESETDELAY=201 options KBDIO_DEBUG=2 options MSGMNB=2049 options MSGMNI=41 options MSGSEG=2049 options MSGSSZ=16 options MSGTQL=41 options NBUF=512 options NMBCLUSTERS=1024 options NPX_DEBUG options PSM_ACCEL=1 options PSM_DEBUG=1 options PSM_EMULATION options "SCSI_2_DEF" options SCSI_DELAY=8 # Be pessimistic about Joe SCSI device options SCSI_NCR_DEBUG options SCSI_NCR_DFLT_TAGS=4 options SCSI_NCR_MAX_SYNC=10000 options SCSI_NCR_MAX_WIDE=1 options SCSI_NCR_MYADDR=7 options SEMMAP=31 options SEMMNI=11 options SEMMNS=61 options SEMMNU=31 options SEMMSL=61 options SEMOPM=101 options SEMUME=11 options SHOW_BUSYBUFS # List buffers that prevent root unmount options SHMALL=1025 options "SHMMAX=(SHMMAXPGS*PAGE_SIZE+1)" options SHMMAXPGS=1025 options SHMMIN=2 options SHMMNI=33 options SHMSEG=9 options SI_DEBUG options SIMPLELOCK_DEBUG options SPX_HACKQuick List of Common Commands *ls List Files in a Directory.catDisplay the contents of a filemvMove files cpCopy FilesrmRemove FilesmkdirMake a Directory.INDEXNot Yet ScheduledPackages Availablearchiversarc-5.21eCreate & extract files from DOS .ARC files.bzip-0.21A block-sorting file compressor.freeze-2.5FREEZE / MELT compression program - often used in QNXha-0.999bThe HA archiver using the HSC compression method.lha-1.14cArchive files using LZW compression (.lzh files).nulib-3.25NuFX archive utilityp5-Compress-Zlib-0.50perl5 interface to zlib compression library.sharutils-4.2Allow packing and unpacking of shell archives.unarj-2.41Allows files to be extracted from ARJ archives.unrar-2.01Extract, view & test RAR archives.unzip-5.3.1List, test and extract compressed files in a ZIP archive.zip-2.1Create/update ZIP files compatabile with pkzip.zoo-2.10.1Manipulate archives of files in compressed form.astroephem-4.28an interactive terminal-based astronomical ephemeris programluna-1.9Display her phase.sattrack-3.1.6Real-time satellite tracking and orbit propagation program.stars-1.0Star field demo.sunclock-1.3Shows which portion of the Earth's surface is illuminated by the Sun.xearth-1.0Set the root window to the image of earth.xephem-3.0an interactive astronomical ephemeris programxphoon-91.9.18Set the root window to the moon in its current phaseaudiocam-1.02Cpu's Audio Mixer [curses based]gsm-1.0.10Audio converter and library for converting u-law to gsm encoding.maplay-1.2An MPEG audio player/decoder that decodes layer I and II MPEG audio streams.mpegaudio-3.9An MPEG/audio Layer 1 and Layer 2 encoder/decoder package.mpg123-0.59kCommand-line player for mpeg layer 1, 2 and 3 audiomxv-1.10Sound file editor/player/recorder/converter for X Window System.nas-1.2.5Network Audio System.nspmod-0.1MOD/S3M/MTM tracker that does it's own DSP, uses VoxWare v2.90+radio-2.0.4Radio over the Internet.rosegarden-2.0The Rosegarden Editor and Sequencer suite.rplay-3.2.0b6Network audio player.rsynth-2.0Speech synthesizer.s3mod-1.08aMOD/S3M player.sox-12.12SOund eXchange - universal sound sample translator.timidity-0.2iMIDI to WAV renderer and playertosha-0.05Read CD digital audio data through the SCSI bus.workman-1.3Open Look-based CD player toolxcd-1.6A Tcl/Tk CD player.xcdplayer-2.2CD player for X.xgmod-2.0.2Gravis Ultrasound .MOD player with X Interface.xmix-2.1Mixer for X Window System.xmmix-1.2a Motif based audio mixerbenchmarksbonnie-1.0Performance Test of Filesystem I/O.bytebench-3.1The BYTE magazine benchmark suite.iozone-2.01Performance Test of Sequential File I/O.lmbench-1.1A system performance measurement toolxengine-1.0.1reciprocating engine for Xcadacs-0.21A general purpose circuit simulator.chipmunk-5.10An electronic CAD system.felt-3.02A system for Finite Element Analysisirsim-9.4.1An event-driven logic-level simulator for MOS circuis.magic-6.5An interactive editor for VLSI layouts.mars-2.1Maryland Routing Simulatorpcb-1.4.0X11 interactive printed circuit board layout systemspice-3f4A general-purpose circuit simulator.chinesecn-Wnn-4.2A Japanese/Chinese/Korean input method (only Chinese built)cn-c2t-1.0translates GB/Big5 encoding to tone pinyincn-celvis-1.3A vi/ex clone that speaks Chinesecn-cless-290A better pager utility (and it speaks Chinese)cn-cxterm-5.0.3An xterm that speaks Chinesecn-gb2ps-2.02converts Chinese GB (simple) encoded text to PostScriptcn-hc-3.0Hanzi Converter -- converts between GB and BIG-5 codescn-lunar-2.1convert between the Gregorian Solar Calendar (SC) and the Lunar Calendar (LC).cn-nvi-big5-1.79-970617A clone of vi/ex, with multilingual patch, default settings for big5.cn-nvi-euccn-1.79-970617A clone of vi/ex, with multilingual patch, default settings for euc-cn.cn-nvi-euctw-1.79-970617A clone of vi/ex, with multilingual patch, default settings for euc-tw.gbscript-1.11converts GB simplified Chinese text to PostScriptcommsbpl+-1.0B Plus file transfer protocolecu-4.07Extended Call Utilityhylafax-4.0.1A fax software.lrzsz-0.12.16Receive/Send files via X/Y/ZMODEM protocol. (unrestrictive)mgetty-1.0.0Handle external logins, send and receive faxes.minicom-1.75An MS-DOS Telix serial communication program "workalike".seyon-2.14bA communications package for the X Window system.snooper-970212serial line protocol analyzer (need two serial interfaces)tkhylafax-3.0a tcl/tk interface to Sam Leffler's fax packagexcept-2.1.2a decoder for the CEPT (Btx) protocolzmtx-zmrx-1.02Receive/Send files via ZMODEM protocol. (unrestrictive)convertersbtoa-5.2.1Encode/decode binary to printable ASCII.mimepp-0.8.0C++ class library for MIME messagesmpack-1.5External MIME packer/unpacker.p5-Convert-UU-0.04perl5 module for uuencode and uudecode.recode-3.4Converts files between character sets and usages.uudeview-0.5.13A program for uu/xx/Base64/BinHex de-/encoding.uudx-2.99Extractor from uuencoded files.uulib-0.5.13A library for uu/xx/Base64/BinHex de-/encoding.xdeview-0.5.13An X11 program for uu/xx/Base64/BinHex de-/encoding.databasesdb-2.1.0the Berkeley DB package, revision 2gdbm-1.7.3The GNU database manager.mysql-3.20.22a multithreaded SQL database.p5-DBD-Pg-0.3provides access to PostgreSQL databases through the DBIp5-DBD-mysql-1.65perl5 module for accessing MySQL databases using DBIp5-DBI-0.85the perl5 Database Interface. Required for DBDp5-Msql-0.91perl5 modules for accessing MiniSQL (mSQL) databases.p5-Mysql-1.17perl5 interface to the MySQL databasep5-Pg-1.5.4an interface between perl5 and the database Postgres95.typhoon-1.10.3a relational database librarydevelasl-1.41r6Assembler for a variety of microcontrollers/-processors.autoconf-2.12Automatically configure source code on many Un*x platformsautomake-1.0GNU Standards-compliant Makefile generatorbcc-95.3.12Bruce's C compiler (with as and ld); can do 16-bit codeboehm-gc-4.10Garbage collection and memory leak detection for C and C++.cflow-2.0A call graph generator for C code.cgiparse-0.8cC library to parse CGI Formscrossgo32-1.3Cross Development Environment for 32-bit DOScrosssco-1.3SCO (R) Cross Development Environmentcs-0.3Interactively examine C source codecutils-1.4Miscellaneous C programmer's utilitiescvsup-15.1A network file distribution and update system for CVS repositories.cxref-1.4C program cross-referencing & documentation tool.ddd-2.1.1Data Display Debugger -- a common graphical front-end for GDB/DBX/XDBdlmalloc-2.6.4Small, fast malloc library by Doug Lea.dmake-4.0Another hyper make utility.f77flow-0.12Analyze the structure of a fortran77 programfpp-1.0Fortran preprocessor for FORTRAN 77 and Fortran 90 programs.gcc11-2.6.3The gcc-2.6.3 cross-compiler for the 6811gdbtk-4.16Tk interface to gdb.gmake-3.75GNU version of 'make' utilityid-utils-3.2The classic Berkeley gid/lid tools for looking up variables in code.lclint-2.2aA tool for statically checking C programs.libident-0.20A small library to interface the ident protocol server (rfc1413).libmalloc-1.18Small, fast malloc library with comprehensive error checkinglibslang-0.99.38Routines for rapid alpha-numeric terminal applications developmentlinux_devel-0.2Linux cross development packagelinuxgdb-4.16A Linux debugger for cross-development purposes.m4-1.4GNU's m4.mkmf-4.11Creates program and library makefiles for the make(1) command.mprof-3.0Memory Profiler and Leak Detector.noweb-2.8A simple, extensible literate-programming tool.omniBroker-1.0A CORBA 2 implementationomniORB-2.2.0A CORBA 2 implementationp5-B-a3a perl compiler kit, alpha release. Write a c source code from a perl script.p5-BSD-Resource-1.06perl5 module to access BSD process resource limit and priority functions.p5-C-Scan-0.3perl5 module to scan C language files for easily recognized constructs.p5-ConfigReader-0.5perl5 module to read directives from a configuration file.p5-Curses-1.01perl5 module for terminal screen handling and optimization.p5-Data-Dumper-2.07perl5 module for stringified perl data structures.p5-Data-Flow-0.04Perl extension for simple-minded recipe-controlled build of data.p5-Date-Manip-5.10perl5 module containing date manipulation routinesp5-Devel-DProf-19970614a Perl code profilerp5-Devel-Peek-0.82a perl5 data debugging tool for the XS programmerp5-Devel-Symdump-2.00a perl5 module that dumps symbol names or the symbol tablep5-Errno-1.01a perl5 module providing access to System errno constantsp5-File-BasicFlock-96.072401perl5 module for file locking with flock.p5-File-Lock-0.9perl5 module for file locking (flock,fcntl).p5-File-Slurp-96.042202perl5 module for single call read & write file routines.p5-File-Tools-2.0perl5 module for several file operationsp5-Filter-1.12a number of source filters for perl5 programsp5-Include-1.02aperl5 package which allows the use of macros defined in 'C' header files.p5-IniConf-0.91perl5 module for reading .ini-style configuration files.p5-Ioctl-0.7perl5 module for getting the value of the C Ioctl constants.p5-Penguin-3.00a framework for passing digitally signed perl5 code between machines.p5-Penguin-Easy-1.1a quick and easy implemention of the p5-Penguin modulep5-Proc-Simple-1.12perl5 module to launch and control background processesp5-Religion-1.04perl5 module to install die() and warn() handlers.p5-Resources-1.04perl5 module handling application defaults in Perl.p5-Sort-Versions-1.1a perl 5 module for sorting of revision-like numbersp5-Storable-0.5persistency for perl data structuresp5-Term-ReadKey-2.07a perl5 module for simple terminal controlp5-Time-960117a collection of functions to convert and use time variables in perl5p5-TraceFuncs-0.1a perl5 module to trace function calls as they happen.pccts-1.33The Purdue Compiler Construction Tool Setprcs-1.1.1The Project Revision Control Systemsawt-0.4.2A cleanroom AWT implementation for Kaffescogdb-4.16An SCO debugger for cross-development purposes.tclcheck-1.1.8A program to check the nesting of parenthesis in tcl scripts.tkcvs-6.0Tcl/Tk frontends to CVS and diff tvision-0.4The Turbo Vision C++ CUI library for UNIXvtcl-1.10An Application Development Environment For the TCL/TK language.xmake-1.01A powerful make utilityxwpe-1.4.2A Borland-like IDE programming environment.xxgdb-1.12An X window interface for gdbeditorsaXe-6.1.2Simple to use text editor for X.asedit-1.3.2Text editor for X/Motif.bpatch-1.0A hex editor that doesn't load the file at once.e93-1.2.6A nifty editor based on Tcl/Tkemacs-19.34bGNU editing macros.gvim-4.6A vi "workalike", with many additional features.jed-0.98.4The JED text editorjoe-2.8Joe's own editor.jove-4.16Jonathan's Own Version of Emacs.mule-2.3A multilingual emacsnedit-4.0.3An X11/Motif GUI text editor for programs and plain text files.staroffice-3.1Integrated wordprocessor/spreadheet/drawing/charting/web browser suite.uemacs-3.12A full screen editor.vile-7.1VI Like Emacs. a vi "workalike", with many additional features.vim-4.6A vi "workalike", with many additional features.xed-1.3A text editor for X.xemacs-19.15.7XEmacs text editor binariesxvile-7.1VI Like Emacs, X11 version -- a fully "X aware" vi work-alikeemulatorsaftp-1.0A ftp-like shell for accessing Apple II disk images.bsvc-2.0An extensible hardware simulation framework with MC68K supportcpmemu-0.2Cpm emulator.cpmtools-1.1Utility to transfer files from/to CP/M (R) diskettes.hfs-0.37Read Macintosh HFS floppy disks, hard drives and CDROMs.ines-0.6Nintendo Entertainment System emlator for Xlinux_lib-2.4These are the libraries necessary for linux compatibility.macutils-2.0b3Utilities for Apple Macintosh files.mastergear-1.0SEGA Master System and Game Gear emulator for Xmtools-3.6A collection of tools for manipulating MSDOS files.pcemu-1.01aAn 8086 PC emulator, by David Hedleysim6811-1.6A Motorola 6811 simulator.spim-5.9MIPS R2000 Simulatortkhfs-1.27A Tcl/Tk front end to the hfs program. vgb-0.7Nintendo GameBoy(tm) emulatorvmsbackup-3.0Reads VMS BACKUP tapes.x48-0.4.0an HP48sx emulatorgamesacm-4.7A flight simulator for X11agm-1.1AnaGram search utilityan-0.93fast anagram generatorangband-2.8.1Rogue-like game with color, X11 support.block-0.5Small text based maze gameblue-2.3A Blue Moon card solitairebs-2.1Battleships solitaire game with a color interfaceconnect4-3.2A curses version of the classic game.cosmo-2.0.4Clone of Cosmo Gang the Puzzle (Namco)crossfire-0.93.0multiplayer graphical arcade and adventure game made for X-Windowsdontspace-1.2A solitaire game for X11 modeled after Free Space.doom-1.8Id Software's Doom for linuxempire-1.1Solitaire empire game `VMS Empire'flying-6.20Pool/snooker/billiards/carrom/etc game.freeciv-1.0jA civilisation clone for x; multiplayergalaxis-1.1Clone of the nifty little Macintosh gamegnuchess-4.0.77"Classic" Gnu Chessgnugo-1.2The game of Go.gnushogi-1.2.3GNU version of Shogigolddig-2.0Getting the Gold and Avoiding Death.imaze-1.3A multi-player network action game for TCP/IP with 3D graphics.jetpack-1.0Arcade action game for X Windows.klondike-1.8A solitaire game for X11.lincity-1.04rich city simulation game for Xnethack-3.2.2-qtA dungeon explorin', slashin', hackin' game with graphic and sound supportnethack-3.2.2A dungeon explorin', slashin', hackin' game.netris-0.4A network head to head version of T*tris.oneko-1.2A cat chasing a mouse all over the screenoonsoo-1.1A solitaire card game for X.qcc-1.01The QuakeC compiler, for building custom games of Quake.quakeserver-1.0a server to host Quake network games under FreeBSD.sokoban-1.0Logical gamespider-1.1A challenging double decked solitaire gamestarlanes-1.2.2The classic space-age stock trading gametksol-1.0A version of the card game solitaire.xasteroids-5.0X windows based asteroids style arcade gamexbat-1.11XEVIOUS like shooting gamexbattle-5.4.1A concurrent multi-player battle strategy gamexbill-2.0Save your computers from the evil clutches of Billxbl-1.0hXBlockout - A 3d version of Tetrisxblackjack-2.2an X11/Motif blackjack gamexblast-2.2graphical multi-player real-time strategy game for X11xboing-2.3X windows arcade game.xchomp-pl1Pac-man-like game under X Windowsxcubes-5.4.1cube puzzle for X-Windowxdeblock-1.0block action gamexdino-5.4.1dino puzzle game for X-Windowxemeraldia-0.3A game of breaking blocksxevil-1.5A side-view, fast-action, kill everything type of game. xeyes+-2.01Horrible eyes looking at your mouse cursorxfrisk-0.99b4A multi-player networked Risk game for X11.xgalaga-1.6cGalaga resurrected on Xxgammon-0.98A backgammon program for X11.xinvaders-1.1Shoot-em-up them nasty little bugs.xjewel-1.6X windows dropping jewels game.xkobo-1.9Multi-way scrolling shoot 'em up game for X. Strangely addictive.xlife-3.0John Horton Conway's Game of Lifexmahjongg-1.0The Chinese game of Mahjongg for X11xmille-2.0X window mille bourne gamexmine-1.0.3The `Athena' port of the xminesweeper gamexminehunter-0.4A Motif minesweeper game.xminesweep-3.0X windows minesweeper game.xmj-1.0Mahjonggxmris-4.04A version of the Mr Do video arcade game for X11.xonix-1.4Try to win land without colliding with `flyers' and `eaters'.xpacman-1.0An old action game.xpat2-1.04An X11 solitaire game with 14 variations.xpilot-3.6.1xpilot(client) and xpilots(server)xpipeman-1.0Connect the pipes to stop the leaks.xpuzzletama-1.5Puzzle tama, a tetris like gamexripple-1.0Nifty X program to make the screen bottom ripple like a pool of water.xrobots-1.0Fight off villainous robots (X version).xrubik-5.4.1X-based rubik's cube(tm)xshisen-1.35Shisen-sho puzzle game for X11xshogi-1.2.3The Japanese chess-like game for X Window System.xskat-1.6Play the card game Skat.xsokoban-3.3ba puzzle of pushing objects to the goals.xsol-2.1.1Solitaire.xsoldier-0.96shooting game for x11xspringies-1.1a mass and spring simulation system.xtic-1.12An X version of a simple but tricky board gamextriangles-5.4.1Triangles puzzleyahtzee-1.0A curses version of the dice game for one or more players.yamsweeper-1.9Yet Another Mine Sweeper.ztrack-1.0Simple ncurses based pseudo-3D driving gamegraphicsImageMagick-3.8.6An X11 package for display and interactive manipulation of images.Mesa-2.1A graphics library similar to SGI's OpenGL.aero-1.5.2An X11 based modeler for povraygd-1.2A graphics library for fast GIF creationgeomview-1.6.1an interactive viewer for 3- and 4-D geometric objectsgiflib-2.3Tools and library routines for working with GIF images.gifmerge-1.33A tool for making a GIF Animation.giftool-1.0a tool for GIF89a transparent option and interlace modegiftrans-1.12a tool for GIF89a transparent option and inerlace mode.gimp-0.54.1General Image Manipulation Programgimp-0.99.10developer's beta release of the General Image Manipulation Programhobbes-icons-xpm3-1.0collection of over 3000 icons in XPM1 or XPM3 format.hpscan-1.0HP scanner driver.imlib-0.1a graphic library for enlightenment packagejbigkit-0.9A lossless image compression libraryjpeg-6aIJG's jpeg compression utilities.mpeg2codec-1.2An MPEG-2 Encoder and Decoder.mpeg2play-1.1bA program to play mpeg-2 movies on X displays.mpeg_encode-1.5bUCB's MPEG-I video stream encodermpeg_lib-1.1A collection of C routines to decode MPEG movies.mpeg_play-2.3A program to play mpeg movies on X displaysmpeg_stat-2.2ban MPEG-I statistics gatherer.mpegedit-2.2a program to edit encoded mpeg streams.mplex-1.1multiplexes MPEG component streams into system layersnetpbm-94.3.1A toolkit for conversion of images between different formatsp5-GD-1.14a perl5 interface to Gd Graphics Libraryp5-Image-Size-2.2perl5 module to determine the size of images in several common formats.pdore-6.0The Dynamic Object Rendering Environment.pgperl-1.0A perl5 extension which makes available the pgplot library.pgplot-5.1A C/FORTRAN library for drawing graphs on a variety of display devices.pixmap-2.6A pixmap editor based on XPM library.plotmtv-1.4.1A multipurpose X11 plotting programpng-0.96Library for manipulating PNG images.povray-3.0Persistence of Vision Ray Tracer Version 3.0spigot-1.6Video spigot for Windows library.splitmpg-1.0Splits an ISO 11172-1 into its componetstiff-3.3A library for reading and writing TIFF data files.tiff-3.4libtiff provides support for the Tag Image File Format (TIFF)txtmerge-1.01txtmerge, a tool for making GIF Animations.urt-3.1bUtah raster toolkit - a toolkit and library for raster image processing.vcg-1.30A Visualization Tool for compiler graphswhirlgif-2.01a tool for making GIF animations.xanim-2.70.6.4play most popular animation formats and show picturesxaos-2.2A real time fractal browser for X11 and ASCII terminals.xbmbrowser-5.1View complete directories of X bitmaps and X pixmaps.xdl-2.1Display DL animations on an X screenxfig-3.1.4A drawing program for X11xforms-0.86A graphical user interface toolkit for X Window System.xfractint-3.00The Unix port of fractint.xgrasp-1.7dDisplay GL animations on X screenxli-1.16xli, xsetbg, xview, xlito - utilities to display images on X11.xmandel-1.0Window based interface to Mandelbrot sets and Julia setsxmfract-1.4the dos based `fractint' with an X/Motif front endxmorph-97.01.17a digital image warping programxmountains-2.4X11 based fractal landscape generator. xpaint-2.4.8A simple paint program.xpdf-0.7Display tool for PDF filesxpm-3.4jThe X Pixmap library.xv-3.10aAn X11 program that displays images of various formats.japanesejp-Canna-3.2.2Kana-Kanji conversion systemjp-Wnn-4.2A Japanese/Chinese/Korean input method (only Japanese built)jp-a2ps-1.39Text file to postscript converter (with Japanese support)jp-cdrom2-1996.06.16A tool to lookup CD-ROM dictionariesjp-chimera-1.65X/Athena World-Wide Web client + kanji patchjp-ckinput2-2.0.1An input server of Japanese text (Canna version)jp-cmule-2.3A multilingual emacs, with Canna support built injp-cskinput2-2.0.1An input server of Japanese text (Canna+SJ3 version)jp-cwkinput2-2.0.1An input server of Japanese text (Canna+Wnn version)jp-dserver-2.2.2CDROM dictionary server & clientsjp-dvi2ps-2.0gDVI to PostScript converter Japanese versionjp-dvi2tty-ascii-5.0Character-based DVI file previewer.jp-elvis-1.8.4A clone of vi/ex, the standard UNIX editor, with Japanese patch.jp-escpf-0.4b2Text filters for ESC/P, ESC/Page and ESC/PS printersjp-expect-5.22.0A sophisticated scripter based on Japanized tcl/tk.jp-gawk-2.15.6GNU awk + multi-byte extension.jp-ghostscript300-2.6.1.4GNU Postscript interpreter + Japanese patch.jp-gn-gnspool-1.35Simple Japanese Newsreader with Local Spool Supportjp-gp-2.01A GUI Printer manager written with Tcl/Tk.jp-grep-2.0GNU grep + multi-byte extension.jp-groff-0.99Japanese enhancement of GNU groffjp-gxditview-0.98Japanized GNU's modified xditviewjp-handbook-2.2The Japanese version of FreeBSD handbook.jp-hex-1.03A hexadecimal dump tool which handles Japanese.jp-ircii-2.8.2The 'Internet Relay Chat' Client.jp-iv-3.1A toolkit from Stanford University and Silicon Graphics + Japanese patchesjp-jlatex209-a17-n152Japanese TeX based on LaTeX-209 with both NTT and ASCIIjp-jlatex209-a17ASCII Japanese pTeX based on LaTeX-209jp-jlatex209-n152NTT Japanese TeX based on LaTeX-209jp-k12font-1.0X11 12-dot kanji fontjp-kakasi-2.2.5Kanji-Kana Simple Inverter, language filter for Japanese.jp-kcc-1.0Kanji code conversion Filterjp-kinput2-2.0.1An input server of Japanese text (Canna+SJ3+Wnn version)jp-kon2-0.3Kanji On Console -- Display kanji characters on your own console.jp-kterm-6.2.0An xterm that speaks Japanesejp-less-290less + zcat + ISO-2022 - a pager similar to more and pgjp-lipsf-1.13ctext to LIPS filterjp-man-1.1A manual display command for Japanese (EUC).jp-man-doc-2.2.2cJapanese man pages (/bin,/usr/bin,/usr/ucbjp-mh-6.8.3Rand MH mail handling system + Japanese patchesjp-mimekit-1.6Library to handle messages with MIME-encoded headers.jp-mnews-1.20Simple news and E-mail readerjp-nethack-1.0.5.4.1A dungeon explorin', slashin', hackin' gamejp-newosaka-1.0translator of Japanese EUC documents into Osaka languagejp-nkf-1.62Network Kanji code conversion Filterjp-nvi-eucjp-1.79-970617A clone of vi/ex, with multilingual patch, default settings for euc-jp.jp-nvi-iso2022jp-1.79-970617A clone of vi/ex, with multilingual patch, default settings for iso-2022-jp.jp-nvi-sjis-1.79-970617A clone of vi/ex, with multilingual patch, default settings for sjis.jp-okphone-1.2conference-calling phone with Japanese supportjp-oleo-1.6A Spreadsheet Program + Japanese patches.jp-perl-5.003Pattern Extraction and Recognition Language + Japanese patches.jp-pine-3.95Program for Internet News and E-mail with Japanese Supportjp-pkfonts300-1.0Japanese PK fonts, for ghostscripts, xdvi and so on.jp-platex2e-97.02.01ASCII Japanese LaTeX.jp-prn-1.0A yet another converter from text file to postscript (with Japanese support)jp-ptex-2.1.4ASCII Japanese TeXjp-qkc-1.0Quick Kanji Code Converter (C version)jp-recjis-1.0tool for recovery of broken japanese textjp-sed-1.18GNU sed + multi-byte extension.jp-sj3-2.0.1.13A Japanese input method.jp-sjxa-1.5.11A X11 frontend of Japanese input method SJ3.jp-skinput2-2.0.1An input server of Japanese text (SJ3 version)jp-skk-9.6Simple Kana Kanji Converterjp-smule-2.3A multilingual emacs, with SJ3 support built injp-swkinput2-2.0.1An input server of Japanese text (SJ3+Wnn version)jp-tcl-7.6Japanized Tcl (Tool Command Language).jp-tgif-216-p122-D drawing facility (Japanese version).jp-tk-4.2Japanized TK (Tcl Tool Kit).jp-today-2.10bTells you what day today is.jp-typist-2.0Typing lessons (Japanese version)jp-vfghostscript-2.6.2GNU Postscript interpreter + Japanese VFontlib patch.jp-vfghostscript-4.03Aladdin Postscript interpreter with Japanese vector font library.jp-vfxdvi300-17DVI Previewer for X. + Japanese patch + vector font supportjp-weblint97-0.12an internationalized HTML checker with japanese message(EUC-JP)jp-wkinput2-2.0.1An input server of Japanese text (Wnn version)jp-wmule-2.3A multilingual emacs, with Wnn support built injp-xdvi300-17A DVI Previewer for the X Window System with Japanese patch.nvi-m17n-1.79-970617A clone of vi/ex, with multilingual patch, no default settings.koreankr-Wnn-4.2A Japanese/Chinese/Korean input method (only Korean built)kr-afterstep-1.0pr3h1This Bowman-NeXTSTEP clone window manager with Korean character support.kr-elm-2.4h4.1ELM Mail User Agent, patched for Korean E-Mailkr-fvwm95-2.0.42ah3Win95 lookalike version of the fvwm2 window manager with Korean support.kr-h2ps-a4-1.0Formats an ascii file for printing on a postscript printer with Korean char.kr-han-1.0fbA hangul console.kr-hanterm-304b3An xterm hacked for managing Korean languages.kr-hanterm-304b3afAn xterm hacks for managing Korean languages.kr-hanterm-xf86-3.2An X11R6-based xterm hacked for managing Korean languages.kr-hanyangfonts-1.0Hangul fonts for X11(hanyang) used in many hangul-related programs.kr-hcode-2.1.2Hangul code conversion utilitykr-helvis-1.8h2-A clone of vi/ex, the standard UNIX editor, supporting Hangul.kr-hfvwm-2.0.43The fvwm2 window manager, with Korean supportkr-hlatexpsfonts-0.95Hangul Type 1 fonts for HLaTeX-0.95 and other applicationskr-hmconv-1.0p3Hangul code conversion utility for E-mailkr-hpscat-1.3jshinHangul Text Printing Utilitykr-johabfonts-304Hangul fonts for X11(johab) used in many hangul-related programs.kr-linuxdoc-sgml-1.6bh2Korean patch version of Linuxdoc-SGML.kr-nh2ps-a4-1.0p1Formats an ascii file for printing on a postscript printer with Korean char.kr-nhpf-1.42Hangul Printing Filter for Netscape with embedded fontkr-nhppf-1.2Hangul Printing Filter for Netscape with HLaTeX-0.95 PS fontkr-nvi-euckr-1.79-970617A clone of vi/ex, with multilingual patch, default settings for euc-kr.kr-nvi-iso2022kr-1.79-970617A clone of vi/ex, with multilingual patch, default settings for iso-2022-kr.kr-pine-3.96kProgram for Internet E-mail and News, patched for Korean E-Mail transferkr-pinetreefonts-1.0Hangul fonts for X11(pinetree, KSC5601-1987-0 encoding)kr-ztelnet-1.0p1Telnet program with zmodem transfer.langSTk-3.1A scheme interpreter with full access to the Tk graphical package.bwbasic-2.20The Bywater Basic interpreter.cim-1.92Compiler for the SIMULA programming languagecmucl-18aThe CMU implementation of Common Lispeiffel-13aA compiler for the object-oriented language Eiffelelk-3.0.2An embeddable Scheme interpreter.expect-5.22.0A sophisticated scripter based on tcl/tk.g77-0.5.15The GNU Fortran 77 compiler.gcl-2.0GNU Common Lisp.gofer-2.30aA lazy functional language.guavac-0.3.1Guavac, a java compiler and decompiler developed under GPL.guile-iiiThe GNU extension language.icon-9.3The Icon programming language.javac_netscape-1.0.1Java compiler using Netscape 3.0+.jdk-1.0.2Java Developers Kit, Class Librarieslcc-3.6compiler from `A Retargetable C Compilermit-scheme-7.3MIT Schememixal-1.06assembler and interpreter for Donald Knuth's mythical MIX computermocka-95.02Modula 2 Compiler from University of Karlsruhemodula-3-3.6Modula-3 compiler and libraries from DEC Systems Research Center.modula-3-lib-3.6The shared libraries needed for executing Modula-3 programs.modula-3-socks-1.0SOCKS support for Modula-3 programs.moscow_ml-1.4Moscow ML, a version of Standard MLocaml-1.03A ML language based on complete class-based objective systemp2c-1.21aPascal to C translator.p5-Tcl-b1a Tcl extension module for Perl5pbasic-2.0Phil Cockroft's Basic Interpreter (previously Rabbit Basic)perl-5.00401Pattern Extraction and Recognition Language.pfe-0.9.9Implementation of ANSI Forth.pgcc-2.7.2.9gcc optimized for INTEL Pentium CPUpgcc-2.7.2cgcc optimized for INTEL Pentium CPU, Developer Releasepython-1.4An interpreted object-oriented programming language.rexx-imc-1.6da procedural programming language designed by IBM's UK Laboratories.sather-1.0.5Sather compilerscheme48-0.36The Scheme Underground's implementation of R4RS.schemetoc-93.3.15Scheme-to-C, a compiler and interpreter for compiling scheme into C.scm-4e1A scheme interpreter.squeak-1.18A Smalltalk system with graphical user interface.sr-2.3.1A parallel language "Synchronization Resources"swi-pl-2.8.6Edinburgh-style Prolog compiler.tcl-7.6Tool Command Language.tclX-7.5.2Extended TCLucblogo-3.3Brian Harvey's logo language interpreter.xpl486-4.1The XPL compiler generator systemmailbulk_mailer-1.5Speeds delivery to large mailing lists by sorting & batching addresses.cucipop-1.14Cubic Circle's POP3 daemon (fully RFC1939 compliant)cyrus-1.5.2the cyrus mail server, supporting POP3, KPOP, and IMAP4 protocols.elm-2.4ME+32ELM Mail User Agentexim-1.60High performance MTA for Unix systems on the Internet.exmh-1.6.9X11/TK based mail reader front end to MH.faces-1.6.1visual mail, user and print face serverimap-uw-4.1bUniversity of Washington IMAP v4 server (and POP2/POP3 compatible servers)mh-6.8.4Rand MH mail handling systemmm-2.7Implementation of MIME, the Multipurpose Internet Mail Extensions.p5-Mail-Folder-0.06perl module for a folder-independant interface to email folders.p5-Mail-POP3Client-1.15perl5 module to talk to a POP3 (RFC1081) serverp5-Mail-Tools-1.09a set of perl5 modules related to mail applications.pgpsendmail-1.4PGP sign/encrypt/decrypt messages automatically.pine-3.96Program for Internet E-mail and Newspopclient-3.0b6client for pop2, pop3, apop, rpoppoppassd-4.0A server to allow users to change their password from within Eudoraprocmail-3.11p7A local mail delivery agent.safe-tcl-1.2Safe scl/wish for "Enabled mail"xfaces-3.3mail image display for Xxfmail-1.1An X Window System application for receiving electronic mailxlbiff-3.0the X Literate Biff - displays the from and subject from incoming mailsyoubin-2.13Mail arrival notification service packagemathFudgit-2.41Multi-purpose data-processing and fitting program.Scilab-2.3A free CACSD Package by INRIA Wingz-142A Commercial Spreadsheetapc-1.0.1bAn xforms based Auto Payment Calculatorblas-1.0Basic Linear Algebra, level 1, 2, and 3.calc-2.9.3Arbitrary precision calculator.calctool-2.4.13a multi-GUI (text, X, xview, NeWS, sunview) calculator programeispack-1.0Eigenvalue system package.fftpack-1.0Fast Fourier Transform librariesfreefem-3.4A language for the Finite Element Methodgnuplot-336A command-driven interactive function plotting program.hexcalc-1.11A multi-radix calculator for x11lapack-2.0A library of Fortran 77 subroutines for linear algebra.linpack-1.0Linear Algebra package.numpy-1.0b3The Numeric Extension to Pythonoctave-2.0.8High-level interactive language for numerical computations.oleo-1.6A Spreadsheet Program.pari-1.39.03Mathmatics library and advanced calculator packageranlib-1.0Library of Routines for Random Number Generationsimpack-3.0SimPack & Sim++ libraries and tools for simulatiom modellingss-1.3.3A curses-based SpreadSheet programumatrix-1.1Simple matrix packagexgraph-11.3.2A program that helps you plot graphsxlispstat-3.44A statistics/X11 based lisp interpreter.xplot-0.89X-windows plotting packagexspread-2.1A spreadsheet program under X.xvgr-2.10.1ACE/gr - graphics for exploratory data analysismboneimm-3.5a1Internet Image(or other data) Multicaster (and receiver).mbone_vcr-1.4a2A tool to record and play back multicast sessionsrtpmon-1.0a7A program to montior loss in multicast sessionsspeak_freely-6.1bVoice Communication Over Data Networks.vat-4.0b2The Visual Audio Tool - multicast audioconferencingvic-2.8MBONE video tool.wb-1.59A shared drawing (whiteboard) tool using multicast.miscamanda-2.3.0The Advanced Maryland Automatic Network Disk Archiverastrolog-5.30An astrology program for X11 and alpha-numeric terminalsbuffer-1.17buffer sporadic binary I/O for faster tape usecal-3.5Enhanced color version of standard calendar utilitychord-3.6Produce PS sheet-music from text inputcolorls-2.2An ls that can use color to display file attributesctk-4.1A curses port of John Ousterhout's Tk toolkit for X11.dejagnu-1.3Automated program/system testerdotfile-2.0A GUI dotfile generator program to create .config filesestic-1.40Controller for ISDN TK-Anlage (PBX, Private Branch Exchange) made by Istecfd-1.01hA file and directory management toolfep-1.0A general purpose front end for command line editing.figlet-2.2sysV banner like program prints strings in fancy ASCII art large charactersgit-4.3.11GNU Interactive Tools - a file system browser for UNIX systemsical-2.1b2A calendar application.ile-1.6An Input Line Editor that wraps itself around programs.jive-1.1filter that converts English text to Jivekp-0.96The Keyboard Practicer, touch-type training programless-332a better pager utilitylinuxls-3.12.0.2FreeBSD port of Linux Slackware colorized GNU `ls'.logsurfer-1.41Processes logfiles and perform certain actions.mc-4.0Midnight Commander, a free Norton Commander Clonemost-4.7A pager (like less) which has support for windows and binary filesmshell-1.0A Unix menuing shell.p5-Array-PrintCols-1.2perl5 module to print arrays of elements in sorted columns.p5-Business-CreditCard-0.1perl5 module to validate/generate credit card checksums/names.p5-Locale-Codes-0.003perl5 module providing access to ISO3166 and ISO639 Country Codesp5-Search-0.2perl5 module to provide framework for multiple searches.plan-1.6.1An X/Motif schedule planner with calendarscreen-3.7.2A multi-screen window manager.splitvt-1.6.3run two shells in a split window/terminalteam-3.1Portable multi-buffered tape streaming utility.tkcron-2.12A frontend to crontab.tkdesk-1.0b3A graphical, highly configurable and powerful file manager.tkinfo-1.5A tk script to read GNU "info" files and display them.tkman-1.8A Tcl/Tk based manual browserunclutter-8Remove idle cursor image from screen.viz-1.1.1Convert invisible (binary) characters to a visible formxcalendar-4.0A calendar with a notebook for X11 (internationarized version)xgas-1.0The animated simulation of an ideal gasxless-1.7An X11 viewer for text files. Useful as an add-on tool for other apps.xmaddressbook-1.5.3XmAddressbook is a X11/Motif based addressbook program.xpns-1.0Petri-Net Simulator for Xwindowsxtar-1.4View and manipulate contents of a tar file.xtimer-0.8087A super simple digital timer for X11zorro-1.1.8A simple to-do list manager.netarchie-1.4.1Prospero client for the archie service.ascend-radius-970424The Ascend modified Radius Daemonbb-1.04hbig brother Unix Network Monitorbing-1.0.4Bing is a point-to-point bandwith measurement tool.bsddip-1.02Dialup IP programcap-6.0.198Columbia AppleTalk Package for UNIX, communication between Macintosh & UNIXdelegate-4.1.2General purpose TCP/IP proxy systemechoping-2.1bA ping-like program that uses tcp and/or http.fping-1.20quickly ping N hosts to determine their reachability w/o flooding the networkfreewais-sf-2.1.2An enhanced Wide Area Information Serverfspclient.0.0.hA client for the fsp service.ftpsearch-1.0A system for indexing contents on ftp servers.ftptool-4.6Graphic ftp shell based on xviewgated-3.5.5Routing protocol daemon.gnu-finger-1.37GNU version of finger.gopher-2.1.3Client and server for access to a distributed document service.icmpinfo-1.11looks at the icmp messages received by the hostirc-2.9.2.3The 'Internet Relay Chat' Server.ircii-2.9The 'Internet Relay Chat' Client.isc-dhcp-b5.16ISC Dynamic Host Configuration Protocol client and server codeldap-3.3An implementation of the Lightweight Directory Access Protocollibsocket++-1.10A C++ wrapper library to the socketsmirror-2.8Mirror packages on remote sites.moxftp-2.2ftp shell under X Window System.mrtg-2.4.1the multi-router traffic grapherncftp-1.9.5FTP replacement with advanced user interface.ncftp-2.4.2FTP replacement with advanced user interface.netcat-1.10simple utility which reads and writes data across network connectionsp5-Archie-1.5perl5 module to make Archie queries via Prospero requests.p5-Net-1.0505perl5 modules to access and use network protocols.p5-Net-DNS-0.11perl5 interface to the DNS resolverp5-Net-Whois-0.22a perl5 module to get information using the Whois protocol.p5-PV-1.0a perl5 library for text-mode user interface widgetsp5-SNMP-1.6a perl5 module for interfacing with the CMU SNMP librarypcnfsd-93.02.16Sun PC NFS authentication and printing server.pmf-1.13.1Padrone's Mud Frontend.radius-2.4.23A remote authentication server.ratoolset-3.5.2a suite of policy analysis toolsrdist-6.1.3A network file distribution/synchronisation utility.ripetools-2.2RIPE's own version of whois, and a RIPE database tool.rmsg-1.64A network messaging system.rshell-1.0A front end for rsh(1) and rcp(1).rsync-1.6.2A network file distribution/synchronisation utility.rumba-0.4An userland smbfs --- SMB to NFS protocols converterrwhois-1.0b9.2the Internic referral whois serversamba-1.9.16p11A LanManager(R)-compatible server suite for Unixslirp-1.0cA SLIP/CSLIP emulator for users with shell accounts.strobe-1.03Fast scatter/gather TCP port scannersup-2.0CMU's Software Update Protocol package.tac_plus-2.1a remote authentication/authorization/accounting servertcpblast-1.0Measures the throughput of a tcp connection.tcptrace-4.0.2a TCP dump file analysis tooltelnetx-940401Telnet client with binary transfer protocols supporttf-3.5b4A popular programmable MUD client, with macro support and more.tintin-1.5.6A client program to help playing muds.traceroute-961230A version of 'traceroute' that shows the AS network number of each hop.trafshow-2.0Full screen visualization of the network traffic.ucd-snmp-3.2An extendable SNMP implimentation wget-1.4.5Retrieve files from the 'net via HTTP and FTP.wide-dhcp-1.3bDynamic Host Configuration Protocol, WIDE-Implimentation.wu-ftpd-2.4.2b13A replacement ftp server for Un*x systems.xarchie-2.0.10X11 front-end program for the archie network search servicexgopher-1.3.3A brown, furry creature for burroring through Gopherspace.xipmsg-0.8087A popup style message communication tool for X11yale-tftpd-3.0Enhanced tftpd(8) from Yale University and cisco Systemsytalk-3.0.2A new "talk" that can talk to multiple parties at oncezephyr-2.0.4Real time message passing and notification service.newscnews-cr.gC-newsleafnode-1.0.2Leafnode is a USENET software package designed for small sites.nn-6.5.0NN newsreader.nn-6.5.0cNN newsreader, beta version.nntp-1.5.11.5NNTP with NOV support.nntpbtr-1.7NNTP bulk transferplor-0.1An alpha-release reader for reading SOUP and QWK packets.rkive3.1A USENET newsgroup archiver.slnr-2.3.0A simplistic reader for SOUP (HDPF) mail and news packets.slrn-0.9.4.3SLang-based newsreaderslurp-1.10A passive NNTP client that retrieves Usenet news articles from a remote server.suck-2.6.2Receives/sends news to/from localhost via NNTP.xvnews-2.3.2An OPEN LOOK news reader.plan99menu-1.4A simple menu patterened after plan99term-1.6.3An X11 program which emulates a plan9 window.9wm-1.1An 8 1/2-like Window Manager for XlibXgFonts-1.0These are the UNICODE fonts for use with 9term and sam.rc-1.5b1A unix incarnation of the plan9 shell.sam-4.3A unix version of Rob Pike's editor for plan9printa2ps-a4-4.3Formats an ascii file for printing on a postscript printer.acroread-3.0View, distribute and print PDF documents.afm-1.0Adobe Font Metrics.bibcard-0.6.4X11 interface for ediing BibTeX files.c2ps-3.0A PostScript pretty-printer for C source.detex-2.6Strips TeX/LaTeX codes from a filedvi2tty-1.0A dvi-file previewer for text only devices.dvi2xx-0.51a9Convert dvi files to HP LaserJet or IBM 3812 format.dviselect-1.3Extract pages from DVI files.ghostscript-2.6.2GNU Postscript interpreter.ghostscript-3.53Aladdin Postscript interpreter.ghostscript-4.03Aladdin Postscript interpreter.ghostscript-5.0Aladdin Postscript interpreter.ghostview-1.5An X11 front-end for ghostscript, the GNU postscript previewer.gv-3.5.8A PostScript and PDF previewer.html2latex-0.9convert HTML document into LaTeXlout-3.08A document creation system like LaTeX, but smallerlprps-2.5PostScript printer filter package supporting a bidirectional serial channellyx-0.10.7A graphical frontend for LaTeX (nearly WYSIWYG)makeindex-3.0.8A general purpose, formatter-independent index processor.mp-letter-3.0.1A PostScript printing util for ASCII files, email, USENET news articles, etc.musixtex-T64A set of TeX macros to typeset music.pkfonts300-1.0English PK fonts, for ghostscripts, xdvi and so onpsutils-a4-1.16Utilities for manipulating PostScript documents.rtf2latex-1.5A filter that converts RTF (MS's Rich Text Format) into LaTeX.teTeX-0.4TeX distribution for UNIX compatible systemstex-3.14159TeX and METAFONT.texinfo-2.124Typeset Texinfo files for printing. Uses TeX.tr2latex-2.2Convert a document from troff to LaTeX.transfig-3.1.2Tools to convert Xfig's .fig files.virtualpaper-1.4Virtual Paper document storage and viewing software.xdvi-pl20A DVI Previewer for the X Window System.xmgr-3.01plotting tool for workstationsrussiancyrproxy-1.4.1Cyrillic proxy for network protocolsru-X11-3.2Setup X locale/nls/keyboard/fonts for russian language (koi8-r)ru-d1489-1.2point-to-point Alt(cp866)<->koi8-r decoder and font converter acc. to RFC1489ru-elm-2.4METune Elm with MIME for KOI8-R defaultsru-pgp-2.6.3iaRussian language module for PGPru-pine-3.95Tune Pine for Russian (KOI8-R) defaultssecuritycops-1.04A system secureness checker.donkey-0.5An alternative for S/KEY's key commandp5-Crypt-DES-1.0perl5 interface to DES block cipher.p5-Crypt-IDEA-1.0perl5 interface to IDEA block cipher.p5-MD5-1.7perl5 interface to the RSA Data Security Inc. MD5 Message-Digest Algorithmp5-PGP-0.2aperl5 module to work with PGP messages.sudo-1.5.3Allow others to run commands as root.super-3.9.7Allow others to run commands as root.swatch-2.2The Simple WATCHer and filtertcp_wrappers-7.6This is the TCP/IP daemon wrapper package.xinetd.2.1.7.4Replacement for inetd with control and loggingshellsbash-1.14.7The GNU Borne Again Shell.bash-2.01The GNU Borne Again Shell.es-0.9a1An extensible shell, derived from plan9's rcpdksh-5.2.12The Public Domain Korn Shell.scsh-0.5.1A Unix shell embedded into Scheme, with access to all Posix callstcsh-6.07.02An extended C-shell with many useful features.zsh-3.0.4The Z shell.sysutilsLPRng-3.2.3An Enhanced Printer Spoolerafio-2.4.2Archiver & backup program w/ builtin compressioncd-write-1.3A X11 based CD-burnercontool-3.3aConsole tool for openlookidled-1.16A daemon that logs out idle users and those users hogging resources.manck-1.2Manual page consistency checkermkisofs-1.10create ISO9660 filesystems with [optional] Rockridge extensionspib-1.0GUI Ports Collection management tool.rtty-3.2multiuser "tip"/"cu" replacement with loggingskill-3.7.4SuperKILL, a kill(1)/renice(8) utility with nice featuressocket-1.1create tcp socket and connect to stdin/outstar-1.1unique standard tape archiver with many enhancementsstat-1.3Print inode contents.su2-1.3an enhanced su, allows users to su with own password + moretcplist-2.2lists tcp connections to/from the local machine (+username on both sides)tua-4.0The Uucp Analyzer.xbatt-1.2Laptop battery status display for X11xcpustate-2.4System monitoring utility graphicaly showing cpu load and status.xdu-3.0Graphically display output of duxloadface-1.6.1network load monitor for X11xperfmon++-1.40A graphical X11 system performance monitor.xsysinfo-1.4A system information display tool.xsysstats-1.34A system information display tooltextprocagrep-2.04Approximate grep (fast approximate pattern-matching tool)docbook-3.0An SGML DTD designed for computer documentationglimpse-4.0Text search engineisearch-1.14Text Search Engine by CNIDRiso12083-1993SGML DTDs from the The Electronic Publishing Special Interest Groupiso8879-1986Character entity sets from ISO 8879ispell-3.1.20An interactive spelling checker.linuxdoc-1.0The Linuxdoc SGML DTDmgdiff-1.0A graphical front end to the Unix diff commandpilot_makedoc-0.7converts text into the Doc format used by PalmPilots.rman-3.0.2a9Reverse compile man pages from formatted form.sp-1.1.1A free, object-oriented toolkit for SGML parsing and entity management unroff-1.0.2A programmable troff translator with backend for HTML.vietnamesevn-vn7to8-1.1.1converts between 7-bit Vietnamese VIQR and 8-bit VISCII formatsvn-vnelvis-1.4A vi clone that speaks Vietnamesevn-vnless-1.0A pager utility that speaks Vietnamesevn-vnlpr-2.0shell script and set of fonts to print Vietnamese text on PostScript printervn-vnpstext-1.1converts 8-bit VISCII Vietnamese text into PostScriptvn-vnroff-2.0converts Vietnamese VIQR text into troff formatvn-vnterm-3.3An xterm that speaks Vietnamesewwwanalog-2.11An extremely fast program for analysing WWW logfiles.apache-1.2.1The extremely popular Apache http server. Very fast, very clean.arena-i18n-beta3bExperimental HTML 3 browser, supports math and style sheets.ashe-1.1.2A simple HTML editor.chimera-1.65X/Athena World-Wide Web clientcomline-4.0DW3C Command Line WWW Toolfxhtml-1.6.7Server side extension to HTML which eliminates the need for CGI scripts.gwstatgenerate GIF graphs that illustrate the httpd server trafficharvest-1.4.2Collect information from all over the Internethttp-analyze-1.9A fast Log-Analyzer for web serversjp-mmm-0.40WWW browser using Objective Caml, Tcl/Tk.jp-w3-2.2.26WWW browser based on emacs/mulelibpics-1.0The W3C sample PICS librarylibwww-5.1bThe W3C Reference Library.linemode-4.0DWWW LineMode Browser from the W3 Consortium (W3C)mapedit-2.24A WWW authoring tool to create clickable mapsmhonarc-2.1WWW front end for mail archives. mmm-0.40WWW browser using Objective Caml, Tcl/Tk.mosaic-2.7b5A World Wide Web browser.p5-Apache-0.98Embeds a Perl interpreter in the Apache serverp5-CGI-2.76modules for perl5, for use in writing CGI scripts.p5-CGI_Lite-1.7perl5 module to process and decode WWW form information.p5-HTML-0.6perl5 module for writing HTML documents.p5-HTML-QuickCheck-1.0b1a simple and fast HTML syntax checking package for perl 4 and perl 5.p5-HTML-Stream-1.38perl5 HTML output stream class, and some markup utilities.p5-HTTPD-Tools-0.53perl5 module for a HTTP server authentication class.p5-WWW-Search-1.009a perl5 module for WWW searchesp5-libwww-5.10perl5 library for WWW access.squid-1.0.22Post-Harvest_cached WWW proxy cache and acceleratorw3-2.2.26WWW browser based on emacs/mulew3c-httpd-3.0AWWW server from the W3 Consortium (W3C).weblint-1.017HTML validator and sanity checkerwebstone-2.0.1world wide web server benchmarkingwwwcount-2.3Access counter, clock and date for WWW pageswwwstat-2.01webserver logfile analysis packagex11XFree86-3.3X11R6.3/XFree86 core distributionXaw3d-1.3A 3-D Athena Widget set that looks like Motifafterstep-1.0This window manager is a continuation of the Bowman NeXTSTEP clone.auis-6.3.1Andrew User Interface Systembclock-1.0A round, analog X11 clock with bezier curve hands.blast-1.0Blast blows holes through windows.blt-2.1A Tk extension (with shared libs)bricons-3.0Quick start up utility for applications on an X display.camltk41-1.0A library for interfacing Objective Caml with Tcl/Tkctwm-3.5b1An extension to twm, with support for multiple virtual screens, etc.dclock-pl4A 7-segment digital clock with optional military time and alarmemiclock-1.0.2Hyper-animated face analog clock for X11emu-1.3.1A terminal emulator for the X Window System.enlightenment-0.9a very artistic X window manager.etlfonts-noncjk-1.0X11 supplemental fontsfbsd-icons-1.0a collection of icons related to the FreeBSD project (daemon gifs and such)filerunner-2.3Filemanager with FTP capabilities. Uses Tcl/Tk.freefonts-0.10A collection of ATM fonts from the CICA archives.fvwm-1.24rthe fvwm window managerfvwm-2.0.45Internationalized (not japanised) fvwm version 2, a window manager for Xfvwm95-2.0.43aWin95 lookalike version of the fvwm2 window manager.fwf-3.8The Free Widget Foundation Widget Releasegetbdf-1.0convert any X server font to .bdf formatgwm-1.8cGeneric Window Manageriv-3.1A toolkit from Stanford University and Silicon Graphics.jp-camltk41-1.0A library for interfacing Objective Caml with Tcl/Tkjp-xshodo-2.0A paint tool for Shodo, the Japanese traditional writing characterknews-0.9.8A threaded nntp newsreader for X.lesstif-0.80API compatible clone of the Motif toolkit.libsx-1.1Simple X Windows library.lupe-0.07Real-time magnifying glass for X11mlvwm-0.7.1Macintosh like window manager for X11neXtaw-0.5Athena Widgets with N*XTSTEP appearanceolvwm-4.1OpenLook Virtual Window manager p5-Tcl-Tk-b1perl5 module to access to Tk via the Tcl extensionp5-Tk-2.02a re-port of a perl5 interface to Tk4.0p3.piewm-1.0A tvtwm with pie (circular) menus.pythonqt-0.1.2A set of Python bindings for Qt.qt-1.2A C++ X GUI toolkit.rclock-2.20analog clock for X w/appointment reminder and mail notificationrxvt-2.20rxvt - a low memory usage xterm replacement that supports colorslingshot-2.1Supplemental Libraries to extend Xviewswisswatch-0.06A Swiss railway clock emulation, and a fancy default appearance.sxpc-1.4The Simple X Protocol Compressortk-4.2Graphical toolkit for TCL.tkgoodstuff-4.2b1.8TkGoodstuff module for fvwm2 window manager - requires XPM and fvwm2tvtwm-pl11twm with a virtual desktop.viewfax-2.3Display files containing g3 and/or g4 coded fax pages.wm2-3.0A very simple window manager for Xx3270-3.0.3.73270 Terminal emulator.xantfarm-1.16ant hill simulation on X11 root windowxautolock-1.10Used to activate xlock after a user defined time of inactivity.xbuffy-3.2.1A replacement for xbiff that handles multiple mail files.xcb-2.3A tool for managing x11 cut-buffersxco-1.3Display X11 color names and colorsxcoloredit-1.2Find colour values by graphical colour mixingxcolors-1.3Display all (ok, most of) the colors in the universexdaliclock-2.08A rather neat animated clock.xdtm-2.5.5Desktop Manager is a graphical shell for the X Window System.xfed-1.0A program that will let you edit X fonts (.bdf files)xfedor-1.0a .bdf fonts/.xbm bitmaps/.xpm colored pixmaps/mouse cursor editorxfishtank-2.2Make fish swim in the background of your screen.xfm-1.3.2The X File Manager.xgrab-2.41An X-Windows image grabber.xloadimage-3.03X11 Image Loading Utility.xmascot-2.5p2moving mascot on your X-Window screen.xmbdfed-2.2A Motif tool for editing X11 bitmap fontsxmold-1.0mold spreading over your X-Window screenxneko-4.4The classic BSD4.4 cat-and-mouse.xpostit-3.3.1PostIt (R) messages onto your X11 screenxprompt-1.4Displays a dialog box and prompts user for text. xroach-4.4Cockroaches hide under your windows.xscreensaver-1.27Save your screen while you entertain your catxsnow-1.40Create a snowy and Santa-y desktop.xtacy-1.13an X11 trippy color-cycling toyxtestpicture-1.1Create a full-screen image to adjust your monitorxtoolwait-1.1Tool startup utility for X11xview-clients-3.2.1OpenLook applications and man pages.xview-config-3.2.1OpenLook Toolkit config files.xview-lib-3.2.1OpenLook Toolkit libs, includes, and man pages.