IT业的民工 发表于 2006-12-26 09:49

DD-WRT上安装应用软件攻略(原创)

经过几天的折腾终于能用IPKG直接通过网络把nslu2上的软件包安装在WVR的DD-WRT上。NSLU2发布了544   个软件包。几乎涵盖了常用的应用的软件。其中包括设备启动(MMC,USB端口,USB显卡、声卡,USB flashdisk,usbCAM,USB以太口,NTFS,NFS等等)C++,C编译器和最新的类库,WBE服务器,FTP和TFTP服务器和客户端,DNS服务器,SMBA服务器和客户端,LDAP,mail服务器和客户端,MySQL server,PHP,BT客户端。当然因为设备的处理能力有限基本都是轻量级的(lightwight)。



   IPKG 一定要系统打开支持JFFS。但是如果是WVR利用JFFS空间是不够的(除非你改装过FLASH)。而且安装的过程中空间不够是会提示的:Q。这也是我最“讨厌”的DD-WRT的地方出了异常不说原因导致调试常常使人陷入郁闷状态。因此我们需要通过MMC卡或U盘来代替JFFS。我们只要把MMC卡或U盘mount到/JFFS就可以解决。但是还是要在WEBUI打开JFFS支持。
   
   
       这里以FTP客户端和BT客户端为例和大家分享一下安装经验。

DD-WRT VeryBusyBox v1.2.1 (2006.09.15-19:35+0000) Built-in shell (ash)
Enter 'help' for a list of built-in commands.

/ # ls
bin   etc   lib   mnt   proctmp   var
dev   jffsmmc   opt   sbinusr   www
/ # df
Filesystem         1k-blocks      Used Available Use% Mounted on
/dev/root               2624      2624         0 100% /
/dev/mtdblock/4         4672       728      394416% /jffs
/dev/mmc/disc0/part1   14091      2567   1079719% /mmc
/ # cd /mmc
/mmc # ls
lost+foundmylib       udisk.sh    usb.sh
/mmc # cat usb.sh
insmod /mmc/mylib/usbcore.o
insmod /mmc/mylib/uhci.o
insmod /mmc/mylib/usb-ohci.o
/mmc # cat udisk.*
insmod /mmc/mylib/scsi_mod.o
insmod /mmc/mylib/usb-storage.o
insmod /mmc/mylib/sd_mod.o
insmod /mmc/mylib/fat.o
insmod /mmc/mylib/vfat.o
insmod /mmc/mylib/msdos.o
umount /jffs
rmmod crc32
rmmod jffs2
mount /dev/scsi/host0/bus0/target0/lun0/part1 /jffs
/mmc # ./usb.sh
/mmc # ./udisk.sh
Vendor: Generic   Model: USB Flash Drive   Rev: %z!Y
Type:   Direct-Access                      ANSI SCSI revision: 02
Attached scsi removable disk sda at scsi0, channel 0, id 0, lun 0
SCSI device sda: 515072 512-byte hdwr sectors (264 MB)
sda: Write Protect is off
/ # cd /jffs
/jffs # ls
lost+found
/jffs # mkdir -p opt/etc
/jffs # mkdir -p tmp/ipkg
/jffs # mount -o bind /jffs/opt /opt                     (IPKG需要把下载回来的软件放到/opt,因此我们只能这样取悦它)
/jffs # df
Filesystem         1k-blocks      Used Available Use% Mounted on
/dev/root               2624      2624         0 100% /
/dev/mmc/disc0/part1   14091      2567   1079719% /mmc
/dev/scsi/host0/bus0/target0/lun0/part1    249375      17    236482   0% /jffs
/dev/scsi/host0/bus0/target0/lun0/part1    249375      17    236482   0% /opt
/jffs # cat > /opt/etc/ipkg.conf
src unslung http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable
dest root /jffs
^D                                                                  (Ctrl+D 可以认为是保存)

/mmc # export IPKG_CONF_DIR=/jffs/opt/etc                  (这个是告诉IPKG的配置文件所在的位置)
/mmc # export PATH=/opt/bin:/opt/sbin:$PATH   

[ 本帖最后由 IT业的民工 于 2006-12-27 08:58 编辑 ]

IT业的民工 发表于 2006-12-26 09:53


/jffs # ipkg list                                                   (还没有把软件包下载回来的时候是报错的)
ERROR: File not found: //jffs/usr/lib/ipkg/lists/unslung
       You probably want to run `ipkg update'
/jffs # ipkg update
Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/Packages ...
Connecting to ipkg.nslu2-linux.org:80
Packages             100% |*****************************|   200 KB 00:00:00 ETA
Done.
Updated list of available packages in //jffs/usr/lib/ipkg/lists/unslung
/jffs # ipkg list | wc                                        (UPdate后就可以看到有那些包可以安装了)
    544    6155   39637
/jffs # ipkg list | grep uclibc
libuclibc++ - C++ standard library designed for use in embedded systems
uclibc-opt - micro C library for embedded Linux systems
uclibc - micro C library for embedded Linux systems
/jffs # ipkg install uclibc

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/uclibc_0.9.28-5_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
uclibc_0.9.28-5_mips 100% |*****************************|   588 KB 00:00:00 ETA
Done.
Unpacking uclibc...Done.
Configuring uclibc...Updating /opt/etc/ld-opt.so.cache
/opt/sbin/ldconfig: skipping /opt/usr/lib: No such file or directory
Done.
/jffs # ls
jffs      lost+foundopt         tmp         usr
/jffs # mkdir -p /opt/usr/lib
/jffs # ipkg install uclibc

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/uclibc_0.9.28-5_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
uclibc_0.9.28-5_mips 100% |*****************************|   588 KB 00:00:00 ETA
Done.
Unpacking uclibc...Done.
Configuring uclibc...Updating /opt/etc/ld-opt.so.cache
Done.
/jffs # ls
jffs      lost+foundopt         tmp         usr
/jffs # ipkg install ncftp

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/ncurses_5.5-2_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
ncurses_5.5-2_mipsel 100% |*****************************|   583 KB 00:00:00 ETA
Done.
Unpacking ncurses...Done.
Configuring ncurses...Done.

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/ncftp_3.2.0-2_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
ncftp_3.2.0-2_mipsel 100% |*****************************|   513 KB 00:00:00 ETA
Done.
Unpacking ncftp...Done.
Configuring ncftp...Done.

/jffs # cd /opt
/opt # ls
bin    etc    lib    man    sbin   shareusr
/opt # cd bin
/opt/bin # ls
captoinfo       ncftp         ncftpls         tic
clear         ncftpbatch      ncftpput      toe
infocmp         ncftpbookmarksncftpspooler    tput
infotocap       ncftpget      reset         tset
/opt/bin # ./ncftp
NcFTP 3.2.0 (Aug 05, 2006) by Mike Gleason (http://www.NcFTP.com/contact/).

Copyright (c) 1992-2005 by Mike Gleason.
All rights reserved.

ncftp> ?            
Commands may be abbreviated.'help showall' shows hidden and unsupported
commands.'help <command>' gives a brief description of <command>.

ascii      cat      get      lookup   mkdir      pwd      set      
bgget      cd         help       lpage      open       quit       show   
bgput      chmod      jobs       lpwd       page       quote      site   
bgstart    close      lcd      lrename    passive    rename   type   
binary   debug      lchmod   lrm      pdir       rhelp      umask   
bookmark   dir      lls      lrmdir   pls      rm         version
bookmarksedit       lmkdir   ls         put      rmdir      

For details, please see the manual ("man ncftp" at your regular shell prompt
or online at http://www.NcFTP.com/ncftp/doc/ncftp.html).
ncftp> open 125.88.125.133
Connecting to 125.88.125.133...                                                
(vsFTPd 2.0.1)
Logging in...                                                                  
Login successful.
Logged in to 125.88.125.133.                                                   
ncftp / > ls
pub/
ncftp / > exit


You have not saved a bookmark for this site.



Would you like to save a bookmark to:
      ftp://125.88.125.133

Save? (yes/no) Not saved.(If you don't want to be asked this, "set confirm-close no")

以后们就可用DD 登陆FTP了。
但是如果下载URL明确的话建议还是使用dd自带的wget命令比较快捷。如果要上传或者要查目录或用通配符就可以用ncftp了。:lol

IT业的民工 发表于 2006-12-26 09:54

BT客户端的按照过程

/opt/bin #
/opt/bin # ipkg list | grep ctorrent
ctorrent - CTorrent is a BitTorrent client written in the C programming language.
enhanced-ctorrent - Enhanced CTorrent is a revised version of CTorrent
/opt/bin # ipkg install ctorrent

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/libuclibc++_0.2.2-1_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
libuclibc++_0.2.2-1_ 100% |*****************************| 67207    00:00:00 ETA
Done.
Unpacking libuclibc++...Done.
Configuring libuclibc++...Done.

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/libstdc++_0.2.0-5_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
libstdc++_0.2.0-5_mi 100% |*****************************|   652    --:--:-- ETA
Done.
Unpacking libstdc++...Done.
Configuring libstdc++...Done.

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/openssl_0.9.7l-3_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
openssl_0.9.7l-3_mip 100% |*****************************|   961 KB 00:00:00 ETA
Done.
Unpacking openssl...Done.
Configuring openssl...Done.

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/ctorrent_1.3.4-2_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
ctorrent_1.3.4-2_mip 100% |*****************************| 45468    00:00:00 ETA
Done.
Unpacking ctorrent...Done.
Configuring ctorrent...Done.
openssl is installed
/opt/bin # ls
captoinfo       ncftp         ncftpput      toe
clear         ncftpbatch      ncftpspooler    tput
ctorrent      ncftpbookmarksopenssl         tset
infocmp         ncftpget      reset
infotocap       ncftpls         tic
/opt/bin # ./ctorrent
CTorrent devel          Copyright: YuHong(992126018601033)
WARNING: THERE IS NO WARRANTY FOR CTorrent. USE AT YOUR OWN RISK!!!

Generic Options:
-h/-H         Show this message.
-x            Decode metainfo(torrent) file only, don't download.
-c            Check exist only. don't download.

Download Options:
-e int          Exit while seed <int> hours later. (default 72 hours)
-p port         Listen port. (default 2706 -> 2106)
-s save_as      Save file/directory/metainfo as...
-C cache_size   Cache size,unit MB. (default 16MB)
-f            Force seed mode. skip hash check at startup.
-b bf_filenameBit field filename. (use it carefully)
-M max_peers    Max peers count.
-m min_peers    Min peers count.
-B rate         Max bandwidth (unit KB/s)
-P peer_id      Set Peer ID [-CT1304-]

Make metainfo(torrent) file Options:
-t            With make torrent. must specify this option.
-u url          Tracker's url.
-l piece_len    Piece length.(default 262144)

eg.
hong> ctorrent -s new_filename -e 12 -C 32 -p 6881 eg.torrent

home page: http://ctorrent.sourceforge.net/
bug report: bsdi@sina.com

/opt/bin # ipkg list | grep ctorrent
ctorrent - CTorrent is a BitTorrent client written in the C programming language.
enhanced-ctorrent - Enhanced CTorrent is a revised version of CTorrent

/opt/bin # ipkg install enhanced-ctorrent

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/libuclibc++_0.2.2-1_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
libuclibc++_0.2.2-1_ 100% |*****************************| 67207    00:00:00 ETA
Done.
Unpacking libuclibc++...Done.
Configuring libuclibc++...Done.

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/enhanced-ctorrent_dnh2.2-6_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
enhanced-ctorrent_dn 100% |*****************************| 75938    00:00:00 ETA
Done.
Unpacking enhanced-ctorrent...Done.
Configuring enhanced-ctorrent...Done.

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/libstdc++_0.2.0-5_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
libstdc++_0.2.0-5_mi 100% |*****************************|   652    --:--:-- ETA
Done.
Unpacking libstdc++...Done.
Configuring libstdc++...Done.
libstdc++ is installed

Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/libuclibc++_0.2.2-1_mipsel.ipk ...
Connecting to ipkg.nslu2-linux.org:80
libuclibc++_0.2.2-1_ 100% |*****************************| 67207    00:00:00 ETA
Done.
Unpacking libuclibc++...Done.
Configuring libuclibc++...Done.
enhanced-ctorrent is installed
libstdc++ is installed
/opt/bin # ls
captoinfo          infotocap          ncftpls            tic
clear            ncftp            ncftpput         toe
ctorrent         ncftpbatch         ncftpspooler       tput
enhanced-ctorrentncftpbookmarks   openssl            tset
infocmp            ncftpget         reset

/opt/bin # ./enhanced-ctorrent
CTorrent dnh2.2 Original code Copyright: YuHong(992126018601033)
WARNING: THERE IS NO WARRANTY FOR CTorrent. USE AT YOUR OWN RISK!!!

General Options:
-h/-H         Show this message.
-x            Decode metainfo (torrent) file only, don't download.
-c            Check pieces only, don't download.
-v            Verbose output (for debugging).

Download Options:
-e int          Exit while seed <int> hours later. (default 72 hours)
-E num          Exit after seeding to <num> ratio (UL:DL).
-i ip         Listen for connections on ip. (default all IP's)
-p port         Listen port. (default 2706 -> 2106)
-s filename   Download ("save as") to a different file or directory.
-C cache_size   Cache size, unit MB. (default 16MB)
-f            Force seed mode (skip hash check at startup).
-b filename   Bitfield filename. (use it carefully)
-M max_peers    Max peers count. (default 100)
-m min_peers    Min peers count. (default 1)
-z slice_size   Download slice/block size, unit KB. (default 16, max 128).
-n file_numberSpecify file to download.
-D rate         Max bandwidth down (unit KB/s)
-U rate         Max bandwidth up (unit KB/s)
-P peer_id      Set Peer ID prefix. (default "-CD0202-")
-S host:port    Use CTCS server at host:port.

Make metainfo (torrent) file options:
-t            Create a new torrent file.
-u url          Tracker's url.
-l piece_len    Piece length. (default 262144)
-s filename   Specify metainfo file name.

Example:
ctorrent -s new_filename -e 12 -C 32 -p 6881 example.torrent

home page: http://ctorrent.sourceforge.net/
see also: http://www.rahul.net/dholmes/ctorrent/
bug report: dholmes@ct.boxmail.com
original author: bsdi@sina.com

IT业的民工 发表于 2006-12-26 10:01

一下是ipkg目前所有软件包的列表,大家看看有些比较感兴趣安装可以就可以安装。但是安装后记得发帖和大家分享哦。

/mmc # ipkg list
abook - Abook is a text-based addressbook program designed to use with mutt mail client.
adduser - a multi-call binary for login and user account administration
adns - Asynchronous resolver library and DNS resolver utilities.
alac-decoder - A decoder for the apple lossless file format
antinat - Antinat is a flexible SOCKS server and client library for writing proxy-based applications.
apache-manual - Online documentation for the apache webserver
apache - The most popular web server on the internet
appweb - AppWeb is the leading web server technology for embedding in devices and applications. Supports embedded javascript, CGI, Virtual Sites, SSL, user passwords, virtual directories - all with minimal memory footprint.
apr-util - Apache Portable Runtime utilities library
apr - Apache Portable Runtime library
arc - arc - Arc archiver
asterisk-sounds - Supplementary asterisk-sounds.
asterisk14-gui - Asterisk-GUI is a framework for the creation of graphical interfaces for configuring Asterisk.
asterisk14 - Asterisk is an Open Source PBX and telephony toolkit.
asterisk - Open Source VoIP PBX System
atftp - Advanced TFTP server and client
atk - GNOME accessibility toolkit
atop - A better top with history monitoring
audiofile - Misc Audio Libraries.
autoconf - Creating scripts to configure source code packages using templates
automake - Creates GNU standards-compliant Makefiles from template files
bash - A bourne style shell
bc - GNU bc is an arbitrary precision numeric processing language
bind - Bind provides a full name server package, including zone masters, slaves, zone transfers, security multiple views.This is THE reference implementation from ISC, which has roots all the way back to the TOPS-20 original.It is over-kill, unless you have a complex environment.Other utilities (for debugging, remote management) are also included.Full documentation and developers' files are included in this kit, though you may wish they weren't.
bip - multi user irc proxy
bison - a general-purpose parser generator that converts an annotated context-free grammar into an LALR(1) or GLR parser for that grammar.
bitchx - Text mode IRC client
bluez-hcidump - Bluetooth packet analyzer.
bluez-libs - Bluetooth libraries.
bluez-utils - Bluetooth utilities.
bogofilter - A fast Bayesian spam filter
buildroot - uClibc compilation toolchain
busybox-base - A userland replacement for embedded systems.
busybox-links - A userland replacement for embedded systems.
busybox - A userland replacement for embedded systems.
byrequest - TiVo HMO server
bzip2 - Very high-quality data compression program
cabextract - cabextract - Program to extract Microsoft Cabinet files
catdoc - catdoc can extract text from Microsoft word files, and xls2csv does roughly same for Excel files.
ccxstream - A server to stream music and video to an XBox running Xbox Media Player using XBMSP protocol
cdargs - CDargs heavily enhances the navigation of the common linux file-system inside the shell. It plugs into the shell built-in cd-command (via a shell function or an alias) and thus adds bookmarks and a browser to it. It enables you to move to a very distant place in the file-system with just a few keystrokes. This is the kind of thing that power shell users invent when even the almighty and wonderful TAB-completion is too much typing. (Just as a side-note: there exists TAB-completion for cdargs).
cherokee - A flexible, very fast, lightweight web server.
chillispot - ChilliSpot is an open source captive portal or wireless LAN access point controller.
chrpath - chrpath allows you to modify the dynamic library load path (rpath and runpath) of compiled programs and libraries.
clamav - Clam ANtivirus is a GPL anti-virus toolkit for UNIX
classpath - GNU Classpath for java
clearsilver - A fast, powerful, and language-neutral HTML template system.
clips - C Language Integrated Production System, a a productive development and delivery expert system tool.
cogito - Petr Pasky Baudis's SCM layer over Linus Torvald's git, formerly called git-pasky
connect - A simple relaying command to make network connection via SOCKS and https proxy.
coreutils - Bunch of heavyweight *nix core utilities
cpio - file archive utility
cron - Standard vixie cron, with cron.d addition
cscope - A tool for developer to browse source code.
ctags - Ctags generates an index (or tag) file of language objects found in source files that allows these items to be quickly and easily located by a text editor or other utility.
ctcs - CTorrent Control Server (CTCS) is an interface for monitoring and managing Enhanced CTorrent clients
ctorrent - CTorrent is a BitTorrent client written in the C programming language.
cups-doc-de - German documentation for CUPS
cups-doc-es - Spanish documentation for CUPS
cups-doc - Common Unix Printing System documentation.
cups - Common Unix Printing System
cvs - Concurrent versioning system.
cyrus-imapd-devel - The Carnegie Mellon University Cyrus IMAP Server
cyrus-imapd-doc - The Carnegie Mellon University Cyrus IMAP Server
cyrus-imapd - The Carnegie Mellon University Cyrus IMAP Server
cyrus-sasl-libs - Provides client or server side authentication (see RFC 2222).
cyrus-sasl - Provides client or server side authentication (see RFC 2222).
dash - dash (Debian Almquist Shell) is a POSIX compliant shell that is much smaller than bash.
dcraw - Decoding raw digital photos.
denyhosts - DenyHosts is a script intended to be run by Linux system administrators to help thwart ssh server attacks. If you've ever looked at your ssh log (/var/log/secure on Redhat, /var/log/auth.log on Mandrake, etc...) you may be alarmed to see how many hackers attempted to gain access to your server. Hopefully, none of them were successful (but then again, how would you know?). Wouldn't it be better to automatically prevent that attacker from continuing to gain entry into your system?DenyHosts attempts to address the above... and more.
dev-pts - Enables unix98-style ptys on unslung.
dhcp - A DHCP Server
dict - DICT Protocol (RFC 2229) Client.
diffutils - contains gnu diff, cmp, sdiff and diff3 to display differences between and among text files
digitemp - Reads 1-Wire Temperature sensor (http://www.digitemp.com)
distcc - distributes builds across a local network
dnsmasq - DNS and DHCP server
dokuwiki - DokuWiki is a standards compliant, simple to use Wiki
dovecot - Dovecot secure IMAP server
dropbear - Lightweight SSH client and server system
dspam-mysql - DSPAM is a scalable and open-source content-based spam filter designed for multi-user enterprise systems.
dspam-pgsql - DSPAM is a scalable and open-source content-based spam filter designed for multi-user enterprise systems.
dspam - DSPAM is a scalable and open-source content-based spam filter designed for multi-user enterprise systems.
dtach - A program that emulates the detach feature of screen.
e2fsprogs - Ext2 Filesystem Utilities (TESTING)
e2tools - Ext2 tools
eaccelerator - Yet another php cache / accelerator
ecl - Embeddable Common-Lisp
ed - Line editor
eggdrop - Eggdrop is a popular Open Source IRC bot
enhanced-ctorrent - Enhanced CTorrent is a revised version of CTorrent
esmtp - esmtp is a user configurable relay-only Mail Transfer Agent (MTA) with a sendmail compatible syntax.
esniper - A lightweight eBay sniping tool
esound - The Enlighted Sound Daemon.
expat - XML Parser library
extract-xiso - Extract-xiso is the premier backup tool for creating and extracting disc image .iso's of XBox games.
fetchmail - A remote mail retrieval and forwarding utility
ffmpeg - FFmpeg is an audio/video conversion tool.

[ 本帖最后由 IT业的民工 于 2006-12-26 10:08 编辑 ]

IT业的民工 发表于 2006-12-26 10:02

file - Ubiquitous file identification utility.
findutils-doc - Documentation for file finding utilities
findutils - File finding utilities
fixesext - X fixes extension headers
flac - FLAC is a free lossless audio codec.This package contains the codec libraries and the command-line tools flac and metaflac.
flex - Generates programs that perform pattern-matching on text.
flip - Utility program to convert text files between UNIX or Mac newlines and DOS linefeed + newlines.
fontconfig - Font configuration library
freeradius-doc - Documentation for freeradius
freeradius - An open source RADIUS server.
freetds - A free re-implementation of the Tabular Data Stream protocol for Sybase or MS SQL Server.
freetype - Free truetype library
freeze - freeze - archiver and compressor
ftpcopy - A simple FTP client written to copy files or directories (recursively) from a FTP server.
ftpd-topfield - FTPD for the Topfield TF5000PVRt
gawk - Gnu AWK interpreter
gcal - Gcal calculates and prints calendars.
gconv-modules - Provides gconv modules missing from the firmware.These are used by glibc's iconv() implementation.
gdb - gdb is the standard GNU debugger
gdbm - GNU dbm is a set of database routines that use extensible hashing. It works similar to the standard UNIX dbm routines.
gdchart - Easy to use C API for create charts and graphs in PNG, GIF and WBMP format.
getmail - getmail is a mail retriever designed to allow you to get your mail from one or more mail accounts on various mail servers to your local machine.
gettext - Set of tools for producing multi-lingual messages
ghostscript - An interpreter for the PostScript (TM) language
gift-ares - giFT ares plugin
gift-fasttrack - gIFt fasttrack plugin
gift-gnutella - gIFt Gnutella plugin
gift-openft - gIFt openft plugin
gift-opennap - gIFt opennap plugin
gift - gIFt is a multi-platform multi-networks peer-to-peer client. gIFt runs as a daemon on the computer. It can be controlled using several interfaces.
giftcurs - giFTcurs is a curses front end to the giFT daemon
git-core - GIT is a directory tree content manager that can be used for distributed revision control.
glib - The GLib library of C routines.
gnupg - GNU privacy guard - a free PGP replacement.
gnuplot - Command-line driven interactive data and function plotting utility
gnutls - GNU Transport Layer Security Library.
grep - Global regular expression parser
groff - front-end for the groff document formatting system
gzip - GNU Zip data compression program
hdparm - Linux hard drive parameter utility
hexcurse - A versatile ncurses-based hex editor.
heyu - X10 home automation control using the CM11A
hnb - Hierarchical notebook(hnb) is a curses program to structure many kinds of data in one place.
hpijs - Printer support for HP printer
imagemagick - A set of image processing utilities.
imap-libs - University of Washington IMAP package
imap - University of Washington IMAP package
indent - A program to make code easier to read, can also be used for C coding style conversion.
inetutils - A set of common daemons and clients found on commercial UNIX systems.
iozone - Filesystem benchmark tool
ipkg-opt - The Itsy Package Manager
ipkg-web - A web frontend for ipkg
ipkg - The Itsy Package Manager
ipython-common - An enhanced interactive Python shell
ipython - An enhanced interactive Python shell
ircd-hybrid - IRCD Hybrid
irssi - A terminal based IRC client for UNIX systems.
ivorbis-tools - Tools to allow you to play, encode, and manage Ogg Vorbis files. This version is hacked to use the Tremor integer decoder.
jikes - IBM java compiler
joe - Joe's own editor. A text editor with wordstar-like and emacs-like keybindings.
jove - A tiny, fast editor with emacs keybindings
kissdx - kissdx is a PC-Link clone for KiSS media players with added features for DVD, video and picture playback.
knock - knockd is a port-knock server. It listens to all traffic on an ethernet (or PPP) interface, looking for special knock sequences of port-hits. A client makes these port-hits by sending a TCP (or UDP) packet to a port on the server. This port need not be open -- since knockd listens at the link-layer level, it sees all traffic even if it's destined for a closed port. When the server detects a specific sequence of port-hits, it runs a command defined in its configuration file. This can be used to open up holes in a firewall for quick access.
lame - LAME is an LGPL MP3 encoder.
less - Less file browser
lha - lha - File archiving utility with compression
libart - 2-d graphics library.
libbt - a C library implementing the core BitTorrent protocol
libcurl - Curl is a command line tool for transferring files with URL syntax, supporting FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE and LDAP. Curl supports HTTPS certificates, HTTP POST, HTTP PUT, FTP uploading, kerberos, HTTP form based upload, proxies, cookies, user+password authentication, file transfer resume, http proxy tunneling and a busload of other useful tricks.
libdb - Berkeley DB Libraries
libdvdread - library for reading dvd
libesmtp - libESMTP is a library to manage posting electronic mail using SMTP to a preconfigured Mail Transport Agent (MTA).
libevent - libevent to implement an event loop
libexif - Library to parse EXIF info in JPEG file and read/write the data from those tags.
libftdi - Library to access the FTDI (usb2serial) chip in userspace via libusb
libgc - The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new.
libgcrypt - GNU cryptography libray, needed by gnutls
libgd - An ANSI C library for the dynamic creation of images
libghttp - libghttp is a light-weight http fetching library.
libgmp - GNU Multiple Precision Arithmetic Library.
libgpg-error - Error handling library for libgcrypt
libid3tag - The library used for ID3 tag reading
libidn - GNU Libidn is an implementation of the Stringprep, Punycode and IDNA specifications defined by the IETF Internationalized Domain Names (IDN) working group, used for internationalized domain names.
libjpeg - collection of jpeg tools
liblcms - A small-footprint, speed optimized color management engine.
libmad - MPEG Audio Decoder library
libmemcache - The C API for memcached.
libmpeg2 - A free library for decoding MPEG-2 and MPEG-1 video streams.
libnsl - Network Services Library
libogg - Ogg is a multimedia container format.
libol - Support library for syslog-ng
libosip2 - oSIP library is an implementation of SIP - rfc3261
libpng - Portable Network Graphics Libraries
libpth - Pth is a very portable POSIX/ANSI-C based library for Unix platforms which provides non-preemptive priority-based scheduling for multiple threads of execution (aka multithreading) inside event-driven applications.
librsync - librsync is a free software library that implements the rsync remote-delta algorithm.
libsigc++ - libsigc++ implements a typesafe callback system for standard C++.
libstdc++ - =Standard C++ library, wrapped for uClibc++
libtasn1 - Describe libtasn1 here.
libtiff - Tag Image File Format Libraries
libtool - Library tools.
libuclibc++ - C++ standard library designed for use in embedded systems
libupnp - The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.
libusb - Library for interfacing to the USB subsystem.
libvorbis - Ogg Vorbis compressed audio format.
libvorbisidec - libvorbisidec is the integer-only ogg decoder library, AKA Tremor
libxml2 - Libxml2 is the XML C parser and toolkit developed for the Gnome project.
libxslt - An XML Stylesheet processor based on libxml2
lighttpd - A fast webserver with minimal memory footprint.
logrotate - Rotates, compresses, removes and mails system log files.
lrzsz - Tools for zmodem/xmodem/ymodem file transfer
lsof - LiSt Open Files - a diagnostic tool.
lua - Lua is a powerful light-weight programming language designed for extending applications.
lynx - A text browser for the World Wide Web
lzo - Compression library
m4 - gnu macro processor and compiler front end
madplay - MPEG Audio Decoder player
mailman - the GNU Mailing List Manager.
make - examines files and runs commands necessary for compilation
man-pages - unix manual pages
man - unix manual page reader
mc - Midnight Commander File Manager
mdadm - A software raid configuration utility.
mediawiki - A fast, full-featured, wiki based on php.
memcached - memcached is a high-performance, distributed memory object caching system.
metalog - Modern, highly configurable syslogd replacement
miau - The MIAU IRC Bouncer (Proxy)
microperl - Microperl.
minicom - Minicom is a serial communication program. It is a Unix clone of the well-known MS-DOS Telix program. It has ANSI color, a dialing directory, dial-a-list, and a scripting language.
mktemp - Mktemp is a small program to allow safe temporary file creation from shell scripts.
mod-fastcgi - mod_fastcgi is an Apache module providing language independent, scalable, open extension to CGI.
mod-python - Mod_python is an Apache server module that integrates with the Python language.
modutils - Linux module utilities These utilities are intended to make a Linux modular 2.2 or 2.4 kernel manageable for all users, administrators and distribution maintainers. For 2.6 kernels, you should use the module-init-tools package.
monit - monit is a utility for managing and monitoring, processes, files, directories and devices on a UNIX system. monit conducts automatic maintenance and repair and can execute meaningful causal actions in error situations.
motion - a software motion detector
mp3blaster - interactive text-based program that plays MP3, Ogg Vorbis, wav, and sid audio files

IT业的民工 发表于 2006-12-26 10:03


mpack - Tools for encoding/decoding MIME messages.
mpage - Print several pages on a single sheet of paper.
mpeg2dec - A simple decoder and demultiplexer for MPEG-1 and MPEG-2 streams to test libmpeg2.
mrtg - Multi Router Traffic Grapher
mt-daapd - A multi-threaded DAAP server for Linux and other POSIX type systems. Allows a Linux box to share audio files with iTunes users on Windows or Mac.
mtools - A collection of utilities to access MS-DOS disks from Unix without mounting them.
multitail - MultiTail follows files in style, it is tail on steroids.
mutt - text mode mail client
mxml - Mini-XML is a small XML parsing library that you can use to read XML and XML-like data files in your application without requiring large non-standard libraries.
mysql - Popular free SQL database system
nagios-plugins - The nagios (network monitor system) plugins
nail - command-line email-client supporting POP3, IMAP, SMTP, ...
nano - A pico like editor
nanoblogger - A small weblog engine written in Bash for the command line.
nbench-byte - BYTE's Native Mode Benchmarks
ncftp - Nice command line FTP client
ncurses - NCurses libraries
ncursesw - NCurses libraries with wide char support.
neon - an HTTP and WebDAV client library, with a C interface
net-snmp - net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6
netcat - TCP/IP swiss army knife.
netio - A program to test network throughput
nload - Nload is a console application which monitors network traffic and bandwidth usage in real time
nmap - Nmap is a feature-rich portscanner
noip - www.no-ip.com Dynamic Update Client
nrpe - The Nagios Remote Plugin Executor
ntfsprogs - NTFS filesystem libraries and utilities
ntop - Network monitoring software
ntp - A time synchronization daemon
ntpclient - Using RFC1305 (NTP), retrieves a remote date and time
nvi - The original Berkeley Vi.
nylon - Nylon is a small socks4/socks5 proxy server
nzbget - A command-line based binary newsgrabber supporting nzb-files.
opencdk - GNU cryptographic library.
openldap-libs - Open Lightweight Directory Access Protocol
openldap - Open Lightweight Directory Access Protocol
openssh - a FREE version of the SSH protocol suite of network connectivity tools.
openssl - Openssl provides the ssl implementation in libraries libcrypto and libssl, and is needed by many other applications and libraries.
openvirtual** - SSL based virtual** server with Windows client support
optware-devel - This is a meta package that bundles all the packages required for optware native development.
ossp-js - a stand-alone distribution of the JavaScript (JS) programming language reference implementation from Mozilla.
oww - Oww reads from a DalSemi/AAG weather station.
palantir - Multichannel interactive streaming solution
patch - applies a diff to produce a patched file
pcre - Perl-compatible regular expression library
pen - A load balancer for simple tcp based protocols such as http or smtp.
php-apache - The php scripting language, built as an apache module
php-dev - php native development environment
php-embed - php embedded library - the embed SAPI
php-fcgi - The php scripting language, built as an fcgi module
php-gd - libgd extension for php
php-imap - imap extension for php
php-ldap - ldap extension for php
php-mbstring - mbstring extension for php
php-mysql - mysql extension for php
php-pear - PHP Extension and Application Repository
php-pgsql - pgsql extension for php
php-thttpd - php-thttpd is thttpd webserver with php support
php - The php scripting language
phpmyadmin - Web-based administration interface for mysql
picocom - A minimal dumb-terminal emulation program.
pkgconfig - Package configuration tool
popt - A C library for parsing command line parameters.
poptop - Poptop is the PPTP server solution for Linux.
portmap - Portmap daemon for NFS
postfix-doc - The Postfix mail system is an alternative to sendmail.
postfix - The Postfix mail system is an alternative to sendmail.
postgresql - PostgreSQL is a highly-scalable, SQL compliant, open source object-relational database management system
pound - Reverse-proxy and load-balancer.
privoxy - A Web proxy based on Internet Junkbuster.
procmail - Versatile email processor.
proftpd - Highly configurable FTP server with SSL-TLS
psutils - Describe psutils here.
puppy - Puppy will allow a user to communicate with a Topfield TF5000PVRt via a USB port.
pwgen - The pwgenprogram generates passwords which are designed to be easily memorized by humans, while being as secureaspossible.Human-memorablepasswordsarenevergoingto be as secure as completely completely random passwords.In particular, passwords generated bypwgen withoutthe-s option should not be used in places where the password could be attacked via an off-line brute-force attack.    Ontheother hand,completelyrandomlygeneratedpasswords have a tendency to be written down, and are subject to being compromised in that fashion.
py-4suite - Python-based toolkit for XML and RDF application development.
py-amara - A collection of Python/XML processing tools to complement 4Suite.
py-apsw - Another Python SQLite Wrapper.
py-axiom - An object database or object-relational mapper.
py-bazaar-ng - A decentralized revision control system designed to be easy for developers and end users alike.
py-bittorrent-common - BitTorrent is a scatter-gather network file transfer tool.
py-bittorrent - BitTorrent is a scatter-gather network file transfer tool.
py-bluez - Python wrappers around bluez.
py-celementtree - A toolkit that contains a number of light-weight components for working with XML (C implementation).
py-cheetah - Cheetah - The Python-Powered Template Engine.
py-cherrypy - A pythonic, object-oriented web development framework.
py-cherrytemplate - CherryTemplate is an easy and powerful templating module for Python.
py-clips - PyCLIPS is an extension module that embeds full CLIPS functionality in Python applications.
py-codeville - a distributed version control system.
py-configobj - A simple but powerful config file reader and writer in Python.
py-constraint - A Python module offering solvers for Constraint Solving Problems (CSPs) over finite domains in simple and pure Python.
py-crypto - Python Cryptography Toolkit.
py-django - A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
py-docutils - An open-source text processing system for processing plaintext documentation into useful formats.
py-elementtree - A toolkit that contains a number of light-weight components for working with XML.
py-epsilon - A small python utility package.
py-flup - A collection of python WSGI modules including those speaking AJP 1.3, FastCGI and SCGI.
py-formencode - A form generation and validation package for python.
py-gd - GD module is an interface to the GD library.
py-gdchart2 - PyGDChart is a set of Python bindings for the GDChart library.
py-genshi - A toolkit for stream-based generation of output for the web.
py-getmail-common - getmail is a mail retriever designed to allow you to get your mail from one or more mail accounts on various mail servers to your local machine.
py-kid - Pythonic XML-based Templating
py-lxml - A Pythonic binding for the libxml2 and libxslt libraries.
py-mantissa - An extensible, multi-protocol, multi-user, interactive application server built on top of Axiom and Nevow.
py-mercurial - A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects.
py-moin - MoinMoin is a nice and easy WikiEngine with advanced features, providing collaboration on easily editable web pages.
py-mssql - Simple MSSQL Python extension module.
py-mx-base - A collection of userful open source python packages from eGenix.com.
py-myghty - A Python based web and templating framework.
py-mysql - MySQL support for Python.
py-nevow - A web application construction kit written in Python.
py-nose - A discovery-based python unittest extension.
py-paste - Tools for using a Web Server Gateway Interface stack.
py-pastedeploy - Load, configure, and compose WSGI applications and servers.
py-pastescript - A pluggable command-line frontend, including commands to setup package file layouts.
py-pastewebkit - A port/reimplementation of Webware WebKit in WSGI and Paste.
py-pexpect - Python module for automating interactive applications.
py-pgsql - A Python DB-API 2.0 compliant interface to PostgreSQL databases.
py-pil - The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter.
py-ply - A pure-Python implementation of lex and yacc.
py-protocols - Python interface module.
py-psycopg2 - psycopg2 is a PostgreSQL database adapter for the Python programming language.
py-psycopg - psycopg is a PostgreSQL database adapter for the Python programming language.
py-pygresql - Python module that interfaces to a PostgreSQL database.
py-pyro - PYthon Remote Objects.
py-quixote - A highly Pythonic Web application framework.
py-rdiff-backup - rdiff-backup backs up one directory to another, possibly over a network.
py-reportlab - An Open Source Python library for generating PDFs and graphics.
py-roundup-common - An issue-tracking system with command-line, web and e-mail interfaces.
py-roundup - An issue-tracking system with command-line, web and e-mail interfaces.
py-routes - Routing Recognition and Generation Tools.
py-ruledispatch - Python module for rule-based dispatching and generic functions.
py-scgi - Server-side implementation of the SCGI protocol.
py-selector - WSGI delegation based on URL path and method.
py-serial - Python module encapsulating the access to serial port.
py-setuptools - Tool to build and distribute Python packages, enhancement to distutils.

IT业的民工 发表于 2006-12-26 10:04


py-simplejson - Simple, fast, extensible JSON encoder/decoder for Python.
py-simpy - An object-oriented, process-based discrete-event simulation language based on standard Python.
py-soappy - A SOAP implementation for Python.
py-sqlalchemy - Python SQL toolkit and Object Relational Mapper
py-sqlite - pysqlite is an interface to the SQLite database server for Python. It aims to be fully compliant with Python database API version 2.0 while also exploiting the unique features of SQLite.
py-sqlobject - An object-relational mapper for python.
py-tailor - A tool to migrate changesets between various SCMs.
py-tgfastdata - An TurboGears extension that provides automatic user interface generation based upon an application model objects.
py-turbocheetah - Python template plugin that supports use of Cheetah templates.
py-turbogears - Rapid web development megaframework in Python.
py-turbojson - Python template plugin that supports JSON.
py-turbokid - Python template plugin that supports Kid templates.
py-twisted - A networking engine written in Python.
py-urwid - Urwid is a console user interface library in Python.
py-usb - PyUSB is a native Python module written in C that provides USB access for it.
py-wsgiref - Reference implementation of the python Web Server Gateway Interface specification.
py-xml - The PyXML package is a collection of libraries to process XML with Python.
py-yaml - YAML parser and emitter for Python.
py-zope-interface - A separate distribution of the zope.interface package used in Zope 3, along with the packages it depends on.
py25-bazaar-ng - A decentralized revision control system designed to be easy for developers and end users alike.
py25-bittorrent - BitTorrent is a scatter-gather network file transfer tool.
py25-celementtree - A toolkit that contains a number of light-weight components for working with XML (C implementation).
py25-cheetah - Cheetah - The Python-Powered Template Engine.
py25-cherrypy - A pythonic, object-oriented web development framework.
py25-configobj - A simple but powerful config file reader and writer in Python.
py25-crypto - Python Cryptography Toolkit.
py25-django - A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
py25-elementtree - A toolkit that contains a number of light-weight components for working with XML.
py25-formencode - A form generation and validation package for python.
py25-genshi - A toolkit for stream-based generation of output for the web.
py25-getmail - getmail is a mail retriever designed to allow you to get your mail from one or more mail accounts on various mail servers to your local machine.
py25-ipython - An enhanced interactive Python shell
py25-kid - Pythonic XML-based Templating
py25-mercurial - A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects.
py25-mx-base - A collection of userful open source python packages from eGenix.com.
py25-mysql - MySQL support for Python.
py25-nose - A discovery-based python unittest extension.
py25-paste - Tools for using a Web Server Gateway Interface stack.
py25-pastedeploy - Load, configure, and compose WSGI applications and servers.
py25-pastescript - A pluggable command-line frontend, including commands to setup package file layouts.
py25-pastewebkit - A port/reimplementation of Webware WebKit in WSGI and Paste.
py25-pil - The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter.
py25-protocols - Python interface module.
py25-psycopg2 - psycopg2 is a PostgreSQL database adapter for the Python programming language.
py25-psycopg - psycopg is a PostgreSQL database adapter for the Python programming language.
py25-roundup - An issue-tracking system with command-line, web and e-mail interfaces.
py25-routes - Routing Recognition and Generation Tools.
py25-ruledispatch - Python module for rule-based dispatching and generic functions.
py25-setuptools - Tool to build and distribute Python packages, enhancement to distutils.
py25-simplejson - Simple, fast, extensible JSON encoder/decoder for Python.
py25-sqlalchemy - Python SQL toolkit and Object Relational Mapper
py25-sqlobject - An object-relational mapper for python.
py25-turbocheetah - Python template plugin that supports use of Cheetah templates.
py25-turbogears - Rapid web development megaframework in Python.
py25-turbojson - Python template plugin that supports JSON.
py25-turbokid - Python template plugin that supports Kid templates.
py25-twisted - A networking engine written in Python.
py25-zope-interface - A separate distribution of the zope.interface package used in Zope 3, along with the packages it depends on.
pyrex - A Language for Writing Python Extension Modules.
python24 - Python is an interpreted, interactive, object-oriented programming language.
python25 - Python is an interpreted, interactive, object-oriented programming language.
python - This is a package that sets up the default python.
quagga - The quagga routing suite, including ospf, rip, and bgp (ospf6d and ripngd are included if library has IPv6 support).
quilt - A set of scripts to manage a series of patches.
rc - A port of the AT&T Plan 9 shell.
rcs - The Revision Control System (RCS) manages multiple revisions of files.
rdate - Using RFC868, retrieves a remote date and time and sets the local time
readline - The GNU Readline library provides a set of functions for use by applications that allow users to edit command lines as they are typed in
recode - The recode library converts files between character sets and usages.
recordext - X record extension headers
renderext - X render extension headers
rlfe - Readline front-end, add readline to command line programs.
rrdtool - Round-Robin Database tool. Database collator and plotter
rsync - fast remote file copy program (like rcp)
rtpproxy - RTPproxy is a proxy for RTP streams that can help SER/OpenSER handle NAT situations, as well as proxy IP telephony between IPv4 and IPv6 networks.
ruby - An interpreted scripting language for quick and easy object-oriented programming.
rubygems - Ruby packaging and installation framework.
sablevm - A robust, extremely portable, efficient, and specifications-compliant JVM.
samba - Samba suite provides file and print services to SMB/CIFS clients.
sane-backends - SANE is a universal scanner interface
scons - An improved, cross-platform substitute for the classic Make utility with integrated functionality similar to autoconf/automake and compiler caches such as ccache.
screen - A screen manager that supports multiple logins on single terminal
sdparm - Utility for listing and potentially changing SCSI disk parameters
sed - Stream editor.
sendmail - The most classic SMTP server.
setpwc - Set and list settings of WebCams with the 'PWC chipset'
setserial - configuration utility for serial ports
simh - A highly portable, multi-system emulators.
siproxd - Siproxd is a proxy/masquerading daemon for the SIP protocol
smartmontools - Utility programs to control and monitor (SMART) built into most modern ATA and SCSI hard disks.
socat - A relay for bidirectional data transfer between two independent data channels.
sqlite2 - SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine.
sqlite - SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine.
sqsh - Command line SQL client for MS SQL and Sybase servers.
squeak - Squeak is a full-featured implementation of the Smalltalk programming language and environment.
squid - Full-featured Web proxy cache.
srelay - Socks proxy server.
stow - This is GNU Stow, a program for managing the installation of software packages, keeping them separate while making them appear to be installed in the same place (/opt/local).
strace - Traces all system calls a program makes.
streamripper - Shoutcast ripper
stunnel - SSL encryption wrapper for all kinds of servers
sudo - System utility to execute commands as the superuser
svn - a compelling replacement for CVS
swi-prolog - An LGPL comprehensive portable Prolog implementation.
syslog-ng - Syslog replacement logging on behalf of remote hosts
sysstat - System performance tools for linux os
taged - command line utility that can create and modify ID3 data
tar - heavyweight version of the Tape ARchiver
tcl - The Tool Command Language
tcpdump - tcpdump dumps the traffic on a network
tcpwrappers - A library that allows IP level control over ports
tcsh - C shell with file name completion and command line editing.
termcap - Terminal emulation library
tethereal - Terminal based ethereal to dump and analyze network traffic
textutils - GNU Text Utilities
tftp-hpa - A tftp package
thttpd - thttpd is a lightweight http server
tin - tin is a threaded NNTP and spool based UseNet newsreader
tinyscheme - An implementation of the algorithmic language Scheme that aims to very small memory footprint while being as close to R5RS as practically feasible.
tmsnc - Text-based MSN client.
tnef - TNEF is a program for unpacking ms-tnef type MIME attachments
tnftp - tnftp (formerly lukemftp) is what many users affectionately call the enhanced ftp client in NetBSD.
tnftpd - tnftpd (formerly lukemftpd) is a port of the NetBSD FTP server to other systems.
tor - Connection-oriented anonymizing communication service
torrent - a collection of scripts that processes torrent files
transmission - lightweight BitTorrent client and daemon with WWW interface
tsocks - Transparent SOCKS proxying library.
ttf-bitstream-vera - Bitstream Vera truetype font, for use with fontconfig, freetype, and xft
uclibc-opt - micro C library for embedded Linux systems

IT业的民工 发表于 2006-12-26 10:05


uclibc - micro C library for embedded Linux systems
ufsd - NTFS read/write kernel module from Linksys V2.3R63 firmware.
unarj - unarj - An uncompressor for .arj format archive files
unfs3 - Version 3 NFS server (not recommended, use nfs-utils instead)
units - GNU units converts between different systems of units.
unrar - unrar is an application that can decompress files and archives created using the RAR compression scheme
unzip - A (de)compression library for the ZIP format
usbutils - USB enumeration utilities
ushare - A free UPnP A/V Media Server for Linux.
vblade - vblade makes a seekable file available over ATA over Ethernet
vdr-mediamvp - A media server for the Hauppauge MediaMVP
vim - Yet another version of the vi editor.
vorbis-tools - A set of tools to manipulate ogg-vorbis files.
vsftpd - ftp daemon with an emphasis on speed and security
w3cam - w3cam is a simple CGI to retrieve images from a so called video4linux device
w3m - Pager/text-based WWW browser with tables/frames support
wakelan - send the magic wakeup package over the LAN
webalizer - Webalizer is a webserver stats program.
wget-ssl - A network utility to retrieve files from the Web
wget - A network utility to retrieve files from the Web
which - which prints out the full path of the executablesthat bash(1) would execute when the passed program names would have been entered on the shell prompt. It uses the exact same algorithm as bash. Tildes and a dot in the PATH are now expanded to the full path by default. Options allow users to print ~/* or ./* and/or toprint all executables that match any directory in the PATH
whois - Perform whois lookups to identify site owners
wiley-feeds - A list of sanctioned Unslung package feeds.
wizd - Mediaserver program for IO-DATA and other players
wpa-supplicant - wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support for WPA and WPA2 (IEEE 802.11i / RSN)
wput - A command-line ftp-client that uploads files or whole directories to remote ftp-servers.
wxbase - wxbase is a basic (non-windows) part of wxWidget toolkit
x11 - X protocol library
xau - X authorization library
xdmcp - XDMCP protocol library
xdpyinfo - X display information utility
xext - X extensions library
xextensions - Headers for standard extensions to the X protocol
xinetd - Highly configurable, modular and secure inetd
xmail - A combined easy to configure SMTP, POP3 and Finger server.
xpdf - Various PDF tools (no support for X11 compiled in)
xpm - X11 pixmap library
xproto - X protocol headers
xtrans - X transport headers
xtst - X test library
xvid - Xvid is MPEG4 codec
zip - a compression and file packaging utility.
zlib - zlib is a library implementing the 'deflate' compression system.
zoo - zoo - File archiving utility with compression
zsh - Zsh is a shell designed for interactive use.

yanjian 发表于 2006-12-26 13:06

正找这样的呢!谢谢!

eddiechen 发表于 2006-12-26 14:11

大家都这样就好了,我前段时间用dd-wrt连接公司的virtual**,怎么都连接不上,我的设置应该是没有问题的,但dd出错也不报,不知道什么原因,其实dd上很多功能大家都没有用过。

这个贴肯定应该是精华了

ViCO 发表于 2006-12-26 15:58

Cool!谢谢楼主分享

ViCO 发表于 2006-12-26 15:59

原帖由 eddiechen 于 2006-12-26 14:11 发表
大家都这样就好了,我前段时间用dd-wrt连接公司的virtual**,怎么都连接不上,我的设置应该是没有问题的,但dd出错也不报,不知道什么原因,其实dd上很多功能大家都没有用过。

这个贴肯定应该是精华了


俺也还一直没有搞定virtual**...

eddiechen 发表于 2006-12-26 18:38

原帖由 ViCO 于 2006-12-26 15:59 发表



俺也还一直没有搞定virtual**...

看来同病相怜阿,好像说virtual**的设备不同厂家很难调通,不知道大家用的如何

dboy 发表于 2006-12-26 23:27

学习中!谢谢搂主!

mysy 发表于 2007-5-20 21:45

这个铁质还不错
页: [1] 2 3 4
查看完整版本: DD-WRT上安装应用软件攻略(原创)