2

I'm trying to get my backup files in a shared folder in my Win7 desktop back to my laptop running Lubuntu 15.04.

The two pc's are connected directly via Ethernet, now I need to access the shared folder but I can't figure out how. I've read a dozen tutorials but no one works. Thanks for any help!


EDIT: This is the window that opens after clicking on Go > Connect to server: ...I need 10 rep to post it here, please see https://i.stack.imgur.com/cqNTv.jpg

  • Following these instructions I was able to access the shared folder over wi-fi, but I need the Ethernet's speed to transfer the bulk of the backup. Running the same sudo mount.cifs //WINDOWS-PC/... command over the Ethernet I get mount error: could not resolve address for WINDOWS-PC: Unknown error. Changing WINDOWS-PC with the IP adress I get asked for the shared folder password and then it says mount error(101): Network is unreachable. – Arch Stanton Aug 11 '15 at 10:11

2 Answers2

2

Try NitroShare ! Which will support Ubuntu as well as Windows

To Install:

sudo add-apt-repository ppa:george-edison55/nitroshare-dev
sudo apt-get update
sudo apt-get install nitroshare

For details click here

Fabby
  • 34,259
2

First you have to configure IP address for both Ubuntu and Windows 7. (http://www.howtogeek.com/howto/19249/how-to-assign-a-static-ip-address-in-xp-vista-or-windows-7/). Also change Ubuntu IP address (How to set static IP address?)

Windows 7 IP Configurations

IP Address : 192.168.2.2
Subnet Mask : 255.255.255.0
Default gateway : 192.168.2.1

Ubuntu IP Configurations

IP Address : 192.168.2.3
Subnet Mask : 255.255.255.0
Default gateway : 192.168.2.1

You can use some other IP addresses. For example I used above ones. Then share the folder from Windows (http://windows.microsoft.com/en-us/windows/share-files-with-someone#1TC=windows-7)

Then go to Nautilus in Ubuntu. Click on Connect to Server on left pane. Type smb://192.168.2.2. Click connect. Then enter username and password. All the shares will appear. Copy and paste them on your Ubuntu computer using Nautilus. If you are using Dolphin please refere - http://doc.opensuse.org/documentation/html/openSUSE_113/opensuse-kdeuser/cha.network.html#sec.network.ad.data

Click on add network folder.

enter image description here

Select Microsoft Windows Network drive.

enter image description here

Provide windows computer ip. Click Save & Connect

enter image description here

Provide the password for windows computer. (with domain name) If you dont have domain name just provide normal username and password. If it doesn't work try WORKGROUP\<username> enter image description here

If you are using PacMANFM, in address bar type smb://192.168.1.2/

dedunu
  • 9,186