Displaying 20 results from an estimated 4000 matches similar to: "Mounting a remote samba server with Windows 98"
2008 Feb 06
1
TDM400P phone won't ring
Shane Wegner wrote:
> Hello all,
>
> I have two handsets connected to FXS ports on a TDM400P,
> both GE models but one rings and the other does not. The
> phone models are not identical. The phone which doesn't
> ring on the TDM does ring when connected to a regular POTS
> line and I tried connecting another phone to the port and
> it rings fine.
Do you have the
2007 Aug 21
1
Extremely slow file serving
Shane,
Please see my Bug nr 488:
https://bugzilla.samba.org/show_bug.cgi?id=4889
I've experienced a few strange things I can't explain.
Does the copy go faster when you access an other (random) file on
your share?
are you able to do make a copy from a share with the client in a
vmware session on the same samba server?
Regards,
Gaston
Op 21-aug-2007, om 6:29 heeft Shane het
2014 Jun 05
1
IMAP copy fails because the mailbox size of user1 is exceeding the quota limit of user2??
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Wed, 4 Jun 2014, Katja Wegner wrote:
> Date: Wed, 4 Jun 2014 16:21:04 +0200
> From: Katja Wegner <katja.wegner92 at web.de>
> To: dovecot at dovecot.org
> Subject: [Dovecot] IMAP copy fails because the mailbox size of user1 is
> exceeding the quota limit of user2??
>
> Hi all,
> I do have a mailbox-quota problem
1999 Oct 27
0
[R] par(uin)
Thank you Bendix,
{I hope it's okay if I CC my answer to your private mail to R-devel ..}
>>>>> On Wed, 27 Oct 1999 08:55:28 +0200, BXC@novo.dk (Bendix Carstensen) said:
>> -----Original Message-----
>> From: Martin Maechler [mailto:maechler@stat.math.ethz.ch]
>> Sent: 25. oktober 1999 14:58 To:Gregory R. Warnes
>> Cc:
2010 Jul 19
5
par("uin") ?
I inherited a function written either for an older version of R or SPlus
to draw a brace, "{", in a graph. It uses par("uin") to determine the
scaling of the
quarter circles that make up segments of the brace, but that setting
doesn't
exist in current R.
I'm guessing that, in the function below, ux, uy can be defined from
par("usr") and
2002 Dec 22
1
LDAP, SASL, Invalid credentials???
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
I'm sorry for this but it's driving me craaaaaaaazzyyyyyy....
My setup:
samba: 2.2.7
openldap: 2.0.25
sasl: 1.5.27
I've configured my LDAP server (for testing purposes only) with
SASL/DIGEST-MD5 auth.
In slapd.conf
rootdn uin=root@bensa.ar
sasl-realm bensa.ar
# saslpasswd -u bensa.ar -c root
(I've set 'admin' as the
2006 Feb 19
2
Problems with gain
Hello.
CE wrote:
> Hails! The reason this occurs is the default adjust value for
> mp3gain is stupid. I always do an mp3gain -g 6 to mine after other
> adjustments. Also with a player like XMMS that uses the FLAC plugin
> you can control the volume the flac play back at.
So what exact dB value does flac use? mp3gain + 6 dB are 95 dB IIRC.
I tried to apply mp3gain -m 6 to my mp3s,
1999 Oct 22
1
par(uin)
Hi,
I've been trying to use several plotting routings that make use of
S's par("uin"), the number of user units per inch. For the moment I've
substituted all of the occurences of this with
par.uin _ function()
(par("fin") / c( diff(par("xaxp")[1:2]),diff(par("yaxp")[1:2])))
This seems to work fine for my needs.
-Greg
2006 Feb 19
3
Problems with gain
Hello.
I have a problem here with replay gain. I use it to be able to hear all
my music without any difference in volume. But it seems that all players
I use ignore the gain value stored in my flac files. All flacs are
louder than the gained mp3s I have.
$ metaflac --show-tag=REPLAYGAIN_ALBUM_GAIN <some>.flac
REPLAYGAIN_ALBUM_GAIN=-9.96 dB
$ metaflac --show-tag=REPLAYGAIN_TRACK_GAIN
2017 Sep 25
1
Subset
Always via logical expressions. In this case you can use the logical expression
myDF$b != "0"
to give you a vector of TRUE/FALSE
B.
> On Sep 25, 2017, at 8:00 AM, Shane Carey <careyshan at gmail.com> wrote:
>
> This is super, really helpfull. Sorry, one final question, lets say I wanted to remove 0's rather than NAs , what would it be?
>
> Thanks
>
2017 Sep 25
0
Subset
This is super, really helpfull. Sorry, one final question, lets say I
wanted to remove 0's rather than NAs , what would it be?
Thanks
On Mon, Sep 25, 2017 at 12:41 PM, Boris Steipe <boris.steipe at utoronto.ca>
wrote:
> myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"),
> b = c("<0.1", 1, 0.3, 5, "Nil"),
>
2017 Sep 25
2
Subset
myDF <- data.frame(a = c("<0.1", NA, 0.3, 5, "Nil"),
b = c("<0.1", 1, 0.3, 5, "Nil"),
stringsAsFactors = FALSE)
# you can subset the b-column in several ways
myDF[ , 2]
myDF[ , "b"]
myDF$b
# using the column, you make a logical vector
! is.na(as.numeric(myDF$b))
# This can be used to select the
2002 Jul 22
0
FW: my printers are still paused in Win2k and WinNT 4.0
Jim,
Not only does the buffer scrapper code show paused if the Printer name is
something like CSQ_office_a but if the host has off in the name like -->
hp@mercylaboffice.pa-ucl.com it puts it on pause...
Shane
-----Original Message-----
From: Shane Drinkwater
Sent: Monday, July 22, 2002 11:37 AM
To: samba@lists.samba.org
Subject: RE: [Samba] my printers are still paused in Win2k and
2017 Sep 25
0
Subset
Hi,
Lets say this was a dataframe where I had two columns
a <- c("<0.1", NA, 0.3, 5, "Nil")
b <- c("<0.1", 1, 0.3, 5, "Nil")
And I just want to remove the rows from the dataframe where there were NAs
in the b column, what is the syntax for doing that?
Thanks in advance
On Fri, Sep 22, 2017 at 5:04 PM, Shane Carey <careyshan at
2005 Jun 13
1
"conversion error" and NT_STATUS_LOGON_FAILURE - more info
Hi again,
as I am finally back working on the problem, I add the smb.conf in
the hope somebody can see what I am doing wrong.
Samba Version is 3.0.14a from Debian Sarge.
Attached is my smb.conf - there may be some unnecessary things in
it meanwhile due to too much trying, but anyways.
Meanwhile there are some more clients that have problems with
password authentication. One thing I noticed is
2013 Oct 15
0
Antw: Xen-users Digest, Vol 104, Issue 18
Op 10/12/13, xen-users-request@lists.xen.org schreef:
> Send Xen-users mailing list submissions to
> xen-users@lists.xen.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.xen.org/cgi-bin/mailman/listinfo/xen-users
> or, via email, send a message with subject or body ''help'' to
> xen-users-request@lists.xen.org
>
> You
2015 Feb 27
0
*****SPAM***** Re: Domain Member Server (wheezy) - Unable to edit permissions of share without usermapping - shall I add to Wiki?
On 27/02/15 20:07, Shane Robinson wrote:
> Hi Rowland,
>
> Chown to Administrator seems less flexible than Chgrp to Domain Admins on
> the face of it. You could add/remove users from the Domain Admins group,
> which allows/denies them the ability to change the permissions on the share.
> By changing the owner to Administrator, only those credentials would have
> that ability,
2015 Feb 27
0
Domain Member Server (wheezy) - Unable to edit permissions of share without usermapping - shall I add to Wiki?
On 27/02/15 19:46, Shane Robinson wrote:
> Hello all,
>
> Sorry about the top-posting.
>
> I have added the bit about the linking (YAY!, I'm helping!).
>
> Now if we can clear up the ACL issue, this will be a great day!
>
> Summary: To edit ACL's from Windows on a Debian Member server, we need to
> either
> 1) map the domain admin to root OR
> 2) give
2015 Feb 27
0
Domain Member Server (wheezy) - Unable to edit permissions of share without usermapping - shall I add to Wiki?
On 27/02/15 21:00, Shane Robinson wrote:
> Hi Rowland,
>
> I'm also not an expert, but with the amount of help you provide on the list,
> I will defer to you.
>
> I'd love to know your rational for prefering the "change ownership to
> administrator" approach over the "change group to Domain Admins approach".
> If it's just gut, that's
2007 Dec 17
2
RSpec 1.1.0 (Rails) --- Supported Rails Versions?
Hi
Just a quick question .... what backward versions of Rails will the
1.1.0 versions of RSpec and Spec::Rails support?
I think I maybe under the (incorrect) impression that I had to go to
Rails 2.0 for 1.1.0
Cheers
Shane
Shane Mingins
ELC Technologies (TM)
1921 State Street
Santa Barbara, CA 93101
Phone: +64 4 568 6684
Mobile: +64 21 435 586
Email: smingins at elctech.com
AIM: