Minha conexão com fio à Internet é desconectada Ubuntu

0

OK, minha conexão de porta Ethernet com fio funciona muito bem enquanto eu estiver usando, mas se eu deixar o computador e voltar em uma hora ou mais, minha conexão ainda estará lá, mas não há internet. Esse problema não ocorre no meu PC com Windows quando conectado à mesma porta Ethernet e não está limitado à porta Ethernet, pois tenho o mesmo problema com a conexão sem fio quando ela está ligada (atualmente está desligada).

Existe algum gerenciamento de energia que desligaria a Internet depois de um tempo? Eu estou realmente em uma perda aqui.
Eu corri o seguinte e vou colar os resultados. Deixe-me saber se você precisar de mais alguma coisa.

sudo lshw -C network    

*-network DISABLED      
   description: Wireless interface
   product: Centrino Wireless-N 1000 [Condor Peak]
   vendor: Intel Corporation
   physical id: 0
   bus info: pci@0000:07:00.0
   logical name: wlp7s0
   version: 00
   serial: 8c:a9:82:79:b9:92
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress bus_master cap_list ethernet physical wireless
   configuration: broadcast=yes driver=iwlwifi driverversion=4.4.0-59-generic firmware=39.31.5.1 build 35138 latency=0 link=no multicast=yes wireless=IEEE 802.11bgn
   resources: irq:28 memory:d2600000-d2601fff 

*-network 
   description: Ethernet interface
   product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
   vendor: Realtek Semiconductor Co., Ltd.
   physical id: 0
   bus info: pci@0000:11:00.0
   logical name: enp17s0
   version: 06
   serial: 00:23:5a:d5:ad:49
   size: 1Gbit/s
   capacity: 1Gbit/s
   width: 64 bits
   clock: 33MHz
   capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
   configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl_nic/rtl8168e-2.fw ip=192.168.0.200 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
   resources: irq:24 ioport:3000(size=256) memory:d0c04000-d0c04fff memory:d0c00000-d0c03fff
    
por Michael 16.01.2017 / 04:04

1 resposta

0

O driver r8169 que está sendo usado atualmente para a sua ethernet é buggy.

Substitua por r8168-dkms , assim:

Em terminal ...

sudo apt-get update
sudo apt-get install r8168-dkms
reboot
    
por heynnema 16.01.2017 / 20:31