咋也没想到,俺也能在linux下发布web服务。
由于联盟的网站要放到学校的服务器,网络中心然我们自己装个虚拟机,然后学校给发布。自己弄个虚拟机固然好了,但是,要求用不带图形界面的linux系统。于是乎,从同学那里copy过来一个在vm下面安装好的Ubuntu。
结果一直连不上网络,
然后使用 ifup eth0出现如下错误:
eth0: ERROR while getting interface flags: No such device
SIOCSIFADDR: No such device
eth0: ERROR while getting interface flags: No such device
SIOCSIFNETMASK: No such device
SIOCSIFBRDADDR: No such device
eth0: ERROR while getting interface flags: No such device
eth0: ERROR while getting interface flags: No such device
Failed to bring up eth0.
解决办法:
rm /etc/udev/rules.d/70-persistent-net.rules
通过 nano /etc/network/interfaces 修改ip地址
然后 /etc/init.d/networking restart
分享到:
相关推荐
在Ubuntu中,网络接口通常被称为“eth0”或“enp0s3”,这些名称代表了物理网络连接。对于无线连接,接口名可能是“wlan0”。Ubuntu使用Netplan作为默认的网络配置工具,它可以管理网络接口的配置,包括IP地址、子网...
2. 在打开的文件中,找到与网卡`eth0`相关的行,并进行编辑。将原来的DHCP配置行注释掉或者删除,然后添加静态IP地址配置。例如: ```plaintext auto eth0 iface eth0 inet static address ***.***.*.* gateway ***...
iptables –t nat –A POSTROUTING –s 192.168.8.0/24 –o eth0 –j MASQUERADE ``` 六、启动 PPPOE 服务器 使用以下命令启动 PPPOE 服务器: ``` pppoe-server –l eth0 –L 192.168.8.1 –R 192.168.8.10 –N 20...
在使用`tcpdump`时,通常会指定网络接口(如eth0)和监听的端口(如80)。对于`wireshark`,则需要先安装后通过图形界面操作。 除了这些工具,理解Ubuntu的网络配置文件也很重要。位于`/etc/network/interfaces`中...
ip route add default via 114.80.227.33 dev eth0 src 114.80.227.34 table tel ip rule add from 114.80.227.34 table tel ip route flush table cnc ip route add default via 112.65.227.1 dev eth1 src 112.65...
在Ubuntu系统中,网络接口通常被称为`eth0`、`wlan0`等,分别代表以太网和无线网络接口。首先,通过`ifconfig`命令查看当前系统的网络接口及其状态。 2. **设置静态IP** 要为网络接口设置静态IP地址,需要编辑...
通常情况下,Ubuntu系统的以太网接口名称为`eth0`,但在某些情况下可能会有所不同。可以通过运行`ifconfig`命令来查看所有网络接口的信息。 例如,在提供的文档中,执行`ifconfig`后显示的以太网接口名为`enp2s0`。...
你会看到eth0和eth1的信息,如果没有显示,可能是网络服务未启动,可以使用`sudo systemctl start networking`启动。 3. 配置网络接口:编辑网络接口配置文件。例如,编辑eth0的配置,可以使用`sudo nano /etc/...
4. **网络配置**:ks.cfg文件中指定了网络参数,包括静态IP(192.168.1.243)、子网掩码、网关和DNS,以及使用的网络接口(eth0)。 5. **启动安装**:配置虚拟机从网卡启动,启动后系统将自动执行ks.cfg中的指令,...
iface eth0 inet static address 192.168.0.96 netmask 255.255.255.0 broadcast 192.168.0.255 gateway 192.168.0.1 ``` - 重启网络服务使配置生效: ```bash sudo /etc/init.d/networking restart ``` ...
其中,`auto lo` 表示启用本地回环地址接口(loopback),`iface lo inet loopback` 定义了本地回环地址,而`iface eth0 inet static` 则指定了名为eth0的网络接口使用静态配置,并定义了该接口的静态IP地址、网关和...
5. 选择“Ethernet”(以太网)作为连接类型,然后在“Device MAC address”区域选择您要桥接的物理接口,比如eth0。 6. 在“General”(常规)标签页,勾选“Automatically connect to this network when it is ...
- **网络配置**:通过`ifconfig`命令可以配置网络接口,如`ifconfig eth0 up`来激活eth0网卡;`ifconfig eth0 add 192.168.1.1 netmask 255.255.255.0`来设置IP地址和子网掩码;`route add-...
- **网络配置**:通过`ifconfig`可以查看和配置网络接口,例如设置IP地址(`ifconfig eth0 add 192.168.1.1 netmask 255.255.255.0`)、激活或关闭网络接口(`ifconfig up/down`)以及添加路由(`route add-...
iface eth0 inet static address 192.168.100.13 netmask 255.255.255.128 gateway 192.168.100.1 ``` 2. **修改DNS设置**: 使用`sudo vim /etc/resolv.conf`,添加你的DNS服务器,如`nameserver 202.96.26.38...
4. 建立网桥:使用“brctl”命令可以建立一个网桥,例如“br0”,然后将其绑定到一个正常工作的网络接口上,例如“eth0”,并将其设置为连接本机和外部网络的接口。 5. 配置 qemu_ifup 启动脚本:qemu_ifup 是一个...
Ubuntu 16.04 搭建ETH钱包磁盘挂载(如有必要)安装以太坊sudo apt-get install ethereum创建目录启动链条创建启动脚本。
在终端中输入 ifconfig,系统将显示当前的网络接口,例如 eth0、eth1、eth2 等。这里我们需要使用 eth0 接口。 知识点 2:修改网络接口配置 修改网络接口配置需要编辑 /etc/network/interfaces 文件。使用 sudo ...