3

I am trying and failing to establish a wired network between a PC running Windows 8.1 and another running Ubuntu 14.04. Both the computers are connected to a the same LAN via a Switch.

While I am able to wirelessly network between these machines, neither machines appear on Windows nor Ubuntu network discovery; when connected via Ethernet. And it seems to be completely inaccessible. I am seeking to transfer large files back and forth between both machines regularly, so WiFi isn't really sufficient.

My Windows machine and Macbook Pro running OSX communicate fine via ethernet using the same switch and cables, so the problem does not appear to be anything to do with the hardware in question.

I realize I'm not being terribly specific, but I really don't know what on earth I'm doing wrong. I'm still quite a new Linux user, so please forgive me if I've missed something ridiculously obvious. If any specific hardware or other information is required I would be happy to provide it.

AzkerM
  • 10,390
Mathos
  • 31

2 Answers2

1

it seems to me that Samba share isnt installed on your linux box. Neither are the corresponding client dependencies installed of it. Samba (smb) is required in order to share files with windows and other OSes through smb protocol on your private network.

Maybe you are missing the samba client library too, the following post might help there: https://help.ubuntu.com/community/Samba/SambaClientGuide
or this:
https://goo.gl/mZT0ew

therufa
  • 1,713
1

How is configured the network on Ubuntu ? with network-manager ?

You can check that the Ubuntu PC and the windows one are on the same network.

sudo apt-get install arp-scan
sudo arp-scan -I eth0 -l

this will give you a list of all IP on the LAN

Next, you can try to ping the windows pc

And finally check if the route are correct. Look at

ip route

Check your firewall too

solsTiCe
  • 9,515