Networking dual boot PCs [Solved]
Forum rules
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Please stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions prefer the other forums within the support section.
Before you post please read how to get help
There are no such things as "stupid" questions. However if you think your question is a bit stupid, then this is the right place for you to post it. Please stick to easy to-the-point questions that you feel people can answer fast. For long and complicated questions prefer the other forums within the support section.
Before you post please read how to get help
Networking dual boot PCs [Solved]
I have two PCs, both are dual boot running Linux Mint 18.3 Mate and Windows 10 Home, both 64bit.
When both PCs are booted in Linux, under Network Servers there are icons showing Windows Network. Clicking on this icon in either PC produces 'Unable to mount location'. I can understand this, since both PCs are running Linux, not Windows.
So, how can I network these two Linux machines on my ethernet network? I want to network the Linux partitions - not just share files.
I'd be grateful for advice.
John
When both PCs are booted in Linux, under Network Servers there are icons showing Windows Network. Clicking on this icon in either PC produces 'Unable to mount location'. I can understand this, since both PCs are running Linux, not Windows.
So, how can I network these two Linux machines on my ethernet network? I want to network the Linux partitions - not just share files.
I'd be grateful for advice.
John
Last edited by JoHubb on Wed Mar 28, 2018 4:38 pm, edited 1 time in total.
- catweazel
- Level 19
- Posts: 9802
- Joined: Fri Oct 12, 2012 9:44 pm
- Location: Australian Antarctic Territory
Re: Networking dual boot PCs
"There is, ultimately, only one truth -- cogito, ergo sum -- everything else is an assumption." - Me, my swansong.
Re: Networking dual boot PCs
What does that mean exactly?So, how can I network these two Linux machines on my ethernet network? I want to network the Linux partitions - not just share files.
You don't want to share a specific folder but want the other machine to have access to your entire OS? If the latter is the case you might also consider SSH:
[1] On both machines install ssh:
Code: Select all
sudo apt install ssh
[2] Then on Machine1 determine the host name of that machine:
Code: Select all
hostname
Code: Select all
caja sftp://Machine1-host-name.local
.local
at the end.You will get a butt ugly response that looks something like this: Click on Log In Anyway. Then it will ask you for the user name and password of a user on that machine.
You can bookmark the location after you make the connection.
BTW, "Windows Network" is the name given to the smb protocol. The folks who put Desktop Linux together think that smb/samba is a windows only thing despite the fact that it is the default file sharing protocol on all desktop systems - including Linux. Unless Mint goes out of it's way to mess it up Mint 19 will automatically broadcast it's SMB presence to other Linux and macOS machines under "Browse Network" and outside of "Windows Network" so this misunderstanding - on the part of the user anyway - should go away.
Please add a [SOLVED] at the end of your original subject header if your question has been answered and solved.
Re: Networking dual boot PCs
Thanks catweasel - trying this suggestion from altair4 first.
Terminal on Machine 2 - to access Machine 1 hostname Snow-White
howard@howard-System-Product-Name ~ $ caja sftp://Snow-White.local
howard@howard-System-Product-Name ~ $
then,
Could not display "sftp://snow-white.local/".
Error: timed out when logging in.
Please select another viewer and try again.
Where to from here?
Thanks, altair4. I want to share all folders between the two machines, including downloads. Access to a few specific folders is no use to me.So, how can I network these two Linux machines on my ethernet network? I want to network the Linux partitions - not just share files.
What does that mean exactly?
You don't want to share a specific folder but want the other machine to have access to your entire OS? If the latter is the case you might also consider SSH:
Terminal on Machine 2 - to access Machine 1 hostname Snow-White
howard@howard-System-Product-Name ~ $ caja sftp://Snow-White.local
howard@howard-System-Product-Name ~ $
then,
Could not display "sftp://snow-white.local/".
Error: timed out when logging in.
Please select another viewer and try again.
Where to from here?
Re: Networking dual boot PCs
Before I try to reproduce this error can you see if re-installing the following package does anything:
And just to make sure the firewall isn't in the way can you disable the firewall on Snow-White:
Code: Select all
sudo apt-get --reinstall install gvfs-backends
Code: Select all
sudo ufw disable
Please add a [SOLVED] at the end of your original subject header if your question has been answered and solved.
Re: Networking dual boot PCs
Job Done! Great stuff! Many thanks, altair4.
I can now access everything on Machine 1 (Snow-White) from Machine 2. Can I set up the reverse using the same method?
The Hostname for Machine 2 is given as howard-System-Product-Name.
It should be Rudolf!
I can now access everything on Machine 1 (Snow-White) from Machine 2. Can I set up the reverse using the same method?
The Hostname for Machine 2 is given as howard-System-Product-Name.
It should be Rudolf!
Re: Networking dual boot PCs
Yes.
Please add a [SOLVED] at the end of your original subject header if your question has been answered and solved.