Skip to content

Instantly share code, notes, and snippets.

@calderaro
Created January 18, 2019 01:22
Show Gist options
  • Save calderaro/3af13b708e21727c77bf4ad74988a08d to your computer and use it in GitHub Desktop.
Save calderaro/3af13b708e21727c77bf4ad74988a08d to your computer and use it in GitHub Desktop.
how to install watchman ubuntu xD
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