similar to: ntfs user mappings?

Displaying 20 results from an estimated 8000 matches similar to: "ntfs user mappings?"

2017 Nov 03
2
ntfs user mappings?
just get objectsid and use this https://blogs.msdn.microsoft.com/oldnewthing/20040315-00/?p=40253 On Fri, Nov 3, 2017 at 1:32 PM, Jeff Sadowski <jeff.sadowski at gmail.com> wrote: > oooh, I think I could write a script to do what ntf3-3g.usermap using > ldap. :-) If something doesn't already exist. > I think it gives the format in the ntfs-3g man page. > > On Fri, Nov 3,
2017 Nov 03
2
ntfs user mappings?
On Fri, Nov 3, 2017 at 2:43 PM, Rowland Penny <rpenny at samba.org> wrote: > On Fri, 3 Nov 2017 13:53:22 -0600 > Jeff Sadowski via samba <samba at lists.samba.org> wrote: > >> just get objectsid and use this >> >> https://blogs.msdn.microsoft.com/oldnewthing/20040315-00/?p=40253 > > Why ??? > So that when someone on a linux machine writes to disk
2017 Nov 03
2
ntfs user mappings?
That looks easier I was working on ldap to convert but I'll try ldb-tools I was off on a bash mission here is what I had so far it isn't correct so I'll keep working on it #!/bin/bash if [ "$(echo $1|wc -c)" = "41" ];then hex=$(echo $1|base64 -d| od -x -w28 --endian=big|head -n1|sed 's/^0000000 //'|sed 's/ //g') echo ${hex} hex_chunk=$(echo
2017 Nov 06
1
ntfs user mappings?
On Sun, 5 Nov 2017 16:14:33 -0700 Jeff Sadowski <jeff.sadowski at gmail.com> wrote: > Not bad but I wanted an ldap version because I was having issues > running ldbsearch as a normal user. > I had another thought, why am I reinventing the wheel, so came up with this: #!/bin/bash echo "#######################################################" echo "#
2017 Nov 05
3
ntfs user mappings?
On Sat, 4 Nov 2017 18:42:36 -0600 Jeff Sadowski <jeff.sadowski at gmail.com> wrote: > I decided to continue trying the ldap route as well > > littlehex2int() > { > hex=$1 > hex_chunk=$(echo ${hex}|cut -c$2-$3) > little=$(echo ${hex_chunk}|awk '{print > substr($0,7,2)substr($0,5,2)substr($0,3,2)substr($0,1,2)}') > echo "ibase=16; ${little}" |
2017 Nov 04
2
ntfs user mappings?
. DOMAIN_ADMIN_PASSWD.sh echo ${PASSWD} | kinit ${ADMIN}@${DOMAIN} echo -n > /etc/ntfs-3g.usermap for DOMAIN_USER in $(wbinfo -u);do RPCLOOKUPID=$(rpcclient -P -c "lookupnames ${DOMAIN_USER}" ${DOMAIN}) if [ "${RPCLOOKUPID:0:7}" != "ERROR: " ] && [ "${RPCLOOKUPID:0:7}" != "Failed " ];then SID=$(echo ${RPCLOOKUPID}|awk '{print
2017 Nov 03
0
ntfs user mappings?
On Fri, 3 Nov 2017 14:52:45 -0600 Jeff Sadowski <jeff.sadowski at gmail.com> wrote: > On Fri, Nov 3, 2017 at 2:43 PM, Rowland Penny <rpenny at samba.org> > wrote: > > On Fri, 3 Nov 2017 13:53:22 -0600 > > Jeff Sadowski via samba <samba at lists.samba.org> wrote: > > > >> just get objectsid and use this > >> > >>
2017 Nov 05
0
ntfs user mappings?
I decided to continue trying the ldap route as well littlehex2int() { hex=$1 hex_chunk=$(echo ${hex}|cut -c$2-$3) little=$(echo ${hex_chunk}|awk '{print substr($0,7,2)substr($0,5,2)substr($0,3,2)substr($0,1,2)}') echo "ibase=16; ${little}" | bc } base64_to_sid() { OBJECTSID="$1" hex=$(echo ${OBJECTSID}|base64 -d|od -A n -x -w28 --endian=big|sed 's/
2017 Nov 05
0
ntfs user mappings?
Not bad but I wanted an ldap version because I was having issues running ldbsearch as a normal user. I created the following functions to get it in and out of base64 and hex swap_endian() { local input=$1 local output="" while [ "${input}" != "" ];do output="${input:0:2}${output}" input=${input:2} done echo $output } base64_to_hex() { echo $(echo
2010 Apr 23
1
Windows permissions on NTFS share mounted with NTFS-3g on linux
Hi all, I've been trying to get this to work for a while now but no luck... I have a NTFS formatted drive mounted using ntfs-3g on a linux computer. This drive is then shared using Samba. When I connect to the share from a windows machine and create new files their permissions are set for three users: Everyone, Root (unix user) and Root (unix group) but the actual user which created the file
2007 Nov 23
2
Error on installing fuse-ntfs-3g
I get the following error when I try installing fuse-ntfs-3g even though I have installed fuse-2.7 and fuse-kmdl-2.7 error: Failed dependencies: libfuse.so.2 is needed by fuse-ntfs-3g-1.913-1.el5.rf.i386 libfuse.so.2(FUSE_2.2) is needed by fuse-ntfs-3g-1.913-1.el5.rf.i386 libfuse.so.2(FUSE_2.5) is needed by fuse-ntfs-3g-1.913-1.el5.rf.i386 libfuse.so.2(FUSE_2.6) is
2007 Aug 04
2
How to replace ntfs by ntfs-3g?
Hello, I can write to an ntfs partion if mounting it by hand with 'mount -t ntfs-3g /dev/sdf5 /mnt/xp'. But if I use the mount option from the kde Storage Media panel applet (kdebase-3.5.4-13.6.el5.centos) then the partion will be mounted without write support. So how to say kde and CentOS to use ntfs-3g and not ntfs? Maybe by changing some links? Thank you very much. regards Olaf
2017 Jan 10
2
ntfs-3g data deduplication support in guestmount for creating file based back-ups on visualization platform
Hello everybody, I am using libguestfs-tools version 1.28.1 in a bunch of bash scripts to make back-ups of the files on a visualisation platform. I been trying to get read access to ntfs volumes with data deduplication working. The ntfs-3g guys developed some support and I have this working when using the commands our back-up servers. However when using the guestmount tool the read suport
2020 Feb 01
2
ntfs support
On Sat, Feb 1, 2020 at 1:31 AM wwp <subscript at free.fr> wrote: > > Definitely, ntfs-3g is from the EPEL repo: > # yum info ntfs-3g > Installed Packages > Name : ntfs-3g > Arch : x86_64 > .... but is it available in x86 32 bit ? me, I've never trusted ntfs on linux, and would rather have a windows machine mount and serve it over SMB or whatever.
2009 May 23
2
ntfs-3g question
This is probably a dumb question, but I've looked around and I can't find anything on this. I'm using ntfs-3g now, from rpmforge, to access my M$ Window$ disks for offline backup and other such menial tasks, and I noticed that the ntfs file systems are not mounted automatically, but I have to mount them manually as ntfs-3g devices. I _thought_ when I installed the whole dkms-fuse and
2017 Jan 16
2
Re: ntfs-3g data deduplication support in guestmount for creating file based back-ups on visualization platform
Thank you Richard! I will do some more work and testing on this tomorrow, and report back with some more information you asked. In the meanwhile, could you help me with information how I can upgrade the ntfs-3g version (same as host) in the "appliance" and add the plug-in library? On 16/01/17 15:29, Richard W.M. Jones wrote: > The plugin file *should* be copied into the
2008 May 31
3
Interest in NTFS
I have gotten a couple of probes about NTFS support for Syslinux, and I would like to gauge how serious it is. I'm considering using it as a pilot project for writing Syslinux filesystem modules in C. However, an installer, or more realistically two (one for Win32, one for Linux) have to be written, so it's still a real time commitment. -hpa
2007 Feb 18
4
sysutils/fusefs-ntfs working for anyone?
Hi there, I've been trying to mount my NTFS partitions with the NTFS-3g project's FUSE implementation but am unable to mount anything. I'm on 6-STABLE and have the latest versions of FUSE installed: fusefs-kmod-0.3.0_4 Kernel module for fuse fusefs-libs-2.6.2 FUSE allows filesystem implementation in userspace fusefs-ntfs-0.20070207RC1 Mount NTFS partitions and disk images I use
2020 Jan 29
1
[PATCH] appliance: Add ntfs-3g-system-compression (RHBZ#1703463).
This package in Fedora enables optional support for Windows 10 "CompactOS" (file-level compression), read-only, which is sufficient for inspecting Windows guests and doing certain types of modifications to them. Virt-v2v appears to work, but it may be that anything that involves modifying a compressed file might not work. I couldn't find the equivalent package in Debian or SUSE.
2012 Apr 12
2
backup to NTFS USB disk
Hello, * I am setting up a backup on a Linux system with Windows XP workstations. The backup goes to three alternating usb drives, each of which is NTFS formatted. The disks should be virtually identical but they do not seem to be. First, my mount command is this (I edited a bit for brevity) mount -t ntfs-3g -o locale=nl_NL.iso-8859-1,silent /dev/disk/by-id/usb-DiskA \ /mnt/tmp || mount -t