search for: prent

Displaying 3 results from an estimated 3 matches for "prent".

Did you mean: parent
2014 Dec 30
3
CUPS and Samba4
Hi, I'm going to migrate my old CUPS server to a new setup. It shall provide the printing backend for Samba4 and should integrate as seamless as possible. Both Windows and Linux users should not require additional passwords, but should be authenticated by their Kerberos tickets. Is there anything particular to consider? E.g. has the CUPS server to be joined to the AD and should it run a
2014 Dec 31
0
CUPS and Samba4
...re both CUPS and Samba. Be clear on whether you need to support authenticated printing only, whether you are using Kerberos and Samba for genuine "Single-Sign-On" authentication, or whether people without credentials or with laptops not configured for your environment should be allowed to prent, and if so on which devices. > Is there anything particular to consider? E.g. has the CUPS server to be > joined to the AD and should it run a Samba instance of its own? Or is it > possible to have the DC delegate jobs to the CUPS server? Are there best > practices? > > Regards,...
2008 Jul 09
2
gsub and "\"
This is hopefully a simple question. I am trying to escape single quotes like so: abc's >> abc\'s However, I cannot find an easy way to do that with gsub: gsub("'","\\\\'","abc's") # returns "abc\\'s" How can I get a single \ in the output? Thanks, Sean