New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WSL2] File changes made by Windows apps on Windows filesystem don't trigger notifications for Linux apps #4739
Comments
|
Yes, #4064 is most unfortunately titled. Worse, the OP has no repro steps and an unecessary symlink confusing the direction they are talking about. Craig's Nevertheless #4701 got closed as a dupe with (quoth):
So, best I can tell, #4064 is being treated as the LZ for
Yes, known regress. |
|
Is there a temporary fix to this? This is giving me a headache. Using Windows 10, WSL 2. Running npm run serve on my Vue project, which normally hot reloads when I do changes (on my Linux and Mac, and WSL1 and I think maybe WSL2 before(?)). Now I have to shut down and restart the Vue server. Will probably just install Linux on this machine. Developing on a Windows machine is a real pain. |
|
@nake89 are you able to move your project over to the Linux root file system? i.e: Store in your Linux home folder for example? Are there any factors that are blocking you from doing so? And per @therealkenc 's comment this would be a much better landing zone for adding inotify to the 9P file server. I'll update my comment in #4701 to point here, and add some tags to this issue. |
|
@craigloewen-msft Thanks for messaging me back! I actually solved my issue by moving my project to the linux filesystem in WSL and have had no problems so far. I suggest doing the same. In VS Code simply type ctrl-shift-p and then type "Remote-WSL: New Window" This lets users use the linux filesystem in vs code, for those that did not know this :) |
|
@nake89 That's great if your scenario allows it. But just to clarify for anyone else reading, that's not a solution in general as it doesn't work for other Windows-based editors such as VS. |
|
@SteveSandersonMS agreed, we will still be tracking this issue here. :) |
|
Hi, I am encountering this with docker-sync. My setup is:
If I make a change to a file directly inside Ubuntu, changes are reflected in the container's mounted volume. However, if I edit a file in PhpStorm in Windows, the change is reflected in Ubuntu as expected but not in the container. I can't easily move my files to the Linux filesystem because I need to use PhpStorm and other Windows tools in my dev environment, and I also have other stuff such as Google drive sync running to back up local changes. So the workaround doesn't work for me. |
This is a great workaround that will save me lots of time until WSL2 supports this use-case. Thanks for sharing! |
I wrote a small blog post explaining this workaround and talking about a few more things that I discovered/experienced, using Jekyll on WSL2: Speed up your builds to up to 375% and watch for changes for an even faster dev cycle using this workaround on WSL2/Ubuntu, if that can help someone. Note: that applies to more than just Jekyll, Jekyll it was just the catalyst. |
|
For those stumbling upon, some notes about WSL2 features & limitations (OS build 19041.21, insiders slow ring):
|
|
While I am having similar issue with my React App and I am looking for a solution to this as well, I can reply to:
This hint by @myuseringithub:
is a great one to help you! Also I found out yesterday that since Though now I am struggling with Docker containers permissions, which I hope to solve separately and see if reloads in my app work. Hope that helps. |
|
Is there anything that app devs can do to workaround this in their apps? e.g., is there a different file-change notification API that would work on WSL2 across filesystems? (there are a lot of different file-change notification APIs). Or should we wait patiently for inotify support? |
You can use the Linux file system directly, accessible from Windows too; see #4739 (comment) |
|
@Carl-Hugo Does that work for you, as in, are changed detected? I've been using the \wsl$ path with windows editors for a while because with WSL2 the Linux FS is so much faster, but even when using windows editors with files stored there it's not triggering HMR when using npm watch. |
|
@mattlacey Yes it works... Side note: |
Can you please elaborate on that: Is this working well? Any tutorials / starting points how to set this up? |
|
@vielhuber I wrote it as a comment for myself, tried to implement it once without success. Just wait till WSL2 will support inotify. You could still use graphical interfaces for git, only that you would have to constantly refresh to see changes, which is the same case when dealing with VSCode's git panel. But if you wish to dig deeper, check out:
|
|
@myuseringithub Awesome thank you. |
|
I use my regular Git client in Windows, because my project is still on my Windows machine. However, to get livereload working, I simply add a symlink from my WSL2 home directory to the project on my windows machine, f.e.: After that, I start This way, you don't have to move your project and can still enjoy your favorite git client in Windows. Profit! |
|
Arg, scratch the above idea. It only seems to get triggered by file changes at the top-level directory. 😢 |
|
Lol . I did move on to pure Ubuntu |
|
We started to use the WSL filesystem as recommended. Clone into |
|
@jankap the problem here is not the speed but getting the file system changes notification from an app runing under linux. |
You get the notifications in Linux that way. The other way round could be problematic. I think the question is where the notifications and native speeds have to be available. Windows? Use window FS. Linux or docker based devcontainers? Use Linux FS which can initially be accessed via the network share to clone the code etc. Nevertheless, this issue should be fixed. I'm not saying there is none. |
|
I tried to work around this by setting up a windows file share and mounting with cifs-utils. I was able to mount it however there seems to be some strange bug with running windows executables from the wsl command line within a folder on the mount. If I run ping.exe outside of the mount subfolder it works. Inside a subfolder within the mount I get the following cryptic output: If I can resolve this execution issue, I think SMB would be a decent workaround until inotify gets fixed.... PS The reason /mnt/c fix is important, is that storing files on linux is risky since WSL distros have a tendency to spontaneously lose all user files. It also means files can persist across distro changes etc.. |
|
I just ran into this problem this evening when spinning up a new Angular project after updating my default to WSL2. Thankfully I still have the original and jumped back to run the project with live reload. |
I ended up doing this as well. |
|
Dang - Still no movement? Unfortunate. |
|
I came here because VS Code would not automatically refresh source control upon file changes since I have all my project files stored in the windows filesystem - specifically, so I can have them backed up via OneDrive. I found a solution where you can store your project files on the Linux filesystem and then regularly sync them to your windows filesystem OneDrive folder so that they get backed up. See this blog post from Stephen Rees-Carter for details on how to set it up. (fyi I deleted the mysql database backup part of the script he provides - I just used it to sync files to a folder in my OneDrive and used Task Scheduler to have it run daily) Not perfect and takes an hour or two to set up the first time, but after that you don't need to worry about it and it seems to work quite well so far. |
|
It's annoying that this still isn't fixed and the fact there is no communication from the team is pretty bad. What seemed to work for me was creating a devcontainer and then using the Devcontainers are relatively easy to setup, you just need WSL and Docker installed. The vscode extension for devcontainers can help you create a devcontainer configuration file really quickly. Not sure if this has been said before, but hopefully it helps someone. |
If only that was an option, my company is working on Windows exclusively and my coworkers are more likely to pull their own teeth out before switching off of Windows. Is there really no progress for this issue still? |
|
This has been open since 2019 with no official response. |
|
"[WSL2] File changes made by Windows apps on Windows filesystem don't trigger notifications for Linux apps #4739" Is there a fix for this anywhere in our future? If you're never going to fix this, then say so! |
|
Perhaps, not fixing it is a subtle message from Microsoft that we all should move to Linux proper ... ? If we did, this problem would certainly be resolved. 🤔 |
|
Can someone lock this thread, please? Getting tired of "me too" notifications, and it's fairly clear the maintainers aren't going to respond, so you might as well block this noise and just let us know if it ever gets fixed. Or if you're not going to address this, maybe just close the thread. Everyone knows what the problem is, and only MS can solve it - no reason to waste anybody else's time then. |
Umm click unsubscribe? Me too comments demonstrate how widespread the issue is and allow for discussion around workarounds/root cause. If you're not interested, simply unsubscribe. |
I'm curious, did anybody ever addressed this to MS engineers directly? Are they aware of that? |
|
Another comment: Notifications work when using volume mounts, not bind mounts. This can be very helpful for build folders: |
My main scenario is when you want to keep in sync windows and linux folders with |
Ditto. This is a big problem, if anyone doesn't want to hear, they should unsubscribe! |


WSL2 is really close to being a perfect runtime environment for server apps being developed in Windows. Great job! One missing feature however is breaking a core part of the developer flow.
For sources stored on the Windows filesystem, any changes made by Windows applications such as Visual Studio do not trigger any file change notifications as far as Linux apps are concerned. This means that all "live rebuild"-type tools don't work (examples:
webpack --watch,jekyll --interactive, and Tilt.dev) when running under WSL2. This unfortunately renders many modern dev workflows unviable.Notes:
fs.inotify.max_user_watchesdoesn't affect this, since the issue is about changes originating on the Windows side.Bug report template
Your Windows build number: 10.0.19033.1
What you're doing and what's happening:
This applies to all tools that listen for file change notifications, but as an example take
webpack. Repro steps:c:\repro), and then add these three files to itsudo apt-get install nodejs npmcd /mnt/c/repronpm inpm run build:watch. Wait a few seconds until it completes the first build. It will now be waiting for further changes to your source files.c:\repro\index.jsand save some change to it. For example, change'Hello, world'to'Hello, world 2'.What's wrong / what should be happening instead:
Expected behavior: Webpack should see the change and rebuild. That is, you'll see it log information about another build, and the output in
dist/bundle.jswill be updated.Actual behavior: Webpack doesn't respond at all, because there's no file change notification.
Finally I understand that the fix for this is likely to be "add file watch capabilities to the Plan9 server", and you may feel this is already being tracked by #4064. However #4064 describes a more obscure symptom of this missing feature and makes it sound like an intermittent issue. What I'm reporting here is not intermittent at all, and is a pretty mainstream scenario (using tools like
webpack --watch). Thanks!The text was updated successfully, but these errors were encountered: