similar to: warnings from 2.0.11

Displaying 20 results from an estimated 110 matches similar to: "warnings from 2.0.11"

2006 Jul 07
2
Probe ID changes
OK, I''ve been fritzing around with something I noticed last night, thinking that I understood what was going on, but now it''s getting confusing again. A system that has been running for a couple of months had a hole in the probe ID list near the end in the middle of the fbt probes. And then a couple of syscall probes were stuck in the hole. It looked like this: ... 40311
2006 Dec 04
2
XENBUS: Timeout connecting to device errors
We''ve been noticing a lot of these errors when booting VMs since we moved to 3.0.3 - I''ve traced this to the hotplug scripts in Dom0 taking >10s to run to completion and specifically the vif-bridge script taking >=9s to plug the vif into the s/w bridge on occasion - was wondering if anyone has any insight into why it might take this long. I added some instrumentation to
2006 Sep 13
2
[Bug 1227] sftp-server does not respect rlogin = false
http://bugzilla.mindrot.org/show_bug.cgi?id=1227 Summary: sftp-server does not respect rlogin = false Product: Portable OpenSSH Version: 4.3p2 Platform: PPC OS/Version: AIX Status: NEW Severity: normal Priority: P2 Component: sftp-server AssignedTo: bitbucket at mindrot.org ReportedBy: cris
2006 Sep 13
4
[Bug 1226] sftp-server does not respect rlogin = false
http://bugzilla.mindrot.org/show_bug.cgi?id=1226 Summary: sftp-server does not respect rlogin = false Product: Portable OpenSSH Version: 4.3p2 Platform: PPC OS/Version: AIX Status: NEW Severity: normal Priority: P2 Component: sftp-server AssignedTo: bitbucket at mindrot.org ReportedBy: cris
2007 Mar 21
0
5 commits - README libswfdec/jpeg libswfdec/swfdec_image.c
README | 2 +- libswfdec/jpeg/jpeg.c | 13 +++++++++++++ libswfdec/swfdec_image.c | 30 ++++++++++++++++++++++++++++-- 3 files changed, 42 insertions(+), 3 deletions(-) New commits: diff-tree bbf53a5c2060eadff2632674d2550a09719f41e1 (from parents) Merge: 0f3d2abf794d0f1f69a38c4532c4e273054f4696 b12efb820117b62a7150d13359499678e7dcf31d Author: Debian User
2010 May 14
2
mdbox error with 2.0.beta5
Running 2.0.beta5 on Mac OS X with HFS+J, I often see this error in the log: Fri May 14 12:25:59 gromit dovecot[5466]: imap(pid 8101 user joe): Error: mdbox /var/spool/imap/dovecot/mail/mailboxes/INBOX/Foobar/dbox-Mails: map uidvalidity mismatch (1273852899 vs 1273853949) Fri May 14 12:25:59 gromit dovecot[5466]: imap(pid 8101 user joe): Disconnected: Internal error occurred. Refer to server log
2012 Aug 22
3
Libvirt Seg Fault when compiling either 0.9.13 or 0.10.0-rc1
Hi all, I am trying to install a version of Libvirt that will be compatible with qemu-kvm-1.1 but I cannot seem to get Libvirt to compile. During the make portion of the install I get the following error: ... make[4]: Entering directory `/home/shawn/libvirt-0.10.0/docs' Generating 404.html.tmp /bin/bash: line 5: 59204 Segmentation fault /usr/bin/xsltproc --stringparam pagename $name
2007 Feb 10
0
2 commits - libswfdec/jpeg
libswfdec/jpeg/jpeg_rgb_decoder.c | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) New commits: diff-tree f4932b1cc75a7e82fa6af103371579096454eb8e (from parents) Merge: 4656cc03b8ae5802af707fc3a4efbba9d1c2db0a bca06937c45d0d89271681e0dbd3a2fbeeaa9dd0 Author: Debian User <ds@gromit.(none)> Date: Sat Feb 10 18:12:52 2007 -0800 Merge branch 'master' of
2020 Feb 03
0
Re: USB devices with same vendor:product id
Hi Maxime, Quoting Maxime Accadia (2020-02-03 14:20:47) > Hi, > > We have a VM with several USB devices attached. Everything works well, > but sometimes, after a reboot of the host, some usb device get a > different bus/device number and that prevent the reboot of the VM : > ... > Any idea on how to handle this case ? > > We were thinking about using udev, but it
2008 Oct 29
1
Panic: pop3-login: file sasl-server.c: line 75 (authenticate_callback): assertion failed: (client->auth_request == request)
Running Dovecot-1.1.5, I see this assertion failure: Panic: pop3-login: file sasl-server.c: line 75 (authenticate_callback): assertion failed: (client->auth_request == request) Error: pop3-login: Raw backtrace: 2 pop3-login 0x000000010000ac41 default_fatal_finish + 41 -> 3 pop3-login 0x000000010000acac i_syslog_fatal_handler +
2019 Apr 13
1
Re: virt-v2v slow when running inside the VM
I eliminated software-bridge( using iperf3 bandwidth/latency on the host and guest was almost the same) and disk write(using qemu-img convert src dest file both on the host and guestvm was comprable) being the issue. Next I profiled both sshd and qemu-img during the conversion phase using bpftools (profile and tcptop) and this is what i see. Time (min) File Size (KB) sshd RX (KB) tcptop
2006 May 30
2
Plugin install using version
Hallo, after I found an bug item for my active_rbac problem on windows using ruby one-click last stable (1.8.2 I guess), there was the rant to downgrade to engines-1.1.1. I successfully installed engines-1.1.2 and removed it by ruby script\plugin remove engines I tried ruby script\plugin install engines-1.1.1 in the gem way of handling versions but that didn''t worked. Any idea
2006 Apr 07
4
How to generate mapping with migration
Hi there, I''ve tried to add a m:n mapping table using the migration mechanism. ruby script\generate migration add_categories_notes_mapping and filled the migration file with: class AddNotesCategoriesMapping < ActiveRecord::Migration def self.up create_table :categories_notes do |t| t.column :category_id, :integer, :null=>false t.column :note_id, :integer,
2006 Apr 09
1
select helper question
Hi there, I try to develop a medical application using ruby on rails. There are many categories which can contain subcategories. I defined the model like this: class Category < ActiveRecord::Base has_and_belongs_to_many :notes belongs_to :parent_category, :class_name=>"Category", :foreign_key=>"category_id" has_many :sub_categories,
2011 Jul 02
0
Project Zoo
In the beginning, sorry for my bad English... I've a little question, if wine supports game Wallace and Gromit Project Zoo? Beacouse this game don't working...
2010 Jun 10
1
null errors from 2.0.beta5
When my dovecot-2.0.beta5 auth module logs a 552-byte debug message, the message is split into two lines and also a null error message: Wed Jun 9 23:44:29 gromit dovecot[58892]: auth: Error: I think this has to do with the use of PIPE_BUF (512) sized buffers in the logging code, and the !line_is_ok() case in i_failure_parse_line(). Could you please remove the null error message? Just a
1998 May 26
1
netlogon error?
Greetings all, I'm running a RedHat 5.0 (kernel 2.0.32) Linux box with samba 1.9.18p7 and I'm having a problem with my netlogon share. NT domain logons are working just fine, but I keep getting the following message in /var/log/messages, repeated every day for every user logging in: May 26 09:08:09 gromit PAM_pwdb[23002]: 1 authentication failure; (uid=0) -> [username] for samba
2007 Apr 17
0
8 commits - configure.ac doc/Makefile.am libswfdec/jpeg libswfdec/swfdec_debug.h libswfdec/swfdec_image.c
configure.ac | 20 doc/Makefile.am | 2 libswfdec/jpeg/Makefile.am | 28 libswfdec/jpeg/bits.h | 120 --- libswfdec/jpeg/jpeg.c | 1129 +++++++++++++++++++++---------------- libswfdec/jpeg/jpeg.h | 58 + libswfdec/jpeg/jpeg_bits.c | 154 +++++ libswfdec/jpeg/jpeg_bits.h | 32 +
2005 Apr 12
1
test-67 index issues.
I've been seeing a lot of these in my logs: dovecot: Apr 11 17:48:24 Error: IMAP(fenner): Lost transaction log file /home/f/fenner/Maildir/dovecot.index.log seq 3 dovecot: Apr 11 17:48:24 Error: IMAP(fenner): Lost transaction log file /home/f/fenner/Maildir/dovecot.index.log seq 3 dovecot: Apr 11 17:48:24 Error: IMAP(fenner): Lost transaction log file /home/f/fenner/Maildir/dovecot.index.log
2007 Feb 27
2
Dovecot rc23 and rc24 freeze after authentication
I had our production systems running on rc23, however we ran into problems when the server was under heavy load. Eventually, the server would begin to freeze all imap connection after authentication (according to the logs). A user would connect, authentication would succeed, and then the connection would sit until timing out. No error logs were produced. Upgrading to rc24 did not