Skip to content

Instantly share code, notes, and snippets.

@angelomachado
Last active July 26, 2017 11:47
Show Gist options
  • Save angelomachado/573b4134e66a18073a3e9b4141335ee1 to your computer and use it in GitHub Desktop.
Save angelomachado/573b4134e66a18073a3e9b4141335ee1 to your computer and use it in GitHub Desktop.
sudo apt-get install build-essential autoconf libtool pkg-config python-dev libssl-dev
// installing watchman from source
git clone https://github.com/facebook/watchman.git
cd watchman
./autogen.sh
./configure
make
sudo make install
#Resolvendo problema de max watches
#temporariamente
echo 65536 | sudo tee -a /proc/sys/fs/inotify/max_user_watches
#permanentemente
echo fs.inotify.max_user_watches=65536 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p
#reiniciando
watchman shutdown-server
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment