similar to: Samba File Sharing- Some Doubts?

Displaying 20 results from an estimated 10000 matches similar to: "Samba File Sharing- Some Doubts?"

2004 Dec 03
8
smbd hung processes - Samba 3.0.7
We've seen Samba crash and burn twice in the last 48 hours - it just started happening, and we have no idea what might be causing it. I'm hoping that someone will recognize this problem. Platform: we are running RedHat Enterprise Server, with Samba 3.0.7. We're using security=domain in an old-style NT4 domain environment. The symptom that we're seeing is that the number of
2000 Nov 15
2
Windows 2000 Passwords
Hello, My question is the same as "Windows 98 Passwords" in your Samba FAQ replacing Windows 98 with Windows 2000. What is the registry to be modified to enable Plain Text Password with Windows 2000 ? I tried HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VxD\VNETSUP as in Windows 98 and HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Rdr\Parameters as in NT4 but none work.
2007 Feb 19
5
Structure of the Xen source code
Structure of the Xen source code hi all, I installed Xen on my Gentoo machine successfully from source. Now i am going through the code. instead of banging aimlessly for a week or so i thought i should ask the mailing list the following small doubts. I noticed that following directories are there in my xen-3.0.3_0-src directories. 1. linux-2.6.-xen-sparse 2. pristine-linux-2.6.16.29 3.
2007 Aug 04
2
[Q]lguest git repo location?
HI Rusty, I wanted to play with lguest. As it was recently merge upstream by Linus, i took a look and the location looks like driver/lguest*. Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from upstream somehow :-/.[duh... says "Cannot get the repository state from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"]. i do not know what i am doing
2007 Aug 04
2
[Q]lguest git repo location?
HI Rusty, I wanted to play with lguest. As it was recently merge upstream by Linus, i took a look and the location looks like driver/lguest*. Unfortunately my local git repo cannot get the 2.6.23-rc2 changes from upstream somehow :-/.[duh... says "Cannot get the repository state from http://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git"]. i do not know what i am doing
2019 Jul 27
2
Help on Optimization Remarks
Dear llvm-dev community, I am trying to analyze the optimization remarks generated through clang using -fsave-optimization-remark with -O3. --- !Analysis Pass: loop-vectorize Name: CFGNotUnderstood DebugLoc: { File: c-ray-mt.c, Line: 177, Column: 2 } Function: main Args: - String: 'loop not vectorized: ' - String: loop control flow is not understood by vectorizer I tried to look for
2002 Jun 06
3
admin users' file is owned by root
Hi there, I just found that if an user is assigned in the "admin users", and if the user grab a file from window to samba share, the file will be owned by root from unix view. I am believing this is a bug. The samba version I am using is 2.2.4. Weixing Hao (631) 858-6341 Forest Labs -------------- next part -------------- HTML attachment scrubbed and removed
2006 May 01
5
Adding classes without script\generate
Can I add classes to a rails application manually i.e without using script generate Model/Controller? The reason I am asking, I added a class by putting it in the controller class. I can access the class and its method from command-line (irb), but when I try to instantiate it in another controller, I get "uninitialized constant" error. If I try using script\generate Model
2006 May 01
7
where should I put my hand-coded classes
I have a class that is hand-coded (not generated using generator). Is there a preferred location for the file. app/components ? does it matter? Thanks, -- Posted via http://www.ruby-forum.com/.
2010 Oct 07
2
[LLVMdev] libcpu with m88k
Hi, I recently downloaded and installed the libcpu package (from http://libcpu.org ) that uses llvm as the backend on my linux machine. I have a piece of Motorola 88100 code (essentially the output of the 176.gcc benchmark from SPEC CPU 2000) that I am trying to run using this emulator, but I am running into errors when trying to run it. Has anyone been able to successfully use the m88k
2007 Aug 18
1
doubt about string comparison
I have two large arrays of strings array1 with 180000 names and array2 with 24000 names ,I want to find the common names in both of them. My arrays are for example Array1 Array2 GAP4 HIST1B-histamine.... MFG12 SNRPD-signal induced... CFH1A
2007 Mar 12
14
paging mechanism clarification
paging mechanism clarification Hi All, The Xen uses 2 level Paging Mechanism to resolve the Virtual Addresses into frame numbers from domU.The first level is taken care by the MMU for the domU i.e translation from virtual address to the physical address just like normal paging mechanism. The second level of translation is done by the Xen hypervisor.It translates the pseduo physical address
2006 Apr 22
3
Ajax call not being made on a Sortable list
Hi, I am creating a sortable list using this code: <%= sortable_element("fields_list", :url => { :action => "order", :id => @fields_list }) %> it creates a sortable and I can move elements up and down, but it is not making any call to the "order" method. I do not see any log activity in the development log nor do I see any errors there. The
2018 Nov 17
2
Finding which optimization passes have failed
Dear LLVM community, How to find out which optimization passes have been performed and which passes have failed? Regards, Pradeep Kumar -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20181117/20c7ad68/attachment.html>
2011 May 02
32
[PATCH] blkback: Fix block I/O latency issue
In blkback driver, after I/O requests are submitted to Dom-0 block I/O subsystem, blkback goes to ''sleep'' effectively without letting blkfront know about it (req_event isn''t set appropriately). Hence blkfront doesn''t notify blkback when it submits a new I/O thus delaying the ''dispatch'' of the new I/O to Dom-0 block I/O subsystem. The new I/O is
2006 May 01
3
Using Classes in Rails
I am a beginner so please excuse me, if i am doing something totally wrong. I have created a class using "wsdl2ruby.rb" and here is what it looks like: class ServiceSoap < ::SOAP::RPC::Driver DefaultEndpointUrl = "http://balrog/services/SearchWorker/service.asmx" MappingRegistry = ::SOAP::Mapping::Registry.new Methods = [ ... -- Posted via
2010 Oct 07
0
[LLVMdev] libcpu with m88k
What kinds of errors are you getting? On Thu, Oct 7, 2010 at 9:36 AM, Pradeep Ramachandran <pramach2 at uiuc.edu> wrote: > Hi, > I recently downloaded and installed the libcpu package (from http://libcpu.org > ) that uses llvm as the backend on my linux machine. I have a piece of > Motorola 88100 code (essentially the output of the 176.gcc benchmark > from SPEC CPU 2000) that
2016 Oct 31
5
Samba domain join issues
Hi All, I am having an issue with Samba joining an active directory domain. When I run 'net ads join -S mydomaincontrollerFQDN -U adminuser command I get this error: Failed to join domain: failed to lookup DC info for domain 'MYDOMAIN.COM' over rpc: Logon failure The credentials we entered are for sure correct but if we see our domain controller it count it
2012 Mar 05
2
Unable to connect qemu:///system on CentOS 6.2 X86_64
Dear all: I ust installed Fedora16Fedora16 X86_64 on my new machine, and then I ran the commands as follows(ran as root): yum install qemu-kvm yum install qemu yum install libvirt yum install virt-manager then I started the libvirtd as follow: /etc/init.d/lbvirtd start So , it ran well. However, after a few days , when I ran the command "virt-manager" , it showed as in the
2004 Dec 24
4
Connection reset by peer
Hi, We continuously see these errors in our logs. I've done some searches on this but nothing seems to point to anything specific. Any ideas? -John Dec 23 20:14:41 valhalla smbd[3574]: [2004/12/23 20:14:41, 0] lib/util_sock.c:get_peer_addr(1000) Dec 23 20:14:41 valhalla smbd[3574]: getpeername failed. Error was Transport endpoint is not connected Dec 23 20:14:41 valhalla