linux
iteye_3609
这个作者很懒,什么都没留下…
展开
-
ubuntu source list (163)
修改 /etc/apt/source.list添加如下列表:deb http://mirrors.163.com/ubuntu/ hardy main restricted universe multiversedeb http://mirrors.163.com/ubuntu/ hardy-security main restricted universe multiversed...2009-12-01 20:59:07 · 216 阅读 · 0 评论 -
如何在 ubuntu 上使用命令配置无线网卡
http://forum.ubuntu.org.cn/viewtopic.php?f=116&t=186240 iwlist wlan0 scan ##列出有效的无线网络iwconfig wlan0 essid <wireless network name> ## 连接没有设密码的无线网络iwconfg wlan0 essid <wireless network...原创 2014-08-06 12:06:22 · 504 阅读 · 0 评论 -
用route命令添加永久路由
使用双网卡,同时使用2个网关的时候就需要加一条静态路由了。当然还有很多时候会需要加路由。 一:使用 route 命令添加 使用route 命令添加的路由,机器重启或者网卡重启后路由就失效了,方法: //添加到主机的路由 # route add –host 192.168.1.11 dev eth0 # route add –host 192.168.1.12 gw 192.168.1.1 //添...原创 2014-08-06 12:04:04 · 473 阅读 · 0 评论 -
Openssl生成根证书、服务器证书并签核证书
http://blog.csdn.net/gloomuu/article/details/4456501 Step 1. Create key (password protected) openssl genrsa -out prvtkey.pem 1024/2038 (with out password protected) ...原创 2014-08-06 09:42:39 · 301 阅读 · 0 评论 -
用Iptables 限制网速
1.配置iptables转发(略) 2.限速脚本vi /root/xiansu.sh #!/bin/bash限制 60/s 相当于 7KB/s /sbin/iptables -F FORWARD#限制网段for ((i = 1; i < 253; i++)) do/sbin/iptables -A FORWARD -s 192.168.2.$i -m limit ...原创 2013-12-25 17:14:41 · 1753 阅读 · 0 评论 -
Ubuntu 10.04: 配置NFS
http://lesca.me/archives/install-and-config-nfs-on-ubuntu-10-04.html 本文主要介绍Ubuntu 10.04上NFS服务的安装、配置。安装NFS相关的软件包$ sudo apt-get install nfs-kernel-server 进行配置/etc/default/nfs-kernel-...原创 2012-05-24 14:39:44 · 125 阅读 · 0 评论 -
PlayFramework 1.2.3 中 配置https
http://www.playframework.org/documentation/1.1.1/releasenotes-1.1#httpsHTTPS supportThe built-in server now supports the HTTPS protocol. You can of course use it in production if you want. I...原创 2012-05-16 09:59:31 · 513 阅读 · 0 评论 -
ie8 下载提示网络连接不上问题的解决
简单来说:IE8下载缓存有问题 加入header控制缓存可以解决这个问题 header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); 是从下面地址挖出来的。 http://blog.csdn.net/fafa211/article/details/5801371...原创 2012-05-15 14:22:03 · 311 阅读 · 0 评论 -
share a free hex edit
free hex edit tools原创 2012-05-15 11:30:56 · 112 阅读 · 0 评论 -
isIpAddress javascript web frontend
function isIpAddress(str) { thePat = /^(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])(\.(\d{1,2}|1\d\d|2[0-4]\d|25[0-5])){3}$/; if(thePat.test(str)){ return true; ...原创 2012-07-24 17:17:18 · 189 阅读 · 0 评论 -
安装配置apache http proxy 服务器(用户代理上网)
ProxyRequests OnProxyVia On<Proxy *>Order deny,allowDeny from allAllow from 127.0.0.1</Proxy> 第一步,下载 wget http://labs.xiaonei.com/apache-mirror/httpd/httpd-2.2.14.tar.gz...2009-12-22 17:38:07 · 904 阅读 · 0 评论 -
如何在 ubuntu 上使用命令配置无线网卡(2)
cat /etc/network/interfaces auto loiface lo inet loopback auto wlan0iface wlan0 inet dhcpwpa-ssid N001wpa-psk xxxxx原创 2014-08-06 15:00:12 · 213 阅读 · 0 评论