Fedora Server with BTRFS on VMware

Sorry I do not have relavant experience with the windows VM tools.
Given VMware has dispointed you could try VirtualBox.

Fedora supports WSL2 with F42. Could you run your app under Fedora on WSL2?
I did some testing of Fedora for WSL2 and it worked very well in my limited testing.

You can tweak a rpi to create this feature. Once more Jeff Geerling shows how to (NUT on a raspberry pi):

1 Like

Yes that would be a great idea, I have tried it once but couldn’t find official image but now I think there is a good news from Fedora, I will check it out, thank you so much.

There should be wsl fedora image and instructions as part of the f42 beta.

There is topic Fedora Linux 42 Beta is here (the announcement comments topic!) where asked about wsl

1 Like

Btrfs writes atomically, meaning it’s all or nothing.

Btrfs uses a technique called Copy-on-Write (CoW) for all writes to the filesystem. CoW means that a write always happens in a new block on the disk instead of overwriting an existing data block. Once the block is updated on disk, the metadata is updated to point to the new block. This ensures data integrity in case of a failed write - you either have the original data or the new data. If a write fails in a traditional filesystem, the contents of a datablock may instead be incomplete or wrong.

Obviously, everything relies on the hardware behaving correctly:

In an ideal world, the device does what it promises. The filesystem assumes that this may not be true so additional mechanisms are applied to either detect misbehaving hardware or get valid data by other means. The devices may (and do) apply their own detection and repair mechanisms but we won’t assume any.

The following assumptions about storage devices are considered (sorted by importance, numbers are for further reference):

  1. atomicity of reads and writes of blocks/sectors (the smallest unit of data the device presents to the upper layers)
  2. there’s a flush command that instructs the device to forcibly order writes before and after the command; alternatively there’s a barrier command that facilitates the ordering but may not flush the data
  3. data sent to write to a given device offset will be written without further changes to the data and to the offset
  4. writes can be reordered by the device, unless explicitly serialized by the flush command
  5. reads and writes can be freely reordered and interleaved

The consistency model of BTRFS builds on these assumptions. The logical data updates are grouped, into a generation, written on the device, serialized by the flush command and then the super block is written ending the generation. All logical links among metadata comprising a consistent view of the data may not cross the generation boundary.

2 Likes

Yeah, I just downloaded the latest F42 image and tried installing Apache, Caddy, and Firewalld. Caddy and HTTP work fine when starting the system daemon, but the firewall daemon doesn’t start, showing an error. I am testing on Windows Server 2022.

But I don’t think mirrored network adapter option is available on windows server, thus I can not access any hosted applications on Fedora I guess

There microsoft docs of network setup I found Accessing network applications with WSL | Microsoft Learn

You will need to change the networking mode.

What error do you see for the firewall?

I had already changed my WSL2 to use mirrored nedworking:

$ cat /mnt/c/Users/barry/.wslconfig
[wsl2]
networkingMode=mirrored

I’ve now used the powershell commands to open up the HyperV firewall to allow SSH and HTTP in.

New-NetFirewallHyperVRule -Name "MyWebServer" -DisplayName "My Web Server" -Direction Inbound -VMCreatorId '{40E0AC32-46A5-438A-A0B2-2B479E8F2E90}' -Protocol TCP -LocalPorts 80
New-NetFirewallHyperVRule -Name "Fedora-SSH" -DisplayName "Fedora SSH" -Direction Inbound -VMCreatorId '{40E0AC32-46A5-438A-A0B2-2B479E8F2E90}' -Protocol TCP -LocalPorts 22

With these changes I can ssh into the Fedora WSL instance and access the web server.

Yeah I have changed the network mode to mirrored but I get this error:
wsl: Mirrored networking mode is not supported: Windows version 20348.2461 does not have the required features. Falling back to NAT networking.

I tried using netsh command following the documentation Accessing network applications with WSL | Microsoft Learn
But no luck, I can access default Apache page with the Fedora IP but couldn’t with the Windows Server IP.

The firewalld shows the following error

Mar 19 13:44:23 Liyu-Server systemd[1]: Started firewalld.service - firewalld - dynamic firewall daemon.
Mar 19 13:44:24 Liyu-Server firewalld[139]: ERROR: 'python-nftables' failed: internal:0:0-0: Error: Could not process rule: No such file or directory


                                            JSON blob:
                                            {"nftables": [{"metainfo": {"json_schema_version": 1}}, {"add": {"chain": {"family": "inet", "table": "firewalld", "name": >
Mar 19 13:44:24 Liyu-Server firewalld[139]: ERROR: Failed to load user configuration. Falling back to full stock configuration.
Mar 19 13:44:24 Liyu-Server firewalld[139]: ERROR: 'python-nftables' failed: internal:0:0-0: Error: Could not process rule: No such file or directory


                                            JSON blob:
                                            {"nftables": [{"metainfo": {"json_schema_version": 1}}, {"add": {"chain": {"family": "inet", "table": "firewalld", "name": >
Mar 19 13:44:24 Liyu-Server firewalld[139]: ERROR: COMMAND_FAILED: 'python-nftables' failed: internal:0:0-0: Error: Could not process rule: No such file or directory


                                            JSON blob:
                                            {"nftables": [{"metainfo": {"json_schema_version": 1}}, {"add": {"chain": {"family": "inet", "table": "firewalld", "name": >
Mar 19 13:44:24 Liyu-Server firewalld[139]: Traceback (most recent call last):
                                              File "/usr/lib/python3.13/site-packages/firewall/core/fw.py", line 734, in start
                                                self._start()
                                                ~~~~~~~~~~~^^
                                              File "/usr/lib/python3.13/site-packages/firewall/core/fw.py", line 703, in _start
                                                self._start_apply_objects(reload=reload, complete_reload=complete_reload)
                                                ~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                                              File "/usr/lib/python3.13/site-packages/firewall/core/fw.py", line 581, in _start_apply_objects
                                                with self.with_transaction() as transaction:
                                                     ~~~~~~~~~~~~~~~~~~~~~^^
                                              File "/usr/lib/python3.13/site-packages/firewall/core/fw.py", line 152, in __exit__
                                                ctxself.transaction.execute(ctxself._enable)
                                                ~~~~~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^
                                              File "/usr/lib/python3.13/site-packages/firewall/core/fw_transaction.py", line 126, in execute
                                                raise FirewallError(errors.COMMAND_FAILED, errorMsg)

Are you trying on Windows 11? The command is not working for me on Windows Server 2022

New-NetFirewallHyperVRule : The term 'New-NetFirewallHyperVRule' is not recognized as the name of a cmdlet, function,
script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is
correct and try again.

I am testing on windows 11 23h2.

1 Like

Thankfully, the port forward thing worked after restarting the server. But now I am struggling with starting the WSL when the server starts and able to access the web applications.

A web search for “ startup wsl on boot” comes up will a number of promising leads.

1 Like

This is not true for any filesystem. There are critical I/O operations, the window in which those exist are smaller with journaled filesystems, and even smaller for CoW filesystems.