Displaying 11 results from an estimated 11 matches for "example01".
Did you mean:
example_01
2009 Apr 24
5
ACLs set in Windows not honored
...I set the same
ACL permissions from the Linux command line, everything works fine.
It seems that the AD user is not mapping to the UNIX user as I would
expect.
For this example, I'll describe a simple test.
SETUP: Let's suppose I have a Samba server joined to our Active
Directory domain, EXAMPLE01, and it's configured per the attached
smb.conf. Winbind is enabled and used. The Samba box has knowledge
of Linux users through NIS (I am only maintaining users, groups, and
passwords in NIS; not machines, etc). I am able to see a given user's
AD group memberships as well as NIS group me...
2006 Mar 21
3
Rsync 4TB datafiles...?
...srchost:/ / --files-from=dbf-list
and dbf-list would contain this:
p02/oradata/OSID/redo01.log
p03/oradata/OSID/redo02.log
p04/oradata/OSID/redo03.log
p01/oradata/OSID/system01.dbf
p04/oradata/OSID/undotbs01.dbf
p03/oradata/OSID/sysaux01.dbf
p03/oradata/OSID/users01.dbf
p03/oradata/OSID/example01.dbf
p03/oradata/OSID/data01.dbf
p02/oradata/OSID/index01.dbf
p01/oradata/OSID/control01.ctl
p02/oradata/OSID/control02.ctl
p03/oradata/OSID/control03.ctl
s01/oracle/product/10.2.0/dbs/initOSID.ora
One advantage that I have if do rsync file by file is if the network
connection fails for a q...
2010 Mar 17
3
odfWeave Error
Hi All,
This is probably basic, but I am just starting with R and very interested in
learning how to automate my reports. I am just learning about Sweave and
LaTex.
I am following an example from online and am getting the following error:
....."Error unizipping file....unzip not found".
I am not a programmer by any stretch, but I realize that the package is
either not recognizing
2006 Feb 22
5
Rsync help needed...
Hello,
I was reading your posts about RSYNC. We have a massive Oracle schema lots
of datafiles about 750 GB size. We do rsync datafiles from source to target
server but everytime we cleanup the datafiles on the target server and do
rsync every 2 weeks. On the target side mostly the datafiles will be same
but on source we might have added few datafiles or made some changes in data
and as such the
2011 Dec 17
1
odfWeave error
I am new to using odfWeave but I have encountered a problem running
both the example in the help file as well as another file.? I am not
sure how to correct the error.
First example:
library(odfWeave)
filein <- 'c:\\my documents\\example01_in.odt'
fileout <- 'c:\\my documents\\example01.odt'
odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T))
error:
The system cannot find the path specified.
The system cannot find the drive specified.
Error: content.xml? does not seem to be XML, nor to identify a...
2011 Dec 16
1
odfWeave
I am new to using odfWeave but I have encountered a problem running both
the example in the help file as well as another file. I am not sure how to
correct the error.
First example:
library(odfWeave)
filein <- 'c:\\my documents\\example01_in.odt'
fileout <- 'c:\\my documents\\example01.odt'
odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T))
error:
The system cannot find the path specified.
The system cannot find the drive specified.
Error: content.xml does not seem to be XML, nor to identify a...
2006 Jan 15
2
rsync of file list
Hi All,
I would to rsync data spread of many files from remote site. Each file
may exist in total different location - the path for each file may be
different.
My question is:
Can I do it one single rsync command, giving a file containing list of
paths as parameter, or do I need to run rsync for each file.
I did not find any option doing it in the man page. I tried to play with
2006 Apr 11
0
Problem using generate/scaffold and FireRuby
...ut any changes, I
also tried to use the physical path to the database instead of the alias
in the config file, without success, I''m completely new to ruby, so I
don''t know what else to do, I can succesfully run the
C:\ruby\lib\ruby\gems\1.8\gems\fireruby-0.4.1-mswin32\examples\example01.rb,
but I can''t go anywhere with "script/generate scaffold".
Any hints ?
Thanks in advance
Mocte
--
Posted via http://www.ruby-forum.com/.
2023 Dec 25
2
bind crashes after samba upgrade
On Sun, 24 Dec 2023 17:05:21 -0500
Sonic via samba <samba at lists.samba.org> wrote:
> Finally biting the bullet and upgrading some old Samba servers.
> This particular server is running 4.10.16 and as a first step I'm
> attempting to upgrade it to 4.12.15 (I think I remember something
> about 4.11.x not handling the upgrade properly).
>
> Samba seems to run OK but
2019 May 24
2
[EXT] Re: [RFC][SVE] Supporting SIMD instruction sets with variable vector lengths
JinGu:
I’m not Graham, but you might find the following link a good starting point.
https://community.arm.com/developer/tools-software/hpc/b/hpc-blog/posts/technology-update-the-scalable-vector-extension-sve-for-the-armv8-a-architecture
The question you ask doesn’t have a short answer. The compiler and the instruction set design work together to allow programs to be compiled without knowing
2019 May 27
2
[EXT] Re: [RFC][SVE] Supporting SIMD instruction sets with variable vector lengths
Hi All,
I have read the links from Joel. It seems one of its main focus is vectorization of loop with vector predicate register. I am not sure we need the scalable vector type for it. Let's see a simple example from the white paper.
1 void example01(int *restrict a, const int *b, const int *c, long N)
2 {
3 long i;
4 for (i = 0; i < N; ++i)
5 a[i] = b[i] + c[i];
6 }
We could imagine roughly the vectorized loop with mask on IR level as below.
header:
%n.broadcast.splatinsert = insertelement <8 x i32> undef, i32...