swap&&bonding&&route&&bandwidth

一、 增加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)

相关参数解释:

你可能感兴趣的:(职场,休闲)