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.
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.
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.
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):
atomicity of reads and writes of blocks/sectors (the smallest unit of data the device presents to the upper layers)
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
data sent to write to a given device offset will be written without further changes to the data and to the offset
writes can be reordered by the device, unless explicitly serialized by the flush command
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.
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.
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.
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.
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.
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.