2

I'm new to Ubuntu. I installed it today, but the first thing I encounter is that I can only connect to the Internet through wifi. Can someone help me?

iwconfig result :

eth0      no wireless extensions.

lo        no wireless extensions.

lspci:

00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM     Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C210 Series Chipset Family MEI Controller #1 (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1b.0 Audio device: Intel Corporation 7 Series/C210 Series Chipset Family High Definition Audio Controller (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1c.3 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 4 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation HM76 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C210 Series Chipset Family SMBus Controller (rev 04)
01:00.0 3D controller: NVIDIA Corporation GF117M [GeForce 610M/710M/820M / GT 620M/625M/630M/720M] (rev a1)
03:00.0 Network controller: MEDIATEK Corp. MT7630e 802.11bgn Wireless Network Adapter
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device 5289 (rev 01)
04:00.2 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 0a)

lspci -nnk | grep 0280 -A2:

03:00.0 Network controller [0280]: MEDIATEK Corp. MT7630e 802.11bgn Wireless Network Adapter [14c3:7630]
    Subsystem: Foxconn International, Inc. Device [105b:e074]
04:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. Device [10ec:5289] (rev 01)
Pilot6
  • 90,100
  • 91
  • 213
  • 324

1 Answers1

2

Same wireless chip (and very similiar laptop); wireless never worked out-of-the-box both in Trusty and in Vivid; this is how I've always installed it:

  1. Download the drivers for the wireless chip from here;
  2. Open Terminal with Ctrl+Alt+T;
  3. Run cd ~/Downloads; unzip MT7630E-release.zip; cd MT7630E-release; sudo bash install

If the driver is installed to an UEFI managed system, Secure Boot should be disabled in UEFI settings to get the module loaded.

Pilot6
  • 90,100
  • 91
  • 213
  • 324
kos
  • 35,891
  • DUDE U ARE A GOD, SO MUCH TANK YOU – Lancilnove Sep 20 '15 at 19:03
  • 1
    A good one. +1. – Pilot6 Sep 20 '15 at 19:05
  • @Lancilnove You're welcome :) I've been struggling as well the first time because the original drivers from MediaTek won't compile on every kernel without some modifications. Luckily the guy who posted the tutorial did the job for us :) – kos Sep 20 '15 at 19:07