找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 77866|回复: 48

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

[复制链接]
发表于 2006-12-26 09:49 | 显示全部楼层 |阅读模式
经过几天的折腾终于能用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)。而且安装的过程中空间不够是会提示的。这也是我最“讨厌”的DD-WRT的地方出了异常不说原因导致调试常常使人陷入郁闷状态。因此我们需要通过MMC卡或U盘来代替JFFS。我们只要把MMC卡或U盘mount到/JFFS就可以解决。但是还是要在WEBUI打开JFFS支持。
   
   
       这里以FTP客户端和BT客户端为例和大家分享一下安装经验。

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

  3. / # ls
  4. bin   etc   lib   mnt   proc  tmp   var
  5. dev   jffs  mmc   opt   sbin  usr   www
  6. / # df
  7. Filesystem           1k-blocks      Used Available Use% Mounted on
  8. /dev/root                 2624      2624         0 100% /
  9. /dev/mtdblock/4           4672       728      3944  16% /jffs
  10. /dev/mmc/disc0/part1     14091      2567     10797  19% /mmc
  11. / # cd /mmc
  12. /mmc # ls
  13. lost+found  mylib       udisk.sh    usb.sh
  14. /mmc # cat usb.sh
  15. insmod /mmc/mylib/usbcore.o
  16. insmod /mmc/mylib/uhci.o
  17. insmod /mmc/mylib/usb-ohci.o
  18. /mmc # cat udisk.*
  19. insmod /mmc/mylib/scsi_mod.o
  20. insmod /mmc/mylib/usb-storage.o
  21. insmod /mmc/mylib/sd_mod.o
  22. insmod /mmc/mylib/fat.o
  23. insmod /mmc/mylib/vfat.o
  24. insmod /mmc/mylib/msdos.o
  25. umount /jffs
  26. rmmod crc32
  27. rmmod jffs2
  28. mount /dev/scsi/host0/bus0/target0/lun0/part1 /jffs
  29. /mmc # ./usb.sh
  30. /mmc # ./udisk.sh
  31.   Vendor: Generic   Model: USB Flash Drive   Rev: %z!Y
  32.   Type:   Direct-Access                      ANSI SCSI revision: 02
  33. Attached scsi removable disk sda at scsi0, channel 0, id 0, lun 0
  34. SCSI device sda: 515072 512-byte hdwr sectors (264 MB)
  35. sda: Write Protect is off
  36. / # cd /jffs
  37. /jffs # ls
  38. lost+found
  39. /jffs # mkdir -p opt/etc
  40. /jffs # mkdir -p tmp/ipkg
  41. /jffs # mount -o bind /jffs/opt /opt                     (IPKG需要把下载回来的软件放到/opt,因此我们只能这样取悦它)
  42. /jffs # df
  43. Filesystem           1k-blocks      Used Available Use% Mounted on
  44. /dev/root                 2624      2624         0 100% /
  45. /dev/mmc/disc0/part1     14091      2567     10797  19% /mmc
  46. /dev/scsi/host0/bus0/target0/lun0/part1    249375        17    236482   0% /jffs
  47. /dev/scsi/host0/bus0/target0/lun0/part1    249375        17    236482   0% /opt
  48. /jffs # cat > /opt/etc/ipkg.conf
  49. src unslung http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable
  50. dest root /jffs
  51. ^D                                                                  (Ctrl+D 可以认为是保存)

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

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

评分

参与人数 1恩山币 +1 收起 理由
戏*** + 1 犀利

查看全部评分

我的恩山、我的无线 The best wifi forum is right here.
 楼主| 发表于 2006-12-26 09:53 | 显示全部楼层

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

  17. Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/uclibc_0.9.28-5_mipsel.ipk ...
  18. Connecting to ipkg.nslu2-linux.org[140.211.166.82]:80
  19. uclibc_0.9.28-5_mips 100% |*****************************|   588 KB 00:00:00 ETA
  20. Done.
  21. Unpacking uclibc...Done.
  22. Configuring uclibc...Updating /opt/etc/ld-opt.so.cache
  23. /opt/sbin/ldconfig: skipping /opt/usr/lib: No such file or directory
  24. Done.
  25. /jffs # ls
  26. jffs        lost+found  opt         tmp         usr
  27. /jffs # mkdir -p /opt/usr/lib
  28. /jffs # ipkg install uclibc

  29. Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/uclibc_0.9.28-5_mipsel.ipk ...
  30. Connecting to ipkg.nslu2-linux.org[140.211.166.82]:80
  31. uclibc_0.9.28-5_mips 100% |*****************************|   588 KB 00:00:00 ETA
  32. Done.
  33. Unpacking uclibc...Done.
  34. Configuring uclibc...Updating /opt/etc/ld-opt.so.cache
  35. Done.
  36. /jffs # ls
  37. jffs        lost+found  opt         tmp         usr
  38. /jffs # ipkg install ncftp

  39. Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/ncurses_5.5-2_mipsel.ipk ...
  40. Connecting to ipkg.nslu2-linux.org[140.211.166.82]:80
  41. ncurses_5.5-2_mipsel 100% |*****************************|   583 KB 00:00:00 ETA
  42. Done.
  43. Unpacking ncurses...Done.
  44. Configuring ncurses...Done.

  45. Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/ncftp_3.2.0-2_mipsel.ipk ...
  46. Connecting to ipkg.nslu2-linux.org[140.211.166.82]:80
  47. ncftp_3.2.0-2_mipsel 100% |*****************************|   513 KB 00:00:00 ETA
  48. Done.
  49. Unpacking ncftp...Done.
  50. Configuring ncftp...Done.

  51. /jffs # cd /opt
  52. /opt # ls
  53. bin    etc    lib    man    sbin   share  usr
  54. /opt # cd bin
  55. /opt/bin # ls
  56. captoinfo       ncftp           ncftpls         tic
  57. clear           ncftpbatch      ncftpput        toe
  58. infocmp         ncftpbookmarks  ncftpspooler    tput
  59. infotocap       ncftpget        reset           tset
  60. /opt/bin # ./ncftp  
  61. NcFTP 3.2.0 (Aug 05, 2006) by Mike Gleason (http://www.NcFTP.com/contact/).

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

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

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

  74. For details, please see the manual ("man ncftp" at your regular shell prompt
  75. or online at http://www.NcFTP.com/ncftp/doc/ncftp.html).
  76. ncftp> open 125.88.125.133
  77. Connecting to 125.88.125.133...                                                
  78. (vsFTPd 2.0.1)
  79. Logging in...                                                                  
  80. Login successful.
  81. Logged in to 125.88.125.133.                                                   
  82. ncftp / > ls
  83. pub/
  84. ncftp / > exit


  85. You have not saved a bookmark for this site.



  86. Would you like to save a bookmark to:
  87.         ftp://125.88.125.133

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

以后们就可用DD 登陆FTP了。
但是如果下载URL明确的话建议还是使用dd自带的wget命令比较快捷。如果要上传或者要查目录或用通配符就可以用ncftp了。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2006-12-26 09:54 | 显示全部楼层
BT客户端的按照过程

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

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

  12. Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/libstdc++_0.2.0-5_mipsel.ipk ...
  13. Connecting to ipkg.nslu2-linux.org[140.211.166.82]:80
  14. libstdc++_0.2.0-5_mi 100% |*****************************|   652    --:--:-- ETA
  15. Done.
  16. Unpacking libstdc++...Done.
  17. Configuring libstdc++...Done.

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

  24. Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/ctorrent_1.3.4-2_mipsel.ipk ...
  25. Connecting to ipkg.nslu2-linux.org[140.211.166.82]:80
  26. ctorrent_1.3.4-2_mip 100% |*****************************| 45468    00:00:00 ETA
  27. Done.
  28. Unpacking ctorrent...Done.
  29. Configuring ctorrent...Done.
  30. openssl is installed
  31. /opt/bin # ls
  32. captoinfo       ncftp           ncftpput        toe
  33. clear           ncftpbatch      ncftpspooler    tput
  34. ctorrent        ncftpbookmarks  openssl         tset
  35. infocmp         ncftpget        reset
  36. infotocap       ncftpls         tic
  37. /opt/bin # ./ctorrent
  38. CTorrent devel          Copyright: YuHong(992126018601033)
  39. WARNING: THERE IS NO WARRANTY FOR CTorrent. USE AT YOUR OWN RISK!!!

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

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

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

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

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

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

  66. /opt/bin # ipkg install enhanced-ctorrent

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

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

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

  86. Downloading http://ipkg.nslu2-linux.org/feeds/optware/ddwrt/cross/stable/libuclibc++_0.2.2-1_mipsel.ipk ...
  87. Connecting to ipkg.nslu2-linux.org[140.211.166.82]:80
  88. libuclibc++_0.2.2-1_ 100% |*****************************| 67207    00:00:00 ETA
  89. Done.
  90. Unpacking libuclibc++...Done.
  91. Configuring libuclibc++...Done.
  92. enhanced-ctorrent is installed
  93. libstdc++ is installed
  94. /opt/bin # ls
  95. captoinfo          infotocap          ncftpls            tic
  96. clear              ncftp              ncftpput           toe
  97. ctorrent           ncftpbatch         ncftpspooler       tput
  98. enhanced-ctorrent  ncftpbookmarks     openssl            tset
  99. infocmp            ncftpget           reset

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

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

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

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

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

  132. home page: http://ctorrent.sourceforge.net/
  133. see also: http://www.rahul.net/dholmes/ctorrent/
  134. bug report: dholmes@ct.boxmail.com
  135. original author: bsdi@sina.com
复制代码
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2006-12-26 10:01 | 显示全部楼层
一下是ipkg目前所有软件包的列表,大家看看有些比较感兴趣安装可以就可以安装。但是安装后记得发帖和大家分享哦。

  1.   /mmc # ipkg list
  2. abook - Abook is a text-based addressbook program designed to use with mutt mail client.
  3. adduser - a multi-call binary for login and user account administration
  4. adns - Asynchronous resolver library and DNS resolver utilities.
  5. alac-decoder - A decoder for the apple lossless file format
  6. antinat - Antinat is a flexible SOCKS server and client library for writing proxy-based applications.
  7. apache-manual - Online documentation for the apache webserver
  8. apache - The most popular web server on the internet
  9. 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.
  10. apr-util - Apache Portable Runtime utilities library
  11. apr - Apache Portable Runtime library
  12. arc - arc - Arc archiver
  13. asterisk-sounds - Supplementary asterisk-sounds.
  14. asterisk14-gui - Asterisk-GUI is a framework for the creation of graphical interfaces for configuring Asterisk.
  15. asterisk14 - Asterisk is an Open Source PBX and telephony toolkit.
  16. asterisk - Open Source VoIP PBX System
  17. atftp - Advanced TFTP server and client
  18. atk - GNOME accessibility toolkit
  19. atop - A better top with history monitoring
  20. audiofile - Misc Audio Libraries.
  21. autoconf - Creating scripts to configure source code packages using templates
  22. automake - Creates GNU standards-compliant Makefiles from template files
  23. bash - A bourne style shell
  24. bc - GNU bc is an arbitrary precision numeric processing language
  25. 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.
  26. bip - multi user irc proxy
  27. bison - a general-purpose parser generator that converts an annotated context-free grammar into an LALR(1) or GLR parser for that grammar.
  28. bitchx - Text mode IRC client
  29. bluez-hcidump - Bluetooth packet analyzer.
  30. bluez-libs - Bluetooth libraries.
  31. bluez-utils - Bluetooth utilities.
  32. bogofilter - A fast Bayesian spam filter
  33. buildroot - uClibc compilation toolchain
  34. busybox-base - A userland replacement for embedded systems.
  35. busybox-links - A userland replacement for embedded systems.
  36. busybox - A userland replacement for embedded systems.
  37. byrequest - TiVo HMO server
  38. bzip2 - Very high-quality data compression program
  39. cabextract - cabextract - Program to extract Microsoft Cabinet files
  40. catdoc - catdoc can extract text from Microsoft word files, and xls2csv does roughly same for Excel files.
  41. ccxstream - A server to stream music and video to an XBox running Xbox Media Player using XBMSP protocol
  42. 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).
  43. cherokee - A flexible, very fast, lightweight web server.
  44. chillispot - ChilliSpot is an open source captive portal or wireless LAN access point controller.
  45. chrpath - chrpath allows you to modify the dynamic library load path (rpath and runpath) of compiled programs and libraries.
  46. clamav - Clam ANtivirus is a GPL anti-virus toolkit for UNIX
  47. classpath - GNU Classpath for java
  48. clearsilver - A fast, powerful, and language-neutral HTML template system.
  49. clips - C Language Integrated Production System, a a productive development and delivery expert system tool.
  50. cogito - Petr Pasky Baudis's SCM layer over Linus Torvald's git, formerly called git-pasky
  51. connect - A simple relaying command to make network connection via SOCKS and https proxy.
  52. coreutils - Bunch of heavyweight *nix core utilities
  53. cpio - file archive utility
  54. cron - Standard vixie cron, with cron.d addition
  55. cscope - A tool for developer to browse source code.
  56. 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.
  57. ctcs - CTorrent Control Server (CTCS) is an interface for monitoring and managing Enhanced CTorrent clients
  58. ctorrent - CTorrent is a BitTorrent client written in the C programming language.
  59. cups-doc-de - German documentation for CUPS
  60. cups-doc-es - Spanish documentation for CUPS
  61. cups-doc - Common Unix Printing System documentation.
  62. cups - Common Unix Printing System
  63. cvs - Concurrent versioning system.
  64. cyrus-imapd-devel - The Carnegie Mellon University Cyrus IMAP Server
  65. cyrus-imapd-doc - The Carnegie Mellon University Cyrus IMAP Server
  66. cyrus-imapd - The Carnegie Mellon University Cyrus IMAP Server
  67. cyrus-sasl-libs - Provides client or server side authentication (see RFC 2222).
  68. cyrus-sasl - Provides client or server side authentication (see RFC 2222).
  69. dash - dash (Debian Almquist Shell) is a POSIX compliant shell that is much smaller than bash.
  70. dcraw - Decoding raw digital photos.
  71. 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.
  72. dev-pts - Enables unix98-style ptys on unslung.
  73. dhcp - A DHCP Server
  74. dict - DICT Protocol (RFC 2229) Client.
  75. diffutils - contains gnu diff, cmp, sdiff and diff3 to display differences between and among text files
  76. digitemp - Reads 1-Wire Temperature sensor ([url]http://www.digitemp.com)[/url]
  77. distcc - distributes builds across a local network
  78. dnsmasq - DNS and DHCP server
  79. dokuwiki - DokuWiki is a standards compliant, simple to use Wiki
  80. dovecot - Dovecot secure IMAP server
  81. dropbear - Lightweight SSH client and server system
  82. dspam-mysql - DSPAM is a scalable and open-source content-based spam filter designed for multi-user enterprise systems.
  83. dspam-pgsql - DSPAM is a scalable and open-source content-based spam filter designed for multi-user enterprise systems.
  84. dspam - DSPAM is a scalable and open-source content-based spam filter designed for multi-user enterprise systems.
  85. dtach - A program that emulates the detach feature of screen.
  86. e2fsprogs - Ext2 Filesystem Utilities (TESTING)
  87. e2tools - Ext2 tools
  88. eaccelerator - Yet another php cache / accelerator
  89. ecl - Embeddable Common-Lisp
  90. ed - Line editor
  91. eggdrop - Eggdrop is a popular Open Source IRC bot
  92. enhanced-ctorrent - Enhanced CTorrent is a revised version of CTorrent
  93. esmtp - esmtp is a user configurable relay-only Mail Transfer Agent (MTA) with a sendmail compatible syntax.
  94. esniper - A lightweight eBay sniping tool
  95. esound - The Enlighted Sound Daemon.
  96. expat - XML Parser library
  97. extract-xiso - Extract-xiso is the premier backup tool for creating and extracting disc image .iso's of XBox games.
  98. fetchmail - A remote mail retrieval and forwarding utility
  99. ffmpeg - FFmpeg is an audio/video conversion tool.
复制代码

[ 本帖最后由 IT业的民工 于 2006-12-26 10:08 编辑 ]
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2006-12-26 10:02 | 显示全部楼层
  1. file - Ubiquitous file identification utility.
  2. findutils-doc - Documentation for file finding utilities
  3. findutils - File finding utilities
  4. fixesext - X fixes extension headers
  5. flac - FLAC is a free lossless audio codec.  This package contains the codec libraries and the command-line tools flac and metaflac.
  6. flex - Generates programs that perform pattern-matching on text.
  7. flip - Utility program to convert text files between UNIX or Mac newlines and DOS linefeed + newlines.
  8. fontconfig - Font configuration library
  9. freeradius-doc - Documentation for freeradius
  10. freeradius - An open source RADIUS server.
  11. freetds - A free re-implementation of the Tabular Data Stream protocol for Sybase or MS SQL Server.
  12. freetype - Free truetype library
  13. freeze - freeze - archiver and compressor
  14. ftpcopy - A simple FTP client written to copy files or directories (recursively) from a FTP server.
  15. ftpd-topfield - FTPD for the Topfield TF5000PVRt
  16. gawk - Gnu AWK interpreter
  17. gcal - Gcal calculates and prints calendars.
  18. gconv-modules - Provides gconv modules missing from the firmware.  These are used by glibc's iconv() implementation.
  19. gdb - gdb is the standard GNU debugger
  20. gdbm - GNU dbm is a set of database routines that use extensible hashing. It works similar to the standard UNIX dbm routines.
  21. gdchart - Easy to use C API for create charts and graphs in PNG, GIF and WBMP format.
  22. 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.
  23. gettext - Set of tools for producing multi-lingual messages
  24. ghostscript - An interpreter for the PostScript (TM) language
  25. gift-ares - giFT ares plugin
  26. gift-fasttrack - gIFt fasttrack plugin
  27. gift-gnutella - gIFt Gnutella plugin
  28. gift-openft - gIFt openft plugin
  29. gift-opennap - gIFt opennap plugin
  30. 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.
  31. giftcurs - giFTcurs is a curses front end to the giFT daemon
  32. git-core - GIT is a directory tree content manager that can be used for distributed revision control.
  33. glib - The GLib library of C routines.
  34. gnupg - GNU privacy guard - a free PGP replacement.
  35. gnuplot - Command-line driven interactive data and function plotting utility
  36. gnutls - GNU Transport Layer Security Library.
  37. grep - Global regular expression parser
  38. groff - front-end for the groff document formatting system
  39. gzip - GNU Zip data compression program
  40. hdparm - Linux hard drive parameter utility
  41. hexcurse - A versatile ncurses-based hex editor.
  42. heyu - X10 home automation control using the CM11A
  43. hnb - Hierarchical notebook(hnb) is a curses program to structure many kinds of data in one place.
  44. hpijs - Printer support for HP printer
  45. imagemagick - A set of image processing utilities.
  46. imap-libs - University of Washington IMAP package
  47. imap - University of Washington IMAP package
  48. indent - A program to make code easier to read, can also be used for C coding style conversion.
  49. inetutils - A set of common daemons and clients found on commercial UNIX systems.
  50. iozone - Filesystem benchmark tool
  51. ipkg-opt - The Itsy Package Manager
  52. ipkg-web - A web frontend for ipkg
  53. ipkg - The Itsy Package Manager
  54. ipython-common - An enhanced interactive Python shell
  55. ipython - An enhanced interactive Python shell
  56. ircd-hybrid - IRCD Hybrid
  57. irssi - A terminal based IRC client for UNIX systems.
  58. ivorbis-tools - Tools to allow you to play, encode, and manage Ogg Vorbis files. This version is hacked to use the Tremor integer decoder.
  59. jikes - IBM java compiler
  60. joe - Joe's own editor. A text editor with wordstar-like and emacs-like keybindings.
  61. jove - A tiny, fast editor with emacs keybindings
  62. kissdx - kissdx is a PC-Link clone for KiSS media players with added features for DVD, video and picture playback.
  63. 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.
  64. lame - LAME is an LGPL MP3 encoder.
  65. less - Less file browser
  66. lha - lha - File archiving utility with compression
  67. libart - 2-d graphics library.
  68. libbt - a C library implementing the core BitTorrent protocol
  69. 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.
  70. libdb - Berkeley DB Libraries
  71. libdvdread - library for reading dvd
  72. libesmtp - libESMTP is a library to manage posting electronic mail using SMTP to a preconfigured Mail Transport Agent (MTA).
  73. libevent - libevent to implement an event loop
  74. libexif - Library to parse EXIF info in JPEG file and read/write the data from those tags.
  75. libftdi - Library to access the FTDI (usb2serial) chip in userspace via libusb
  76. libgc - The Boehm-Demers-Weiser conservative garbage collector can be used as a garbage collecting replacement for C malloc or C++ new.
  77. libgcrypt - GNU cryptography libray, needed by gnutls
  78. libgd - An ANSI C library for the dynamic creation of images
  79. libghttp - libghttp is a light-weight http fetching library.
  80. libgmp - GNU Multiple Precision Arithmetic Library.
  81. libgpg-error - Error handling library for libgcrypt
  82. libid3tag - The library used for ID3 tag reading
  83. 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.
  84. libjpeg - collection of jpeg tools
  85. liblcms - A small-footprint, speed optimized color management engine.
  86. libmad - MPEG Audio Decoder library
  87. libmemcache - The C API for memcached.
  88. libmpeg2 - A free library for decoding MPEG-2 and MPEG-1 video streams.
  89. libnsl - Network Services Library
  90. libogg - Ogg is a multimedia container format.
  91. libol - Support library for syslog-ng
  92. libosip2 - oSIP library is an implementation of SIP - rfc3261
  93. libpng - Portable Network Graphics Libraries
  94. 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.
  95. librsync - librsync is a free software library that implements the rsync remote-delta algorithm.
  96. libsigc++ - libsigc++ implements a typesafe callback system for standard C++.
  97. libstdc++ - =Standard C++ library, wrapped for uClibc++
  98. libtasn1 - Describe libtasn1 here.
  99. libtiff - Tag Image File Format Libraries
  100. libtool - Library tools.
  101. libuclibc++ - C++ standard library designed for use in embedded systems
  102. libupnp - The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux.
  103. libusb - Library for interfacing to the USB subsystem.
  104. libvorbis - Ogg Vorbis compressed audio format.
  105. libvorbisidec - libvorbisidec is the integer-only ogg decoder library, AKA Tremor
  106. libxml2 - Libxml2 is the XML C parser and toolkit developed for the Gnome project.
  107. libxslt - An XML Stylesheet processor based on libxml2
  108. lighttpd - A fast webserver with minimal memory footprint.
  109. logrotate - Rotates, compresses, removes and mails system log files.
  110. lrzsz - Tools for zmodem/xmodem/ymodem file transfer
  111. lsof - LiSt Open Files - a diagnostic tool.
  112. lua - Lua is a powerful light-weight programming language designed for extending applications.
  113. lynx - A text browser for the World Wide Web
  114. lzo - Compression library
  115. m4 - gnu macro processor and compiler front end
  116. madplay - MPEG Audio Decoder player
  117. mailman - the GNU Mailing List Manager.
  118. make - examines files and runs commands necessary for compilation
  119. man-pages - unix manual pages
  120. man - unix manual page reader
  121. mc - Midnight Commander File Manager
  122. mdadm - A software raid configuration utility.
  123. mediawiki - A fast, full-featured, wiki based on php.
  124. memcached - memcached is a high-performance, distributed memory object caching system.
  125. metalog - Modern, highly configurable syslogd replacement
  126. miau - The MIAU IRC Bouncer (Proxy)
  127. microperl - Microperl.
  128. 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.
  129. mktemp - Mktemp is a small program to allow safe temporary file creation from shell scripts.
  130. mod-fastcgi - mod_fastcgi is an Apache module providing language independent, scalable, open extension to CGI.
  131. mod-python - Mod_python is an Apache server module that integrates with the Python language.
  132. 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.
  133. 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.
  134. motion - a software motion detector
  135. mp3blaster - interactive text-based program that plays MP3, Ogg Vorbis, wav, and sid audio files
复制代码
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2006-12-26 10:03 | 显示全部楼层

  1. mpack - Tools for encoding/decoding MIME messages.
  2. mpage - Print several pages on a single sheet of paper.
  3. mpeg2dec - A simple decoder and demultiplexer for MPEG-1 and MPEG-2 streams to test libmpeg2.
  4. mrtg - Multi Router Traffic Grapher
  5. 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.
  6. mtools - A collection of utilities to access MS-DOS disks from Unix without mounting them.
  7. multitail - MultiTail follows files in style, it is tail on steroids.
  8. mutt - text mode mail client
  9. 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.
  10. mysql - Popular free SQL database system
  11. nagios-plugins - The nagios (network monitor system) plugins
  12. nail - command-line email-client supporting POP3, IMAP, SMTP, ...
  13. nano - A pico like editor
  14. nanoblogger - A small weblog engine written in Bash for the command line.
  15. nbench-byte - BYTE's Native Mode Benchmarks
  16. ncftp - Nice command line FTP client
  17. ncurses - NCurses libraries
  18. ncursesw - NCurses libraries with wide char support.
  19. neon - an HTTP and WebDAV client library, with a C interface
  20. net-snmp - net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6
  21. netcat - TCP/IP swiss army knife.
  22. netio - A program to test network throughput
  23. nload - Nload is a console application which monitors network traffic and bandwidth usage in real time
  24. nmap - Nmap is a feature-rich portscanner
  25. noip - www.no-ip.com Dynamic Update Client
  26. nrpe - The Nagios Remote Plugin Executor
  27. ntfsprogs - NTFS filesystem libraries and utilities
  28. ntop - Network monitoring software
  29. ntp - A time synchronization daemon
  30. ntpclient - Using RFC1305 (NTP), retrieves a remote date and time
  31. nvi - The original Berkeley Vi.
  32. nylon - Nylon is a small socks4/socks5 proxy server
  33. nzbget - A command-line based binary newsgrabber supporting nzb-files.
  34. opencdk - GNU cryptographic library.
  35. openldap-libs - Open Lightweight Directory Access Protocol
  36. openldap - Open Lightweight Directory Access Protocol
  37. openssh - a FREE version of the SSH protocol suite of network connectivity tools.
  38. openssl - Openssl provides the ssl implementation in libraries libcrypto and libssl, and is needed by many other applications and libraries.
  39. openvirtual** - SSL based virtual** server with Windows client support
  40. optware-devel - This is a meta package that bundles all the packages required for optware native development.
  41. ossp-js - a stand-alone distribution of the JavaScript (JS) programming language reference implementation from Mozilla.
  42. oww - Oww reads from a DalSemi/AAG weather station.
  43. palantir - Multichannel interactive streaming solution
  44. patch - applies a diff to produce a patched file
  45. pcre - Perl-compatible regular expression library
  46. pen - A load balancer for simple tcp based protocols such as http or smtp.
  47. php-apache - The php scripting language, built as an apache module
  48. php-dev - php native development environment
  49. php-embed - php embedded library - the embed SAPI
  50. php-fcgi - The php scripting language, built as an fcgi module
  51. php-gd - libgd extension for php
  52. php-imap - imap extension for php
  53. php-ldap - ldap extension for php
  54. php-mbstring - mbstring extension for php
  55. php-mysql - mysql extension for php
  56. php-pear - PHP Extension and Application Repository
  57. php-pgsql - pgsql extension for php
  58. php-thttpd - php-thttpd is thttpd webserver with php support
  59. php - The php scripting language
  60. phpmyadmin - Web-based administration interface for mysql
  61. picocom - A minimal dumb-terminal emulation program.
  62. pkgconfig - Package configuration tool
  63. popt - A C library for parsing command line parameters.
  64. poptop - Poptop is the PPTP server solution for Linux.
  65. portmap - Portmap daemon for NFS
  66. postfix-doc - The Postfix mail system is an alternative to sendmail.
  67. postfix - The Postfix mail system is an alternative to sendmail.
  68. postgresql - PostgreSQL is a highly-scalable, SQL compliant, open source object-relational database management system
  69. pound - Reverse-proxy and load-balancer.
  70. privoxy - A Web proxy based on Internet Junkbuster.
  71. procmail - Versatile email processor.
  72. proftpd - Highly configurable FTP server with SSL-TLS
  73. psutils - Describe psutils here.
  74. puppy - Puppy will allow a user to communicate with a Topfield TF5000PVRt via a USB port.
  75. pwgen - The pwgen  program generates passwords which are designed to be easily memorized by humans, while being as secure  as  possible.  Human-memorable  passwords  are  never  going  to be as secure as completely completely random passwords.  In particular, passwords generated by  pwgen without  the  -s option should not be used in places where the password could be attacked via an off-line brute-force attack.    On  the  other hand,  completely  randomly  generated  passwords have a tendency to be written down, and are subject to being compromised in that fashion.
  76. py-4suite - Python-based toolkit for XML and RDF application development.
  77. py-amara - A collection of Python/XML processing tools to complement 4Suite.
  78. py-apsw - Another Python SQLite Wrapper.
  79. py-axiom - An object database or object-relational mapper.
  80. py-bazaar-ng - A decentralized revision control system designed to be easy for developers and end users alike.
  81. py-bittorrent-common - BitTorrent is a scatter-gather network file transfer tool.
  82. py-bittorrent - BitTorrent is a scatter-gather network file transfer tool.
  83. py-bluez - Python wrappers around bluez.
  84. py-celementtree - A toolkit that contains a number of light-weight components for working with XML (C implementation).
  85. py-cheetah - Cheetah - The Python-Powered Template Engine.
  86. py-cherrypy - A pythonic, object-oriented web development framework.
  87. py-cherrytemplate - CherryTemplate is an easy and powerful templating module for Python.
  88. py-clips - PyCLIPS is an extension module that embeds full CLIPS functionality in Python applications.
  89. py-codeville - a distributed version control system.
  90. py-configobj - A simple but powerful config file reader and writer in Python.
  91. py-constraint - A Python module offering solvers for Constraint Solving Problems (CSPs) over finite domains in simple and pure Python.
  92. py-crypto - Python Cryptography Toolkit.
  93. py-django - A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
  94. py-docutils - An open-source text processing system for processing plaintext documentation into useful formats.
  95. py-elementtree - A toolkit that contains a number of light-weight components for working with XML.
  96. py-epsilon - A small python utility package.
  97. py-flup - A collection of python WSGI modules including those speaking AJP 1.3, FastCGI and SCGI.
  98. py-formencode - A form generation and validation package for python.
  99. py-gd - GD module is an interface to the GD library.
  100. py-gdchart2 - PyGDChart is a set of Python bindings for the GDChart library.
  101. py-genshi - A toolkit for stream-based generation of output for the web.
  102. 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.
  103. py-kid - Pythonic XML-based Templating
  104. py-lxml - A Pythonic binding for the libxml2 and libxslt libraries.
  105. py-mantissa - An extensible, multi-protocol, multi-user, interactive application server built on top of Axiom and Nevow.
  106. py-mercurial - A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects.
  107. py-moin - MoinMoin is a nice and easy WikiEngine with advanced features, providing collaboration on easily editable web pages.
  108. py-mssql - Simple MSSQL Python extension module.
  109. py-mx-base - A collection of userful open source python packages from eGenix.com.
  110. py-myghty - A Python based web and templating framework.
  111. py-mysql - MySQL support for Python.
  112. py-nevow - A web application construction kit written in Python.
  113. py-nose - A discovery-based python unittest extension.
  114. py-paste - Tools for using a Web Server Gateway Interface stack.
  115. py-pastedeploy - Load, configure, and compose WSGI applications and servers.
  116. py-pastescript - A pluggable command-line frontend, including commands to setup package file layouts.
  117. py-pastewebkit - A port/reimplementation of Webware WebKit in WSGI and Paste.
  118. py-pexpect - Python module for automating interactive applications.
  119. py-pgsql - A Python DB-API 2.0 compliant interface to PostgreSQL databases.
  120. py-pil - The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter.
  121. py-ply - A pure-Python implementation of lex and yacc.
  122. py-protocols - Python interface module.
  123. py-psycopg2 - psycopg2 is a PostgreSQL database adapter for the Python programming language.
  124. py-psycopg - psycopg is a PostgreSQL database adapter for the Python programming language.
  125. py-pygresql - Python module that interfaces to a PostgreSQL database.
  126. py-pyro - PYthon Remote Objects.
  127. py-quixote - A highly Pythonic Web application framework.
  128. py-rdiff-backup - rdiff-backup backs up one directory to another, possibly over a network.
  129. py-reportlab - An Open Source Python library for generating PDFs and graphics.
  130. py-roundup-common - An issue-tracking system with command-line, web and e-mail interfaces.
  131. py-roundup - An issue-tracking system with command-line, web and e-mail interfaces.
  132. py-routes - Routing Recognition and Generation Tools.
  133. py-ruledispatch - Python module for rule-based dispatching and generic functions.
  134. py-scgi - Server-side implementation of the SCGI protocol.
  135. py-selector - WSGI delegation based on URL path and method.
  136. py-serial - Python module encapsulating the access to serial port.
  137. py-setuptools - Tool to build and distribute Python packages, enhancement to distutils.
复制代码
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2006-12-26 10:04 | 显示全部楼层

  1. py-simplejson - Simple, fast, extensible JSON encoder/decoder for Python.
  2. py-simpy - An object-oriented, process-based discrete-event simulation language based on standard Python.
  3. py-soappy - A SOAP implementation for Python.
  4. py-sqlalchemy - Python SQL toolkit and Object Relational Mapper
  5. 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.
  6. py-sqlobject - An object-relational mapper for python.
  7. py-tailor - A tool to migrate changesets between various SCMs.
  8. py-tgfastdata - An TurboGears extension that provides automatic user interface generation based upon an application model objects.
  9. py-turbocheetah - Python template plugin that supports use of Cheetah templates.
  10. py-turbogears - Rapid web development megaframework in Python.
  11. py-turbojson - Python template plugin that supports JSON.
  12. py-turbokid - Python template plugin that supports Kid templates.
  13. py-twisted - A networking engine written in Python.
  14. py-urwid - Urwid is a console user interface library in Python.
  15. py-usb - PyUSB is a native Python module written in C that provides USB access for it.
  16. py-wsgiref - Reference implementation of the python Web Server Gateway Interface specification.
  17. py-xml - The PyXML package is a collection of libraries to process XML with Python.
  18. py-yaml - YAML parser and emitter for Python.
  19. py-zope-interface - A separate distribution of the zope.interface package used in Zope 3, along with the packages it depends on.
  20. py25-bazaar-ng - A decentralized revision control system designed to be easy for developers and end users alike.
  21. py25-bittorrent - BitTorrent is a scatter-gather network file transfer tool.
  22. py25-celementtree - A toolkit that contains a number of light-weight components for working with XML (C implementation).
  23. py25-cheetah - Cheetah - The Python-Powered Template Engine.
  24. py25-cherrypy - A pythonic, object-oriented web development framework.
  25. py25-configobj - A simple but powerful config file reader and writer in Python.
  26. py25-crypto - Python Cryptography Toolkit.
  27. py25-django - A high-level Python Web framework that encourages rapid development and clean, pragmatic design.
  28. py25-elementtree - A toolkit that contains a number of light-weight components for working with XML.
  29. py25-formencode - A form generation and validation package for python.
  30. py25-genshi - A toolkit for stream-based generation of output for the web.
  31. 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.
  32. py25-ipython - An enhanced interactive Python shell
  33. py25-kid - Pythonic XML-based Templating
  34. py25-mercurial - A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects.
  35. py25-mx-base - A collection of userful open source python packages from eGenix.com.
  36. py25-mysql - MySQL support for Python.
  37. py25-nose - A discovery-based python unittest extension.
  38. py25-paste - Tools for using a Web Server Gateway Interface stack.
  39. py25-pastedeploy - Load, configure, and compose WSGI applications and servers.
  40. py25-pastescript - A pluggable command-line frontend, including commands to setup package file layouts.
  41. py25-pastewebkit - A port/reimplementation of Webware WebKit in WSGI and Paste.
  42. py25-pil - The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter.
  43. py25-protocols - Python interface module.
  44. py25-psycopg2 - psycopg2 is a PostgreSQL database adapter for the Python programming language.
  45. py25-psycopg - psycopg is a PostgreSQL database adapter for the Python programming language.
  46. py25-roundup - An issue-tracking system with command-line, web and e-mail interfaces.
  47. py25-routes - Routing Recognition and Generation Tools.
  48. py25-ruledispatch - Python module for rule-based dispatching and generic functions.
  49. py25-setuptools - Tool to build and distribute Python packages, enhancement to distutils.
  50. py25-simplejson - Simple, fast, extensible JSON encoder/decoder for Python.
  51. py25-sqlalchemy - Python SQL toolkit and Object Relational Mapper
  52. py25-sqlobject - An object-relational mapper for python.
  53. py25-turbocheetah - Python template plugin that supports use of Cheetah templates.
  54. py25-turbogears - Rapid web development megaframework in Python.
  55. py25-turbojson - Python template plugin that supports JSON.
  56. py25-turbokid - Python template plugin that supports Kid templates.
  57. py25-twisted - A networking engine written in Python.
  58. py25-zope-interface - A separate distribution of the zope.interface package used in Zope 3, along with the packages it depends on.
  59. pyrex - A Language for Writing Python Extension Modules.
  60. python24 - Python is an interpreted, interactive, object-oriented programming language.
  61. python25 - Python is an interpreted, interactive, object-oriented programming language.
  62. python - This is a package that sets up the default python.
  63. quagga - The quagga routing suite, including ospf, rip, and bgp (ospf6d and ripngd are included if library has IPv6 support).
  64. quilt - A set of scripts to manage a series of patches.
  65. rc - A port of the AT&T Plan 9 shell.
  66. rcs - The Revision Control System (RCS) manages multiple revisions of files.
  67. rdate - Using RFC868, retrieves a remote date and time and sets the local time
  68. 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
  69. recode - The recode library converts files between character sets and usages.
  70. recordext - X record extension headers
  71. renderext - X render extension headers
  72. rlfe - Readline front-end, add readline to command line programs.
  73. rrdtool - Round-Robin Database tool. Database collator and plotter
  74. rsync - fast remote file copy program (like rcp)
  75. 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.
  76. ruby - An interpreted scripting language for quick and easy object-oriented programming.
  77. rubygems - Ruby packaging and installation framework.
  78. sablevm - A robust, extremely portable, efficient, and specifications-compliant JVM.
  79. samba - Samba suite provides file and print services to SMB/CIFS clients.
  80. sane-backends - SANE is a universal scanner interface
  81. scons - An improved, cross-platform substitute for the classic Make utility with integrated functionality similar to autoconf/automake and compiler caches such as ccache.
  82. screen - A screen manager that supports multiple logins on single terminal
  83. sdparm - Utility for listing and potentially changing SCSI disk parameters
  84. sed - Stream editor.
  85. sendmail - The most classic SMTP server.
  86. setpwc - Set and list settings of WebCams with the 'PWC chipset'
  87. setserial - configuration utility for serial ports
  88. simh - A highly portable, multi-system emulators.
  89. siproxd - Siproxd is a proxy/masquerading daemon for the SIP protocol
  90. smartmontools - Utility programs to control and monitor (SMART) built into most modern ATA and SCSI hard disks.
  91. socat - A relay for bidirectional data transfer between two independent data channels.
  92. sqlite2 - SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine.
  93. sqlite - SQLite is a small C library that implements a self-contained, embeddable, zero-configuration SQL database engine.
  94. sqsh - Command line SQL client for MS SQL and Sybase servers.
  95. squeak - Squeak is a full-featured implementation of the Smalltalk programming language and environment.
  96. squid - Full-featured Web proxy cache.
  97. srelay - Socks proxy server.
  98. 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).
  99. strace - Traces all system calls a program makes.
  100. streamripper - Shoutcast ripper
  101. stunnel - SSL encryption wrapper for all kinds of servers
  102. sudo - System utility to execute commands as the superuser
  103. svn - a compelling replacement for CVS
  104. swi-prolog - An LGPL comprehensive portable Prolog implementation.
  105. syslog-ng - Syslog replacement logging on behalf of remote hosts
  106. sysstat - System performance tools for linux os
  107. taged - command line utility that can create and modify ID3 data
  108. tar - heavyweight version of the Tape ARchiver
  109. tcl - The Tool Command Language
  110. tcpdump - tcpdump dumps the traffic on a network
  111. tcpwrappers - A library that allows IP level control over ports
  112. tcsh - C shell with file name completion and command line editing.
  113. termcap - Terminal emulation library
  114. tethereal - Terminal based ethereal to dump and analyze network traffic
  115. textutils - GNU Text Utilities
  116. tftp-hpa - A tftp package
  117. thttpd - thttpd is a lightweight http server
  118. tin - tin is a threaded NNTP and spool based UseNet newsreader
  119. tinyscheme - An implementation of the algorithmic language Scheme that aims to very small memory footprint while being as close to R5RS as practically feasible.
  120. tmsnc - Text-based MSN client.
  121. tnef - TNEF is a program for unpacking ms-tnef type MIME attachments
  122. tnftp - tnftp (formerly lukemftp) is what many users affectionately call the enhanced ftp client in NetBSD.
  123. tnftpd - tnftpd (formerly lukemftpd) is a port of the NetBSD FTP server to other systems.
  124. tor - Connection-oriented anonymizing communication service
  125. torrent - a collection of scripts that processes torrent files
  126. transmission - lightweight BitTorrent client and daemon with WWW interface
  127. tsocks - Transparent SOCKS proxying library.
  128. ttf-bitstream-vera - Bitstream Vera truetype font, for use with fontconfig, freetype, and xft
  129. uclibc-opt - micro C library for embedded Linux systems

复制代码
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2006-12-26 10:05 | 显示全部楼层

  1. uclibc - micro C library for embedded Linux systems
  2. ufsd - NTFS read/write kernel module from Linksys V2.3R63 firmware.
  3. unarj - unarj - An uncompressor for .arj format archive files
  4. unfs3 - Version 3 NFS server (not recommended, use nfs-utils instead)
  5. units - GNU units converts between different systems of units.
  6. unrar - unrar is an application that can decompress files and archives created using the RAR compression scheme
  7. unzip - A (de)compression library for the ZIP format
  8. usbutils - USB enumeration utilities
  9. ushare - A free UPnP A/V Media Server for Linux.
  10. vblade - vblade makes a seekable file available over ATA over Ethernet
  11. vdr-mediamvp - A media server for the Hauppauge MediaMVP
  12. vim - Yet another version of the vi editor.
  13. vorbis-tools - A set of tools to manipulate ogg-vorbis files.
  14. vsftpd - ftp daemon with an emphasis on speed and security
  15. w3cam - w3cam is a simple CGI to retrieve images from a so called video4linux device
  16. w3m - Pager/text-based WWW browser with tables/frames support
  17. wakelan - send the magic wakeup package over the LAN
  18. webalizer - Webalizer is a webserver stats program.
  19. wget-ssl - A network utility to retrieve files from the Web
  20. wget - A network utility to retrieve files from the Web
  21. 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 to  print all executables that match any directory in the PATH
  22. whois - Perform whois lookups to identify site owners
  23. wiley-feeds - A list of sanctioned Unslung package feeds.
  24. wizd - Mediaserver program for IO-DATA and other players
  25. wpa-supplicant - wpa_supplicant is a WPA Supplicant for Linux, BSD and Windows with support for WPA and WPA2 (IEEE 802.11i / RSN)
  26. wput - A command-line ftp-client that uploads files or whole directories to remote ftp-servers.
  27. wxbase - wxbase is a basic (non-windows) part of wxWidget toolkit
  28. x11 - X protocol library
  29. xau - X authorization library
  30. xdmcp - XDMCP protocol library
  31. xdpyinfo - X display information utility
  32. xext - X extensions library
  33. xextensions - Headers for standard extensions to the X protocol
  34. xinetd - Highly configurable, modular and secure inetd
  35. xmail - A combined easy to configure SMTP, POP3 and Finger server.
  36. xpdf - Various PDF tools (no support for X11 compiled in)
  37. xpm - X11 pixmap library
  38. xproto - X protocol headers
  39. xtrans - X transport headers
  40. xtst - X test library
  41. xvid - Xvid is MPEG4 codec
  42. zip - a compression and file packaging utility.
  43. zlib - zlib is a library implementing the 'deflate' compression system.
  44. zoo - zoo - File archiving utility with compression
  45. zsh - Zsh is a shell designed for interactive use.
复制代码
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2006-12-26 13:06 | 显示全部楼层
正找这样的呢!谢谢!
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

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

这个贴肯定应该是精华了
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2006-12-26 15:58 | 显示全部楼层
Cool!谢谢楼主分享
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

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

这个贴肯定应该是精华了



俺也还一直没有搞定virtual**...
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2006-12-26 18:38 | 显示全部楼层
原帖由 ViCO 于 2006-12-26 15:59 发表



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


看来同病相怜阿,好像说virtual**的设备不同厂家很难调通,不知道大家用的如何
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2006-12-26 23:27 | 显示全部楼层
学习中!谢谢搂主!
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2007-5-20 21:45 | 显示全部楼层
这个铁质还不错
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-25 17:47

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表