首页 > Linux常用命令--网终设置

Linux常用命令--网终设置

1、把自己(sa)添加到sudoers配置文件中,以便于获取权限

vim /etc/sudoers  编辑文件(部分centOS版本没有vim命令,则用vi即可)  找到【root ALL=(ALL) ALL】语句,在下面添加:  
sa ALL=(ALL) ALL  特别说明:sa添加到sudoers配置文件中后,才可以使用sudo命令。 

2、联网

ifconfig        查看网络状态  查看这个服务器最多可放多少网卡,如 eth0,eth1,eth2...
ifup eth0       激活网卡(eth0代表第一张网卡)  这是简写 ,如果没有效果可以改用 下面

 ifconfig eth0 down 停下网卡 eth0

 ifconfig eth0 up 启动网卡eth0

   

sudo ifup eth0  使用sudo命令,让自己暂时拥有管理员权限,来激活网卡  

  查看是否有网卡接通: ethtool    eth0; eth0是网卡的名字,当下面显示信息中Link detecte为 yes时说明这个网卡接通了,Speed 表示网卡的速度

[root@lingdian03 /]# ethtool eth0
Settings for eth0:Supported ports: [ TP ]Supported link modes:   10baseT/Half 10baseT/Full100baseT/Half 100baseT/Full1000baseT/FullSupported pause frame use: SymmetricSupports auto-negotiation: YesAdvertised link modes:  10baseT/Half 10baseT/Full100baseT/Half 100baseT/Full1000baseT/FullAdvertised pause frame use: SymmetricAdvertised auto-negotiation: YesSpeed: Unknown!Duplex: Unknown! (255)Port: Twisted PairPHYAD: 1Transceiver: internalAuto-negotiation: onMDI-X: UnknownSupports Wake-on: pumbgWake-on: gCurrent message level: 0x00000007 (7)drv probe linkLink detected: no



3、ping

ping www.baidu.com   检查网络是否通畅,ping 域名 和 ip都行  
Ctrl+C组合键          终止大部分命令运行(可以用来退出ping状态)  

 

转载于:https://www.cnblogs.com/flxy-1028/p/8980432.html

更多相关:

  • 装完系统或装系统中很重要的部分就是配置网络的问题了,记得刚安装Debian的时候还不知道dhclient eth0真是杯具。 关于怎么设置识别网卡su->输入root密码->nano /etc/network/interface然后分情况,如果你是有线的且只有一个网卡,就叫eth0可以在里面添加如下: #eth0 allow-hot...

  • 1.用TC控制网络延时。具体来说就是控制本机处理一个数据报文的时延,也就是rtt。sudo tc qdisc add dev eth0 root netem delay 1000ms //设置1秒的延时sudo tc qdisc del dev eth0 root netem delay 1000ms //取消设置设置成功后,可以简...

  • 1. 新建用户 root@ubuntu:~# adduser hadoop root@ubuntu:~# passwd hadoop #为hadoop用户设置密码 2. 为hadoop用户添加sudo权限 root@ubuntu:~# sudo gedit /etc/sudoers 把root那行复制后改成hadoop,had...