Ubuntu 18.04.1 - TP-LINK UE330 Ver: 2,0 проблемы с драйвером

Я просто покупаю новый адаптер USB 3.0 Gigabit Ethernet, и я не могу установить его в сервере Ubuntu 18.04.1 x64 выпуск.

Я связываюсь с поддержкой tp-ссылки, и они отправляют мне драйвер. Я устанавливаю драйвер, но мой адаптер все еще без Интернет-соединения. Я следую, это ступает также и без любого успеха.

Кто-либо может помочь мне устранить эту проблему?

Править:

Output of `ifconfig`

enp19s0: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        ether 78:2b:cb:e9:d5:3c  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

enx503eaa8b183c: flags=4098<BROADCAST,MULTICAST>  mtu 1500
        ether 50:3e:aa:8b:18:3c  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 226  bytes 15022 (15.0 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 226  bytes 15022 (15.0 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlp18s0: flags=4098<BROADCAST,MULTICAST>  mtu 1500
        ether 18:f4:6a:3f:af:11  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

Вывод для sudo lshw -c network

 *-network DISABLED
       description: Wireless interface
       product: AR9285 Wireless Network Adapter (PCI-Express)
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci@0000:12:00.0
       logical name: wlp18s0
       version: 01
       serial: 18:f4:6a:3f:af:11
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
       configuration: broadcast=yes driver=ath9k driverversion=4.15.0-38-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11
       resources: irq:17 memory:fbc00000-fbc0ffff
  *-network
       description: Ethernet interface
       product: RTL8101/2/6E PCI Express Fast/Gigabit Ethernet controller
       vendor: Realtek Semiconductor Co., Ltd.
       physical id: 0
       bus info: pci@0000:13:00.0
       logical name: enp19s0
       version: 02
       serial: 78:2b:cb:e9:d5:3c
       size: 10Mbit/s
       capacity: 100Mbit/s
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress msix vpd bus_master cap_list rom ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=half latency=0 link=no multicast=yes port=MII speed=10Mbit/s
       resources: irq:18 ioport:e000(size=256) memory:d0b10000-d0b10fff memory:d0b00000-d0b0ffff memory:fb200000-fb21ffff
  *-network DISABLED
       description: Ethernet interface
       physical id: 2
       logical name: enx503eaa8b183c
       serial: 50:3e:aa:8b:18:3c
       size: 100Mbit/s
       capacity: 1Gbit/s
       capabilities: ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=r8152 driverversion=v1.09.9 duplex=full link=no multicast=yes port=MII speed=100Mbit/s

Название файла, который находится в/etc/netplan/01-netcfg.yaml

СОДЕРЖАНИЕ /etc/netplan/01-netcfg.yaml

  # This file describes the network interfaces available on your system
    # For more information, see netplan(5).
    network:
      version: 2
      renderer: networkd
      ethernets:
        enp19s0:
          dhcp4: yes

Заранее спасибо.

0
задан 25 October 2018 в 11:24

3 ответа

Попробуйте это...

В terminal...

cd /etc/netplan                       # change directory

sudo cp 01-netcfg.yaml 01-netcfg.HOLD # backup the file

sudo pico 01-netcfg.yaml              # edit the file

замените то, что Вы видите там с этим...

Примечание: если Вы скопировать/вставить этот текст, удалите 4 пробелов в начале каждой строки...

 # This file describes the network interfaces available on your system
    # For more information, see netplan(5).
    network:
      version: 2
      renderer: networkd
      ethernets:
        enp19s0:
          dhcp4: yes
          optional: true
        enx503eaa8b183c:
          dhcp4: yes
          optional: true

затем...

sudo netplan --debug generate # generate the config files

sudo netplan apply            # apply the new configuration

reboot                        # reboot the system

рассмотрите предыдущий lshw и команды ifconfig для проверки операции.

2
ответ дан 27 October 2019 в 06:56

Я имел подобную проблему и получил карту, работающую путем выполнения этого:

sudo ip l s dev enx503eaa8b183c up
0
ответ дан 27 October 2019 в 06:56

18.04.3 здесь, с TP-Link TG-3468. Мне пришлось сделать следующее:

sudo ip l s dev enp6s0 up

Затем я изменил /etc/netplan/01-network-manager-all.yaml , чтобы он выглядел так:

network:
  version: 2
  renderer: NetworkManager
  ethernets:
    enp6s0:
      match:
        macaddress: "12:34:56:78:90:12"
      set-name: enp6s0
      dhcp4: true
      dhcp-identifier: mac
      critical: true
      nameservers:
         addresses: ["<LAN IP address of router>"]

Затем

sudo netplan --debug generate
sudo netplan apply
sudo reboot
0
ответ дан 19 November 2019 в 08:02

Другие вопросы по тегам:

Похожие вопросы: