Created
January 18, 2019 01:22
-
-
Save calderaro/3af13b708e21727c77bf4ad74988a08d to your computer and use it in GitHub Desktop.
how to install watchman ubuntu xD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install -y autoconf automake build-essential python-dev libtool libssl-dev pkg-config | |
cd /tmp | |
git clone https://github.com/facebook/watchman.git | |
cd watchman/ | |
git checkout v4.9.0 | |
./autogen.sh | |
./configure | |
make | |
sudo make install | |
echo 256 | sudo tee -a /proc/sys/fs/inotify/max_user_instances | |
echo 32768 | sudo tee -a /proc/sys/fs/inotify/max_queued_events | |
echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches | |
watchman shutdown-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment