
Linux 上服务配置
windxxf
菜鸟
展开
-
在linux下安装BT服务器
下载安装python BitTorrent-3.4.2要求python的版本在2.x以上,如果你还用的是python-2.x以下的版本请到 http://www.python.org/ftp/python/2.3.4/Python-2.3.4.tgz 下载python的最新版本,然后: 1) tar –zxvf python-2.3.4.tgz 2)cd python-2.3.4 3)co转载 2006-09-18 13:51:00 · 1496 阅读 · 0 评论 -
Linux上开启telnet服务
需要检查telnet-server是否安装;rpm -q telnet-server如果没有安装,需要做以下事情:(1)安装telnet-server (linux 安装光盘第三张有)rpm -i telnet-server-0.17-25.i386.rpm(2)vi /etc/xinetd.d/telnet将disable = yes 将 yes 改成 no(3)vi转载 2006-10-11 16:51:00 · 1145 阅读 · 0 评论 -
〔转载〕构筑防火墙之IPtables搭建防火墙的规则
一般情况下,iptables已经包含在了Linux发行版中,可以运行iptables --version来查看系统是否安装了iptables。在我使用的Fedora Core 1中,安装的版本是iptables v1.2.8。如果你的系统确实没有安装iptables,那么可以从以下地址下载: http://www.netfilter.org/ 查看规则集 虽然上文对iptables的用法作转载 2006-06-20 13:16:00 · 1618 阅读 · 0 评论 -
[转载]iptables入门教程--设置静态防火墙
[转载]iptables入门教程--设置静态防火墙iptables -I RH-Firewall-1-INPUT 20 -p TCP -s 211.161.250.232/32 -m state --state NEW --dport 3306 -j ACCEPTiptables -I RH-Firewall-1-INPUT 20 -p TCP -s 211.161.192.0/24 -m s转载 2006-06-20 13:41:00 · 1282 阅读 · 0 评论 -
如何屏蔽掉 php一些函数?
; This directive allows you to disable certain functions for security reasons.; It receives a comma-delimited list of function names. This directive is; *NOT* affected by whether Safe Mode is turned转载 2006-11-02 19:57:00 · 1840 阅读 · 0 评论 -
FC5下绑定双网卡实现负载均衡
1.编辑虚拟网络接口配置文件,指定网卡IP:# cp /etc/sysconfig/network-scripts/ifcfg-eth0 ifcfg-bond0# vi /etc/sysconfig/network-scripts/ifcfg-bond0 2、#vi ifcfg-bond0 将第一行改成 DEVICE=bond0: # cat ifcfg-bond转载 2007-06-13 17:17:00 · 960 阅读 · 1 评论 -
linux乱码
<br />export LANG=en_US.utf8原创 2010-10-20 16:57:00 · 611 阅读 · 0 评论 -
CentOS 6下安装nginx
摘自:http://yubosun.akcms.com/tech/centos-nginx.htm1 在nginx官方网站下载一个rpm包,下载地址是:http://nginx.org/en/download.htmlwget http://nginx.org/packages/centos/6/noarch/RPMS/nginx-release-centos-6-转载 2013-03-26 13:13:51 · 635 阅读 · 0 评论 -
sqlmap使用笔记
转载自:cococo点点 http://www.cnblogs.com/coder2012Sqlmap简介 官方网址:http://sqlmap.org Github地址:https://github.com/sqlmapproject/sqlmap 中文使用说明:http://www.91ri.org/6775.htmlSqlmap是一种开源的渗透测试工具,转载 2015-07-08 17:38:11 · 1896 阅读 · 0 评论