[Bug 268574] Re: update-notifier-kde.py crashed with ImportError in ()

2009-04-10 Thread Kirk Wolff
Samething here, Kubuntu 9.04 Beta 1 32 bit nvidia propritary driver

-- 
update-notifier-kde.py crashed with ImportError in ()
https://bugs.launchpad.net/bugs/268574
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to update-notifier-kde in ubuntu.

-- 
kubuntu-bugs mailing list
kubuntu-b...@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/kubuntu-bugs


[Bug 226415] Re: Wi-fi with WPA an ipw2200 disconnects

2009-08-24 Thread Kirk Wolff
I am seeing this also.  I've been using ubuntu testing for greater than
a year and the problem persists.  I am have a Dell D830 were lspci shows
"Broadcom Corporation BCM4311 802.11b/g WLAN".  The laptop is
interacting with an Asus router running DD-WRT and am using WPA
encryption.  The error I see in syslog when my connection drops is
(xx:xx:xx:xx:xx:xx is my router's ethernet mac):

Aug 24 10:51:08 laptop kernel: [111559.898893] eth1: Michael MIC verification 
failed for MSDU from xx:xx:xx:xx:xx:xx keyidx=0
Aug 24 10:51:08 laptop kernel: [111559.898913] key[0] alg=TKIP key_set=1 
tx_pn=00026c26 rx_pn=0004c311 replays=80 icv_errors=0 
local_mic_failures=2
Aug 24 10:51:08 laptop kernel: [111559.898916] : TKIP stats from module: Ucast
Aug 24 10:51:08 laptop NetworkManager:   (eth1): supplicant connection 
state:  completed -> disconnected 


It seems to happen when a there is a demand for a burst of data.  It most often 
is noticeable when watching an HD video with mythtv over the wireless link as 
the interruption immediately stops the video.  There are points in some videos 
when the datastream bandwidth varies and at that point the connection will drop 
4 out of 5 times.

-- 
Wi-fi with WPA an ipw2200 disconnects
https://bugs.launchpad.net/bugs/226415
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1760240] [NEW] Write past end of buffer in gtk/gtkrc.c gtk_rc_add_default_file

2018-03-30 Thread Kirk Wolff
Public bug reported:

In all repositories there is a buffer-overrun in the function
gtk_rc_add_default_file(), where if the dynamic array
gtk_rc_default_files has exactly max_default_files entries, a NULL will
be written past the allocated memory.  The resize function does not
resize the null terminated array in this case, and address sanitizer
(and valgrind) detects a memory access violation in any code leading to
this function.

The following code is in error ( from 
https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/precise/gtk+2.0/precise-proposed/view/head:/gtk/gtkrc.c#L596
 )
{{{
  for (n = 0; n < max_default_files; n++) 
{
  if (gtk_rc_default_files[n] == NULL)
break;
}

  if (n == max_default_files)
{
  max_default_files += 10;
  gtk_rc_default_files = g_renew (gchar*, gtk_rc_default_files, 
max_default_files);
}
  
  gtk_rc_default_files[n++] = g_strdup (filename);
  gtk_rc_default_files[n] = NULL;
}}}

Proposed modified implementation is as follows:
{{{
  for (n = 0; n < (max_default_files-1); n++) 
{
  if (gtk_rc_default_files[n] == NULL)
break;
}

  if (n >= (max_default_files-1))
{
  max_default_files += 10;
  gtk_rc_default_files = g_renew (gchar*, gtk_rc_default_files, 
max_default_files);
}
  
  gtk_rc_default_files[n++] = g_strdup (filename);
  gtk_rc_default_files[n] = NULL;
}}}

This implementation should be changed in all branches:

https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/gtk+2.0/trusty/view/head:/gtk/gtkrc.c#L569
https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/gtk+2.0/trusty-updates/view/head:/gtk/gtkrc.c#L569
https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/trusty/gtk+2.0/trusty-proposed/view/head:/gtk/gtkrc.c#L569
https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/precise/gtk+2.0/precise/view/head:/gtk/gtkrc.c#L590
https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/precise/gtk+2.0/precise-updates/view/head:/gtk/gtkrc.c#L596
https://bazaar.launchpad.net/~ubuntu-branches/ubuntu/precise/gtk+2.0/precise-proposed/view/head:/gtk/gtkrc.c#L596

** Affects: gtk+2.0 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1760240

Title:
  Write past end of buffer in gtk/gtkrc.c gtk_rc_add_default_file

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gtk+2.0/+bug/1760240/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1723080] Re: Caldav Issues with evolution 3.26

2018-05-12 Thread Kirk Wolff
Thanks Jürgen, I wasn't clear if it was a bug in evolution or in
synology.  I had expected the caldav feature on synology would have been
well supported, apparently not.  After running into this problem, I
decided to look into alternatives to synology altogether and ran accross
nextcloud as it provides several features that I can use for my small
business such as shared calendars and video conference.  Hopefully
someone that just wants to use synology for caldav calendaring and tasks
will run across this and make use of your solution.

Thanks again!
- Kirk

** Changed in: evolution (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1723080

Title:
  Caldav Issues with evolution 3.26

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1723080/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1723080] Re: Caldav Issues with evolution 3.26

2018-05-07 Thread Kirk Wolff
I have the same experience on my evolution.  I am using synology caldav
server (latest) and this hasn't been working for me for some time
(around a year or more).  I have been running the latest ubuntu, and
presently I'm on 18.04.  The attached log is from evolution v3.28.1-2
calendar-factory in debug-all mode.

** Attachment added: "Failure creating caledar object output from command 
"CALDAV_DEBUG=all /usr/lib/evolution/evolution-calendar-factory""
   
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1723080/+attachment/5135617/+files/evolution_bug_1723080.log

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1723080

Title:
  Caldav Issues with evolution 3.26

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1723080/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1723080] Re: Caldav Issues with evolution 3.26

2018-05-07 Thread Kirk Wolff
Quick note, the attachment above yields an error message from evolution
that reads:

Cannot create calendar object: Failed to put data: HTTP error code 201
(Created): The server responded with an HTML page, which can mean
there’s an error on the server or with the client request. The used URI
was:
https://synology.wolffelectronicdesign.com:5006/calendars/Kirk/8fd98e334f3a02482f68b77a2cabf68f1efa4e24.ics

The new event does not show up in the calendar until I force a refresh
of the caldav account from evolution.  Note, if I attempt to modify a
calendar entry, and press 'save', I do not get an error.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1723080

Title:
  Caldav Issues with evolution 3.26

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/evolution/+bug/1723080/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 653428] [NEW] package openerp-server 5.0.6-3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-10-01 Thread Kirk Wolff
Public bug reported:

Binary package hint: openerp-server

simple apt-get install of openerp from commandline.  yielded this error

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: openerp-server 5.0.6-3
ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic i686
NonfreeKernelModules: nvidia
Architecture: i386
Date: Fri Oct  1 15:43:53 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
PackageArchitecture: all
SourcePackage: openerp-server
Title: package openerp-server 5.0.6-3 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1

** Affects: openerp-server (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

-- 
package openerp-server 5.0.6-3 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/653428
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 653428] Re: package openerp-server 5.0.6-3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2010-10-01 Thread Kirk Wolff

** Attachment added: "AptOrdering.txt"
   
https://bugs.launchpad.net/bugs/653428/+attachment/1665612/+files/AptOrdering.txt

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/653428/+attachment/1665613/+files/Dependencies.txt

** Attachment added: "Df.txt"
   https://bugs.launchpad.net/bugs/653428/+attachment/1665614/+files/Df.txt

** Attachment added: "Dmesg.txt"
   https://bugs.launchpad.net/bugs/653428/+attachment/1665615/+files/Dmesg.txt

** Attachment added: "DpkgTerminalLog.gz"
   
https://bugs.launchpad.net/bugs/653428/+attachment/1665616/+files/DpkgTerminalLog.gz

-- 
package openerp-server 5.0.6-3 failed to install/upgrade: subprocess installed 
post-installation script returned error exit status 1
https://bugs.launchpad.net/bugs/653428
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 940564] Re: [8400m] nvidia-graphics-drivers (295.33-0ubuntu1), is causing failed restarts. shutdowns & only a blackscreen on tty's other than tty7

2012-07-06 Thread Kirk Wolff
ubuntu precise linux-image-3.2.0-26-generic-pae, nvidia-current-updates
v295.49:  Same problem.  In the past, while trying to isolate the
problem, reverted to basic VGA drivers and power management problems
went away.  Re-install any available version of nvidia from ubuntu
default repos and the problem comes back:  freeze during power-down or
reboot.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/940564

Title:
  [8400m] nvidia-graphics-drivers (295.33-0ubuntu1),  is causing failed
  restarts. shutdowns & only a blackscreen on tty's other than tty7

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers/+bug/940564/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 665412] [NEW] gastman doesn't support DAHDI channels

2010-10-22 Thread Kirk Wolff
Public bug reported:

Binary package hint: gastman

DAHDI channels aren't recognized by gastman.  This is useful for anyone
managing an asterisk server with a wildcard.  Proposed fix is attached.

** Affects: gastman (Ubuntu)
 Importance: Undecided
 Status: New

-- 
gastman doesn't support DAHDI channels
https://bugs.launchpad.net/bugs/665412
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 665412] Re: gastman doesn't support DAHDI channels

2010-10-22 Thread Kirk Wolff

** Patch added: "kirk.patch"
   https://bugs.launchpad.net/bugs/665412/+attachment/1707546/+files/kirk.patch

-- 
gastman doesn't support DAHDI channels
https://bugs.launchpad.net/bugs/665412
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 556350] Re: BUG: soft lockup - CPU#0 stuck for 61s! [events/0:6]

2010-07-08 Thread Kirk Wolff
I have a similar problem, however it happens all the time.  Tried on two
computers, both fail the same way.  I tried the 'generic' and the 'i386'
install, same thing.  Before I tried reinstalling from a CD, I tried
installing other 10.04 kernels on the broken upgraded system to no avail
(I tried generic, generic-pae, i386 every kernel available under 10.04).
One machine is a K7, the other is a Via 800MHz ITX (everyone has one of
those right?) with nothing special other than an asterisk card installed
and a single ATA hard drive and a single ATA CDROM on their own IDE
cables.  I went through the normal install on ubuntu-server-10.04
release in order to try getting a 'fresh' install.  I install the entire
operating system on /dev/sda5 (the first extended partition).  Once the
install is finished, the system reboots and guess what?  Nothing.  It
sits there and after one minute it prints out the message "BUG: soft
lockup - CPU#0 stuck for 61s! [events/0:6]".  It repeats this message
every minute.  The hardware works fine with Ubuntu 9.10 server, even ran
memtest for a few hours, never had a problem until I did a 'do-release-
upgrade' to 10.04 then all hell broke loose and I lost an entire day of
working trying to figure out what the deal was, how could ubuntu (or
linus, it appears to be a kernel problem) have dared release something
without testing it on older hardware?  I have Ubuntu 10.04 installed on
a dual-proc P4 3GHz machine, and two 64-bit AMD machines and it works
fine!  Its just the older systems that won't seem to work.

-- 
BUG: soft lockup - CPU#0 stuck for 61s! [events/0:6]
https://bugs.launchpad.net/bugs/556350
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 556350] Re: BUG: soft lockup - CPU#0 stuck for 61s! [events/0:6]

2010-09-10 Thread Kirk Wolff
Francisco,

I've found the solution to this problem.  Its simpler than it appears,
the problem is tracking down the source of the problem as linux doesn't
necessarily tell you when a driver fails or locks up.

The problem is this (drum roll) the netjet driver.

The netjet ISDN PCI card and the digium wildcard PCI card happen to use
the same PCI interface chip.  This interface chip provides a PCI-bus
abstraction to hardware designers and can be used in many applications
though its marketed to VOIP.  Unfortunately for us (or perhaps
fortunately) the PCI interface chip isn't what the DAHDI and netnet
drivers talk to, but the hardware that uses the chip to interface with
the PCI bus.  Apparently, due to some poor compliance considerations by
both the netjet and the wildcard designers, they use the default PCI
VID/PID for that chip, perhaps from their development kit.  Since netjet
became part of the linux kernel and dahdi has not, linux attempts to
load the netjet driver.  The netjet driver thinks its talking to a
netjet PCI card when a Digium wildcard is installed, so it attempts to
initialize it as such and locks the kernel up in the process.  In some
cases, and under what conditions I have no idea, dahdi loads first and
netjet doesn't get probed so some people don't see a problem.

In order to prevent the netjet driver from taking over the digium
wildcard, do the following:

1) power-off your machine and remove the digium card
2) Boot your machine
3) Append the following line to the file /etc/modprobe.d/blacklist.conf:  
"blacklist netjet"
4) Power-off your machine and re-install your digium card
5) Boot your machine and check that your digium card isn't sharing interrupts 
with any other device in your system by checking /proc/interrupts

- Kirk

-- 
BUG: soft lockup - CPU#0 stuck for 61s! [events/0:6]
https://bugs.launchpad.net/bugs/556350
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs