Comments on: fswatch – Track File and Directory Changes in Linux https://www.tecmint.com/fswatch-monitor-file-changes-linux/ Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks. Sat, 27 Apr 2024 10:06:46 +0000 hourly 1 By: Jalal Hajigholamali https://www.tecmint.com/fswatch-monitor-file-changes-linux/comment-page-1/#comment-2164271 Sat, 27 Apr 2024 10:06:46 +0000 http://www.tecmint.com/?p=22953#comment-2164271 Hi,

Thank you very much.

The command worked well under CentOS 8.

]]>
By: Aaron Kili https://www.tecmint.com/fswatch-monitor-file-changes-linux/comment-page-1/#comment-915896 Mon, 25 Sep 2017 06:31:59 +0000 http://www.tecmint.com/?p=22953#comment-915896 In reply to ElMariachi.

@ElMariachi

This guide was based on Ubuntu 16.04 and 14.04; though, we’ll cross check this. Thanks for sharing this useful information.

]]>
By: ElMariachi https://www.tecmint.com/fswatch-monitor-file-changes-linux/comment-page-1/#comment-915626 Sat, 23 Sep 2017 20:43:43 +0000 http://www.tecmint.com/?p=22953#comment-915626 Hello!

The tutorial is a bit outdated I think. Also the installation doesn’t seem to work out of the box completely.

Here’s what I had to do on (X)ubuntu 17.04 for making it work:

$sudo apt-get install texinfo
$ cd ~
$ git clone https://github.com/emcrisostomo/fswatch.git
$ cd fswatch/
$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
$ sudo cp /usr/local/lib/libfswatch.so.9.0.0 /usr/lib/
$ sudo ln -s /usr/lib/libfswatch.so.9.0.0 /usr/lib/libfswatch.so.0
$ sudo ln -s /usr/lib/libfswatch.so.9.0.0 /usr/lib/libfswatch.so
$ sudo ldconfig  -n -v /usr/lib/
]]>
By: Gaurav Joshi https://www.tecmint.com/fswatch-monitor-file-changes-linux/comment-page-1/#comment-856886 Sun, 01 Jan 2017 07:04:12 +0000 http://www.tecmint.com/?p=22953#comment-856886 Nice Terminal theme in screenshot Which terminal and theme you are using ?

]]>
By: Ravi Saive https://www.tecmint.com/fswatch-monitor-file-changes-linux/comment-page-1/#comment-850062 Tue, 20 Dec 2016 05:57:55 +0000 http://www.tecmint.com/?p=22953#comment-850062 In reply to mohammad.

@Mohammad,

Yes, you was correct there should be isn’t any space between “group install”, the correct command is:

# yum groupinstall 'Development Tools'

Please install gcc libraries before compiling fswatch..

# yum install gcc

If you still get the same erro, then do

# wget http://people.centos.org/tru/devtools-2/devtools-2.repo -O /etc/yum.repos.d/devtools-2.repo
# yum upgrade
# yum install devtoolset-2-gcc devtoolset-2-binutils devtoolset-2-gcc-c++
# scl enable devtoolset-2 bash
]]>