this post was submitted on 10 Jul 2024
49 points (91.5% liked)

Linux

47224 readers
778 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Sorry if this is slightly off topic, I searched for communities about tech support on here and couldn't find anything that wasn't dead in the water. Basically I want to use WPA3 on my Network, however my Windows partition doesn't support WPA3 for some reason. I only keep that piece of trash around for school work. My Fedora Linux partition can use WPA3 just fine so I assume this is a driver issue. Is there any way to use Linux WiFi drivers on Windows?

(inb4 how the turntables)

you are viewing a single comment's thread
view the rest of the comments
[–] wheresmysurplusvalue@hexbear.net 5 points 2 months ago* (last edited 2 months ago) (1 children)

I don't know if this is possible or even advisable, but theoretically maybe the NIC could be hardware passed through to a linux VM, and then configure the host to use the guest VM as a gateway? It'd be kind of a nuts solution but it'd get points for creativity. Guest VM takes hardware control of the NIC and the host connects to the VM like it's a separate device on the same network.

Something like the question posed here

You'd have to solve a few separate problems that might not be worth it, unfortunately I don't have these answers:

  1. Hardware passthrough to the guest (does it require any special drivers on windows/is this idea already dead in the water?)
  2. How to configure VM networking properly so that the host can use the connection (is it enough to configure the connection as bridged?)
  3. Performance
[–] eldavi@lemmy.ml 4 points 2 months ago* (last edited 2 months ago)

I don’t know if this is possible or even advisable, but theoretically maybe the NIC could be hardware passed through to a linux VM, and then configure the host to use the guest VM as a gateway?

i don't know about advisable, but i know it works because i do this.

intel won't allow you to get wifi 6 speeds in ap mode with their linux driver; so i created a windows vm with pci passthrough to use the windows driver to get wifi 6 speeds. it passes along the connection via dns & ip masquerade to the soft router (also a vm) via kvm/qemu based software defined networking; so technically the connections from my laptop & smartphones go through 2 different networks before making it to my isp.

It’d be kind of a nuts solution but it’d get points for creativity. Guest VM takes hardware control of the NIC and the host connects to the VM like it’s a separate device on the same network.

that's how my software router works and i always thought of it as hacky; this is the first time i've heard/thought otherwise.