爱生活,爱养生 www.sijiyang.com 欢迎朋友来友联
发布时间:2012-12-25 22:09:09
CTorrent简介CTorrent 是用C语言写的一个BT客户端。现在可以运行在多种Linux 版本,MacOS 和 FreeBSD下,以后可能也会运行在Windows下。CTorrent是运行在命令行模式下的,这意味着它不需要任何图形组件(如X Server)。你可以通过远程访问来让它在后台运行。CTorrent主页http://ctorrent.sourceforge.net/下载http://ctorrent.sourceforge.net/ action=downloads下载测试版本是1.3.2用户在使用时发现CTorrent有一些bug,一个比较明显的例子是CTorrent下......【阅读全文】
发布时间:2012-12-18 17:59:51
vi /etc/sysctl.conf在最后添加如下内容: net.ipv4.tcp_max_tw_buckets = 6000 net.ipv4.ip_local_port_range = 2048 65000 net.ipv4.tcp_tw_recycle = 1 net.ipv4.tcp_tw_reuse = 1net.ipv4.tcp_syncookies = 1net.core.somaxconn = 262144net.core.netdev_max_backlog = 262144net.ipv4.tcp_max_orphans = 252......【阅读全文】
发布时间:2012-12-14 14:06:37
為了完整起見,我這裡再用一些例子加以說明 ${ } 的一些特異功能: 假設我們定義了一個變量為: file=/dir1/dir2/dir3/my.file.txt 我們可以用 ${ } 分別替換獲得不同的值: ${file#*/}:拿掉第一條 / 及其左邊的字串:dir1/dir2/dir3/my.file.txt ${file##*/}:拿掉最後一條 / 及其左邊的字串:my.file.txt ${file#*.}:拿掉第一個 . 及其左邊的字串:file.txt ${file##*.}:拿掉最後一個 . 及其左邊的字串:txt $......【阅读全文】
发布时间:2012-12-14 14:06:12
win2003网络安装——基于linux+pxe+dhcp+tftp+samba+ris Linux, Windows, by hugh. Linux 的网络分发安装方法很多,调整也很灵活。相对来说,Windows server 2003 就麻烦很多。 参考以下两片文章做了一套win2003的网络安装系统: http://oss.netfarm.it/guides/pxe.php http://hi.baidu.com/novv/blog/item/eebdce17eeb98202c93d6daa.html 但是做下来之后还是感觉没有......【阅读全文】
发布时间:2012-12-14 14:04:51
Linux curl使用简单介绍 2009-11-13 作者: 编辑:闫蕊 点击进入论坛 关键词:Linux curl Curl是Linux下一个很强大的http命令行工具,其功能十分强大。 1)读取网页 $ curl linuxidc.com">http://www.linuxidc.com 2)保存网页 $ curl http://www.linuxidc.com > page.htm......【阅读全文】