similar to: 2.2.7a breaks on ATM stack on AIX 4.3

Displaying 20 results from an estimated 3000 matches similar to: "2.2.7a breaks on ATM stack on AIX 4.3"

2004 Jun 07
1
not working : valid users = @"DOM+USER"
Hi, I have Samba 3.0.4 on Solaris 9, recent patches applied. Samba is integrated in domain (security = domain). I have compiled and configured winbind, but not pam and no ldap. Ncsd is stopped. Winbind works OK, I can connect to share and users get mapped on-the-fly to UNIX uids and gids in the ranges specified in smb.conf. My config is included below with some tweaks to protect the innocent.
2003 Feb 28
0
Samba doesn't free network resource with XP clients
Hi all, We are having a difficult time with Samba 2.2.7a on AIX. Since XP clients appeared, we see growing leaked resources on our ATM network adapter buffers. Stopping Samba frees all leaked buffers. The short-term fix is to stop/start samba in a cron job. Hideous quirk at best. The local network admin traced the SMB exchanges, and found that some applications don't generate "SMB
2003 Mar 09
0
staled connections between Samba and password server
Hi all, I'm progressing through an issue we have at a large customer site. We have slowly eliminated the basic issues, but the main problem remain : the Samba server stacks up staled connections/sockets up to max, until the service breaks. A restart flush the staled connections and Samba works again. platform : IBM 4-cpu server runing AIX 4.3 Samba : 2.2.7a compiled with gcc 2.95.3
2006 Aug 11
3
IMAP4rev1 broken with evolution
Hi, I'm running 1.0rc6 on Solaris/SPARC, compiled myself against openssl. Client is Evolution 2.6.2 on my gentoo x86 laptop. As Dovecot is not yet productive, we run it parallel to UW-imap, on other ports. I use TLS. If I configure my evolution client with server-type IMAP, everything works fine. However, dovecot claims IMAP4rev1 support. However, when I set server-type to IMAP4rev1 in
2007 Feb 12
5
dead bodies stacking up in Drafts folder
Hi, Setup : Apple Mail 2.1.1 (752.3) on Intel MacBook Pro and Dovecot 1.0rc22 on Solaris 9/SPARC. I use IMAP/TLS. Problem : mails are stacking up in the Drafts folder. When I start writing a mail, it appears in the drafts folder, and usually disappear as desired when I hit "Send". It then appear in the "Sent" folder. Sometimes, a draft versions stays in
2008 May 07
0
got stuck in setting up samba to linux box through putty tunneling
I read the posting below. but I have not figured out why my vista pc won't work. here is what I did - 1. I disable window file sharing; 2. in putty, i add a tunnel: ???? source port: 445 ???? destination port: my linux box IP: 139 ? ?I forward 80. i see http://127.0.0.1 yields my web server's start page. 3 i also use secpol.msc and change local policies -> security options. By default
2013 Feb 06
0
inverse_of breaks for unsaved child associations during save of parent
I''m willing to write a patch for this issue: https://github.com/rails/rails/issues/8893 But want to confirm that the new behavior makes sense before I make the effort. Essentially if you have an unsaved parent and child, and the parent''s association to the child has an inverse_of declared on it. When the parent gets saved, it updates the foreign key on the child, and this
2008 May 07
1
two questions
1. I just found out port 445 and 139 are both blocked by my ISP (cablevision). i use Vista Ultimate. Is there a way to solve my problem? see my email below. 2. I am a new user of this mailing list. how can i read the postings and reply to a post? it does not seem allow me to reply to a post in your archive page. thanks, Dan ---------------------------------- I read the posting below. but I
2007 Mar 01
1
Thunderbird : open() failed with index file /home/XYZ/mail/.imap/Trash/dovecot.index: Not a directory
Hi, almost everything is in the subject. Server : Solaris 9 /SPARC, Dovecot 1.0.rc22 Client : Mac OS X 10.4.8 (8L2127) Kernel-Version: Darwin 8.8.1 Thunderbird is: german Version 1.5.0.9 (20061207) With OS X Mail.app, message deletion works. With Thunderbird, a warning popup appear on the desktop. English translation is about "command failed, internal error occurred".
2006 Sep 29
1
need %u parameter for lpq command
Hi, I'm developing a script for "lpq command". It would need a %U option so that the script can know which user asked for the job list. Currently, lpq command seem to only serve %p. Is there any hope to get %U ? I see that my script run as root, so I assume the calling user info is lost ? TIA, Charles -- Charles Bueche <charles@bueche.ch> sand, snow, wave, wind and net
2006 Sep 13
1
sizing a print server for 10'000 users
Hi, I'm building a print-to-PDF queue system for a customer. A Samba queue pass jobs to Ghostscript. The PDF output is then provided back to the user (by email or web URL). My question is on server sizing. It will be on Linux (SLES 9) and will only host the print queue, nothing else. Samba will be joined in the ADS domain, so I can recognize the submitting user (%u). Every Windows client
2008 Apr 23
1
Validation dependent on unsaved parent
I''m having trouble with a validation that depends on an attribute of a belongs_to parent. If the child is added to an unsaved parent (parent.children << new child), the has_many collection parent.children includes the unsaved child. However the belongs_to attribute child.parent appears to be nil until the parent has been saved. Without access to the parent attributes, the validation
2008 Apr 28
1
OSX R GUI visual interface tweak (PR#11318)
Full_Name: Ana Nelson Version: R 2.7.0 GUI 1.24 (5102) OS: OSX 10.5.2 Submission from: (NULL) (213.94.201.89) The R GUI close button has a solid circle. Screenshot is here: http://skitch.com/ananelson/kmxj/r-console On OSX this indicates that there are unsaved changes pending. Please see page 201 of the Apple Human Interface Guidelines (version 2008-03-11):
2006 Mar 13
2
relationship woes
I have two tables: class PgmUpdate < ActiveRecord::Base has_many :pgm_visits, :foreign_key => ''pgm_update_fk'' ... and class PgmVisit < ActiveRecord::Base belongs_to :pgm_update, :foreign_key => ''pgm_update_fk'', :dependent => true ... According to the has_many docs (http://api.rubyonrails.org/classes/
2016 Dec 30
0
[PATCH net-next V3 3/3] tun: rx batching
We can only process 1 packet at one time during sendmsg(). This often lead bad cache utilization under heavy load. So this patch tries to do some batching during rx before submitting them to host network stack. This is done through accepting MSG_MORE as a hint from sendmsg() caller, if it was set, batch the packet temporarily in a linked list and submit them all once MSG_MORE were cleared. Tests
2016 Dec 28
0
[PATCH net-next V2 3/3] tun: rx batching
We can only process 1 packet at one time during sendmsg(). This often lead bad cache utilization under heavy load. So this patch tries to do some batching during rx before submitting them to host network stack. This is done through accepting MSG_MORE as a hint from sendmsg() caller, if it was set, batch the packet temporarily in a linked list and submit them all once MSG_MORE were cleared. Tests
2017 Jan 18
0
[PATCH net-next V5 3/3] tun: rx batching
We can only process 1 packet at one time during sendmsg(). This often lead bad cache utilization under heavy load. So this patch tries to do some batching during rx before submitting them to host network stack. This is done through accepting MSG_MORE as a hint from sendmsg() caller, if it was set, batch the packet temporarily in a linked list and submit them all once MSG_MORE were cleared. Tests
2017 Jan 06
0
[PATCH V4 net-next 3/3] tun: rx batching
We can only process 1 packet at one time during sendmsg(). This often lead bad cache utilization under heavy load. So this patch tries to do some batching during rx before submitting them to host network stack. This is done through accepting MSG_MORE as a hint from sendmsg() caller, if it was set, batch the packet temporarily in a linked list and submit them all once MSG_MORE were cleared. Tests
2006 Oct 17
2
Inaccurate CDRs
Hello, i have call time irregularites in my asterisk CDR. I a currently using a mysqly backent to save CDR records and use this to generate bills at the end of each month. However, my users are complaining that they gety charged for even uncompleted calls (i.e. calls they make whaich have already be setup but canclled). i have noticed that only 'AWNSERED' and 'Busy' show up in my
2005 Apr 04
0
problem about initramfs
dear friend. i have mips board with BCM sibyte 1125CPU(use board sibyte 1250 swarm.) i use linux-kernel 2.6.12-rc1 download from linux-mips.com i use kernel 2.4.26 before this time, it's work ok at 2.4.26 with Ramdisk-busybox when i try to use ramdisk in 2.6.1x version, i found that ramdisk i not exist, i don't known how to use it again(i had try a patch for get ramdisk init to