Displaying 20 results from an estimated 400 matches similar to: "samba client"
2011 Feb 28
3
Incorrectness of mean()
I have found following problem:
I have a vector:
> a <- c(1.04,1.04,1.05,1.04,1.04)
I want a mean of this vector:
> mean(a)
[1] 1.042
which is correct, but:
> mean(1.04,1.04,1.05,1.04,1.04)
[1] 1.04
gives an incorrect value.
how is this possible?
thanks,
zbynek
--
View this message in context: http://r.789695.n4.nabble.com/Incorrectness-of-mean-tp3327701p3327701.html
Sent from the R
2006 Feb 03
4
Unable to mount SMB drive
I have a Windows Server 2003 system I'm trying to back up to a Linux host.
when I access the share with smbclient, I can "see" the files (`ls` returns a
list of files, etc)
smbclient -U shareuser //server/sharename password
But, when I try to actually mount the drive, I get "permission denied" errors
trying to access the drive. (EG: using `df`) Running the following
2006 May 22
3
Errors accessing smbfs share after upgrade to redhat ES4.0
I used to mount following share using samba client on
RHEL 3.0 without any problems. Then I installed ES4.0
and I started seeing problems with these samba shares.
I have following line in fstab to mount the share :
//bizgroup/wli1 /wli1 smbfs
uid=501,gid=501,credentials=/etc/samba/.smbpassword
0 0
and /etc/samba/.smbpassword contains following
username=xxxxxxx
2010 Sep 03
1
How to use lm() output for systemfit() 'Seemingly unrelated regression'
I am having problem using output of lm() function for further analysing using
systemfit package.
Basicaly, the problem s following - I generate several formulas using lm()
> fo1 <- lm(r98[,2] ~ f98[,1] + f98[,2] + ... + f98[,43])
> fo2 <- lm(r98[,1] ~ f98[,1] + f98[,2] + ... + f98[,43])
and than I want to estimate a general model using package systemfit.
> fitsur <-
2019 Aug 21
1
Core dumped - net ads dns gethostbzname
Hi.
Performing a DNS search for a hostname results in a segmentation fault:
## Debian 10 Buster 64bit
root at hostxzy:~# net ads dns gethostbyname name $(hostname)
Bad talloc magic value - unknown value
PANIC (pid 15749): Bad talloc magic value - unknown value
BACKTRACE: 12 stack frames:
?#0 /lib/x86_64-linux-gnu/libsamba-util.so.0(log_stack_trace+0x32) [0x7f0827
a408d2]
?#1
2010 Dec 20
2
How to optimize function parameters?
Hi,
I have a dataset and I want to fit a function to it.
The function is variogram model (http://en.wikipedia.org/wiki/Variogram)
The variogram model is defined by three parameters and I want them to be
automatically optimized for real time data.
I tried to use gafit {gafit} for this, but there are some data
configuration, where optimal results given by gafit() are negative, which is
not correct
2005 May 26
1
kernel error smb_errno: class ERRSRV, code 91 from command 0x32
Hi,
I have a samba +ldap PDC running on mandrake 10.0 the server is running
great except for the error mesage in the kernel log, whic I think causes the
system to crash after some time, how much time is needed is unknown, but it
seems to get faster with increasing user, as this was a first attempt I
first tried it with only less than 10 users, and it the server would go on
for more than 3
2003 Jan 15
1
Double NATed VPN
Hello,
1) Thanks - shorewall save me a lot of time!
2) I try - exactly: I must :-) - configure a VPN server behind 2 NATs.
My situation:
RoadWarior - INet - ISP Router (NAT+PortForwarding) - Inetranal Router
(running Shorewal, NAT+PortForwarding) - Inetranl VPN Server
If RoadWariror try to connect Internal VPN Server then connection failed
with "GRE: Bad check chcksum from pppd"
2006 Jan 11
1
Selfmade ... Samba 3.0.20a on CentOS 4.0 x64
Hi all,
has somebody already tried to compile the rpm of the newest samba
package on a 64-bit CentOS. I tried to do it with the Fedora spec file
and it quit with an error, that some files are not located in the lib64
directory. These required files are located in the lib directory. Any
sugesstion how this problem could be fixed in a clean way? How
is this problem solved during the CentOS
2008 Feb 08
1
remove the missing value,NA
I have two sets of interval data.Below are my two dataset. In these dataset, there is a missing values in each of the data. I want to find the non-overlapping interval values. Here is my code:
mysetdiff=function(x,y){
m=length(x)
n=length(y)
bx = logical(m)
by = logical(n)
for(i in 1:m){
for(j in 1:n){
if(x[i]<=y[j]){
bx[i] = T
by[j] = T
}
2012 Nov 06
2
disk device lvm iscsi questions ....
Hi,
I have an iscsistorage which I attached to a new centos 6.3 server. I
added logic volumes as usual, the block devices (sdb & sdc) showed up in
dmesg; I can mount and access the stored files.
Now we did an firmware software update to that storage (while
unmounted/detached from the fileserver) and after reboot of the storage
and reatache the iscsi nodes I do get new devices. (sdd &
2019 Feb 27
3
Centos Digest Vol.169 Issue 26 HPlip Mark Roth/Jon LaBadie .
Hi Folks ,
The problems with HPlip goes on and on : I can not manage to establish a
connection on WiFi with the HP4620 : I can print to the printer but not
scan . Running hp-check results in cups is not running, hplip is not
properly (HP) installed , xsane is not installed etc.. But I can assure
you all this software is properly installed : Hp-check cannot detect the
scanfunction on
2019 Feb 27
0
HPlip Mark Roth/Jon LaBadie .
Ger van Dijck wrote:
>
> The problems with HPlip goes on and on : I can not manage to establish a
> connection on WiFi with the HP4620 : I can print to the printer but not
> scan . Running hp-check results in cups is not running, hplip is not
> properly (HP) installed , xsane is not installed etc.. But I can assure
> you all this software is properly installed : Hp-check cannot
2010 Mar 28
3
Array data type----What can Be Done
Hi all,
please i have an array in my rails application (for example; $x = [23,
how, this,56, you, nice])
I want to store it in a mysql database as a SINGLE RECORD with a
name .
thus i can get each array with its name and still be able to access
the array like an array
i.e $x[0] # => 23
$x[1] # => how
.....and so on
I don''t know what DATA TYPE to use and how to do
2006 Aug 18
0
dovecot Digest, Vol 40, Issue 65
Dear Tim Schafer,
Take a look at my sample dovecot-ldap.conf
hosts = localhost
dn = cn=root,dc=ceylonlinux,dc=com
dnpass = secret
ldap_version = 3
base = dc=ceylonlinux,dc=com
deref = never
scope = subtree
user_attrs =
mail,homeDirectory=mailMessageStore,uidNumber=1003,gidNumber=1003
user_filter = (&(objectClass=user)(mail=%u))
pass_attrs = mail=user,userPassword=password
pass_filter =
2003 Jan 20
0
localization - dead keys
Hi,
I'm new user of wine.
I've fatal problem with keyboard driver - don't work "dead keys" and
keyboard produce some other errors. I work on FreeBSD 4.7-STABLE, XFree86
4.2, with Czech environment; Wine 20021219.
Is there enybody, who work with czech, slovak or polish (or another)
environment with national keyboard, which uses "dead keys"?
thanx
Zbynek
2011 Mar 25
0
applying random functions to multisets
Hi,
I am solving following problem:
Suppose I have some multiset:
> multiset <- c("a","a","c","d","d")
and rules, which operate with it (for simplicity not writen in R functions)
> rule1: "a" -> c("a","b")
> rule2: "a" -> c("a","c")
> rule3: "c" ->
2019 Aug 13
3
winbind - frequent high CPU utilization
Hi.
I use winbind + squid on Debian Buster to authenticate users + authorize
them based on groups they are in. It all works, well, good, but winbind's
CPU utilization peaks can reach up to 100%. The same solution ran OK on
Debian Jessie with up to 20% CPU utilization at most.
The configuration of Buster must have been updated based on the samba
version leap/shift compared to Jessie.
On
2006 Aug 17
0
[Fwd: Re: Supporting local and virtual LDAP users, with seperate mail_env]
Ooops, this didn't go to the list
-------- Original Message --------
Subject: Re: [Dovecot] Supporting local and virtual LDAP users, with
seperate mail_env
Date: Thu, 17 Aug 2006 11:33:51 -0700
From: Tim Schafer <tim_schafer at shipfsp.com>
To: Timo Sirainen <tss at iki.fi>
References: <44E4A543.3070100 at shipfsp.com>
<1155837188.9142.8.camel at hurina>
2019 Feb 27
0
HPlip Mark Roth/Jon LaBadie .
Valeri Galtsev wrote:
> On 2/27/19 9:16 AM, mark wrote:
>> Ger van Dijck wrote:
>>>
>>> The problems with HPlip goes on and on : I can not manage to
>>> establish a connection on WiFi with the HP4620 : I can print to the
>>> printer but not scan . Running hp-check results in cups is not
>>> running, hplip is not properly (HP) installed , xsane