Displaying 20 results from an estimated 2000 matches similar to: "shadow_copy2 writable?"
2014 Mar 28
1
shadow_copy2 not working
Hi folks,
I've been trying to get shadow copy / previous versions working under
sernet-samba-ad-4.1.6-7.el6.x86_64. I cannot see where I am going wrong. I
have:
[global]
workgroup = COMPANY
realm = COMPANY.LOCAL
netbios name = DC
server role = active directory domain controller
server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, drepl,
winbind,
2014 Mar 12
2
zfs permissions
Hello,
I'm using Samba Version 4.0.15-SerNet-RedHat-7.el6 (AD DC)
and zfs-0.6.2-1.el6.x86_64.
I cannot change permissions on files from either Windows ('Access Denied')
or the samba-tool on shares from local zfs mounts:
# samba-tool ntacl set 'O:LAG:S-1-22-2-0D:PAI(A;OICI;0x001301bf;;;WD)'
CompanyName/ Company/
fset_nt_acl_no_snum: fset_nt_acl returned
2015 Apr 01
1
CryptoLocker
For a CryptoLocker infection to be successful, a few things must be
occur including:
1) No backup
2) Many files need to be encrypted
Has anyone developed a Samba plugin to prevent successful CryptoLocker
infections by shutting down Samba when an unusual number of data files
are modified by a specific workstation?
This type of utility would have many security applications, for example
2013 Jun 17
1
str[fp]time - what is this and can I add padding? smb.conf
I'm wanting to extend vfs shadow_copy2 in samba a little and want to add
additional information to the snapshot name - it's parsed by str[fp]time with
the format:
%Y%m%d-%H%M%S
I want to add a 6 arbitrary characters to the beginning or end of this and
still have it parsed correctly.
Anyone have any ideas?
Thanks
PS Check out
2016 Oct 30
4
Auto Create Home - shadow_copy2 and root preexec
Hi,
I make use of shadow_copy2 and root preexec. The vfs root preexec is
responsible to auto create home directories which initially don't exist.
The script behind it is well tested and works perfectly. Unfortunaltely
shadow_copy2 seems to be called before root preexec and fails due to the
missing ZFS home share which causes the session to fail completely
before root preexec even has a
2024 Dec 18
1
shadow_copy2
Am 18.12.24 um 19:42 schrieb Ralph Boehme:
> On 12/18/24 7:16 PM, Stefan Kania via samba wrote:
>> I would say that's fine :-)
>
> hm... can you
>
> kania$ cd /glusterfs/admin-share/daten1/
>
> ?
Yes :-)
skania at cluster01:~$ cd /glusterfs/admin-share/daten1/
skania at cluster01:/glusterfs/admin-share/daten1$ ls -l
insgesamt 1
-rwxrwx---+ 1 skania domain users
2017 Jan 04
1
using shadow_copy2 with Linux-Clients
Hello,
since oure shadow_copy2 is running now. I have another question:
Is it possible to uses the shadow-copy on a linux-client? We mount the
share via cifs from the Samba-fileserver.
Stefan
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 181 bytes
Desc: OpenPGP digital signature
URL:
2023 Apr 17
1
shadow_copy2 working only on dirs?
Hello,
I did setup shadow_copy2 with BTRFS snapshots. While this works fine for directories Windows does not show any previous versions for files. I couldn?t find anything regarding this, only one other using complaining about this in the OMV forums. Is this expected behaviour?
Regards, Alexander
2023 Apr 18
1
shadow_copy2 working only on dirs?
Hi Alexander,
On Mon, 17 Apr 2023 08:19:59 +0200, Alexander Harm || ApfelQ via samba wrote:
> Hello,
>
> I did setup shadow_copy2 with BTRFS snapshots. While this works fine for directories Windows does not show any previous versions for files. I couldn?t find anything regarding this, only one other using complaining about this in the OMV forums. Is this expected behaviour?
Assuming
2016 Jul 06
1
"No previous versions" - GPFS 3.5 and shadow_copy2
Hi all,
At some point recently my customers can no longer see GPFS snapshots under the Windows Previous Versions tab. It simply says "No previous versions available". If a fileset is exported with the flag "force user = root" then Previous Versions *are* displayed.
[2016/07/06 10:07:35.602080, 3] ../source3/smbd/vfs.c:1322(check_reduced_name)
check_reduced_name:
2016 Aug 24
1
Winbind occasionally forgets some users (failed to call wbcGetpwnam: WBC_ERR_DOMAIN_NOT_FOUND)
I've been googling, but can't seem to find an answer to this one.
We have a Windows network with ~25 sites. Each site has a local Windows
DC. Each site has a Debian 8.5 box running Samba 4.2.10-Debian.
We decided to test moving shares from the Windows Server to the local
Debian machine. (zfs snapshot is *really* handy when someone decides to
open cryptolocker).
File sharing has been
2003 Jun 25
2
Can I remove lib-elf.so.1?
I am cleaning up my 4-STABLE system. After a fresh installworld, I am
looking at files that did not get touched by the install. Is it safe to
remove all such files?
In particular, I am looking at /usr/libexec/lib-elf.so.1, which has the
schg flag set. I am afraid to remove this for fear of making my system
unbootable. Could somebody please reassure me that it is ok to noschg
and remove this old
2008 Jan 07
2
S3 vs S4 for a simple package
I am writing a package and need to decide whether to use S3 or S4.
I have a single class, "multipol"; this needs methods for "[" and "[<-"
and I also need a print (or show) method and methods for arithmetic +-
*/^.
In S4, an object of class "multipol" has one slot that holds an array.
Objects of class "multipol" require specific arithmetic
2012 Sep 14
2
when to use "I", "as is" caret
Dear community,
I've check it while working, but just to reassure myself. Let's say we have
2 models:
model1 <- lm(vdep ~ log(v1) + v2 + v3 + I(v4^2) , data = mydata)
model2 <- lm(vdep ~ log(v1) + v2 + v3 + v4^2, data = mydata)
So in model1 you really square v4; and in model2, v4*^2 *doesn't do
anything, does it? Model2 could be rewritten:
model2b <- lm(vdep ~
2016 Oct 30
0
Auto Create Home - shadow_copy2 and root preexec
On Sun, 2016-10-30 at 14:10 +0100, Leander Schäfer via samba wrote:
> Hi,
>
> I make use of shadow_copy2 and root preexec. The vfs root preexec is
> responsible to auto create home directories which initially don't
> exist.
> The script behind it is well tested and works perfectly.
> Unfortunaltely
> shadow_copy2 seems to be called before root preexec and fails due
2013 Nov 26
0
VFS shadow_copy2 with samba 4.0.9
I am trying to use shadow copy with Samba 4.0.9 on Debian 7 (wheezy),
Linux kernel 3.2. Windows 7 clients on the LAN can not see Previous
Verions of files stored on the server, although I believe I have set
up directories with snapshots.
Here are some highlights from smb.conf :-
[global]
server role = active directory domain controller
domain logons = yes
...
[Pluto]
path
2010 Feb 06
1
shadow_copy2 prob? FSCTL..GET..DATA: max_data_count(114) too small (118) bytes needed!
I have "/home" as a logical volume. I have snapshots:
LV VG Attr LSize Origin Snap% Move Log Copy% Convert
2010.02.05-01.26.19 Home swi-ao 10.00G lvol0 39.81
2010.02.06-02.37.52 Home swi-ao 5.00G lvol0 0.25
lvol0 Home owi-ao 1.00T
and they are mounted:
2012 Aug 24
0
shadow_copy2 is not working for me on samba 3.6.7 and btrfs volume
Hi,
I'm running samba 3.6.7 on a linux server:
root at SRVUBUNTU:/btrfs/samba/.btrfs# smbd -V
Version 3.6.7
root at SRVUBUNTU:/btrfs/samba/.btrfs# uname -a
Linux SRVUBUNTU 3.5.2 #1 SMP Fri Aug 17 15:26:57 CEST 2012 x86_64 x86_64
x86_64 GNU/Linux
I have a base dir to share with samba on /btrfs/samba
root at SRVUBUNTU:/btrfs/samba# ls -l
total 0
-rw-r--r-- 1 root root 0 Aug 24 13:07 a
2020 Jan 02
0
Companion software to shadow_copy2 (lvmthin snapshot management)
Summary: what software are you using to generate (non-zfs) snapshots for use
with vfs shadow_copy2?
I've recently deployed a file server to a new site and one of my pet
projects has been enabling Windows Previous Versions functionality. I had
originally intended to use Snapper to generate and manage lvm thin
snapshots, however it seems it's build scripts are broken on rhel8/centos8
2018 Apr 04
0
Shadow_copy2 and exposing multiple levels of snapshots
Hello Group,
Looking for a little assistance on this as I have been unsuccessful is
getting the shadow: snapprefix, shadow:delimiter and shadow:format to work
as I expect.
I have no issue with getting previous versions in Windows to show me either
hourly, daily or weekly, etc snapshots as previous versions. But I owuld
like to be able to expose all.
The shadow:snapprefix, etc seems to be the