发布时间:2014-09-05 17:14:50作者:知识屋
#――――――――――――――――――――――――
# 服务器信息查看
#――――――――――――――――――――――――
1.查看版本,内核
cat /etc/issue
2.查看cpu,mem
grep “model name” /proc/cpuinfo
grep MemTotal /proc/meminfo
free
3. 内存的插槽数,已经使用多少插槽.每条内存多大,已使用内存多大
dmidecode | grep -P -A 5 “Memorys+Device” | grep Size | grep -v Range
Size: 2048 MB
Size: No Module Installed
Size: No Module Installed
Size: No Module Installed
4. 支持的最大内存容量
dmidecode | grep -P ‘Maximums+Capacity’
Maximum Capacity: 64 GB
5. 查看内存的频率
dmidecode | grep -A16 “Memory Device”
dmidecode | grep -A16 “Memory Device” | grep ‘Speed’
6.查看操作系统位数
getconf LONG_BIT
#――――――――――――――――――――――――
# 基本设置
#――――――――――――――――――――――――
# 设置主机名
vi /etc/sysconfig/network
HOSTNAME=centos
reboot system…
# ifconfig eth0 192.168.4.222 netmask 255.255.255.0
# ifconfig eth0:0 10.0.0.1 netmask 255.0.0.0
# ifconfig eth0 down
# ifconfig eth0 on
# 更改网卡MAC地址
ifconfig eth0 hw ether 00:37:A6:C4:68:E3
# route命令设置网关
route add default gw 192.168.4.3
route del default gw 192.168.4.1
# 查看端口信息
netstat -atn
# 查看路由表
netstat -r
# 查看网络接口状态
netstat -i
# 查看谁占用80端口
lsof -i:80
――――――――――――――――――――――
# 增加环境变量
echo “export PATH=$PATH:/usr/local/mysql/bin” >> /etc/profile //永久修改的
source /etc/profile
――――――――――――――――――――――
系统默认为美国东部时间,修改Linux时区为东八区
cp -f /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
date -s “20090101″
clock -w 或 hwclock
――――――――――――――――――――――
#――――――――――――――――――――――――
# Linux流量监控
#――――――――――――――――――――――――
iftop工具
用途: 用来即时监看网路状态和各ip所使用的频宽
执行(必须以root身份)
监控eth1的网卡的流量
# iftop -i eth1
以位元组(bytes)为单位显示流量(预设是位元bits):
$ iftop -B
直接显示IP, 不进行DNS反解:
$ iftop -n
直接显示连接埠编号, 不显示服务名称:
$ iftop -N
显示某个网段进出封包流量
$ iftop -F 192.168.1.0/24 or 192.168.1.0/255.255.255.0
其他参数可下 iftop -h 看说明.
进入iftop画面时, 可按 p 切换是否显示连接埠, n 切换显示IP或主机的domain name, N切换显示连接埠代号或名称, p暂停显示, b切换是否显示长条, B切换计算几秒内的平均流量, 其他按键可以按h观看说明.