LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Networking
User Name
Password
Linux - Networking This forum is for any issue related to networks or networking.
Routing, network cards, OSI, etc. Anything is fair game.

Notices


Reply
  Search this Thread
Old 05-03-2015, 12:10 PM   #1
iSeth
LQ Newbie
 
Registered: May 2015
Posts: 5

Rep: Reputation: Disabled
Networking not working (Wireless and wired) MintCin.64, does work in 32


I am trying to install Linux Mint's Cinnamon 64 bit version, but I have come to the conclusion that it must not ship with something that the 32 bit version does. None of my networking really works in the 64 bit version, it attempts to connect and fails. I'd suspect it's a driver issue, but I have no clue where to start. I currently have the 32 bit version on the computer and the 64 bit on a live drive, so I can swap between to answer any questions about either installation. Any help would be nice, thanks.
 
Old 05-05-2015, 08:08 AM   #2
sudowtf
Member
 
Registered: Nov 2013
Posts: 206

Rep: Reputation: 46
More information will be needed for anyone to help. Please at minimum report your NIC brands and models. (The computer brand/model may also help; is it a desktop or notebook?) Is the NIC replaceable? Could you add a second, more industry standard, NIC card? (e.g. Intel 1000)

The following commands may assist:

Code:
lspci | grep -i -e 'network\|ethernet'
Code:
lshw -class network
Code:
ifconfig -a
 
Old 05-05-2015, 06:55 PM   #3
iSeth
LQ Newbie
 
Registered: May 2015
Posts: 5

Original Poster
Rep: Reputation: Disabled
Sorry for the lack of information of yet..

MotherBoard - Gigabyte 990FXA-UD3

I have a wifi card, but I really just want the wired connection to work.

The first code yeilded:
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8161/8411 PCI Express Gigabit Ethernet Controller (rev 06)
06:00.0 Network controller: Qualcomm Atheros AR93xx Wireless Network Adapter (rev 01)

Second:

*-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:05:00.0
logical name: eth0
version: 06
serial: 74:d4:35:9f:1f:8f
size: 100Mbit/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=rtl8168e-3_0.0.4 03/27/12 ip=192.168.254.2 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
resources: irq:74 ioport:b000(size=256) memory:fe200000-fe200fff memory:da100000-da103fff
*-network
description: Wireless interface
product: AR93xx Wireless Network Adapter
vendor: Qualcomm Atheros
physical id: 0
bus info: pci@0000:06:00.0
logical name: wlan0
version: 01
serial: 6c:19:8f:00:12:16
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list rom ethernet physical wireless
configuration: broadcast=yes driver=ath9k driverversion=3.13.0-37-generic firmware=N/A latency=0 link=no multicast=yes wireless=IEEE 802.11abgn
resources: irq:18 memory:fe100000-fe11ffff memory:fe120000-fe12ffff

Third:

eth0 Link encap:Ethernet HWaddr 74:d4:35:9f:1f:8f
inet addr:192.168.254.2 Bcast:192.168.254.255 Mask:255.255.255.0
inet6 addr: fe80::76d4:35ff:fe9f:1f8f/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1519874 errors:0 dropped:0 overruns:0 frame:0
TX packets:914397 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:2161754431 (2.1 GB) TX bytes:74558606 (74.5 MB)

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:65536 Metric:1
RX packets:12383 errors:0 dropped:0 overruns:0 frame:0
TX packets:12383 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:1264299 (1.2 MB) TX bytes:1264299 (1.2 MB)

wlan0 Link encap:Ethernet HWaddr 6c:19:8f:00:12:16
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
 
Old 05-06-2015, 08:11 AM   #4
sudowtf
Member
 
Registered: Nov 2013
Posts: 206

Rep: Reputation: 46
Maybe someone else will chime in, but as a start...


I noticed your wired connection has a successful IP address (192.168.254.2), so you may want to ping your gateway (router).

Code:
ping -c 4 $(route | grep default | awk '{print $2}')
If it successfully pings then, it you may just have a DNS issue. Verify you have nameservers listed by:
Code:
cat /etc/esolve.conf
However, it could be a firmware issue, on your 64 bit, confirm the following are installed: (you may want to reboot if it results as NEW installs)
Code:
sudo apt-get install firmware-realtek firmware-atheros
and possibly (you may or may not need or want some of these / your discretion)

Code:
sudo apt-get install firmware-linux-free firmware-linux firmware-linux-nonfree
and i also noticed the following; check this output for consideration:

Code:
aptitude show r8168-dkms

Last edited by sudowtf; 05-06-2015 at 08:12 AM.
 
Old 05-07-2015, 04:22 PM   #5
iSeth
LQ Newbie
 
Registered: May 2015
Posts: 5

Original Poster
Rep: Reputation: Disabled
hmm..

I had a connection because I have my phone tethered, sorry if that caused confusion...
I can't get those packages to register as existing, are you sure those are the names? or am I doing something dumb?
I have the r8169-dkms driver installed.

Last edited by iSeth; 05-07-2015 at 04:25 PM.
 
Old 05-08-2015, 08:09 AM   #6
sudowtf
Member
 
Registered: Nov 2013
Posts: 206

Rep: Reputation: 46
I wish i had a definitive answer for you. I'm running Debian Jessie, those packages are copy/pasted from my system.

Was r8168-dkms installed since the beginning or did you install it? I don't know your level of experience so i don't know how basic i should be.

Since you can get tethered, are you running "sudo apt-get update" to refresh the repo-information?

If r8168-dkms was always installed, check your 32 bit version and see if it was also installed. I suspect r8168-dkms should not be installed, and that both "firmware-realtek" and "firmware-atheros" should be used for your two NICs.

You can see details of those packages which seem to list your devices:
Code:
aptitude show firmware-realtek
aptitude show firmware-atheros
It's lucky that you can tether. If you can afford, try a full upgrade:
Code:
sudo aptitude update ; sudo aptitude full-upgrade && sudo aptitude autoclean
You may also want to see what firmware is installed on your 32bit and replicate such: On your 32bit do:
Code:
aptitude search firmware | grep ^i
another way to do the exact same thing is:
Code:
dpkg --get-selections | grep firmware
With the second way, maybe you could grep for other things, or not grep at all just to peruse.

Last edited by sudowtf; 05-08-2015 at 08:11 AM.
 
Old 05-08-2015, 12:27 PM   #7
fatmac
LQ Guru
 
Registered: Sep 2011
Location: Upper Hale, Surrey/Hants Border, UK
Distribution: Mainly Devuan, antiX, & Void, with Tiny Core, Fatdog, & BSD thrown in.
Posts: 5,504

Rep: Reputation: Disabled
Maybe a quicker way would be to
Code:
ls /lib/firmware
on both distros & see if you have the same firmwares available.
 
Old 05-08-2015, 04:09 PM   #8
iSeth
LQ Newbie
 
Registered: May 2015
Posts: 5

Original Poster
Rep: Reputation: Disabled
I just performed a full upgrade, but I'm pretty sure it did nothing. (for the connection I mean)
Anything on the computer either shipped or was updated.

Output of ls /lib/firmware:
64 32
 
Old 05-09-2015, 12:40 AM   #9
iSeth
LQ Newbie
 
Registered: May 2015
Posts: 5

Original Poster
Rep: Reputation: Disabled
Weirder

Ok.. As if this weren't confusing enough, turns out, after hours of being online via tether the computer manages to magically gain use of the ethernet and is working without a tether right now... I am thoroughly confused.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Combining wired and wireless networking linuxhippy Linux - Networking 6 12-25-2011 11:28 AM
bridging a wireless and wired network causes wired to stop working royce2020 Linux - Networking 0 04-21-2009 04:48 PM
Auto switching from wired to wireless networking and back? ronaldv Linux - Wireless Networking 2 06-26-2005 03:27 PM
Wireless/ Wired Mixed Networking (2networks) wingcom Linux - Wireless Networking 1 03-05-2005 05:21 AM
robust wireless/wired networking on laptop? JohnnyBravo Linux - Wireless Networking 0 04-10-2004 05:05 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Networking

All times are GMT -5. The time now is 02:37 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration