Displaying 20 results from an estimated 4000 matches similar to: "-x tries to descend into FUSE filesystems"
2009 Dec 21
1
File list and find_fuzzy() insights for algo fiddling
Hi!
I read the source around find_fuzzy(), but got stuck in get_dirlist(). I
thought the latter returns the subset of the current ?global? file list
of the receiver side (which is complete, or an incremental part(?)),
reduced to the ?same directory? restriction.
Can someone enlighten me, where the ?global file list? is stored? Is
that actually used for fuzzy-match? If not, why not?
When is
1999 Jan 19
0
"don't descend"
What is the intended implementation of "don't descend".
a) treat all files that are in the "don't descend hierarchy as "no such file"
(or equivelent)
or
b) disable opendir() on "don't descent directories", but allow (for example)
stats on files that are in the "don't descend directories"
I would have expected the 1st. Sambe
2006 May 10
0
Initializing a model object (descend. of ActiveRecord::Base)
I am attempting to add a custom initialization method to my model
object.
However, when I do this, I start getting complaints about
"method_missing" on my model attributes (that should be handled by the
ActiveRecord::Base mapping stuff).
Is there something special that I have to do to add an initialize method
to a descendant of ActiveRecord::Base?
I thought that calling
2006 Dec 14
1
Prototype CSS selector to descend tree?
Hi, I''m calling on those with Prototype/CSS selector foo to help with a
somewhat tricky issue.
I have a tree structure where each item is hierarchical. This is used
to manage software components. Think of the case where you''re
installing a piece of software, and want to customize which packages
are installed:
[ ] Internet
[ ] Email
[ ] Thunderbird
[ ]
2005 May 24
3
four tc filter and netem questions
The following (occuring on debian/testing with kernel-image-2.6.8-2-386 version
2.6.8-13 and iproute version 20041019-3) confuses me:
# tc qdisc add dev eth0 root handle 1: prio
# tc filter add dev eth0 parent 1: proto ip pref 1 handle 1 fw classid 1:2
# tc filter ls dev eth0
filter parent 1: protocol ip pref 1 fw
filter parent 1: protocol ip pref 1 fw handle 0x1 classid 1:2
# tc filter del dev
2005 May 22
1
Change HTB "final qdisc" of the default walk-throught class
Hello everybody!
With a HTB qdisc:
# tc qdisc add dev eth0 root handle 99: htb
How can I change the "final qdisc" of the default walk-throught class?
# tc qdisc add dev eth0 parent 99:0 handle 88: sfq
results in: "RTNETLINK answers: Invalid argument"
CBQ automatically creates a xx:0 root class where I can attach final
qdiscs... - If there is a root class in htb, how is it
2006 Aug 16
1
Saving ownership as non-root
Hello everybody!
Out of curiosity: What (backup) solutions do you use to let rsync store
device files and ownership permissions without root privileges?
I found out about "fakeroot" so far. Is there actually a practical use
for the "--super" option? I didn't find anything as fakeroot doesn't
need it...
Additionally it would be a nice idea to refer to
2012 Jul 09
4
[PATCH 0/4] Provide guestmount --pid-file and document possible race when unmounting FUSE filesystems.
The full description of this bug is here:
https://bugzilla.redhat.com/show_bug.cgi?id=838592
and the effect it has on OpenStack is described here:
https://bugzilla.redhat.com/show_bug.cgi?id=835466#c9
Rich.
2003 Sep 17
1
nsd serving localhost
Hi,
I just installed nsd 1.2.2, and found that it choked on the following
zone file when parsing it as an IPv6 zone file, complaining about
out-of-zone data on line 2:
@ IN SOA ns.oryx.com. hostmaster.oryx.com. (
2003091600 10800 3600 2592000 86400 )
1 IN PTR localhost.
Using it only under IPv4 worked. What I'm now using is
2009 Oct 30
2
[PATCH 0/2 FOR DISCUSSION ONLY] Implement FUSE filesystem support
** FOR DISCUSSION ONLY ** Not to be applied, and (at the moment)
not really working very well.
These two patches contain a partial implementation of a FUSE
filesystem built on top of libguestfs.
What is FUSE? Read: http://fuse.sf.net/
The implementation is a very straightforward mapping of FUSE
primitives to guestfs(3) API calls.
Note that read/write of files is missing (a rather obvious
2014 Jan 24
0
Re: [PATCH] fuse: In mount-local-run, test if root filesystem has been mounted (RHBZ#1057504).
On Friday 24 January 2014 10:22:58 Richard W.M. Jones wrote:
> It is never normally valid to use the mount-local* APIs when you
> haven't mounted some filesystems in the libguestfs namespace.
>
> If you try it, it results in some odd errors. The mount-local-run
> call is successful, but subsequent operations fail:
>
> $ mkdir -p /tmp/mnt
> $ guestfish -x -N fs
2010 Mar 17
0
fuse filesystem mount issue
Hi!
I'm using the ntfs-3g module for my portable USB hard drive on Centos 5.4.
When I plug it into my centos box it mounts fine, but its owned by root
and nobody but root has permission to write to it.
I've been perusing the ntfs-3g and fuse man pages (and other docs) and they
all seem to say that the default settings should be to allow RW access
to everyone. but that isn't what
2005 May 23
3
skewness and kurtosis in e1071 correct?
I wonder whether the functions for skewness and kurtosis in the e1071
package are based on correct formulas.
The functions in the package e1071 are:
# --------------------------------------------
skewness <- function (x, na.rm = FALSE)
{
if (na.rm)
x <- x[!is.na(x)]
sum((x - mean(x))^3)/(length(x) * sd(x)^3)
}
# --------------------------------------------
and
#
2014 Jan 24
2
[PATCH] fuse: In mount-local-run, test if root filesystem has been mounted (RHBZ#1057504).
It is never normally valid to use the mount-local* APIs when you
haven't mounted some filesystems in the libguestfs namespace.
If you try it, it results in some odd errors. The mount-local-run
call is successful, but subsequent operations fail:
$ mkdir -p /tmp/mnt
$ guestfish -x -N fs mount-local /tmp/mnt : mount-local-run
libguestfs: error: lstat: lstat_stub: you must call 'mount'
2009 Mar 18
1
[PATCH] Remove setting IP_TOS_IS_BROKEN for Cygwin
Hi,
The problem that setsockopt(IP_TOS) doesn't work on Cygwin is long
fixed. Ages ago Microsoft changed the definition for IP_TOS when moving
from winsock1 to winsock2 and IP_TOS in Cygwin didn't work all these
years because nobody (that's especialy me) realized that we were still
using the old winsock1 value. This has been fixed since 2005, though.
Patch below.
Corinna
Index:
2006 May 25
5
Wine 0.9.14.compile error (fatal)
Tried to compile the lastest wine and gcc choked up on it as follows:
gcc -c -I. -I. -I../../include -I../../include -I/usr/X11R6/include
-D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -gstabs+
-Wpointer-arith
-g -O2 -o baseshader.o baseshader.c
baseshader.c: In function `print_glsl_info_log':
baseshader.c:688: error: `GL_OBJECT_INFO_LOG_LENGTH_ARB' undeclared (first
2005 Sep 20
1
Problem with read.spss() and as.data.frame(), or: alternative to subset()?
Trying to select a subset of cases (rows of data) I encountered several
problems:
Firstly, because I did not read the help to read.spss() thoroughly
enough, I treated the data read as a data frame. For example,
dr2000 <- read.spss('myfile.sav')
d <- subset(dr2000,RBINZ99 > 0)
and thus received an error message (Object "RBINZ99" not found), because
dr2000 is not a
2007 Mar 19
2
Index files in .imap directory
A few RC releases ago we had a problem where a user's restored home directory
contained a .imap folder either from a previous RC release or perhaps it was
a different server. In any event, restoration of the user caused problems
since Dovecot choked on the restored .imap index files. Removing those index
files cleared the problem. I'm wondering if this is still an issue, and
therefore
2015 Jul 13
3
[LLVMdev] Documentation of bitcasts in calls
Dear all,
I just stumbled over the following instruction in the LLVM IR of a C
program compiled with clang:
%26 = call i32 (...)* bitcast (i32 (i32, i32, i32, i32, i32)*
@KeWaitForSingleObject to i32 (...)*)(i32 %23, i32 %24, i32 %25, i32 0,
i32 0)
Since our LLVM Parser choked on this instruction, I tried to check the
documentation, but did not find anything about such nested bitcasts
within
2019 Oct 14
0
Re: [PATCH libnbd] nbdfuse: New tool to present a network block device in a FUSE filesystem.
On 10/12/19 9:21 AM, Richard W.M. Jones wrote:
> This program allows you to turn a network block device source into a
> FUSE filesystem containing a virtual file:
>
> $ nbdkit memory 128M
> $ mkdir mp
> $ nbdfuse mp/ramdisk nbd://localhost &
> $ ls -l mp
> total 0
> -rw-rw-rw-. 1 rjones rjones 134217728 Oct 12 15:09 ramdisk
> $ dd