search for: noacl

Displaying 20 results from an estimated 44 matches for "noacl".

Did you mean: noac
2010 Jul 29
0
[PATCH 3/7] btrfs/acl: add noacl check for btrfs_get_acl()
btrfs returned the acl info though it was mounted with "noacl" option. Steps to reproduce: # mkfs.btrfs /dev/sda2 # mount /dev/sda2 /mnt # touch /mnt/file0 # setfacl -m ''u:root:x,g::x,o::x'' /mnt/file0 # umount /mnt # mount /dev/sda2 -o noacl /mnt # getfacl /mnt/file0 we add a noacl check for btrfs_get_acl() to fix it. Signed-o...
2010 May 18
0
[PATCH] btrfs: prohibit a operation of changing acl's mask when noacl mount option used
when used Posix File System Test Suite(pjd-fstest) to test btrfs, some cases about setfacl failed when noacl mount option used. I simplified used commands in pjd-fstest, and the following steps can reproduce it. ------------------------ # cd btrfs-part/ # mkdir aaa # setfacl -m m::rw aaa <- successed, but not expected by pjd-fstest. ------------------------ I checked ext3, a warning message occured...
2017 Feb 26
1
error : Failed to switch root mount into slave mode: Permission denied
...fusectl /sys/fs/fuse/connections fusectl rw,relatime 0 0 pstore /sys/fs/pstore pstore rw,nosuid,nodev,noexec,relatime 0 0 debugfs /sys/kernel/debug debugfs rw,relatime 0 0 securityfs /sys/kernel/security securityfs rw,nosuid,nodev,noexec,relatime 0 0 rpool/ROOT/ubuntu /dev/lxd zfs rw,relatime,xattr,noacl 0 0 rpool/ROOT/ubuntu /dev/kvm zfs rw,relatime,xattr,noacl 0 0 rpool/ROOT/ubuntu /dev/mem zfs rw,relatime,xattr,noacl 0 0 storage/downloads /mnt/downloads zfs rw,noatime,xattr,posixacl 0 0 storage/kvm_root/iso /mnt/iso zfs rw,noatime,xattr,posixacl 0 0 rpool/ROOT/ubuntu /dev/.lxd-mounts zfs rw,rela...
2008 Feb 21
1
how belatedly copy ACLs?
...quot; and doesn't copy anything (since the file contents haven't changed, the ACLs haven't changed either, and quite a few of the 'files' are really directories [often empty] which seem to be handled a little differently). How can I get `rsync` to understand that "ACL vs. noACL" is a "difference"? Alternatively, supposing I give up on getting `rsync` to actually understand, how can I just "force" it to deal with every single file ...even the ones it thinks haven't changed? thanks! -Chuck Kollars ___________________________________...
2013 Jan 17
0
autofs update brakes nested automount
...y CentOS5 boxes the automounter fails after the last update to autofs.x86_64 1:5.0.1-0.rc2.177.el5 No update is seen on CentOS6 and things still work there. The home directory of users is setup using an auto.home map which is distributed using NIS: * fsutrecht02:/export/home/& /nobackup -noacl nasutrecht01:/nobackup/& /snapshot -ro fazant:/home_backup/ This maps a users home directory and and two subfolders ~/nobackup and ~/snapshot Now I see this in my logs: automount[6510]: parse_mount: parse(sun): can't find multi root thba I found that this still works: * fsutrech...
2012 Feb 28
2
windows and nfs4 acls
...ca versa. e.g. It is not possible to create files with group rw on a umask 0022 nfs4 share. nfs4_setfacl cannot override umask. Using POSIX or windows acls this works fine. I've approached the nfs4 devs and they've said that they'll look into it, but so far. Exporting nfs4 with -o noacl (in the hope that the windows acl would take effect) has no effect. 1. Is it possible to get Samba to override the nfs4 acl and use whatever I've set on windows security acl instead? 2. Is there a way to export a single directory with a umask of my choice? 3. Would it be reasonable to ask my...
2011 Mar 16
3
GNU ''cp -p'' can''t work well with ZFS-based-NFS
Always show info like ''operation not supported''. Any workaround? Thanks. Fred -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://mail.opensolaris.org/pipermail/zfs-discuss/attachments/20110316/2f58e589/attachment.html>
2010 Jan 09
2
Still Problems with /dev/btrfs-control
...Links: 1 Device type: a,3e Access: (0644/brw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2010-01-09 11:31:15.757979602 +0100 Modify: 2010-01-09 11:31:15.757979602 +0100 Change: 2010-01-09 11:31:15.757979602 +0100 > mount -l -t btrfs /dev/sda3 on / type btrfs (rw,relatime,noacl) [Alpha4] > btrfsctl -A /dev/sda3 failed to open /dev/btrfs-control: No such device or address Remark: When the btrfs-filesystem is originally mounted (from the startup-code in the initial ramdisk), /dev/btrfs-control is not yet existant, because the dev-directory is contained in the btrfs-file...
2016 Jul 14
2
Weird behaviour opening pdf files (and maybe others)
...ig "smb read andX responses" (65536 bytes as stated in smb.conf with "max xmit") and total transfer size is about equal to the file size. the NFS export is mounted on the samba server using options: rw,noatime,nodiratime,bg,soft,rsize=65536,wsize=65536,nfsvers=3,proto=tcp,nocto,noacl,noac,int,nolock The cubersome bit: At this point you can easily blame NFS (which i did) and claim sharing NFS exports via samba is just not a good idea (probably right anyway). BUT... a windows client that sits next to the samba server can open the problematic PDF files without anyproblem, even...
2009 Jan 24
2
[PATCH] btrfs: flushoncommit mount option
...rfs/super.c b/fs/btrfs/super.c index d8c664c..2b33a6a 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -67,7 +67,7 @@ enum { Opt_degraded, Opt_subvol, Opt_device, Opt_nodatasum, Opt_nodatacow, Opt_max_extent, Opt_max_inline, Opt_alloc_start, Opt_nobarrier, Opt_ssd, Opt_thread_pool, Opt_noacl, Opt_compress, Opt_notreelog, - Opt_err, + Opt_flushoncommit, Opt_err, }; static match_table_t tokens = { @@ -85,6 +85,7 @@ static match_table_t tokens = { {Opt_ssd, "ssd"}, {Opt_noacl, "noacl"}, {Opt_notreelog, "notreelog"}, + {Opt_flushoncommit, "flus...
2012 Jun 15
6
[PATCH] Btrfs: add "nocompress" mount option
In btrfs if we mount with "compress" we have no way to disable compressing by remounting (mount -o remount /mnt/btrfs), only by unmounting and mounting without "compress". This patch adds "nocompress" mount option which can be used to remount the filesystem without compression: # mount -o remount,nocompress /mnt/btrfs This option is usefull in cases when we have a
2011 Sep 14
0
Permission problems on Win 7 x64
...r) has the execute right. I'm using the 4.1.0 package of cwrsync with rsync 3.0.8. I've tried to change the rsync options to e.g. --no-p --no-g --chmod=ugo=rwX, used --fake-super, created an D:\Users\ Jack_Walter \Tools\Rsync\etc\fstab file with: none /cygdrive cygdrive binary,posix=0,user,noacl 0 0 but the fstab option seems only be viable if _both_ machines are using it and I have no control on what Strato HiDrive does. How can I avoid these weird permissions on the resynched local file? It would be the best option if all files only get the inherited permissions from the drive they ar...
2011 Jan 01
1
Windows 7 and file ownership
Please forgive the cross-post; I'm not sure where this issue lies. Samba 3.5.1, CentOS 5.5 x86_64 PDC with Win2K, WinXP, Win2003 and Win7 32-bit domain members, tdbsam backend. Cygwin 1.7.7. All basic functionality seems to be fine, except... On Win2K, WinXP and Win2003, a "DIR /Q" on a mapped share always displays the owner as "BUILTIN\Administrators", but a
2010 Jan 14
0
[PATCH] Include subvolume= and metadata_ratio= in /cat/proc
...index 3f9b457..faeaa7f 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c @@ -461,6 +461,16 @@ static int btrfs_show_options(struct seq_file *seq, struct vfsmount *vfs) seq_puts(seq, ",discard"); if (!(root->fs_info->sb->s_flags & MS_POSIXACL)) seq_puts(seq, ",noacl"); + if( root->fs_info->metadata_ratio ) + seq_printf(seq, ",metadata_ratio=%d", + root->fs_info->metadata_ratio); + spin_lock(&vfs->mnt_root->d_lock); + if (vfs->mnt_root->d_name.len != 1 || + vfs->mnt_root->d_name.name[0] != ''/'...
2012 May 17
0
btrfsck failures on old backup volumes
...these consistency issues have been on disk, since these file systems have been around for many years. Is this useful data? Would it be useful to try to reproduce these issues on smaller devices, or are the current results helpful in any way for improving btrfsck? Mount options for these are "noacl,noatime,nodiratime,compress-force", and they were mkfs''d with no special options. Cheers, Simon- -- To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/m...
2013 Feb 02
1
cannot mount with acl
Hello, btrfs is failing to mount if I use the mount option acl. I am running debian testing with a debian experimental version of kernel 3.7.3: uname -a Linux nimby 3.7-trunk-486 #1 Debian 3.7.3-1~experimental.1 i686 GNU/Linux from fstab LABEL=btrfs-exthd /mnt/exthd btrfs defaults,noatime,compress=zlib,acl 0 2 from dmesg [ 14.785716] device label btrfs-exthd devid 1 transid
2012 Jun 16
5
Not real confident in 3.3
...ns, and too many instances where the whole cluster was off-line until I reloaded the data. So wiith the release of 3.3, I decided to give it another try. I created one relicated volume on my two NFS servers. I then mounted the volume on a client as follows: 10.10.10.7:/pub2 /pub2 nfs rw,noacl,noatime,nodiratime,soft,proto=tcp,vers=3,defaults 0 0 I threw some data at it (find / -mount -print | cpio -pvdum /pub2/test) Within 10 seconds it locked up solid. No error messages on any of the servers, the client was unresponsive and load on the client was 15+. I restarted glusterd on both o...
2016 Jul 14
0
Weird behaviour opening pdf files (and maybe others)
...sponses" (65536 bytes as stated > in smb.conf with "max xmit") and total transfer size is about equal to the > file size. > > the NFS export is mounted on the samba server using options: > rw,noatime,nodiratime,bg,soft,rsize=65536,wsize=65536,nfsvers=3,proto=tcp,nocto,noacl,noac,int,nolock > > > The cubersome bit: > > At this point you can easily blame NFS (which i did) and claim sharing NFS > exports via samba is just not a good idea (probably right anyway). BUT... a > windows client that sits next to the samba server can open the problematic...
2003 Mar 25
3
Using ACLs
I am trying to change some ACLs on some files and directories. I have samba binaries with acl support compiled in. I am using an XFS filesystem. The Mandrake kernel supports acls by default. When I right click on the file in Windows explorer and change the permissions, I get an access denied error. If I use smbcacls, I get the following: [root@luna tmp]# smbcacls //luna/tmp test.txt -U jim -A
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