I am new to Ubuntu and I just installed a VMWare VM of Ubuntu 18.04.6. After I installed the GUI, I find there is almost nothing in the network config area of GUI setting so that I cannot config the network by GUI. I.e. the network config GUI is quite different from tutorials on the Internet like this Good network config GUI from here: How to Configure Network Settings in Ubuntu:
Mine looks like this:
I know that there are many other ways to config the network, but I prefer the GUI approach. Could anyone give me advice about how to get the config items to appear and to let me configure the network via GUI?
Update after applying matigo's advice:
The name from "ip link list" is "ens33".
yupei@ubuntu18046:~$ ip link list
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP mode DEFAULT group default qlen 1000
link/ether 00:0c:29:4f:8c:66 brd ff:ff:ff:ff:ff:ff
3: docker0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default
link/ether 02:42:5a:b4:b0:56 brd ff:ff:ff:ff:ff:ff
My /etc/network/interface before editing is
# ifupdown has been replaced by netplan(5) on this system. See
# /etc/netplan for current configuration.
# To re-enable ifupdown on this system, you can run:
# sudo apt install ifupdown
After editing, it is
# ifupdown has been replaced by netplan(5) on this system. See
# /etc/netplan for current configuration.
# To re-enable ifupdown on this system, you can run:
# sudo apt install ifupdown
auto ens33
iface ens33 inet dhcp
After rebooting, the problem remains as before, but there is a strange icon with a question mark like below screenshot:
This gives no help, the network config GUI still lacks items as before. Thanks to matigo all the same!
From here on, I did a little more as below depending on the comment info in the /etc/network/interface:
sudo apt install ifupdown
sudo ifdown ens33
sudo ifup ens33
The result is as below:
yupei@ubuntu18046:~$ sudo apt install ifupdown
[sudo] password for yupei:
Reading package lists... Done
Building dependency tree
Reading state information... Done
ifupdown is already the newest version (0.8.17ubuntu1.1).
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
The problem remains. I still need help.
Please help me. Thanks a lot!