如何在 Linux Mint 中建立互联网连接?

如何在 Linux Mint 中建立互联网连接?

我的机器具有 Windows 7 操作系统的有线互联网连接。在连接属性中我看到

service name : ispone
obtain IP address automatically
obtain DNS server address automatically

如何在 Linux Mint 中执行上述连接(16 Cinnamon,安装在 USB (16 GB) 上)

我尝试过的

dhclient
    /etc/dhcp3/dhclient.cof 
sudo gedit /etc/network/interfaces
    auto eth0
    iface eth0 inet dhcp
sudo ifconfig eth0 down
sudo ifconfig eth0 up

但没有任何作用。

答案1

你不需要做任何事情。在某些版本的 Linux 中,以太网或 Wifi 互联网连接不会被禁用,但您需要从网络属性中启用它。

转到顶部并找到带有有线或 Wifi 网络连接图标的图标。

右键单击并转到编辑连接

从那里转到“有线”下拉列表并找到您的 eth0

单击编辑并选择自动连接

它将在后台运行命令并让您连接到互联网

答案2

好的!我也一直在尝试从我的 ISP 获得技术支持。前两天,技术人员来了,做了以下事情:

Preferences > Network Connections > Add > 
Choose connection type (Select DSL) > Create > 
DSL (tab) > Username > your username > 
Service (given by ISP) > Password (your password)

我选择了 Etherent 而不是 DSL,这会产生问题。

感谢那些尽力提供帮助的人。

答案3

使用终端:(转到)

> cd /etc/network/ 
> open "interfaces" file with your favorite text editor (vim, vi, whatever)
> comment out everything except "auto lo" 

这对我有用。

相关内容