similar to: Old application very slow

Displaying 20 results from an estimated 1000 matches similar to: "Old application very slow"

2013 Dec 17
1
Samba classicupgrade problem
Hi, I'm practising to do a classicupgrade of my samba3 domain. When I run the upgrade, I get this error : unpack_nt_owners: owner sid mapped to uid 0 idmapping sid_to_xid failed for id[0]=S-1-5-32-544: NT_STATUS_NONE_MAPPED unpack_nt_owners: unable to validate group sid. set_nt_acl_no_snum: fset_nt_acl returned NT_STATUS_INVALID_OWNER. ERROR(runtime): uncaught exception - (-1073741734,
2008 Nov 20
0
strange problem with kernel oplocks
Hello! Recently I moved some file shares from old server to new one with CentOS 5.2 and samba 3.0.32. And yesterday we found that antivirus (nod32 ) installed on users computers do strange thing- it's often locks and locks files. Here is part of log with debug level = 10 [2008/11/19 11:32:28, 3] smbd/process.c:switch_message(927)
2005 May 20
0
Migrating from NT4 questions
Hi, I'm preparing to do a migration, but I'm having some doubts. I installed 3.0.14a (from/for Suse) and I successfully joined the domain. When I did a "net rpc vampire -S ..." there were some things that worry me : ... Creating account: Administrator [2005/05/17 12:35:31, 0] passdb/pdb_tdb.c:tdbsam_tdbopen(195) Unable to open/create TDB passwd [2005/05/17 12:35:31, 0]
2004 Apr 20
0
samba locking problem
Hi, we have a strange samba locking problem with version 3.0. Sometimes user only get a read only access to files. This happens with different users on different clients. Unix permissions are OK. I have realy no idea. Can you help ? Thanx Peter Huber -------------- next part -------------- [2004/03/02 15:03:56, 5] smbd/uid.c:change_to_root_user(217) change_to_root_user: now uid=(0,0)
2004 Jul 21
2
strange DOS-Error 58
Hi, based on Bart Lagerweij's ( www.nu2.nu ) bootdisk, I've created a small DOS system that users can start by booting from network ( PXE ). The system is configured to map a network drive from a Suse 9.0 Pro / Samba server with various tools on it. The connection is anonymous. Until recently everything worked fine but suddenly there are strange errors: When I try to launch an EXE from
1999 May 28
2
Help! problems with Arcserve. Can someone decrypt the logs ?
Hi everyone, We use samba 2.0.4 and are very glad of it. However, recently I had to add a backup facility on our network, so we plan to purchase Arcserve IT for NT, in order to backup our servers. We are using mainly 3 Linux servers and 1 NT server, which runs the backup service. However, as Itried to add a simple share on the file server to enable backup, later I encounter problems with
2019 Jun 05
0
[PATCH libnbd 1/4] lib: Move nbd_aio_is_* function impls to separate source file.
Simple code motion. --- lib/Makefile.am | 1 + lib/aio.c | 78 ----------------------------------- lib/is-state.c | 105 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 106 insertions(+), 78 deletions(-) diff --git a/lib/Makefile.am b/lib/Makefile.am index 312545e..72d2d0b 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -42,6 +42,7 @@ libnbd_la_SOURCES = \
2005 Apr 15
0
Multi-user databases (DOS application) in WIndows XP and Windows 2k file locking problem
Hello all! I discover a strange thing. We use and develop DOS financial accounting application, written on Xbase (formerly known as Clipper). This application agressively uses of file sharing and locking (byte-range and all possible for DOS combinations), creates and uses huge amount of index (NTX) and Dbase III (DBF) files on network shared resource. Network clients are Windows 98se,
2019 Jun 05
0
[PATCH libnbd 2/4] lib: Split nbd_aio_is_* functions into internal.
For each nbd_(unlocked_)?aio_is_* function, split it into an internal function that tests the state and a public visible API function. For calls within the library, use the internal function. This is simple refactoring. As a side effect this fixes a race condition identified by Eric Blake: Thread A Thread B (in a call that holds h->lock) (calling nbd_aio_pread)
2019 Jun 08
0
[PATCH libnbd v3] lib: Atomically update h->state when leaving the locked region.
Split h->state into: - h->public_state = the state on entry to the locked region This is also the atomically, publicly visible state. - h->state = the real current state of the handle When we leave the locked region we update h->public_state with h->state, so that from outside the lock the handle appears to move atomically from its previous state to the final state without
2019 Jun 05
1
[PATCH libnbd v2] lib: Atomically update h->state when leaving the locked region.
Split h->state into: - h->public_state = the state on entry to the locked region This is also the atomicly, publicly visible state. - h->state = the real current state of the handle When we leave the locked region we update h->public_state with h->state, so that from outside the lock the handle appears to move atomically from its previous state to the final state without
2006 Jul 05
1
File attribute problem 3.0.23
We have a problem with an application that clears the archive bit before writing and sets it after writing. The latter one doesn't succeed if the writer != file owner. Dos filemode is enabled and manually setting is fine. Samba is 3.0.23RC3. Client is XP/SP2. Seems to loose the connection before setting the bit and a new smbd is spawn. Daniel [2006/07/05 09:32:36, 10]
2008 Jul 22
1
tklistbox and extracting selection to R
Dear experts, I am trying to understand why is it that when I paste (into the R console) the following code to select an option from a list: require(tcltk) tt<-tktoplevel() tl<-tklistbox(tt,height=ntx,selectmode="single",background="white") tkgrid(tklabel(tt,text="Select the legend of" )) tkgrid(tl) treatments<<-levels.tx for(i in
2004 Aug 30
3
cannot access files after update samba 3.0.5 -> 3.0.6 (Redhat 6.2)
Redhat 6.2 kernel 2.2.14-12 Samba 3.0.6 compiled with ./configure --prefix=/usr/local/samba --localstatedir=/var/log/samba --with-lockdir=/var/lock/samba --with-privatedir=/etc/rc-abas.d --with-configdir=/etc/rc-abas.d --enable-debug I can list directories and write files on a samba share but cannot read files. This happens with Windows XP client or smbclient. After downgrading to 3.0.5 samba
2019 Jun 05
0
[PATCH libnbd 3/4] lib: Add set_state / get_state macros.
All accesses to the h->state field are redirected through these macros (except when we create the handle). This is simple refactoring. --- generator/generator | 18 +++++++++--------- lib/connect.c | 10 +++++----- lib/disconnect.c | 8 ++++---- lib/internal.h | 3 +++ lib/is-state.c | 12 ++++++------ lib/rw.c | 4 ++-- 6 files changed, 29 insertions(+), 26
2003 Sep 04
0
Weird samba problems / more info
I have a level 10 debug of the smbd/oplock process_local_message problem but can still not figure out what causes the unknown UDP message command code. I checked the source but could only see that this is an invalid opcode command. Anyone a clue what is happening here ? Might wrong opcode commands crash samba ? Peter [2003/09/04 11:50:12, 3] smbd/process.c:switch_message(685) switch
2006 Jul 18
0
Access denied/WERR_ACCESS_DENIED on Printer Properties/rpcclient
hello to everyone, I'm experiencing an annyoing problem with a shared printer (managed by samba 3.0.20b-3.4 on Linux - SuSe). The problem is that I cannot modify any of the printer settings (e.g. Location, etc. and of course the driver to use). I've successfully uploaded the correct driver with the APW in the print$ share. The printer data/settings can't be modified by rpcclient too.
2001 Dec 13
0
smpassswd unable to join domain.
Hello, I have been trying for 3 days now to get smbpasswd to join my existing NT 4.0 domain, without success. The command I run is "smbpasswd -j CCH -r chrivdc01 -U knoxth" (yes, userid knoxth has Administrative access). No luck. I've included the output of adding -D 3 to the options line. Can anyone help me figure out what is happening?? Thanks! Tom ----- Forwarded by Thomas
2006 Jan 03
2
samba, cups and cupsaddsmb
Hallo, I have an old samba-cups printserver (debian woody), connected to the domain through winbind,?that I must replace now. I installed a new samba-cups server on a sarge machine. Windbind works, I can get all users and groups. I copied the generic windows postscript driver files as in cupsaddsmb-manpage described to /usr/share/cups/drivers (tried also adobe drivers) Also tried the same
2000 Apr 06
0
smbclient -L
I have a samba 2.0.6 server. It's running domain security with NT 4.0 Sp 5 as a PDC. That all works great. When I run smbclient -L against 95,98,or other samba servers I get a list of shares. However against NT4.0 (workstation and server) I get no share listing at all. I can retrieve browse lists. I am suspcious here of needing to guest account something somewhere (local NT domain