Displaying 15 results from an estimated 15 matches similar to: "Samba PDC issue"
2008 Nov 19
1
Installing Primary Domain Controller in Solaris 10
Hi List,
Can anyone give me some links of how to's to install samba in solaris 10
/\
Tarak
Add more friends to your messenger and enjoy! Go to http://messenger.yahoo.com/invite/
2008 Feb 05
1
Map Linux Drive to Windows
Hi List,
I have a Samba PDC, and i want another file server to be
installed , which user will map their home directory without
joining,[ means i don't this server will be a another PDC, it'll be
personal file server ]
here is my configuration
[global]
workgroup = LK
server string = Samba Server Version %v
log file = /var/log/samba/log.%m
max log
2019 Apr 24
1
Opus Requirement for embedded Application
Hello everyone,
I tried integrating opus middleware on an STM32L4 microcontroller based
project. First thing I noticed is the considerable amount of memory
allocated by the opus_encoder_create function (nearly 40 kbytes if I
recall). After modifying my project's memory setting (mainly heap size
adjustments), I could bypass some aspects of this problems. What I'm
noticing now is the time
2008 Feb 05
1
Map Linux Driving To Windows
Hi List,
I have a Samba PDC, and i want another file server to be
installed , which user will map their home directory without
joining,[ means i don't this server will be a another PDC, it'll be
personal file server ]
here is my configuration
[global]
workgroup = LK
server string = Samba Server Version %v
log file = /var/log/samba/log.%m
max log
2008 Nov 27
1
User's Profile stored in a NFS share
Hi List,
I want to store users Profile in a NFS mount, but the problem is after
joining the client to the domain It's not creating the corresponding
folder structure for roaming profiles,
Here is my smb.conf under Debian
[global]
workgroup = LOCAL
netbios name = LOCAL-DOMAIN
server string = %h server (debian, DC)
passdb backend = tdbsam
security = user
username map =
2001 Nov 14
2
BASA GELEN CEKiLiR DEMEYiN..
I Don't speak the language it is in, but is this spam?
-----Original Message-----
From: samba-admin@lists.samba.org [mailto:samba-admin@lists.samba.org]
On Behalf Of SAGLAM SiGORTA
Sent: Wednesday, November 14, 2001 10:40 PM
To: samba@samba.org
Subject: BASA GELEN CEKiLiR DEMEYiN..
Importance: High
SA?LAM S?GORTA ARACILIK H?ZMETLER?
Merhabalar,
Size ?ncelikle firmam?z? tan?tarak
2009 Apr 21
2
problem with sqlite3....
Hi all,
I am relatively new to ruby and RoR. I created a simple rails proj named
foo by giving command
-> rails foo --database=sqlite3
It created a new rails proj.. So in that I created a simple db class
named user by using the below command
-> ruby script/generate model user
so in db/migrate I got a file named 20090421211825_create_users.rb
created.
and in app/models : user.rb got
2009 Oct 26
1
[LLVMdev] RegAllocSimple doesn't work
I tried both the most recent version of "simple" register allocation and
the one from last August, and neither seems to work correctly (they run,
but produce bad output). I used them to compile an old version of the
Unix "replace" utility (source code attached). Here's how I created the
executable:
llvm-gcc -emit-llvm -O0 -c replace.c -o replace.bc
opt -mem2reg
2013 Mar 05
1
[LLVMdev] Cross-Compiling libc++ using newlib/Clang based Toolchain.
Hi There,
I am trying to build a cross-compiler for an architecture with MIPS like
ISA. To begin with, I built a toolchain for MIPSr2 which uses: Clang-3.1
for preprocessing, compiling, optimizing; Binutils-2.22 for assembling and
linking; Newlib-1.20.0 as the standard C library implementation. I modified
the Clang Driver to use the correct binutils tools and linker scripts.
Compiling Newlib with
2003 Jul 14
11
Getting started
Hi,
I am a total newbie to asterisk and can't find any useful documentation
for asterisk...how are people supposed to get started?
I'd like to know, how I create User Accounts, so that a SIP UA can login
into asterisk with a password, for example.
2004 Aug 06
0
[fwd] BOUNCE icecast@xiph.org: Admin request: /^subject:\s*help\b/i (from: owner-icecast@xiph.org)
Sorry, majordomo saw 'help' in the subject and bounced it.
Monty
----- Forwarded message from owner-icecast@xiph.org -----
Delivery-Date: Tue Jul 17 14:11:05 2001
To: owner-icecast@xiph.org
From: owner-icecast@xiph.org
Subject: BOUNCE icecast@xiph.org: Admin request: /^subject:\s*help\b/i
>From owner-icecast@xiph.org Tue Jul 17 10:07:03 2001
Return-Path:
2009 Apr 29
0
creating xml in controller and send to Web Service
Hi All,
I have a question regarding creating xml in controller class.. I am
designing a rails application, which is a client for java REST based Web
services. in my rails client part, in my view, I have a simple
index.html.erb which consists of 2 strings ''source'' , ''destination'' . I
will take the input from user and send those to controller class. with
those 2
2004 Jan 23
0
Debian add user etc scripts & usrmgr.exe
Hi All,
I have just joined this list, and this is my first post - so please bear
with me.
I am running debian testing (sarge) with a 2.4.23-1-686 kernel, and a self
compiled samba-3.0.0final (--with-quotas), deployed from self built *.debs.
It is running as a PDC (smb.conf at bottom of post), and I have successfully
mapped "Domain Users" to unixgroup users, "Domain Admins"
2009 Oct 22
0
[LLVMdev] request for help writing a register allocator
Hi Susan,
> But this doesn't seem to be happening; the stores to memory are there but
> the loads are not.
>
> Any ideas what's going wrong?
Are you using VirtRegMap::addSpillPoint and VirtRegMap::addRestorePoint ? If
not you may need to add calls to them to let the rewriter know where to
insert the loads/stores.
> If not, any advice on how to generate the loads
2009 Oct 22
4
[LLVMdev] request for help writing a register allocator
I found the problem! My generated code is spilling correctly but is not
reloading at all. For example, if the original code has the equivalent of
this (where %1024 is a virtual reg):
%1024 = xxx
...
yyy = %1024
and I find no physical register for %1024, then I assign it to physical
register %edi and to a stackslot. That creates code like this:
%edi = xxx
store from %edi to the