Displaying 20 results from an estimated 200 matches similar to: "symlink permissions"
2010 Jul 21
2
Are acl_xattr and admin users option incompatible?
Hello List,
I've run into an interesting situation and am wondering if this is by
design or just an interesting side effect: using both acl_xattr and
a user in the "admin users" list at the same time seem to conflict.
I have a tool that is running on a windows box that needs full access
to files on a given share while ignore individual file and folder
permissions. We were able to
2007 Apr 12
1
printf capture
printf capture
Dear All,
I'm running R-2.4.1 on WindowsXP.
I wrote a small C++ DLL using Rprintf() and all works fine
dyn.load(), is.loaded('f1'), Rprintf(), .C(), all is ok.
Now, the worry :
I use also a 3rd party piece of C++ program which was not designed
for R and uses printf().
I though on sink(...) before .C('f1'), but it doesn't work.
I call
2023 Jun 21
3
[PATCH 00/79] fs: new accessors for inode->i_ctime
I've been working on a patchset to change how the inode->i_ctime is
accessed in order to give us conditional, high-res timestamps for the
ctime and mtime. struct timespec64 has unused bits in it that we can use
to implement this. In order to do that however, we need to wrap all
accesses of inode->i_ctime to ensure that bits used as flags are
appropriately handled.
This patchset first
2005 Dec 02
1
[PATCH] ext3 doc: user_xattr and acl options are not on by default
Documentation/ext3.txt suggests that the "user_xattr" and "acl" mount options
are on by default. This doesn't seem to be the case, as the kernel deduces the
default mount options from the filesystem superblock, and mke2fs does not
appear to write any default mount options there.
This error was spotted by Jacques de Mer.
Signed-off-by: Daniel Drake <dsd at
2012 Jun 19
4
FW: samba4 on debian squeeze
nobody any suggestions for me ? :-((
im running kernel 3.2. from backports.
Greetz,
Louis
>-----Oorspronkelijk bericht-----
>Van: belle at bazuin.nl [mailto:samba-bounces at lists.samba.org]
>Namens L.P.H. van Belle
>Verzonden: 2012-06-18 15:02
>Aan: samba at lists.samba.org
>Onderwerp: [Samba] samba4 on debian squeeze
>
>hai,
>?
>Im trying to install
2014 Jun 10
0
Troubleshooting Samba 4 make test errors due to failure to set uid
To whom it may concern:
I am attempting to migrate a Samba 3 PDC to Samba 4. Before committing to
the migration, I'm attempting to get a fresh Samba 4 PDC configured and
installed for a temporary domain running on virtual machines. For this temp
domain, the Samba server and all its clients will be virtualized. However,
before I even get to the stage where I can begin configuring the clients,
2009 Sep 23
0
jbd/kjournald oops on 2.6.30.1
Hi,
I am getting the following Oops on 2.6.30.1 kernel. The bad part is,
it happens rarely (twice in last 1.5 months) and the system is pretty
lightly loaded when this happens (no heavy file/disk io).
Any insights or patches that I can try? (i searched lkml and ext3
lists but could not find any similar oops/reports).
== Oops ===================
BUG: unable to handle kernel NULL pointer
2004 Mar 29
2
ACL doesn't work
Hi all,
linux:/var/log/samba # cat /etc/fstab | grep acl
/dev/sda2 /shared ext3 defaults,acl 0
0
>From XP I connect to my server and try to set permission for my user's home
directory, but when I click apply the checked checkboxs set back unchecked.
:(
linux:/var/log/samba # cat log.smbd
[2004/03/29 16:06:31, 1]
2011 Jul 09
10
Kernel Modules
Just compiled a custom kernel, but unable to mount a btrfs partition. It essentially says ''unrecognized filesystem''. What could be missing?
# File systems
#
CONFIG_EXT2_FS=y
CONFIG_EXT2_FS_XATTR=y
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT2_FS_SECURITY=y
# CONFIG_EXT2_FS_XIP is not set
CONFIG_EXT3_FS=y
CONFIG_EXT3_DEFAULTS_TO_ORDERED=y
CONFIG_EXT3_FS_XATTR=y
2007 May 25
1
Need help: Centos 5, Samba as file server + ACL for WORKGROUP
Hi, all. I could not add any additional users to a file or directory using
the Windows Security tab in Windows XP Sp2. Here is my configuration for
samba-3.0.23c-2.el5.2.0.2.
# grep ACL config-2.6.18-8.el5
CONFIG_EXT2_FS_POSIX_ACL=y
CONFIG_EXT3_FS_POSIX_ACL=y
CONFIG_FS_POSIX_ACL=y
CONFIG_NFS_V3_ACL=y
CONFIG_NFSD_V3_ACL=y
CONFIG_NFS_ACL_SUPPORT=m
# smbd -b | grep ACL
HAVE_SYS_ACL_H
2011 Feb 13
2
Journal Aborts in VMware ESX (Filesystem Corruption)
I have several CentOS5 hosts in a VMware ESX 3.5.0 226117 environment
using iSCSI storage. Recently we've begun to experience journal aborts
resulting in remounted-read-only filesystems as well as other filesystem
issues - I can unmount a filesystem and force a check with "fsck -f" and
occasionally find errors.
I've found -
2005 Nov 03
1
filesystem remounted as read only
Hi,
I'm running kernel 2.6.8-15, lvm2 v2.01.04-5 and acl v2.2.23-1 on a
Sunblade 100 (sparc). In a few months we have experienced for several
times that an ext3 filesystem is remounted as read-only (this is due
to the option "errors=remount-ro" in /etc/fstab). Sometimes there is
no error in log files but sometimes we see:
kernel: init_special_inode: bogus i_mode (3016)
kernel:
2004 Jun 02
0
[PATCH] kill 2.4 dev_t vs kdev_t crap
The difference between kdev_t and dev_t in 2.4 is rather theoretical, no
need to clutter up the source for it.
Index: src/inode.c
===================================================================
--- src/inode.c (revision 969)
+++ src/inode.c (working copy)
@@ -1877,11 +1872,8 @@
case OCFS_ATTRIB_FIFO:
case OCFS_ATTRIB_SOCKET:
{
-#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0)
2010 Apr 21
2
[PATCH] ocfs2: Update VFS inode's id info after reflink.
In reflink we update the id info in the disk but forget to update
the corresponding information in the VFS inode. So update them
accordingly in case we want to preserve the attributes.
Reported-by: Jeff Liu <jeff.liu at oracle.com>
Signed-off-by: Tao Ma <tao.ma at oracle.com>
---
fs/ocfs2/refcounttree.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git
2006 Oct 25
1
FS corruption? bogus i_mode
Hello,
I am doing some testing on a PXA270 based processor (on a single
board computer) which makes the processor vulnerable to bit flips. One
such bit flips seems to have corrupted the file system.
The debug port on the board (it is a single board computer) had the
following message when i think the FS corruption occured :
<7>init_special_inode: bogus i_mode (33061)
init_special_inode:
2006 Dec 27
5
Problem with ext3 filesystem
Hey,
I've a problem with an ext3 filesystem and don't know how to fix it or
find the failure :(
The Hardware:
Tyan mainboard, AMD Athlon CPU, ARECA ARC-1120 RaidController Raid5 with
400GB Seagate HD's, 756 MB Ram, other harddisks for system, network and
avm isdn controller.
Couse of the filesystem problems I run memtest and found one bad memory
module which I replaced yet.
The
2008 Feb 09
1
Problem with fitdistr function
Hello,
I am using fitdistr function for parameter estimation.
When I use
fd<-fitdistr(V2,"gamma")
I get following error:
Error in optim(x = c(0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, :
initial value in 'vmmin' is not finite
fd<-fitdistr(V2,"weibull")
Error in optim(x = c(0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, 0L, :
2010 Apr 15
1
[PATCH] ocfs2: avoid direct write if we fall back to buffered v2
when we fall back to buffered write from direct write, we call
__generic_file_aio_write but that will end up doing direct write
even we are only prepared to do buffered write because the file
has O_DIRECT flag set. This is a fix for
https://bugzilla.novell.com/show_bug.cgi?id=591039
revised with Joel's comments.
---
fs/ocfs2/file.c | 23 ++++++++++++-----------
1 files changed, 12
2010 Feb 17
0
[PATCH 04/19] btrfs: replace inode uid,gid,mode initialization with helper function
Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
---
fs/btrfs/inode.c | 11 +----------
1 files changed, 1 insertions(+), 10 deletions(-)
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 4deb280..ae4f64c 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -4145,16 +4145,7 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
if (ret != 0)
goto
2001 Mar 23
0
[linux-lvm] EXT2-fs panic (device lvm(58,0)):
Al writes:
> On Thu, 22 Mar 2001, Andreas Dilger wrote:
> > If this is the case, then all of the other zero initializations can be
> > removed as well. I figured that if most of the fields were being
> > zeroed, then ones _not_ being zeroed would lead to this problem.
>
> Other zero initializations in inode->u certainly can be
> removed, but whether it's