در اینترنت گشتم چیزی نتوانستم پیدا کنم.البته منظورم wired ای که با آن سیستم را نصب کرده بودم، بود. که در قسمت کانکشن نشان داده نمی شد، بقیه wired هامشکلی نداشتند.
راهکاری که در این مورد به ذهنم رسید و توانست این موضوع را حل کند و wired اصلی را در قسمت کانکشن نشان دهد، این بود که:
sudo nano /etc/network/interfaces
و بعد دو سطر آخر را کامنت کنیم. بعد سیستم را یکبار restart نماییم.
قبل از تغییر:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
#auto lo
#iface lo inet loopback
# The primary network interface
allow-hotplug enp5s0
iface enp5s0 inet dhcp
بعد از تغییر:
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
source /etc/network/interfaces.d/*
# The loopback network interface
#auto lo
#iface lo inet loopback
# The primary network interface
#allow-hotplug enp5s0
#iface enp5s0 inet dhcp