similar to: Can mount shares but not "net use" them

Displaying 20 results from an estimated 500 matches similar to: "Can mount shares but not "net use" them"

2011 Jun 23
4
markdown conversions
alan said: > I think I am in agreement, > if by "isn't necessary" you mean to say that > simply providing more features to Markdown > doesn't force end users to use them, > or even really know they exist. except that wasn't what i meant. i mean that it's not necessary to trade simplicity in order to get the power of additional
2006 May 23
5
AR Caching and Reflection
When I do this: term = Term.find(1, :include => :definition) term.definition.term Two SQL queries are fired, why? -- Posted via http://www.ruby-forum.com/.
2006 Aug 04
0
a commitment to underscores
rspec''ers We''ve been living in a world for a couple of months in which rspec supports both dots and underscores. Supporting both is gumming up the works at this point and I''d like to commit to one or the other. Assuming that all would prefer underscores, I''ve changed all of the tests to use only underscores, fixing a few new problems as they appeared. Unless
2005 Feb 24
1
Rsync over ssh and forced commands
Hello list! I want to use rsync over ssh to copy files from a server to all my clients. Basically the following commando should be used: rsync -re "ssh -i .ssh/tomte" /var/local/tomte-bin/ merkur:/ On the client to commando should be checked so i added a command="/usr/local/bin/check_command.sh" to my authorized_keys for the tomte public key. But i get the following error:
2001 Apr 05
1
PR#896
Sorry to all that are angry about the form of my previous mail. I didn't realise what would happen :((. Here it is in (hopefully) plain text (if my mailer doesn't spoil it again): ############## Dear developers, I have a problem with some discrepancy between R 1.2.1 for Windows and R 1.2.2 (and less) for Linux. While trying to correct the wilcox.test (see my previous bug report) I
2007 Mar 29
1
ansari.test.default: bug in call to uniroot?
A recent message on ansari.test() prompted me to play with the examples. This doesn't work for me in R version 2.4.1 R> ansari.test(rnorm(100), rnorm(100, 0, 2), conf.int = TRUE) Error in uniroot(ab, srange, tol = 1e-04, zq = qnorm(alpha/2, lower = FALSE)) : object "ab" not found It looks like there's a small typo in ccia() inside ansari.test.default() in which
2006 Mar 10
4
validation is giving me heartburn
this one is killing me. all i want to do is validate the format of user-entered software versions. so in the model i have: validates_format_of :version, :message=>"Not valid version number." :with=>/[0-9]\.[0-9]{2}\.[0-9]{2}\.[0-9]{2}\.[0-9]{2}/ the form field is simply the scaffold form code: <p><label
2002 Nov 03
1
Ansari-Bradley test (PR#2252)
Full_Name: Wei Xu Version: 1.5.1 OS: WindowsME Submission from: (NULL) (63.215.238.92) The P-value for a two.sided test is not consistent with the confidence interval. For example, P-value=0.1372, but the 95% CI doesn't include the H0 value(1). > x [1] 0.80 0.83 1.89 1.04 1.45 1.38 1.91 1.64 0.73 1.46 > y [1] 1.15 0.88 0.90 0.74 1.21 >
2004 Apr 09
1
Sharp ZQ-290s sync software
Hi, Since Sharps communication protocols are "top secret", I'm trying to port their sync software to linux. I'm new to wine, so this might be silly, but after hours of googling and searching for solutions I'm posting this. After installing DCOM98.exe, the Desktop software installed, and it runs. Only problem is it doesn't detect the device connected to the serial port
2009 Jul 24
1
Fwd: Making rq and bootcov play nice
John, You can make a local version of bootcov which either: deletes these arguments from the call to fitter, or modify the switch statement to include rq.fit, the latter would need to also modify rq() to return a fitFunction component, so the first option is simpler. One of these days I'll incorporate clustered se's into summary.rq, but meanwhile this seems to be a good alternative.
2010 Dec 22
4
Multinetwork environment without WINS server
Is there any way to use samba as pdc in multinetwork environment without WINS server? In this case (without wins), how will computers find pdc?
2011 Feb 21
1
wrong lines in auto.key xyplot
Hi all, I'm having a problem with the auto.key function in xyplot. I changed the symbols an lines styles using these commands trellis.par.set(superpose.symbol=list(pch=c(0,1,2,3,4,5,6,8,15,16))) trellis.par.set(superpose.symbol=list(col=c(rep("black",11)))) trellis.par.set(superpose.symbol=list(cex=c(rep(0.6,11))))
2016 Jun 13
0
[PATCH v8 3/3] lib: Added filesystem_walk command tests
The tests check whether the filesystem_walk command is able to retrieve information regarding both existing and deleted files. A NTFS image is used as Ext3+ filesystems deletion is more aggressive in terms of metadata removal. Signed-off-by: Matteo Cafasso <noxdafox@gmail.com> --- tests/tsk/Makefile.am | 3 +- tests/tsk/test-filesystem-walk.sh | 64
2003 Feb 10
1
Samba 2.2.7a as PDC with LDAP: c000019b error code
Hello! I've run into a strange problem with samba-2.2.7a. I compiled it with --with-ldapsam on a Debian/Woody box, set up openLDAP 2.0.23 with all users and machine trust accounts and configured samba to using LDAP and being a PDC. Works ok so far, users may authenticate and use their shares. But they can not *always* log into the domain from NT4.0 workstations. Sometimes yes, sometimes
2009 May 21
1
[PATCH server] Updated look and feel for empty grid views
When empty grids are shown (ex: no VMs in this pool) a specific graphic, message and improved action button are shown. For Task views, the user will see the current filter and an explanation that no tasks match that filter. Signed-off-by: Jeremy Perry <jeremy.perry at redhat.com> --- src/app/views/hardware/show_hosts.rhtml | 11 ++++------- src/app/views/hardware/show_storage.rhtml
2012 Jun 04
3
HP DL360 G5 better than HP DL360 G7 ?
Any tips on solving the following performance conundrum: Asterisk 1.8.12.2 running on HP DL360 G5 and G7s tcpdump running to capture UDP 5060/SIP signaling to .pcap files All calls are ultimately B2BUA client -> asterisk -> PSTN Media stays on Asterisk at all times AGI script has exit handler that connects and updates an external database upon BYE from either side. I know that if exit
2016 Jun 13
7
[PATCH v8 0/3] New API: filesystem_walk
v8: - rebase on master - bump version to 1.33.37 - squash commits 1, 2, 3 Kept original commits messages when squashing them. Matteo Cafasso (3): New API: internal_filesystem_walk New API: filesystem_walk lib: Added filesystem_walk command tests daemon/Makefile.am | 4 +- daemon/tsk.c | 249 ++++++++++++++++++++++++++++++++++++++
2005 Dec 01
1
aliases for "share Definitions"
Hi I have NT4 clients that have problem accessing my share: [ccview1_view02] (Because it's more then 8 character long) I would like to add an alias in this entry. Does anyone know if this is possible? I know I could do like this: [ccview1_view01] comment = Views on ccase cluster guest ok = no path = /export/ccview1_view01 directory mask = 0775 create mask = 0775 writeable =
2009 Jul 23
1
[PATCH server] changes required for fedora rawhide inclusion.
Signed-off-by: Scott Seago <sseago at redhat.com> --- AUTHORS | 17 ++++++ README | 10 +++ conf/ovirt-agent | 12 ++++ conf/ovirt-db-omatic | 12 ++++ conf/ovirt-host-browser | 12 ++++
2017 Apr 06
0
[PATCH v6 PATCH 7/7] yara_scan: added API tests
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com> --- configure.ac | 1 + tests/yara/Makefile.am | 26 +++++++++++++++++++ tests/yara/test-yara-scan.sh | 61 ++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 88 insertions(+) create mode 100644 tests/yara/Makefile.am create mode 100755 tests/yara/test-yara-scan.sh diff --git a/configure.ac