All Projects → int128 → Idea Fsnotifier Wsl

int128 / Idea Fsnotifier Wsl

Licence: apache-2.0
IntelliJ IDEA fsnotifier for WSL (Windows Subsystem for Linux)

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Idea Fsnotifier Wsl

Alpinewsl
Alpine Linux based WSL distribution. Supports multi-install. Lightest WSL distribution.
Stars: ✭ 203 (+600%)
Mutual labels:  windows-subsystem-linux
Awesome Wsl
Awesome list dedicated to Windows Subsystem for Linux
Stars: ✭ 3,544 (+12120.69%)
Mutual labels:  windows-subsystem-linux
Wsldl
Advanced WSL launcher / installer. (Win10 FCU x64/arm64 or later.)
Stars: ✭ 782 (+2596.55%)
Mutual labels:  windows-subsystem-linux
Wsl Dotfiles
My dotfiles for running an i3-based environment within the Windows Subsystem for Linux (WSL).
Stars: ✭ 211 (+627.59%)
Mutual labels:  windows-subsystem-linux
wsl2exe
[TESTING]Use command in WSL from exe executable
Stars: ✭ 34 (+17.24%)
Mutual labels:  windows-subsystem-linux
Wsl Terminal
Terminal emulator for Windows Subsystem for Linux (WSL)
Stars: ✭ 3,120 (+10658.62%)
Mutual labels:  windows-subsystem-linux
Extraterm
The swiss army chainsaw of terminal emulators
Stars: ✭ 1,922 (+6527.59%)
Mutual labels:  windows-subsystem-linux
Wsl Programs
A community powered list of programs that work (and those that don't) on the Windows subsystem for Linux
Stars: ✭ 931 (+3110.34%)
Mutual labels:  windows-subsystem-linux
Weasel Pageant
Deprecated: An ssh-agent compatible helper for interacting with Pageant from processes running on the Windows Subsystem for Linux.
Stars: ✭ 256 (+782.76%)
Mutual labels:  windows-subsystem-linux
Centwsl
[DISCONTINUED] CentOS based WSL distribution
Stars: ✭ 766 (+2541.38%)
Mutual labels:  windows-subsystem-linux
Archwsl
ArchLinux based WSL Distribution. Supports multiple install.
Stars: ✭ 3,667 (+12544.83%)
Mutual labels:  windows-subsystem-linux
uniterm
🚧Universal Terminal Emulator, might be a great toy terminal front-end for geeks.
Stars: ✭ 22 (-24.14%)
Mutual labels:  windows-subsystem-linux
Wsl Ssh Pageant
A Pageant -> TCP bridge for use with WSL, allowing for Pageant to be used as an ssh-ageant within the WSL environment.
Stars: ✭ 381 (+1213.79%)
Mutual labels:  windows-subsystem-linux
Lxrunoffline
A full-featured utility for managing Windows Subsystem for Linux (WSL)
Stars: ✭ 3,005 (+10262.07%)
Mutual labels:  windows-subsystem-linux
Wslgit
Use Git installed in Bash on Windows/Windows Subsystem for Linux (WSL) from Windows and Visual Studio Code (VSCode)
Stars: ✭ 903 (+3013.79%)
Mutual labels:  windows-subsystem-linux
Wslinstall
Install any GNU/Linux userspace in WSL
Stars: ✭ 178 (+513.79%)
Mutual labels:  windows-subsystem-linux
Wsl Ssh Agent
Helper to interface with Windows ssh-agent.exe service from Windows Subsystem for Linux (WSL)
Stars: ✭ 298 (+927.59%)
Mutual labels:  windows-subsystem-linux
Wslexec
A wrapper to run Linux command inside WSL (Windows Subsystem for Linux) from native apps
Stars: ✭ 29 (+0%)
Mutual labels:  windows-subsystem-linux
Wsl Docker Git Setup
Shell script to configure Windows Subsystem for Linux (WSL) & Ubuntu on Windows to use docker and docker-compose as well as a git-enabled prompt
Stars: ✭ 23 (-20.69%)
Mutual labels:  windows-subsystem-linux
Bootshellcredentialprovider
Windows 10 Credential Provider intended to simplify the process of logging directly into alternative shells to Windows Explorer.
Stars: ✭ 715 (+2365.52%)
Mutual labels:  windows-subsystem-linux

IntelliJ IDEA fsnotifier for WSL CircleCI

IntelliJ IDEA for Linux works on WSL (Windows Subsystem for Linux; Bash for Windows) as well, but the file watching feature is not available for now. It shows the following warning on startup:

⚠️ External file changes sync may be slow. File watcher gave up to operate.

screenshot

This project provides fsnotifier module that allows the file watching feature works on WSL. External file changes will immediately appear.

How to use

Download the latest release and install it into $IDEA/bin.

ls -la fsnotifier64
cp -av fsnotifier64 ~/bin/idea-IC-*/bin/

Run IDEA and check if the warning does not appear.

Build from source

Make sure you have a C compiler.

sudo apt install build-essential
cc -v

Make and install it into $IDEA/bin.

./make.sh
ls -la fsnotifier64
cp -av fsnotifier64 ~/bin/idea-IC-*/bin/

How it works

Currently fsnotifier64 fails on WSL, because WSL does not provide /proc/sys/fs/inotify/max_user_watches and /etc/mtab.

This skips checking /proc/sys/fs/inotify/max_user_watches. Also it reads from /proc/mounts instead of /etc/mtab. See commits for more.

Contribution

This is based on JetBrains/intellij-community/native/fsNotifier/linux.

Feel free to open an issue or pull request. Original and this are public under Apache License 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].