Displaying 20 results from an estimated 30 matches for "hargreav".
Did you mean:
hargreave
2005 Jan 22
4
rsync failing with return code 13
...h program diagnostics") so could someone
give me a clue. as to what diagnostics rsync is running and reasons why
they might be failing? The only magic to note is the machine only has
32MB of ram so low memory may be a problem (but I'd expect to see error
22 instead).
Thanks
Paul
Paul Hargreaves
Consulting Systems Engineer Network Appliance
2nd Floor, Riley Court
University of Warwick Science Park
Millburn Hill Road
Coventry, CV4 7JJ
paulhar@netapp.com tel:
mobile: 02476 838815
07714 456244
Signature powered by Plaxo <http://www.plaxo.com/signature> Want a
signat...
2007 Aug 14
8
sh DTrace provider available
...ilt around
nv70ish and the diffs.
I''d love for folks to have a play with it and give me feedback.
Brendan has also written some cool stuff on his blog about his playing
with it (link in the above url).
We''re considering other shells too, just not done them yet.
Regards,
Alan Hargreaves
--
Alan Hargreaves - http://blogs.sun.com/tpenta
Staff Engineer (Kernel/VOSJEC/Performance)
Systems Technical Support Centre
Sun Microsystems
2016 Feb 08
1
(Samba 4) Recreate AD
...b/samba and its content (samba-common with my version of Samba).
> 4° you could also remove /etc/samba/smb.conf and /etc/krb5.conf if you don't like them (which should be the case when renaming the domain)
>
> Cheers,
>
> mathias
>
>
> 2016-02-08 17:01 GMT+01:00 Paul Hargreaves <paul.hargreaves at technowizardry.co.uk <mailto:paul.hargreaves at technowizardry.co.uk>>:
> I’ve currently got a Samba 4 AD but want to rename it. However, as I understand things, renaming isn’t easy.
> Happy to rebuild it - home lab, only a few machines affected.
>
> H...
2006 May 12
10
why dtrace is not quiet?
i''m running the following script:
#pragma D option quiet
profile:::tick-1sec
/ ++x >= 15 /
{
exit(0);
}
io:::start {
@io_size[execname] = sum(args[0]->b_bcount);
}
on exit, the script prints out the value of @io_size, why?
there''s no printa(), and i also specified "D option quiet" (i also tried -q).
this seems to happen with any kind of probe: on exit(0) all
2010 Jun 26
2
Recursive indexing failed at level 2
...Error in
pulse_subset[[1:(length(unlist(pulse[i])[as.numeric(peak_start[i]):as.numeric(peak_end[i])]))]]
<- unlist(pulse[i])[as.numeric(peak_start[i]):as.numeric(peak_end[i])] :
recursive indexing failed at level 2
If anyone could shed some light I'd be rather grateful.
Regards,
Jim Hargreaves
2016 Feb 08
4
(Samba 4) Recreate AD
I’ve currently got a Samba 4 AD but want to rename it. However, as I understand things, renaming isn’t easy.
Happy to rebuild it - home lab, only a few machines affected.
However, no topic in the FAQ on how to remove an existing domain: https://wiki.samba.org/index.php/FAQ <https://wiki.samba.org/index.php/FAQ>
Demoting won’t work since it’s the last remaining server:
2006 Dec 04
2
domUs dropping off the network (Xen 3.0.2)
...000 throughout.
I will probably try to upgrade these machines to 3.0.3 as I''ve had some
anecdotal evidence that this has fixed a similar problem for someone
else, but I thought I''d post my experiences here too in case this rings
a bell with anyone.
Cheers,
Dominic.
--
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)
_______________________________________________
Xen-users mailing list
Xen-users@lists.xensource.com
http://lists.xensource.com/xen-users
2010 Jun 21
5
Replacing elements of a list over a certain threshold
Dear List,
I have a list of length ~1000 filled with numerics. I need to replace
the elements of this list that are above a certain numerical threshold
with the value of the threshold.
e.g
example=list(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
threshold=5
<magic code goes here>
example=(1, 2, 3, 4, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 4, 3, 2, 1).
I have written a crude
2009 Apr 30
4
Disabling users whilst still allowing logins with a 'master password'
...be extended to cope with the
idea of a deny form, since the GSSAPI login process already uses them
(although it would have to return USERDB_RESULT_USER_UNKNOWN).
Alternatively, does anyone have any other ideas about how I could
achieve the same effect?
Thanks for listening.
Dominic.
--
Dominic Hargreaves, Systems Development and Support Team
Computing Services, University of Oxford
2016 Feb 08
0
(Samba 4) Recreate AD
..., one only is needed to recreate
/var/lib/samba and its content (samba-common with my version of Samba).
4° you could also remove /etc/samba/smb.conf and /etc/krb5.conf if you
don't like them (which should be the case when renaming the domain)
Cheers,
mathias
2016-02-08 17:01 GMT+01:00 Paul Hargreaves <
paul.hargreaves at technowizardry.co.uk>:
> I’ve currently got a Samba 4 AD but want to rename it. However, as I
> understand things, renaming isn’t easy.
> Happy to rebuild it - home lab, only a few machines affected.
>
> However, no topic in the FAQ on how to remove an e...
2013 Aug 12
3
Bug#719506: xen: FTBFS with perl 5.18: POD errors
Source: xen
Version: 4.2.2-1
Severity: important
User: debian-perl at lists.debian.org
Usertags: perl-5.18-transition
This package FTBFS with perl 5.18 (which will soon be uploaded to
unstable) owing to a stricter pod2man:
pod2text man/xl.pod.1 txt/man/xl.1.txt.tmp
man/xl.pod.1 around line 854: Expected text after =item, not a bullet
POD document had syntax errors at /usr/bin/pod2text line 84.
2005 Dec 22
9
truncating aggregation output only
Hello dtrace-discuss,
Sometimes I want to run a script for some time and every n second
output N top entries. trunc() isn''t suitable here as it also removed
keys/values. I want it ''coz over time if I use sum() entries which
are normally truncated can actually get to top over a time.
Maybe printa() extension, something like: printa(@b[10]) - to output
top 10?
--
2013 Aug 12
0
Bug#719506: Bug#719506: xen: FTBFS with perl 5.18: POD errors
tag 719506 +patch
thanks
On Mon, 2013-08-12 at 17:40 +0200, Dominic Hargreaves wrote:
> This package FTBFS with perl 5.18 (which will soon be uploaded to
> unstable) owing to a stricter pod2man:
>
> pod2text man/xl.pod.1 txt/man/xl.1.txt.tmp
> man/xl.pod.1 around line 854: Expected text after =item, not a bullet
> POD document had syntax errors at /usr/bi...
2016 Feb 08
0
(Samba 4) Recreate AD
On 08/02/16 16:01, Paul Hargreaves wrote:
> I’ve currently got a Samba 4 AD but want to rename it. However, as I understand things, renaming isn’t easy.
> Happy to rebuild it - home lab, only a few machines affected.
>
> However, no topic in the FAQ on how to remove an existing domain: https://wiki.samba.org/index.php/...
2010 Oct 14
1
execute a script in command line
Dear all,
I'm running R on Linux OS. I want to execute a programme "toto.R" in
command line. Is it possible ??
Thanks
Benoit
--
Benoit Wastine
Laboratoire des Sciences du Climat et de l?Environnement (LSCE/IPSL)
CEA-CNRS-UVSQ
CE Saclay
Orme des merisiers
B?t 703 - Pte 13A
91191 Gif sur Yvette Cedex
France
Tel : 33 (0)1 69 08 21 97
Fax : 33 (0)1 69 08 77 16
2006 Mar 21
1
Current status of Xen 3.0 package
Hello,
I would like to make a point on the current status of the Xen 3.0
package.
It seems the current issue that Bastian told are now fixed.
So, I would like to heard some report from users about the usability of
this package, in order to upload it as soon as possible.
If your discover any bug, any strange behaviour or any missing things,
please do report it here.
--
Julien Danjou
2006 Apr 05
3
Shall we release 3.0.1?
Hi everybody!
At least xen 3.0 packages seem to be working, tested, and in a pretty good
shape... (I haven't personally tested xen-unstable, so I cannot say) I propose
releasing rev150 in unstable or at least experimental in the next few days...
No, this is not a late april's fool... :D
Comments? Ideas? Suggestions? Rants?
Guido
2006 Sep 27
3
Xen 3.0.2
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/x-pkcs7-signature
Size: 5204 bytes
Desc: S/MIME Cryptographic Signature
Url : http://lists.alioth.debian.org/pipermail/pkg-xen-devel/attachments/20060927/7204cce9/smime.bin
2004 Dec 07
1
AD in Samba 3
Hi,
I have a small issue that I hope I can get some help with. Our company
was just about to role out Samba 3. We have about 300 employees and
multiple offices (4 offices). Unfortunately an "independant"
consultancy company has done an audit which criticises this desision.
Could someone with a very good understanding of Samba (preferrably
someone on the development team) assist
2010 Apr 13
2
sensitivity analysis, input factors
Hi,
I'm trying to conduct sensitivity analysis in R using the 'sensitivity' package. Although the description of functions seem straightforward, I can?t succeed. The definition of input factors can be the problem.
library(sensitivity)
#A simple model with 4 input factor to test the morris function:
model01=function(a1,a2,a3,a4)
{
Z<-numeric(10)
Z[1]<-runif(1)