Displaying 6 results from an estimated 6 matches for "tingle".
Did you mean:
single
2008 Jul 27
7
Now you did it Olly
Oh, Boy. I am in trouble now....
I just installed Centos on a USB drive on my corp notebook. To not
TOUCH my corp drive.
I spent time with the drive partitioner to make sure that nothing was
done to the internal hard drive...
Well I missed something and I overwrote the encrypted bootloader on the
hard drive.
Now what? Can I rescue things?
I am leaving for my flight in a couple hours to
2009 Oct 24
0
NTConfig.POL ignored
...lSetControlUpdate is set to automatic (2).
Here's the NETLOGON stuff from smb.conf:
---
[netlogon]
comment = Network Logon Service
path = /home/samba/netlogon
browseable = no
guest ok = yes
read only = yes
write list = admin
share modes = no # This makes my spider-senses tingle.
---
I'm not yet very strong with Windows networking, so my guess is it's an
obvious problem on the Windows side. In any case, I've just about scratched
a hole in my head.
Mark
2011 Oct 27
2
help with paste
Hello gurus,
I have some variables, and i am creating combinations for analysis in the
end i need these variables to be displayed like "LEPTIN+SAA+PTH". currently
i am using loop to perform this. I would appreciate any pointers to do it
without the loop.
> mols=c("LEPTIN","SAA","PTH","sEGFR")
> samples=mols[1:3]
> samples
[1]
2003 Apr 07
0
timing related vunlerability that reveals whether files exist without regard to permissions
There was a recent post to BugTraq (April 2nd)
detailing a multi-platform vulnerability. An archived copy of this
posting can be found at http://www.securityfocus.com/archive/1/317425.
This vulnerability is a timing based attack on system calls that can
be used to reveal whether or not a file exists without regard to
permissions. The attack works based off the fact that using the
open() system
2014 Jun 23
2
Re: [PATCH] cat: add -m option
On Monday 23 June 2014 12:29:07 Richard W.M. Jones wrote:
> On Mon, Jun 23, 2014 at 01:00:11PM +0200, Pino Toscano wrote:
> > static int
> >
> > +do_cat_simple (int argc, char *argv[])
> > +{
> > + unsigned errors = 0;
> > + int i;
> > +
> > + for (i = 0; i < argc; ++i) {
> > + if (guestfs_download (g, argv[i],
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?
--