-
Notifications
You must be signed in to change notification settings - Fork 835
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
Missing /proc/vmstat breaks software included with default installation. #1071
Comments
Thank you for filing this. I have filed this one as a bug. To help prioritize, is this blocking a specific scenario? |
This is not blocking anything for me. Discovered while troubleshooting an unrelated issue. |
I also encountered this problem, and my dropbox could not work prompting missing /proc/vmstat |
Same error ( |
dropbox original install as in is impacted by this bug. I got this: IOError: [Errno 2] No such file or directory: '/proc/vmstat' |
Will umask help fix the [Errno 2] No such file or directory: '/proc/vmstat' error? I don't understand the reference. |
Same issue after upgrading to WSL 16.04 Xenial support This happens just after installing dropbox, daemon can not start. This is the generated log tail messages. File "dropbox/event.py", line 244, in start |
Just to add to the list, Glances also fails to load due to lack of vmstat (log below).
|
is there any progress on this issue? I utilise the EasyEngine.io suite for WordPress development and if I could run this in WSL, WOW that would make a massive difference to my production work and quite possibly a lot of Web Developers who work on windows machines.
really hoping to find a way around this or getting some info as to what is causing this issue. |
This is also causing problems for me we trying to run: https://github.com/ray-project/ray |
@pedosb |
This did not solve the issue for me, still same error... edit* I realise now my issue is that the dropbox app comes with its own psutil library and upgrading mine obviously isn't fixing the issue... |
re: sudo pip3 install psutil fixes this issue |
Things are not working. No psutils for python 3
|
Unfortunately this doesn't work for tools like dropbox, which uses its own version of psutil. Does anyone know another workaround? Can we fake a '/proc/vmstat'? |
Another "fixed-in-wsl2" 😞 This is not a solution for those of us held back or for which the 2004 update of Windows still hasn't rolled out to. |
WSL2 should have rolled out to 1909 and 1903 if you're on x64. https://devblogs.microsoft.com/commandline/wsl-2-support-is-coming-to-windows-10-versions-1903-and-1909/ |
Thanks @WizardCM I had forgotten about that. It helps with my own machine, but unfortunately my work machine is held back on 1809 on a supposed "evergreen" program. |
Missing /proc/vmstat breaks programs like vmstat, which ship by default with the current installer.
Windows 10 Home version 1607 build 14393.105
To reproduce, run the command
vmstat
You will see errors about /proc not being mounted.
strace vmstat
will reveal that /proc/vmstat was not found.open("/proc/vmstat", O_RDONLY) = -1 ENOENT (No such file or directory)
The text was updated successfully, but these errors were encountered: