search for: fts_read

Displaying 4 results from an estimated 4 matches for "fts_read".

2017 Sep 22
0
fts_read failed
...using /etc/fstab: gfs1,gfs2:/vol1/sites-available/ws0 /etc/nginx/sites-available glusterfs defaults,_netdev 0 0 and gfs1,gfs2:/vol1/webroots/ws0 /var/www glusterfs defaults,_netdev 0 0 I cd to /var/www/example.com/public_html/www.example.com/ and run: chown -R auser:agroup . and get: chown: fts_read failed: No such file or directory If I try the same on one of the glusterfs servers, it works fine as expected. However, if I run: chown auser:agroup * chown auser:agroup */* chown auser:agroup */*/* [...] all the way to the bottom of the directory tree, it all works fine. Also, and this is...
2006 Mar 29
3
ON 20060327 and upcoming solaris 10 U2 / coreutils
...decision to go live with a Solaris Express build or wait for Solaris 10U2 for SPARC systems. Second, in testing out nexenta gnu/solaris, which happens to package the coreutils revision of du, I''ve found a bug in that program. A du on a snapshot or other .zfs entity causes this error: du: fts_read failed: No such file or directory fts_read in previous bug reports for linux et al shows that the underlying filesystem is corrupted. I highly doubt that, but it raises the question of what Sun may wish to provide to third party utility developers, perhaps more proactively, to get ZFS to be well s...
2011 Jun 21
2
GlusterFS 3.1.5 now available
If you haven't seen it already, GlusterFS 3.1.5 is now available at http://www.gluster.org/download/ For those of you currently on the 3.1.x series, we recommend that you upgrade to this latest release. Here are some issues fixed in this release: Bug 2294: Fixed the issue occurred during creating and sharing of volumes with both RDMA and TCP/IP transport type. Bug 2522: Fixed the issue of
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...ile (whitelist_file); - - char *paths[2] = { (char *) modpath, NULL }; - FTS *fts = fts_open (paths, FTS_COMFOLLOW|FTS_PHYSICAL, NULL); - if (fts == NULL) - error (EXIT_FAILURE, errno, "add_kernel_modules: fts_open: %s", modpath); - - for (;;) { - errno = 0; - FTSENT *entry = fts_read (fts); - if (entry == NULL && errno != 0) - error (EXIT_FAILURE, errno, "add_kernel_modules: fts_read: %s", modpath); - if (entry == NULL) - break; - - /* Ignore directories being visited in post-order. */ - if (entry->fts_info & FTS_DP) - continu...