similar to: Folder Encryption and Samba

Displaying 20 results from an estimated 3000 matches similar to: "Folder Encryption and Samba"

2011 Sep 16
4
Dual Authentication: Local and Active Directory
I was wondering if it was possible to get a Samba server that was acting as an AD member server to also be able to authenticate local users, or is stuck just serving AD users? -- Aaron Clausen mightymartianca at gmail.com
2011 Jul 26
2
Incoming External Trust
I'm running a Samba domain (Samba 3.4.7) with OpenLDAP. I also have an Server 2003 AD domain, and want to set up an external trust so that AD users can access resources on the Samba domain, but not visa versa (I believe this is called a one-way incoming external trust). I'm not finding a lot of information out there that makes sense. Does anybody have any hints? -- Aaron Clausen
2013 Jul 08
0
Custom Live Migration Query
I'm using KVM, libvirt and DRBD to come up with a custom mirroring and live migration setup. I have two servers, each running KVM and libvirt, and both using DRBD to mirror guests (which are stored on raw DRBD partitions). If I shut down a guest on one, I can easily get it up and running on the other without issue. I have run into some file system corruption trouble if I try to do a live
2007 May 13
1
symbollic differentiation in R
Hi all, I wrote a symbollic differentiation function in R, which can be downloaded here: http://www.econ.upenn.edu/~clausen/computing/Deriv.R http://www.econ.upenn.edu/~clausen/computing/Simplify.R It is just a prototype. Of course, R already contains two differentiation functions: D and deriv. However, these functions have several limitations. They can probably be fixed, but
2007 Aug 04
7
Optimization in R
Hi all, I've been working on improving R's optim() command, which does general purpose unconstrained optimization. Obviously, this is important for many statistics computations, such as maximum likelihood, method of moments, etc. I have focused my efforts of the BFGS method, mainly because it best matches my current projects. Here's a quick summary of what I've done: *
2007 May 13
2
relist, an inverse operator to unlist
Hi all, I wrote a function called relist, which is an inverse to the existing unlist function: http://www.econ.upenn.edu/~clausen/computing/relist.R Some functions need many parameters, which are most easily represented in complex structures. Unfortunately, many mathematical functions in R, including optim, nlm, and grad can only operate on functions whose domain is a vector. R has a
2002 Dec 02
1
IMQ
Has anybody got imq running on iptables 1.2.7a. The home page for imq only seems to have a patch for 1.2.6a. -- Aaron Clausen _______________________________________________ LARTC mailing list / LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2001 Sep 20
1
Removing ext3 to use GNU Parted
Hi. What are the right steps to convert a file system from ext3 back to ext2 ? I need to use GNU Parted to resize my root file system and Andrew Clausen said I have to convert it to ext2, resize, and then convert back to ext3. My journal is visible. My initrd.img (from which I plan to use Parted) contains both ext2 and ext3. I compile ext2 as a module in my other boot images. --
2003 Jul 03
1
Auth problems against Eudora
Hi, I'm trying to set up dovecot to do pop3 from Eudora, but it keeps breaking on authentication attempts using plain auth. When I snoop the connection with tcpflow, here's what I see: 128.174.246.068.00110-062.107.004.050.49653: +OK dovecot ready. 128.174.246.068.00110-062.107.004.050.49653: +OK dovecot ready. 128.174.246.068.00110-062.107.004.050.49653:
2009 Jan 01
5
Samba performance issue
Hello, I sent the following message to the Debian folks. They don't think that the Debian packaging could be responsible for the issue described there. > Well, I'm not completely convinced that we will have very useful input > for you. I don't really see any reason for this to be caused by the > Debian packaging. To check this, why not compile samba from sources,
2018 Jan 24
0
Newbie - Scrape Data From PDFs?
Hi Scott, I have never done this myself but I read something recently on the r-help distribution that was related. I just did a quick search and found a few hits that might work for you. 1. https://medium.com/@CharlesBordet/how-to-extract-and-clean-data-from-pdf-files-in-r-da11964e252e 2. http://bxhorn.com/2016/extract-data-tables-from-pdf-files-in-r/ 3.
2017 Mar 31
6
Encrypted samba mount on Linux
Hi all, My server machine is running samba version 4.4.4 on Linux with 'smb encryption = mandatory' option. My client is a Ubuntu 16.10 Linux machine. I am looking for a way to mount the encrypted samba share on the Linux client machine. I noticed that mount.cifs does not support encryption but smbclient does with an -e flag, however it seems to only be usable in a ftp-like interface.
2018 Jan 24
1
Newbie - Scrape Data From PDFs?
I think I would use pdftk to extract the form data. All subsequent manipulation in R. HTH Ulrik Eric Berger <ericjberger at gmail.com> schrieb am Mi., 24. Jan. 2018, 08:11: > Hi Scott, > I have never done this myself but I read something recently on the > r-help distribution that was related. > I just did a quick search and found a few hits that might work for you. > >
2011 Aug 04
3
Very slow samba performance on Centos 6
Hello all, I have 2 identical Dell r510 servers with 10gig card, running centos 6 with samba-3.5.4-68.el6_0.2.x86_64. I setup 16G ramdisk samba share on both and ran cp from local ramdisk to samba ramdisk mount. If I cp 12 1-gig files, I get combined 100MB/s transfer rate. Single file cp maxes out at about 15MB/s. Ftp transfer give me over 300MB/s. Running with 9000 MTU. Most smb.conf is
2009 Oct 28
4
compiling 3.2.15: cifs.upcall not found afer RPM build
Hello, Trying to compile Samba 3.2.15 on a RHEL AS 4u2 (i686) and I'm getting the following result from 'sh makerpms.sh': > Provides: samba-doc = 3.2.15-1 > Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(VersionedDependencies) <= 3.0.3-1 > > > RPM build errors: > File not found:
2008 Mar 09
2
[patch] add=TRUE in plot.default()
Hi all, As long as I've used R, add=TRUE hasn't worked in contexts like this: f <- function(x) x^2 X <- seq(0, 1, by=1/4) plot(f, col="blue") plot(X, f(X), col="red", type="l", add=TRUE) I attached a fix for version 2.6.2. Cheers, Andrew -------------- next part -------------- diff --git a/src/library/graphics/R/plot.R
2010 Dec 27
3
openssh and keystroke timing attacks (again)
Hi all, Over the past 10 years, there has been some discussion and several patches concerning keystroke timing being revealed by the timing of openssh packet network transmission. The issue is that keystroke timing is correlated with the plaintext, and openssh users expect their communications to be kept entirely secret. Despite some excellent ideas and patches, such as Jason Coit's
2008 Feb 27
7
[Bug 14704] New: randr1.2 broken on apple powerbook 17"
http://bugs.freedesktop.org/show_bug.cgi?id=14704 Summary: randr1.2 broken on apple powerbook 17" Product: xorg Version: unspecified Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org
2017 Apr 01
3
Encrypted samba mount on Linux
4.11 - But am hoping it will be broadly backported On Fri, Mar 31, 2017 at 7:52 PM, Draxter <admin at draxter.me> wrote: > Thanks Steve. > > > That's great news. Pretty recent commit. Which kernel version (onward) is > it in? > > > Regards, > > Draxter. > > > On 01/04/17 00:49, Steve French wrote: > > Kernel cifs supports encryption!! (Thank
2007 Jun 22
6
Organising a Subversion repository.
Hello, I appreciate that this topic may have come up before but a quick scan of the archives did not reveal anything. If someone could kindly point me to an archive entry that would also be great. I want to use Puppet fileserver in conjunction with a svn repo, this was I can commit files to svn and have the fileserver propagate them to the various machines, I believe this is a common way of