[关闭]
@a5635268 2017-04-03T20:49:31.000000Z 字数 1245 阅读 1958

centOS使用手记

Linux


联网

  1. 选桥接网卡与本机相同;
  2. 使用ip命令代替ifconfig命令;
  3. cat /etc/sysconfig/network-scripts/ifcfg-enp2s0 ifcfg-eth0 已变名称为enpxxx
  4. 更改ifcfg-enp2s0如下信息(其他保持不变):
  1. BOOTPROTO=static
  2. NAME=eth0
  3. ONBOOT=yes
  4. NETMASK = 255.255.255.0
  5. IPADDR = 192.168.2.21
  6. GATEWAY=192.168.2.1
  7. DNS1 = 8.8.8.8

5. 重命名ifcfg-enp2s0文件为eth0
6. 更改 vi /etc/default/grub 如下信息

  1. GRUB_CMDLINE_LINUX="crashkernel=auto net.ifnames=0 biosdevname=0 rhgb quiet" # 只需加入net.ifnames=0 biosdevname=0,不做其他修改

7. 退出后执行 grub2-mkconfig -o /boot/grub2/grub.cfg
8. yum install net-tools
9. 重启电脑后即可联网

一键更改ip,网关等信息

临时更改ip      ifconfig eth0 192.168.1.21  

获得动态IP      dhclient

临时更改      ifconfig eth0 192.168.1.10 broadcast 192.168.1.255 netmask 255.255.255.0

ip命令常用

centos7查看IP地址:ip addr show eth0搜索。
设置IP地址:ip addr add 192.168.1.1/24 dev eth0。
删除IP地址:ip addr del 192.168.1.1 dev eth0。

关闭防火墙

  1. 直接关闭防火墙
  1. systemctl stop firewalld.service #停止firewall
  2. systemctl disable firewalld.service #禁止firewall开机启动

2. 设置 iptables service

  1. yum -y install iptables-services
  2. systemctl restart iptables.service #重启防火墙使配置生效
  3. systemctl enable iptables.service #设置防火墙开机启动

安装locate

  1. yum install mlocate # 安装完之后马上updatedb一下

虚拟机错误问题解决

  1. 出现This kernel requires an X86-64 CPU,but only detected an i686 CPU错误的解决办法

http://jingyan.baidu.com/article/ac6a9a5e40842f2b653eaca5.html

Xshell

使用前要先安装 yum -y install lrzsz
rz 接收
sz 发送

常用命令

ln -s 原文件 目标路径
添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注