Displaying 12 results from an estimated 12 matches for "vfs_".
Did you mean:
vfs
2016 Aug 09
0
Hyper-V Virtual Machines fail to start on Samba shares
...bd/service.c:614(make_connection_snum)
Connect path is '/Pools/Pool-0/d1/s1' for service [s1]
[2016/08/09 10:33:43.165185, 3]
../libcli/security/dom_sid.c:209(dom_sid_parse_endp)
string_to_sid: SID root is not in a valid format
[2016/08/09 10:33:43.166581, 3] ../source3/smbd/vfs.c:113(vfs_init_default)
Initialising default vfs hooks
[2016/08/09 10:33:43.166638, 3] ../source3/smbd/vfs.c:139(vfs_init_custom)
Initialising custom vfs hooks from [/[Default VFS]/]
[2016/08/09 10:33:43.166673, 3] ../source3/smbd/vfs.c:139(vfs_init_custom)
Initialising custom vfs hooks from [fileid]...
2016 Aug 04
7
Hyper-V Virtual Machines fail to start on Samba shares
...../source3/smbd/service.c:614(make_connection_snum)
Connect path is '/tmp' for service [IPC$]
[2016/08/04 15:52:32.052852, 3]
../libcli/security/dom_sid.c:209(dom_sid_parse_endp)
string_to_sid: SID root is not in a valid format
[2016/08/04 15:52:32.054186, 3] ../source3/smbd/vfs.c:113(vfs_init_default)
Initialising default vfs hooks
[2016/08/04 15:52:32.054284, 3] ../source3/smbd/vfs.c:139(vfs_init_custom)
Initialising custom vfs hooks from [/[Default VFS]/]
[2016/08/04 15:52:32.054325, 3] ../source3/smbd/vfs.c:139(vfs_init_custom)
Initialising custom vfs hooks from [fileid]...
2019 Nov 22
2
connect Mac OS X 10.5.8 to Samba 4.9
On your Samba server, check build options: #: smbd -b - look for vfs_catia, vfs_fruit, vfs_streams_xattr modules.
If you have the vfs_ modules, then take a look at this:
https://wiki.samba.org/index.php/Configure_Samba_to_Work_Better_with_Mac_OS_X <https://wiki.samba.org/index.php/Configure_Samba_to_Work_Better_with_Mac_OS_X>
2019 Nov 22
1
connect Mac OS X 10.5.8 to Samba 4.9
Am 22.11.19 um 16:28 schrieb Matthias Leopold via samba:
>
>
> Am 22.11.19 um 15:12 schrieb torch via samba:
>> On your Samba server, check build options: #: smbd -b - look for
>> vfs_catia, vfs_fruit, vfs_streams_xattr modules.
>>
>> If you have the vfs_ modules, then take a look at this:
>>
>> https://wiki.samba.org/index.php/Configure_Samba_to_Work_Better_with_Mac_OS_X
>> <https://wiki.samba.org/index.php/Configure_Samba_to_Work_Better_with_Mac...
2018 Feb 26
0
Fwd: Client fails to mount with Samba running as daemon. Fine in foreground.
...ess.c:365(
allow_access)
Allowed connection from 192.168.247.72 (192.168.247.72)
[2018/02/26 16:57:37.703995, 3, pid=2994] ../source3/smbd/service.c:595(
make_connection_snum)
Connect path is '/tmp' for service [IPC$]
[2018/02/26 16:57:37.704019, 3, pid=2994] ../source3/smbd/vfs.c:113(vfs_
init_default)
Initialising default vfs hooks
[2018/02/26 16:57:37.704039, 3, pid=2994] ../source3/smbd/vfs.c:139(vfs_
init_custom)
Initialising custom vfs hooks from [/[Default VFS]/]
[2018/02/26 16:57:37.704093, 3, pid=2994] ../source3/smbd/service.c:841(
make_connection_snum)
thinkpad-x27...
2007 May 27
3
Use metadata files in Samba
Hello,
Often people (or applications) want to store additional information
about a file. E.g. history, approval state, search tags, etc. Some
file formats offer to integrate these metadata, some not (e.g. exif-
headers, id3, etc.).
My idea would be to create an additional <filename.xyz>.meta file next
to a <filename.xyz> in the same folder. If the <filename.xyz> gets
2019 Nov 22
0
connect Mac OS X 10.5.8 to Samba 4.9
Am 22.11.19 um 15:12 schrieb torch via samba:
> On your Samba server, check build options: #: smbd -b - look for vfs_catia, vfs_fruit, vfs_streams_xattr modules.
>
> If you have the vfs_ modules, then take a look at this:
>
> https://wiki.samba.org/index.php/Configure_Samba_to_Work_Better_with_Mac_OS_X <https://wiki.samba.org/index.php/Configure_Samba_to_Work_Better_with_Mac_OS_X>
>
>...
2015 Oct 16
4
[PATCH 0/2] Introduce get_min_size API to get minimum filesystem size.
Tried to make it in accordance with your comments.
Maybe you can suggest a better name for API?
Maxim Perevedentsev (2):
New API: get_min_size
Include resize2fs_P into get_min_size.
daemon/Makefile.am | 1 +
daemon/daemon.h | 2 ++
daemon/ext2.c | 37 ++++++++++++++++++++++++----
daemon/fs-min-size.c | 49 +++++++++++++++++++++++++++++++++++++
daemon/ntfs.c | 68
2013 Mar 07
1
tracking user activity - Active Directory
Hello,
Some mischief happened and I have been asked if I can find out who was
logged into their computers within a specific off-hours time frame. My
logs for that time frame happened to be running at debug level 3, so I
have been looking through them and trying to figure out how to recognize
a workstation login. I find lines beginning with
auth_check_password_send that seem like reasonably good
2009 Nov 10
12
[RFC] big fat transaction ioctl
...at we can up front to make sure things
will work out. And if things do go wrong, optionally prevent a partial
result from reaching the disk.
A few things:
- The implementation just exports the sys_* calls it needs (a popular
move, no doubt :). I''ve looked at using the corresponding vfs_*
instructions instead, and keeping a table of struct file *''s instead of
fd''s to avoid these exports, but this requires a large amount of
duplication of semi-boilerplate path lookup, security_path_* hooks, and
similar code from fs/namei.c and elsewhere. If we want to go that...
2017 Jun 05
3
Lots of RPC-related compile errors (conflicting types, too many arguments, ...) trying to update Samba from 3.5 to 4.6
...c_winreg
rpc_initshutdown rpc_dssetup rpc_wkssvc rpc_svcctl rpc_ntsvcs
rpc_netlogon rpc_netdfs rpc_srvsvc rpc_spoolss rpc_eventlog rpc_samr
idmap_ldap idmap_tdb idmap_passdb idmap_nss nss_info_template auth_sam
auth_unix auth_winbind auth_wbc auth_server auth_domain auth_builtin
auth_netlogond vfs_default vfs_posixacl
but I am still unable to compile Samba with this setup due to an awful
lot of compile errors from RPC modules.
Unfortunately, it seems that cross-compiling Samba 4.x still is a rather
frustrating experience with the build system having changed from
autoconf to waf...
Pleas...
2009 May 03
6
[RFC] The reflink(2) system call.
...the first patch contains
Documentation/filesystems/reflink.txt to describe the call. The
short-short version is that reflink creates a reference-counted link.
This is a new file that shares the data extents of a source file in a
copy-on-write fashion.
The second patch adds iops->reflink() and vfs_reflink(). People
interested in LSM interaction, please look at my comments in the patch
header and the implementation of vfs_link(). I think it needs
improvement.
The last patch defines sys_reflink() and sys_reflinkat(). It
also hooks them up for x86_32. The final version of this patch will
ob...