Displaying 16 results from an estimated 16 matches for "_off_".
Did you mean:
_off
2015 Apr 20
2
bash script fails conditional test
...hat running it with sh
>
> You should use "bash -x" ("bash" and not "sh" because sh may not be bash
> everywhere; eg Ubuntu; "-x" and not "+x" because "-x" means "turn on debug"
> but "+x" means "turn _off_ debug")
Unless you have specific bashisms (which I don't think the original did,
and you should mostly avoid in scripts), sh -x will be fine.
--
Chris Adams <linux at cmadams.net>
2009 Jan 26
1
[OT] Anyone on-list using a Barracuda Spam Firewall?
...quot;un-biased" opinions regarding Barracuda's Spam Firewall as we're
looking to get one soon where I work and I want to know any pros/cons before
I stake my credibility on it for our spam fighting.
If you've had good or bad experiences with one of these devices, please
contact me _off_ list regarding this. I don't want to spam the list with a
major OT thread. Thanks.
2006 Feb 02
2
Request for users of my R-Tcl/Tk examples, limmaGUI or affylmGUI
[PLEASE REPLY _OFF_ THE LIST, i.e. DON'T CC to r-help at ...]
Hi,
I don't see this sort of thing very often on the mailing lists, so list
moderators and others should feel free to tell me if it breaches list
etiquette and/or delete my post if necessary. But I can't see what harm
it could do...
I am jus...
2015 Apr 20
4
bash script fails conditional test
>
> "-e" means "if file exists". You should use "-n"
That did it!!
[root at web1:~] #./bin/check-cass.sh
Cassandra is running with pid: 26979
This is what the script looks like now:
#!/bin/bash
pid=$(ps -ef | grep cassandra | grep -v grep | grep -i -v -e grep -e screen
-e s3fs|awk '{print $2}')
if [[ -n $pid ]]
then
echo "Cassandra is
2002 Sep 16
2
privsep versus compression
...c 2002-05-15 23:37:34.000000000 +0200
+++ openssh/servconf.c 2002-09-05 06:35:15.000000000 +0200
[...]
@@ -250,9 +256,19 @@
if (options->authorized_keys_file == NULL)
options->authorized_keys_file = _PATH_SSH_USER_PERMITTED_KEYS;
- /* Turn privilege separation _off_ by default */
+ /* Turn privilege separation on by default */
if (use_privsep == -1)
- use_privsep = 0;
+ use_privsep = 1;
+
+#ifndef HAVE_MMAP
+ if (use_privsep && options->compression == 1) {
+ error("This platform does...
2017 Apr 26
2
tempdir() may be deleted during long-running R session
On Tue, Apr 25, 2017 at 02:41:58PM +0000, Cook, Malcolm wrote:
> Might this combination serve the purpose:
> * R session keeps an open handle on the tempdir it creates,
> * whatever tempdir harvesting cron job the user has be made sensitive enough not to delete open files (including open directories)
Good suggestion but doesn't work with the (increasingly popular)
2015 Apr 20
0
bash script fails conditional test
...th sh +x . I guess that running it with sh
You should use "bash -x" ("bash" and not "sh" because sh may not be bash
everywhere; eg Ubuntu; "-x" and not "+x" because "-x" means "turn on debug"
but "+x" means "turn _off_ debug")
--
rgds
Stephen
2015 Apr 20
0
bash script fails conditional test
...rg> said:
> > You should use "bash -x" ("bash" and not "sh" because sh may not be bash
> > everywhere; eg Ubuntu; "-x" and not "+x" because "-x" means "turn on debug"
> > but "+x" means "turn _off_ debug")
>
> Unless you have specific bashisms (which I don't think the original did,
> and you should mostly avoid in scripts), sh -x will be fine.
It's a matter of "consistency". The script began #!/bin/bash and so a
direct shell invocation should _also_ use the...
2005 Jul 27
1
Outlook + Outlook Express
Hi
I am having problems with users accessing their maildir mail stores
through dovecot
I am working on version 0.99.11-1 (on fedora core)
It seems to be when the email size is large (450KB +)
The errors are (the server disconnected unexpectedly)
Have turned on the three Outlook and Outlook Express workarounds I found
but no luck.
Have read through logs and looked for clues but am just
2017 Apr 26
0
tempdir() may be deleted during long-running R session
...e the directory is another option.
In the end I had decided that
tempfile("foo", tmpdir = tempdir(check = TRUE))
is actually better self-documenting than
tempfile("foo", checkDir = TRUE)
which was my first inclination.
Note again that currently, the checking is _off_ by default.
I've just provided a tool -- which was relatively easy and
platform independent! --- to do more (real and thought)
experiments.
Martin
2017 Apr 26
6
tempdir() may be deleted during long-running R session
...d I had decided that
>
> tempfile("foo", tmpdir = tempdir(check = TRUE))
>
> is actually better self-documenting than
>
> tempfile("foo", checkDir = TRUE)
>
> which was my first inclination.
>
> Note again that currently, the checking is _off_ by default.
> I've just provided a tool -- which was relatively easy and
> platform independent! --- to do more (real and thought)
> experiments.
This seems like the wrong approach. The problem occurs as soon as the
tempdir() gets cleaned up: there could be information in temp file...
2002 Feb 13
1
Need help with seeing samba server in Win98
Our office is trying to set up a samba server. But, we are having some
difficulty with the installation. We have tried numerous things to no
avail. I think we are getting closer to a solution, but I am unsure of
where to go beyond this point.
Our configuration is:
Red Hat 7.2
IP address: 192.168.1.6
Samba Server: 2.2.1a
Samba Server Name: SAMBASERVER
Workgroup Name: ABOGEXAM
etc/hosts file
2017 Apr 26
0
tempdir() may be deleted during long-running R session
...tempfile("foo", tmpdir = tempdir(check = TRUE))
>>
>> is actually better self-documenting than
>>
>> tempfile("foo", checkDir = TRUE)
>>
>> which was my first inclination.
>>
>> Note again that currently, the checking is _off_ by default.
>> I've just provided a tool -- which was relatively easy and
>> platform independent! --- to do more (real and thought)
>> experiments.
>
> This seems like the wrong approach. The problem occurs as soon as the
> tempdir() gets cleaned up: there could b...
2017 Apr 26
1
tempdir() may be deleted during long-running R session
...mpdir = tempdir(check = TRUE))
>>>
>>> is actually better self-documenting than
>>>
>>> tempfile("foo", checkDir = TRUE)
>>>
>>> which was my first inclination.
>>>
>>> Note again that currently, the checking is _off_ by default.
>>> I've just provided a tool -- which was relatively easy and
>>> platform independent! --- to do more (real and thought)
>>> experiments.
>>
>> This seems like the wrong approach. The problem occurs as soon as the
>> tempdir() gets cle...
1997 Jul 23
2
cross-subnet browsing problems
I'm trying to set up cross-subnet browsing using Samba on a Linux box
and a Sparc UltraEnterprise with Win95 and NT Workstation clients. I'm
using the Sparc as the domain master and also as the WINS server on the
108 subnet. The Linux box is the local master on the 46 subnet. Both
are running Samba 1.9.17alpha4. I can see the conversation between the
two samba servers and the browse
2013 Aug 30
7
bootwrapper can't be compiled for cubieboard2
Hi Ian,
I try compile the bootwrapper for cubieboard2 like this:
joshzhao@joshzhao-ThinkCentre-M58p:~/project/Xen/A20/boot-wrapper$
make cubieboard2_defconfig CROSS_COMPILE=arm-linux-gnueabihf-
#
# configuration written to .config
#
joshzhao@joshzhao-ThinkCentre-M58p:~/project/Xen/A20/boot-wrapper$
make CROSS_COMPILE=arm-linux-gnueabihf-
make -C scripts/kconfig -f Makefile.bootwrapper