一、 增加swap 分区
增加swap分区1G
dd if=/dev/zero of=/home/swapfile bs=1024 count=1000000
mkswap /home/swapfile
swapon /home/swapfile
swapoff /home/swapfile
 
增加swap分区10G
dd if=/dev/zero of=/home/swapfile bs=512 count=20000000
 mkswap /home/swapfile
 swapon /home/swapfile
 
注:
dd 是 Linux/UNIX 下的一个非常有用的命令,作用是用指定大小的块拷贝一个文件,并在拷贝的同时进行指定的转换。

dd 的主要选项:
指定数字的地方若以下列字符结尾乘以相应的数字:
b=512, c=1, k=1024, w=2, xm=number m

if=file
输入文件名,缺省为标准输入。

of=file
输出文件名,缺省为标准输出。

ibs=bytes
一次读入 bytes 个字节(即一个块大小为 bytes 个字节)。

obs=bytes
一次写 bytes 个字节(即一个块大小为 bytes 个字节)。

bs=bytes
同时设置读写块的大小为 bytes ,可代替 ibs 和 obs 。

cbs=bytes
一次转换 bytes 个字节,即转换缓冲区大小。

skip=blocks
从输入文件开头跳过 blocks 个块后再开始复制。

seek=blocks
从输出文件开头跳过 blocks 个块后再开始复制。(通常只有当输出文件是磁盘或磁带时才有效)

count=blocks
仅拷贝 blocks 个块,块大小等于 ibs 指定的字节数。

conv=conversion[,conversion...]
用指定的参数转换文件。

转换参数:

ascii 转换 EBCDIC 为 ASCII。

ebcdic 转换 ASCII 为 EBCDIC。

ibm 转换 ASCII 为 alternate EBCDIC.

block 把每一行转换为长度为 cbs 的记录,不足部分用空格填充。

unblock
使每一行的长度都为 cbs ,不足部分用空格填充。

lcase 把大写字符转换为小写字符。

ucase 把小写字符转换为大写字符。

swab 交换输入的每对字节。 Unlike the
Unix dd, this works when an odd number of
bytes are read. If the input file contains
an odd number of bytes, the last byte is
simply copied (since there is nothing to
swap it with).

noerror
出错时不停止。

notrunc
不截短输出文件。

二、Suse 网卡bonding设置

主机两块网卡eth1 、eth2 , 用bond2绑定eth1和eth2 .

第一步

linux:/home # cat /etc/modprobe.conf.local
#
# please add local extensions to this file
#
alias bond2 bonding     (加入)
options bonding mode=1 use_carrier=1 miimon=100    (加入)
linux:/home #

第二步

linux:/etc/sysconfig/network # cat ifcfg-bond2
DEVICE='bond2'
BOOTPROTO='static'
STARTMODE='onboot'
BONDING_MASTER='yes'
BONDING_SLAVE_1='eth1'
BONDING_SLAVE_2='eth2'
IPADDR='192.168.0.11/24'
LABLE_1='1'
IPADDR_1='192.168.0.15/24'
linux:/etc/sysconfig/network #

linux:/etc/sysconfig/network # cat ifcfg-eth1
#BOOTPROTO='dhcp'
DEVICE='eth1'
BOOTPROTO='static'
STARTMODE='onboot'
#IPADDR='192.168.0.11/24'
linux:/etc/sysconfig/network #
 

linux:/etc/sysconfig/network # cat ifcfg-eth2
#BOOTPROTO='dhcp'
DEVICE='eth2'
BOOTPROTO='static'
STARTMODE='onboot'
#IPADDR='192.168.0.15/24'
linux:/etc/sysconfig/network #
 

重新加载网卡配置文件

/etc/init.d/network reload    (强烈建议不要使用restart)

拆开绑定.

第一步:

将第一步加入的注释.

linux:/etc/sysconfig/network # cat /etc/modprobe.conf.local
#
# please add local extensions to this file
#
#alias bond2 bonding
#options bonding mode=1 use_carrier=1 miimon=100
linux:/etc/sysconfig/network #
 

第二步:

将bond2配置文件全部注释掉.

linux:/etc/sysconfig/network # cat ifcfg-bond2
#DEVICE='bond2'
#BOOTPROTO='static'
#STARTMODE='onboot'
#BONDING_MASTER='yes'
#BONDING_SLAVE_1='eth1'
#BONDING_SLAVE_2='eth2'
#IPADDR='192.168.0.11/24'
#LABLE_1='1'
#IPADDR_1='192.168.0.15/24'
 

将eth1 eth2 IP配置项打开.

linux:/etc/sysconfig/network # cat ifcfg-eth1
#BOOTPROTO='dhcp'
DEVICE='eth1'
BOOTPROTO='static'
STARTMODE='onboot'
IPADDR='192.168.0.11/24'
linux:/etc/sysconfig/network # cat ifcfg-eth2
#BOOTPROTO='dhcp'
DEVICE='eth2'
BOOTPROTO='static'
STARTMODE='onboot'
IPADDR='192.168.0.15/24'
 

第三步

重新加载网卡配置文件

/etc/init.d/network reload    (强烈建议不要使用restart)

相关参数解释:

说明:miimon是用来进行链路监测的。 比如:miimon=100,那么系统每100ms监测一次链路连接状态,如果有一条线路不通就转入另一条线路;mode的值表示工作模式,他共有0123456六种模式,常用为061三种,具体后面会介绍
mode=0
,表示load balancing (round-robin)为负载均衡方式,两块网卡都工作,但是与网卡相连的交换必须做特殊配置( 这两个端口应该采取聚合方式),因为做bonding的这两块网卡是使用同一个MAC地址 ?
mode=6
,表示load balancing (round-robin)为负载均衡方式,两块网卡都工作,但是该模式下无需配置交换机,因为做bonding的这两块网卡是使用不同的MAC地址
mode=1
,表示fault-tolerance (active-backup)提供冗余功能,工作方式是主备的工作方式,也就是说默认情况下只有一块网卡工作,另一块做备份
注意:bonding只能提供链路监测,即从主机到交换机的链路是否接通。如果只是交换机对外的链路down掉了,而交换机本身并没有故障,那么bonding会认为链路没有问题而继续使用 

 

三、 Linux 下增加路由

route

 

 

四、bandwidth

结合siege 压力测试工具,进行说明

 nohup siege -f xad -c 400 -i -d 1 -r 1 --time=60M -R /root/.siegerc > sohu-xab-miss-3.log &
siege
time

.siegerc
verbose = true
csv = false
fullurl = true
show-logfile = true
logging = true
logfile = /fgn/benchmark/sohu/siege.log
protocol = HTTP/1.1
chunked = false
cache = true
connection = keep-alive
concurrent = 2000
time = 120M
reps = 1
file = /fgn/benchmark/subituo/urls.txt
delay = 1
timeout = 300 (这个值是如何算出来.  1Gb带宽 客户端视频文件20M, 客户端保持60KB/s 视频比较流畅
               20M x 1024 =20480KB 20480/60=341s 注:341s 约等于 300)[高清视频需要200KB/s 20M视频文件 下载时间超过100s就认为失败 ]
failures = 50000
internet = true
benchmark = false
accept-encoding = gzip
spinner = true
proxy-host = 119.167.244.238
proxy-port = 80