Question Win 11 and Linux PCs on the same Wireless LAN?

olds

Elite Member
Mar 3, 2000
50,113
775
126
<--- Not a Network kinda guy.

I have 2 PCs. Win 11 and Win 10. I can't upgrade the 10 PC to 11 so I am thinking of going to Linux on it. I use it for a HTPC and to watch non pay, YouTube videos. I use Jellyfin to stream to different TVs. (I do believe that limits the Linux flavor to Debian and Ubuntu). But, I am wondering if I can set up a wireless LAN and drag and drop between the 2 PCs? TIA
 

ch33zw1z

Lifer
Nov 4, 2004
39,477
20,154
146
Short answer: yes

Network: wireless or wired, both will work. Setting up either will be best done with a standard router, and if you already have one then great.

Sharing: on windows, youll want to make sure network sharing is enabled, and you share the drive or folders, ensuring appropriate permissions for users

Linux, ensure samba sharing enabled, same thing on users and permissions.

Probably want to google how to set it up and how to access the shares for each system
 
  • Like
Reactions: olds

Quintessa

Member
Jun 23, 2025
32
26
46
But, I am wondering if I can set up a wireless LAN
Yup, you absolutely can. Here's how it plays out:

I can't upgrade the 10 PC to 11 so I am thinking of going to Linux on it.
Both can live happily on the same Wi-Fi LAN, no special config needed beyond connecting to the same SSID. For file sharing, set up Samba (SMB) on the Linux side. Windows will see it like another network folder.

drag and drop between the 2 PCs?

Not literally drag-and-drop across desktops unless you're using remote desktop or shared clipboard. But:
- From File Explorer (Win) to Linux share: Yes.
- From Linux (Nautilus or Dolphin) to Windows share: Also yes, just mount the Windows shared folder.

...YouTube videos. I use Jellyfin to stream to different TVs. (I do believe that limits the Linux flavor to Debian and Ubuntu).
Linux (Ubuntu or Debian) is perfect for that use case. Jellyfin runs great on both, and Firefox/Chromium handles YouTube without issues.

Extra tip: Enable "network discovery" on Windows and install avahi-daemon + samba on Linux for best interop.

Once Samba is set up, file sharing between both becomes seamless, even over Wi-Fi.
 
  • Like
Reactions: olds

Indus

Lifer
May 11, 2002
15,254
10,687
136
Trying to setup the same thing with a Fedora Bazzite comp and Windows 10.

Can I setup a few folders to share vids/ pics/ docs that're forever visible to the windows pc for viewing?
 

Quintessa

Member
Jun 23, 2025
32
26
46
Can I setup a few folders to share vids/ pics/ docs that're forever visible to the windows pc for viewing?
Yep, just install Samba on Fedora and set the share perms. Then mount it from Windows as a network drive.

Basic setup (Fedora Bazzite side):
Code:
sudo dnf install samba samba-common samba-client
sudo systemctl enable --now smb


Create a user for Samba:
Code:
sudo smbpasswd -a your_username


Edit your Samba config:
Code:
sudo nano /etc/samba/smb.conf


Example share block:
Code:
[SharedStuff]
   path = /home/your_username/Shared
   browsable = yes
   read only = no
   guest ok = no


Firewall:
Code:
sudo firewall-cmd --add-service=samba --permanent
sudo firewall-cmd --reload

Windows side:
- Open File Explorer
- \\FEDORA_IP_ADDRESS\SharedStuff
- Use your Samba username/pass
- Right-click > Map Network Drive > Reconnect at login


Done.
 

ch33zw1z

Lifer
Nov 4, 2004
39,477
20,154
146
Yep, just install Samba on Fedora and set the share perms. Then mount it from Windows as a network drive.

Basic setup (Fedora Bazzite side):
Code:
sudo dnf install samba samba-common samba-client
sudo systemctl enable --now smb


Create a user for Samba:
Code:
sudo smbpasswd -a your_username


Edit your Samba config:
Code:
sudo nano /etc/samba/smb.conf


Example share block:
Code:
[SharedStuff]
   path = /home/your_username/Shared
   browsable = yes
   read only = no
   guest ok = no


Firewall:
Code:
sudo firewall-cmd --add-service=samba --permanent
sudo firewall-cmd --reload

Windows side:
- Open File Explorer
- \\FEDORA_IP_ADDRESS\SharedStuff
- Use your Samba username/pass
- Right-click > Map Network Drive > Reconnect at login


Done.

Great comments :)

I would add a line to backup the config file too, that samba config can be gold later on
 

Indus

Lifer
May 11, 2002
15,254
10,687
136
Yep, just install Samba on Fedora and set the share perms. Then mount it from Windows as a network drive.

Basic setup (Fedora Bazzite side):
Code:
sudo dnf install samba samba-common samba-client
sudo systemctl enable --now smb


Create a user for Samba:
Code:
sudo smbpasswd -a your_username


Edit your Samba config:
Code:
sudo nano /etc/samba/smb.conf


Example share block:
Code:
[SharedStuff]
   path = /home/your_username/Shared
   browsable = yes
   read only = no
   guest ok = no


Firewall:
Code:
sudo firewall-cmd --add-service=samba --permanent
sudo firewall-cmd --reload

Windows side:
- Open File Explorer
- \\FEDORA_IP_ADDRESS\SharedStuff
- Use your Samba username/pass
- Right-click > Map Network Drive > Reconnect at login


Done.

Thank you going to try it.

Two questions though..

1. in your command line: " sudo smbpasswd -a your_username"

lets say I want to set username: citrus and pw: orange
Would I then type:

sudo orange -a citrus ?? Does this seem correct?

2. Also out of curiosity what's the way I would be able to view the same folders on a LMDE debian computer?