#配置静态地址网卡
DEVICE="eth0"
BOOTPROTO=static
HWADDR="00:0C:29:DC:EA:F7"
NM_CONTROLLED="yes"
ONBOOT=yes
IPADDR=192.168.227.140
NETMASK=255.255.255.0
GATEWAY=192.168.227.1
TYPE=Ethernet
#SHH登陆系统
ssh [email protected]
#查看网卡mac地址
dmesg | grep "eth"
#查看当前挂在设备
cat /proc/partitions
#查看硬盘和阵列卡驱动
modinfo megaraid_sas
#SCP网络拷贝命令——本地复制文件到别的主机
scp boot.img [email protected]:/root/
#SCP网络拷贝命令——别的主机到本地复制文件
scp [email protected]:/date/boot.img /tmp/
#SCP网络拷贝命令——本地复制文件夹到别的主机
scp -r test.tar [email protected]:/root/
#配置静态DNS
vi /etc/resolv.conf
nameserver 8.8.8.8
#查看文件大小
du -h --max-depth=1 /root/test/
#更改linux语言
vi /etc/sysconfig/i18n
#关闭selinux
vi /etc/selinux/config
改成SELINUX=disabled
setenforce 1 设置SELinux 成为enforcing强制模式
setenforce 0 设置SELinux 成为permissiveg关闭模式
#关闭防火墙
chkconfig iptables on
chkconfig iptables off
service iptables start
service iptables stop
#修改主机名
vi /etc/sysconfig/network
NETWORKING=yes
HOSTNAME=主机名
#linux多链路聚合软件
service multipath start
#查看linux系统版本
cat /etc/issue
#查看CPU型号版本
cat /proc/cpuinfo
#查看PCI设备
lspci
#查看内科版本
uname -a
#Linux自身文件数据
/usr/share/doc
#调试模式bash进入sh
chroot /mnt/sysimage
#重新挂载
mount -n -o remount,rw /
mount -o remount,rw /
#开机自动挂载
vi /etc/rc.local
mpunt /dev/sdc /caiwu
#自动挂载分区
vi /etc/fstab
/dev/sdc /caiwu ext4 defaults 0 0
#查看磁盘分区信息 (其中/dev/hda IDE硬盘 /dev/sda1 SATA或SCSI 硬盘)
fdisk -l
#Linux DVD 测试内存 在Boot:下输入 memtest86
#X Window 注销的快捷键
Ctrl+Alt+Backsoace
#修改linux系统时间
date -s 07/30/2009
date -s 22:24:30
clock -w
#修改SSH注销时间
vi /etc/hosts.allow
下添加 sshd:all 重启ssh就行
#查看事都安装RPM包
rpm -qa |grep gcc
#查看网卡驱动和固件版本
ethtool -i eth0
#查看正在使用的进程
ps -ef|grep hpaculi
#查找boot目录下面小于2M字节的文件已ls -lh 显示出来
find /boot/ -size -2M -exec ls -lh {} \;
#打包文件 将/boot 打包成/tmp目录下的test.tar
tar cvf /tmp/test.tar /boot
#解包文件 将/tmp目录下的test.tar 解压到/root/hp下
tar -xvf /tmp/test.tar -C /root/hp
#压缩/boot文件到/tmp/test.tar.gz
tar -zcvf /tmp/test.tar.gz /boot
#解压到当前目录
tar zxvf /tmp/test.tar.gz
#打包文件 将/boot 打包成/tmp目录下的test.tar.bz2
tar jcvf /tmp/test.tar.bz2 /boot
#解压 tmp目录下的test.tar.bz2 到/root/test下
tar jxvf /tmp/test.tar.bz2 -C /root/test
#网络复制命令
scp [email protected]:/tmp/zxl /root/
#查看主机SN号
dmidecode -t 1
#查看服务器网卡固件和驱动
ethtool -i eth0
#开机自动挂在monut -a
nano /etc/fstab
/dev/hdc6 /mnt/hdc6 ext3 defaults 0 0
#可是 read only 癿状忞
mount -n -o remount,rw /
#挂载ISO文件
mount -o loop /hp/HP2003.iso /mnt/iso
#查看网卡是否链接
mii-tool
#查看linux组 cat /etc/group
添加组 groupadd hgbw
useradd -g 组名 用户名
#查看linux中所有用户
cat /etc/passwd
#如何修改文件的访问权限的问题
chmod -R 777
#查看过去使用的命令
history
#后台管理查看
jobs
#启用后台程序
bg 2
#将后台放在前台
fb 2
#搜索之前使用过的参数
ctrl+r
#yum搜索
yum search vnc
#查看yum已经安装的文件
yum list installed
#测试硬盘读写
dd if=/dev/zero of=/export/ddtest bs=1024k count=1000 oflag=direct
#执行检测shell
sh -x oracle.sh
#查找etc文件夹下面所有有eth0的文件
grep ‘eth0‘ $(find /etc -type f)
#查看本机IP地址
ifconfig eth0 | grep "inet addr"| sed ‘s/^.*inet addr://g‘ | cut -d ‘ ‘ -f1
#更换网卡后需要处理MAC地址变更
rm -f /etc/udev/rules.d/70-persistent-net.rules