similar to: Help samba with 2k ADS

Displaying 20 results from an estimated 10000 matches similar to: "Help samba with 2k ADS"

2005 Apr 29
1
Can't login samba domain from xp/2k
Hello everybody. I am having troubles to log on a samba domain from winxp and win 2000 workstations. I patched the registry with the requiresignorseal=0, changed the local and group policies (following various comments found on the web), and added the machine account for samba (obviously, /etc/passwd too). I tried with samba 3.0.7, 3.0.10 and 3.0.13, Winxp with and without sp2, and win200
2008 Feb 08
1
Can I index a dataframe with a reference from/to a second dataframe?
Hello, I am unable to figure out how to code a new column in a data frame based on an existing column that matches a column in a reference data frame, in a relational-db fashion. I would like this to maintain a minimum set of reference tables that may be reused over several similar datasets. Specifically, I have two data frames as listed below, 'Bos' and 'tree.' For each case in
2003 Feb 07
1
Status of thread-safeness of libvorbis?
I have spent quite some hours in the archives of this mailinglist and read a few threads mainly by Jeff Squyres and Monty about making oggenc multithreaded. Those threads all are dated around January 2001, quite a time ago. For my work experience period I have to implement a parallel (threaded) ogg encoder (If this is possible, of course.) If it can be done, the code will be given back to the
2008 Apr 15
0
Same output in NUT as from APC tools?
Hello, Since I have now nearly all stuff running on my LH7A404 and now I am working on my DS80C411, I like to know, whether NUT show the APC UPS stats like the APC tools. Currently I do not know, HOW NUT triber the USB-Poert to get out the infos of the UPS. In theory I do send out only arround 5-60 lines of data which then NUT or any other programs must parse or something
2019 Oct 29
0
[PATCH v2 13/15] drm/amdgpu: Use mmu_range_insert instead of hmm_mirror
On 2019-10-28 4:10 p.m., Jason Gunthorpe wrote: > From: Jason Gunthorpe <jgg at mellanox.com> > > Remove the interval tree in the driver and rely on the tree maintained by > the mmu_notifier for delivering mmu_notifier invalidation callbacks. > > For some reason amdgpu has a very complicated arrangement where it tries > to prevent duplicate entries in the interval_tree,
2004 Jan 22
0
Odd Roaming Profile behaviour from a Samba PDC
Hey All.. I've been trying to track down the source of this problem for some time now and am hoping that someone may have seen this in the past... I picked up a system that has Samba V. 2.2.8a, acting as a PDC and serving roaming profiles to Two Windows 2K Terminal Servers running SP4. However, as a user attempts to login for the first time, the PDC authenticates the user and attempts to
2014 Nov 09
1
inbox parameter is ignored within location config for public namespaces?
Hello, i already asked a similiar question some month ago but still have no fix for my problem :-( This is my global location option in 10-mail.conf: mail_location = maildir:/home/vmail/%d/%n/MAILDIR:INBOX=/home/vmail/%d/%n/MAILDIR/.INBOX:INDEX=/home/vmail/%d/%n/INDEX/ This works fine, until i'm using a public namespace. The following namespace is a normal user too, every mail to bos at
2005 Jan 20
2
RE: how to manage Digium TDM04B outgoing calls
Then if let say instead of buying TDM400P cards I get this : Clipcomm CG-410 Quad FXO Gateway is it any good? They also sell Quad FXS Gateway. Clipcomm seems to sell the cheapest Quad FXO/FXS Gateways arround so I'm wondering if it's working fine with asterisk. I found this one too but at a lot higher price : AudioCodes MP108 8-Port FXO Analog Gateway (SIP) I need to buy a
2005 Dec 21
1
Bitrate problem
This is a common problem. Sound cards run at different clock speeds (but your difference seems kinda high). What I'd suggest is dropping silence packets once in a while. .a -----Original Message----- From: speex-dev-bounces@xiph.org [mailto:speex-dev-bounces@xiph.org] On Behalf Of Shantanu Gramsci Sent: Wednesday, December 21, 2005 2:05 PM To: speex-dev@xiph.org Subject: [Speex-dev] Bitrate
2019 Oct 29
0
[PATCH v2 13/15] drm/amdgpu: Use mmu_range_insert instead of hmm_mirror
Am 28.10.19 um 21:10 schrieb Jason Gunthorpe: > From: Jason Gunthorpe <jgg at mellanox.com> > > Remove the interval tree in the driver and rely on the tree maintained by > the mmu_notifier for delivering mmu_notifier invalidation callbacks. > > For some reason amdgpu has a very complicated arrangement where it tries > to prevent duplicate entries in the interval_tree,
2007 Nov 13
1
R: Query an Access database based on a date attribute
It seems that Access needs that you surround the dates with a # symbol. You probably need something like. res <- sqlQuery(channel, "select * from test_table where market = 'atl-bos' and competitor = 'delta' and dd = #2007-11-20#") Hope this helps, Stefano -----Messaggio originale----- Da: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org]Per
2007 Nov 12
2
Query an Access database based on a date attribute
Dear useRs, I would like to query an Access database through R based on a date attribute but, unfortunately, I fail to do so. For example, the table test_table of the test.mdb looks like: ID cd market competitor dd price 1 1 2007-11-20 atl-bos delta 2007-11-20 210 2 2 2007-11-20 atl-bos delta 2007-11-21 190 3 3 2007-11-20 atl-bos delta 2007-11-22
2019 Oct 28
2
[PATCH v2 13/15] drm/amdgpu: Use mmu_range_insert instead of hmm_mirror
From: Jason Gunthorpe <jgg at mellanox.com> Remove the interval tree in the driver and rely on the tree maintained by the mmu_notifier for delivering mmu_notifier invalidation callbacks. For some reason amdgpu has a very complicated arrangement where it tries to prevent duplicate entries in the interval_tree, this is not necessary, each amdgpu_bo can be its own stand alone entry.
2019 Oct 28
0
[PATCH v2 07/15] drm/radeon: use mmu_range_notifier_insert
From: Jason Gunthorpe <jgg at mellanox.com> The new API is an exact match for the needs of radeon. For some reason radeon tries to remove overlapping ranges from the interval tree, but interval trees (and mmu_range_notifier_insert) support overlapping ranges directly. Simply delete all this code. Since this driver is missing a invalidate_range_end callback, but still calls
2019 Oct 29
0
[PATCH v2 07/15] drm/radeon: use mmu_range_notifier_insert
Am 28.10.19 um 21:10 schrieb Jason Gunthorpe: > From: Jason Gunthorpe <jgg at mellanox.com> > > The new API is an exact match for the needs of radeon. > > For some reason radeon tries to remove overlapping ranges from the > interval tree, but interval trees (and mmu_range_notifier_insert) > support overlapping ranges directly. Simply delete all this code. > > Since
2001 Dec 15
1
reverse name lookup failed
Any time I try and setup a hosts allow option in the modules I get the following errors: I'm running this from the client. rsync -rv ws2743::test3 /pw/prog/BOS/stuff @ERROR: access denied to test3 from unknown (::3) rsync: connection unexpectedly closed (62 bytes read so far) rsync error: error in rsync protocol data stream (code 12) at io.c(139) I get the following from the log file on the
2004 Mar 03
2
Windows 2k SP4 Printing causes smbd to dump
I just upgraded to Samba 3.0.2a last week. about mid week I started seeing problems like this in printing to one printer only. Any Ideas what could be wrong?? The Client was Windows 2k sp 4 the server is LINUX 7.3, samba-3.0.2a, lpr Shane [2004/02/29 08:35:45, 0] lib/fault.c:fault_report(36) =============================================================== [2004/02/29 08:35:45, 0]
2005 Dec 21
0
Bitrate problem
Hello all, This is a bit off topic but I am sure many of you can answer it. I use speex and speex-wb in my VOIP application. With speex [at 8 KHz] bitrate is arround 30KBPS, including UDP,RTP headers. This is OK for me and I get good quality audio. Problem is, if call is made from a HIGH END machine [like P4 3.2 GHz with good soundcard] to a LOW END machine [like P3 550 MHz], high end pc sends
2007 Dec 01
0
[3.2.0pre1] net ads join fails with NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT
Hi List, i'm trying to join a Windows 2000 SP4 Domain (Native mode). I'm getting the following error while joining: # net ads join -U 'Administrator%password' Using short domain name -- W2K Could not connect to server dc.w2k.bitebene.org Connection failed: NT_STATUS_NOLOGON_WORKSTATION_TRUST_ACCOUNT Failed to verify membership in domain:
2005 Dec 21
0
Bitrate problem
Thanks all for your prompt reply. I agree with Alex. I think jitter buffer will have to drop packets if its input bitrate is higher than it is configured for. I never tried speex jitter buffer. What does it do when input bitrate is higher or lower ? As an alternate solution, I was thinking to play with directsound playrate [using SetFrequency()]. Has anyone used it to solve such problem? Any