Displaying 2 results from an estimated 2 matches for "surlyjak".
Did you mean:
surlyjake
2010 Jan 28
1
Trouble getting past net join ads...
I am in the process of getting samba working again with Activer
Directory. Recently our IT department
upgraded their windows server to 2008.
I am following the approach described here:
http://www.surlyjake.com/linux/samba/join-debian-lenny-to-active-directory-using-samba/
I am able to get kerberos to issue a ticket, but where I am running
into a wall is with the net join ads part... It appears to work in that
setting the correct dn and using the username given to me by Jim for
binding to the...
2017 May 23
6
[Bug 2721] New: Improve SFTP server to make remove always work on ZFS/Btrfs
...er: walteste at inf.ethz.ch
The code in process_remove() in sftp-server.c just tries a simple
unlink for the file to be deleted. This does not work well on ZFS or
Btrfs if the filesystem/pool is completely full, which is a well known
problem of CoW filesystems. See here ofr instance:
http://www.surlyjake.com/blog/2010/01/19/zfs-cant-rm-no-space-left-on-device/
Trying to delete a file on a full filesystem just fails:
sftp> rm some_file
Removing /full/some_file
Couldn't delete file: Failure
The trick is to first do a truncate() on a file containing data to free
up data blocks. In this case...