Displaying 10 results from an estimated 10 matches for "foolab".
2020 Aug 12
5
Using SSSD + AD with Samba seems to require Winbind be running
...samba/clients/%m.log
logging = syslog at 0 file
max log size = 100
max stat cache size = 65536
max xmit = 1048676
name resolve order = host wins bcast
ntlm auth = ntlmv1-permitted
printcap name = /dev/null
realm = FOOBAR.COM
security = ADS
template homedir = /home/%U
workgroup = FOOBAR
idmap config foolab:range = 10000-9999999999
idmap config foolab:schema_mode = rfc2307
idmap config foolab:backend = ad
idmap config * : range = 3000-7999
idmap config * : backend = tdb
include = /etc/samba/smb-shares.conf
printing = bsd
--
<http://opendrives.com>
2020 Aug 12
0
Using SSSD + AD with Samba seems to require Winbind be running
...= 1048676
>>> name resolve order = host wins bcast
>>> ntlm auth = ntlmv1-permitted
>>> printcap name = /dev/null
>>> realm = FOOBAR.COM
>>> security = ADS
>>> template homedir = /home/%U
>>> workgroup = FOOBAR
>>> idmap config foolab:range = 10000-9999999999
>>> idmap config foolab:schema_mode = rfc2307
>>> idmap config foolab:backend = ad
>>> idmap config * : range = 3000-7999
>>> idmap config * : backend = tdb
>>> include = /etc/samba/smb-shares.conf
>>> printing = bsd
>...
2020 Aug 12
0
Using SSSD + AD with Samba seems to require Winbind be running
...x log size = 100
> max stat cache size = 65536
> max xmit = 1048676
> name resolve order = host wins bcast
> ntlm auth = ntlmv1-permitted
> printcap name = /dev/null
> realm = FOOBAR.COM
> security = ADS
> template homedir = /home/%U
> workgroup = FOOBAR
> idmap config foolab:range = 10000-9999999999
> idmap config foolab:schema_mode = rfc2307
> idmap config foolab:backend = ad
> idmap config * : range = 3000-7999
> idmap config * : backend = tdb
> include = /etc/samba/smb-shares.conf
> printing = bsd
>
2009 Dec 22
0
Reading PDF files (using xpdf)
...ce I've
done this, but if memory serves, the basic process was to download
xpdf and add it to the windows path, thus making it accessable from
within R. Two methods follow:
Method One (easiest) - using the awesome ?system command:
(1) Download xpdf (whichever is the latest version):
ftp://ftp.foolabs.com/pub/xpdf/xpdf-3.02pl4-win32.zip
(2) Unzip it
# system(paste("[app]", "[pdf file]"), wait = FALSE)
> system(paste('"C:/Program Files/xpdf/pdftotext.exe"', '"C:/Documents and Settings/tony/Desktop/test/r-intro.pdf"'), wait=FALSE)
Meth...
2009 Dec 22
2
Reading PDF files
Hi:
I need to do text mining on PDF files. I understand there is a readPDF
command in tm that can be used. Have read the 2008 posts on converting
PDF files to text by Tony Breyal and others.
Wondering if the procedure has been standardized in any tutorial or
otherwise? Being new to R, I was able to follow only part of the
discussion.
Any way to get a set of step by step instructions
2008 Nov 13
1
readPDF() -- unsure how to install xpdf to make this work?
...mining is mentioned. In
that lovely package, there is a function called 'readPDF()'. In order
to use this, ?readPDF says
"Note that this PDF reader needs both the tools pdftotext and
pdfinfo installed and accessable on your system."
These tools are available from http://www.foolabs.com/xpdf/download.html
I am able to download this and use it easily from a dos window to
convert a pdf file into a txt file.
Question: how do i make these tools available to R, so that i can use
the readPDF() function?
Thank you in advance for any help, and I hope the above made sense.
Tony Bre...
2007 Apr 25
2
Parsers for input to index?
The documents we want to index come in many formats; e.g., HTML, PDF,
RTF, Word, Excel, etc., etc., etc. I''ve been searching to find parsers
that will translate each of these formats to indexable text, but have
had little success. Any help will be appreciated.
--
Posted via http://www.ruby-forum.com/.
2010 Sep 23
1
eps file
Dear All,
I need to create eps file which is the required figure format of the journal that I want to submit a paper. I am able to create files in pdf or wmf format but not in eps format. Is there a way to convert pdf or wmf to eps? or alternatively, how can I create an eps file in R?
Any help is deeply appreciated.
Kind Regards
Seyit Ali
2008 Jan 04
1
Evaluating R expressions
All,
Thank you for the prompt and useful answers to my questions.
I had missed references in 5.7.6 which would have answered some of the points.
As Bill pointed out a newer version of acrobat would help, but the Sun system
here is still running 5.0. (An oversubscribed sysadmin). Then I could have
searched and at at least avoided the most trivial.
All three comments were different,
2010 Jan 09
4
parsing pdf files
I have a pdf file that I would like to parse into R:
http://www.williams.edu/Registrar/geninfo/faculty.pdf
For now, I open the file in Acrobat by hand, then save it "as text"
and then use readLines(). That works fine but a) I am concerned that
some information may be lost and b) I may be doing this a lot, so I
would rather have R grab the information from the pdf file directly.
So: is