[Bug 616287] Re: umountfs doesn't cleanly unmount / on reboot

2011-04-27 Thread codewarrior
I completely agree, this patch is not the final solution - it's just a
'sticking plaster'.  Better solutions must include changes to Upstart
which ultimately must handle system shutdown internally.  Maybe there's
a case for adding a shutdown event which then blocks new services 
tasks from starting (like shutdown does for logins) and enforces the
kill timeout.

I would hate to see a system shutdown 'hanging' in a recovery shell
simply because of a few open files.  Umount must be made more resilient.
Maybe we need a force option - try gently at first and if that fails
then at certain critical conditions, like shutdown, the umount can be
forced.  The issue of open/deleted files can then be addressed after
umount is complete.

What worries me most is the damage to the journal that I saw during my
first experience with this problem.  I ran fsck in manual mode to repair
the damage, which it eventually managed, but it left the ext3 disk
without a journal.  I had to manually fix this by running tune2fs -j.

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

Title:
  umountfs doesn't cleanly unmount / on reboot

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


[Bug 616287] Re: umountfs doesn't cleanly unmount / on reboot

2011-04-26 Thread codewarrior
I believe that this problem is caused by the /etc/init.d/sendsigs script
not correctly waiting for terminating Upstart jobs.

I came across this problem on a Maverick system used for MythTV.  One
night it was left to transcode and advert flag a movie (lots of disk
activity) after which it automatically powered off.  The next morning I
turned on the system and /var didn't mount due to errors.

I kept an eye on the system thereafter thinking it was a disk fault but
noticed the same orphaned inode and recovering journal messages on every
restart.  I found in this case that shutting down mysqld in advance of
calling poweroff resolved the problems.  However, that made me look
further and I realised that mysql was only a problem because it took
several seconds or more to shutdown.  It looked like there was a race
condition in the shutdown logic.

On entering runlevel 0 or 6 (halt or reboot), Upstart delivers a TERM
signal to all processes that should stop at that runlevel.  The service
doesn't have to terminate immediately - some services like mysql take a
few seconds to tidy up.  An upstart service can define a kill timeout
stanza to specify a stop time if it's in excess of 5 seconds.  After
this time Upstart will deliver a KILL signal.

The problem is that immediately after Upstart sends the TERM signals it
starts the rc.conf service to run the SystemV scripts in /etc/rc0.d.
One particular script, S20sendsigs, is responsible for TERMinating all
remaining processes.  However, it's logic is to exclude any Upstart job
and so it can exit believing that all processes are dead.  Then
/etc/rc0.d/S40umountfs unmounts the fllesystem while there are open
files and hey-presto orphaned inodes  worse...

The attached patch makes sendsigs wait for any Upstart jobs that are
stopping.  This fixes all my file corruption problems and since using it
I've not had any orphaned inodes.

This has made be question the correctness and safety of umount.  I would
have thought that it should work OK in the presence of open files, but
I'm no ext3 expert.

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

Title:
  umountfs doesn't cleanly unmount / on reboot

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


[Bug 616287] Re: umountfs doesn't cleanly unmount / on reboot

2011-04-26 Thread codewarrior
Fix for orphaned inodes

** Patch added: Fix sendsigs Upstart race condition
   
https://bugs.launchpad.net/ubuntu/+source/sysvinit/+bug/616287/+attachment/2090008/+files/sendsigs.patch

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

Title:
  umountfs doesn't cleanly unmount / on reboot

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


[Bug 592102] Re: package man-db 2.5.7-2 failed to install/upgrade: subprocess installed post-installation script killed by signal (Segmentation fault)

2010-11-02 Thread CodeWarrior
I got the issue after I tried to install Emerald.


perl and all the dpkg-* apps are now throwing Segmentation fault when I try 
to execute them . Before that I had 
Permission denied it didn't matter if I was root or not. Then I changed the 
rights and owner manually..

-- 
package man-db 2.5.7-2 failed to install/upgrade: subprocess installed 
post-installation script killed by signal (Segmentation fault)
https://bugs.launchpad.net/bugs/592102
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 428318] Re: unable to mount an ext2 partition by label or uuid, unbootable system

2010-08-18 Thread codewarrior
My patch was accepted upstream into util-linux- ng-2.17.  Lucid ships
with 2.17.2 and I can confirm that this problem doesn't occur with
Lucid.

-- 
unable to mount an ext2 partition by label or uuid, unbootable system
https://bugs.launchpad.net/bugs/428318
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 559614] Re: mythtv fails to build on powerpc under lucid

2010-07-12 Thread codewarrior
This fix prevents MythTV from running on any PowerPC without AltiVec
support.  This includes Macintosh G3's, which are supported by the
Ubuntu PowerPC port.

For better PowerPC coverage I would suggest this fix instead:

diff rules.orig rules
47c47
 CONFIGURE_OPTS += --enable-altivec
---
 CONFIGURE_OPTS += --disable-altivec

Alternatively a runtime test for AltiVec capabilty and dynamic loading
of AltiVec specific modules.

-- 
mythtv fails to build on powerpc under lucid
https://bugs.launchpad.net/bugs/559614
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 513131] Re: missing cmd64x driver in kernel-tree for PPC arch.

2010-07-02 Thread codewarrior
** Changed in: linux (Ubuntu)
   Status: Incomplete = Confirmed

-- 
missing cmd64x driver in kernel-tree for PPC arch.
https://bugs.launchpad.net/bugs/513131
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 513131] Re: missing cmd64x driver in kernel-tree for PPC arch.

2010-07-02 Thread codewarrior
C'mon, this is a no-brainer to fix. For the latest Maverick kernel source 
(linux_2.6.35-6.9) edit:
 arch/powerpc/configs/pmac32_defconfig line 741

-# CONFIG_BLK_DEV_CMD64X is not set
+CONFIG_BLK_DEV_CMD64X=y
 
Here's a patch

** Patch added: defconfig-cmd64x.diff
   http://launchpadlibrarian.net/51295118/defconfig-cmd64x.diff

-- 
missing cmd64x driver in kernel-tree for PPC arch.
https://bugs.launchpad.net/bugs/513131
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 598059] [NEW] Missing hard disk driver for b/w G3 Mac

2010-06-24 Thread codewarrior
Public bug reported:

Binary package hint: linux-image-powerpc

Ubuntu linux kernels for Ubuntu 9.10 and 10.04 are missing a driver for
the CMD6xx IDE disk controller found on all blue/white Macintosh G3
machines.  This prevents installation of Ubuntu on these machines from
the standard CD images as no hard disk drive is detected.

Standard Macintosh blue  white (b/w) G3, 256 MB RAM, 5.7 GB IDE disk.

Ubuntu 9.04 is the last version to have the correct hard disk driver.

I have built a custom 2.6.34 kernel and added the missing
CONFIG_PATA_CMD64X config option and this finds the disk controller and
boots OK.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: linux-image-powerpc 2.6.32.21.16
Uname: Linux 2.6.34-mac ppc
Architecture: powerpc
Date: Thu Jun 24 13:09:42 2010
ProcEnviron:
 PATH=(custom, user)
 LANG=en_GB.UTF-8
 SHELL=/bin/bash
SourcePackage: linux-ports-meta

** Affects: linux-ports-meta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug lucid powerpc

-- 
Missing hard disk driver for b/w G3 Mac
https://bugs.launchpad.net/bugs/598059
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 598059] Re: Missing hard disk driver for b/w G3 Mac

2010-06-24 Thread codewarrior

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/50846075/Dependencies.txt

-- 
Missing hard disk driver for b/w G3 Mac
https://bugs.launchpad.net/bugs/598059
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 595661] Re: please support h264 hardware acceleration on certain intel video cards

2010-06-18 Thread codewarrior
h264 hardware decoding is an issue with html5 on forthcoming firefox 4.

-- 
please support h264 hardware acceleration on certain intel video cards
https://bugs.launchpad.net/bugs/595661
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 468728] Re: can't boot after mac b/w g3 upgrade from jaunty to karmic

2010-04-22 Thread codewarrior
I have just tried with ubuntu-10.04-beta2-alternate-powerpc.iso and the
problem persists.

The CD boots and progresses as far as detecting disk drives but finds
none.  It then prompts to select a driver from a list, none of which
match the cmd64x series on the G3.

I couldn't find a PowerPC kernel in the upstream kernels so I can't test
that.

I tried running apport-collect -p linux 468728 on the Mac but, being a
server, it doesn't have a web browser so I couldn't login to launchpad.

I have built a custom 2.6.33.2 kernel with CONFIG_PATA_CMD64X and this
finds the disk controller and boots OK.

-- 
can't boot after mac b/w g3 upgrade from jaunty to karmic
https://bugs.launchpad.net/bugs/468728
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 369467] [NEW] kde3.5 remix install error

2009-04-29 Thread codewarrior
Public bug reported:

Synaptic gave these 4 errors when I installed kubuntu-desktop-kde3:

E: /var/cache/apt/archives/desktop-effects-kde-kde3_0.4-5_all.deb:
trying to overwrite `/etc/X11/Xsession.d/25enable-compiz', which is also
in package desktop-effects-kde

E: /var/cache/apt/archives/kaffeine-kde3_0.8.6-0ubuntu5_i386.deb: trying
to overwrite `/usr/share/man/man1/kaffeine.1.gz', which is also in
package kaffeine

E: /var/cache/apt/archives/network-manager-kde-
kde3_1%3a0.7svn864988-0ubuntu5_i386.deb: trying to overwrite
`/etc/dbus-1/system.d/knetworkmanager.conf', which is also in package
network-manager-kde

E: /var/cache/apt/archives/python-kde3-kde3_3.16.2-0ubuntu1_i386.deb:
trying to overwrite `/usr/lib/python2.5/site-packages/khtml.so', which
is also in package python-kde3

Started with a standard kubuntu 8.04 installation, applied all updates
this morning and then used adept to do a version upgrade to 9.04.  Then
added the kde3.5 remix repos from http://apt.pearsoncomputing.net/ and
used synaptic to install kubuntu-desktop-kde3.

NB this was a plain vanilla 8.04 system updated to 9.04 with no
added/removed packages.

As a result I was unable to start a KDE3 session - no panel.

Possible workarounds:
- remove python-kde3
- remove kaffeine
- remove networkmanager-kde !?

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
kde3.5 remix install error
https://bugs.launchpad.net/bugs/369467
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 369465] [NEW] kde3.5 remix install error

2009-04-29 Thread codewarrior
Public bug reported:

Synaptic gave these 4 errors when I installed kubuntu-desktop-kde3:

E: /var/cache/apt/archives/desktop-effects-kde-kde3_0.4-5_all.deb:
trying to overwrite `/etc/X11/Xsession.d/25enable-compiz', which is also
in package desktop-effects-kde

E: /var/cache/apt/archives/kaffeine-kde3_0.8.6-0ubuntu5_i386.deb: trying
to overwrite `/usr/share/man/man1/kaffeine.1.gz', which is also in
package kaffeine

E: /var/cache/apt/archives/network-manager-kde-
kde3_1%3a0.7svn864988-0ubuntu5_i386.deb: trying to overwrite
`/etc/dbus-1/system.d/knetworkmanager.conf', which is also in package
network-manager-kde

E: /var/cache/apt/archives/python-kde3-kde3_3.16.2-0ubuntu1_i386.deb:
trying to overwrite `/usr/lib/python2.5/site-packages/khtml.so', which
is also in package python-kde3

Started with a standard kubuntu 8.04 installation, applied all updates
this morning and then used adept to do a version upgrade to 9.04.  Then
added the kde3.5 remix repos from http://apt.pearsoncomputing.net/ and
used synaptic to install kubuntu-desktop-kde3.

NB this was a plain vanilla 8.04 system updated to 9.04 with no
added/removed packages.

As a result I was unable to start a KDE3 session - no panel.

Possible workarounds:
- remove python-kde3
- remove kaffeine
- remove networkmanager-kde !?

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
kde3.5 remix install error
https://bugs.launchpad.net/bugs/369465
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 342485] Re: Partman rewrites partition table unnecessarily

2009-03-13 Thread codewarrior
Additional notes:  I am using MSDOS partition tables.  After some prior
experiments, some of my extended partitions begin at less than 63
sectors after the beginning of the EBR.

-- 
Partman rewrites partition table unnecessarily
https://bugs.launchpad.net/bugs/342485
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 342485] [NEW] Partman rewrites partition table unnecessarily

2009-03-13 Thread codewarrior
Public bug reported:

Binary package hint: partman-base

While installing Ubuntu 8.10 from the Alternate CD, I found some
annoying and unwanted behavior in the text-mode partman.

I choose Manual partitioning instead of any Guided option.  After
setting mount points, the partitioner insists on rewriting the partition
table, even though I haven't changed any of the partition locations,
sizes, types, or any other information stored in the table.
Subsequently, it complains that the kernel hasn't reread the partition
table.

I'm not sure why it feels the need to rewrite my partition table.

** Affects: partman-base (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Partman rewrites partition table unnecessarily
https://bugs.launchpad.net/bugs/342485
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 185118] Re: package ekiga None failed to install/upgrade: trying to overwrite `/usr/share/dbus-1/services/net.ekiga.instance.service', which is also in package ekiga-gtkonly

2008-10-06 Thread CodeWarrior
It happens during installation.

Ubuntu 8.10 (32 bit system)
Kernel  2.6.27-5-generic

#
/var/cache/apt/archives/ekiga-gtkonly_2.0.12-0ubuntu5_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)
#

I'm trying to test several new apps and this was one of them.

I was wondering about the version, because on the gnome page they sad
version 3.0 is allready out. Is there an other DEB-Package available ?

greedings,

   Patrick Bertsch

-- 
package ekiga None failed to install/upgrade: trying to overwrite 
`/usr/share/dbus-1/services/net.ekiga.instance.service', which is also in 
package ekiga-gtkonly
https://bugs.launchpad.net/bugs/185118
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 277046] Re: package gnome-accessibility-themes 2.24.0-0ubuntu1 failed to install/upgrade:

2008-10-02 Thread CodeWarrior

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/18131791/Dependencies.txt

** Attachment added: VarLogDistupgradeAptlog.gz
   http://launchpadlibrarian.net/18131792/VarLogDistupgradeAptlog.gz

** Attachment added: VarLogDistupgradeApttermlog.gz
   http://launchpadlibrarian.net/18131793/VarLogDistupgradeApttermlog.gz

** Attachment added: VarLogDistupgradeMainlog.gz
   http://launchpadlibrarian.net/18131794/VarLogDistupgradeMainlog.gz

** Attachment added: VarLogDistupgradeTermlog.gz
   http://launchpadlibrarian.net/18131795/VarLogDistupgradeTermlog.gz

** Attachment added: VarLogDistupgradeXorgfixintrepidlog.gz
   http://launchpadlibrarian.net/18131796/VarLogDistupgradeXorgfixintrepidlog.gz

-- 
package gnome-accessibility-themes 2.24.0-0ubuntu1 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/277046
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 277046] [NEW] package gnome-accessibility-themes 2.24.0-0ubuntu1 failed to install/upgrade:

2008-10-02 Thread CodeWarrior
Public bug reported:

Binary package hint: gnome-themes

happens during dist-upgrade

ProblemType: Package
Architecture: i386
DistroRelease: Ubuntu 8.10
ErrorMessage:
 ErrorMessage: Unterprozess post-installation script gab den Fehlerwert 1 zurück
NonfreeKernelModules: fglrx
Package: gnome-accessibility-themes 2.24.0-0ubuntu1
PackageArchitecture: all
SourcePackage: gnome-themes
Title: package gnome-accessibility-themes 2.24.0-0ubuntu1 failed to 
install/upgrade: 
Uname: Linux 2.6.24-21-generic i686

** Affects: gnome-themes (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package gnome-accessibility-themes 2.24.0-0ubuntu1 failed to install/upgrade: 
https://bugs.launchpad.net/bugs/277046
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

Re: [Bug 247795] Re: package mysql-server 5.0 .51a-3ubuntu5.2 failed to install/upgrade: Abhä ngigkeitsprobleme - lasse es unkonfiguriert

2008-07-13 Thread CodeWarrior
Nicolas Valcárcel (nxvl) wrote:
 Are you able to restart you mysql-server without problems? The error is
 that mysql server has been unable to start its daemon
 
 ** Changed in: mysql-dfsg-5.0 (Ubuntu)
Status: New = Incomplete
 
Hello Nicolas,

It's not possible to restart without problems.

greedings,

Patrick

-- 
package mysql-server 5.0.51a-3ubuntu5.2 failed to install/upgrade: 
Abhängigkeitsprobleme - lasse es unkonfiguriert
https://bugs.launchpad.net/bugs/247795
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


Re: [Bug 247795] Re: package mysql-server 5.0 .51a-3ubuntu5.2 failed to install/upgrade: Abhä ngigkeitsprobleme - lasse es unkonfiguriert

2008-07-13 Thread CodeWarrior
Nicolas Valcárcel (nxvl) wrote:
 Are you able to restart you mysql-server without problems? The error is
 that mysql server has been unable to start its daemon
 
 ** Changed in: mysql-dfsg-5.0 (Ubuntu)
Status: New = Incomplete
 
Hello Nicolas,

It's not possible to restart without problems.

greedings,

Patrick

-- 
package mysql-server 5.0.51a-3ubuntu5.2 failed to install/upgrade: 
Abhängigkeitsprobleme - lasse es unkonfiguriert
https://bugs.launchpad.net/bugs/247795
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 247795] Re: package mysql-server 5.0.51a- 3ubuntu5.2 failed to install/upgrade: Abhängigkei tsprobleme - lasse es unkonfiguriert

2008-07-12 Thread CodeWarrior

** Attachment added: TerminalLog.txt
   http://launchpadlibrarian.net/15975429/TerminalLog.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/15975430/Dependencies.txt

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/15975431/DpkgTerminalLog.gz

-- 
package mysql-server 5.0.51a-3ubuntu5.2 failed to install/upgrade: 
Abhängigkeitsprobleme - lasse es unkonfiguriert
https://bugs.launchpad.net/bugs/247795
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to mysql-dfsg-5.0 in ubuntu.

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 247795] [NEW] package mysql-server 5.0. 51a-3ubuntu5.2 failed to install/upgrade: Abhängi gkeitsprobleme - lasse es unkonfiguriert

2008-07-12 Thread CodeWarrior
Public bug reported:

Hi @all

After the last bigger update the submitted log was the only answer from the 
terminal to me.
I tried to reinstall MySQL-Server. But even this failed.

greedings,

  CodeWarrior

ProblemType: Package
Architecture: i386
Date: Sat Jul 12 08:19:06 2008
DistroRelease: Ubuntu 8.04
ErrorMessage: Abhängigkeitsprobleme - lasse es unkonfiguriert
NonfreeKernelModules: fglrx
Package: mysql-server 5.0.51a-3ubuntu5.2
PackageArchitecture: all
SourcePackage: mysql-dfsg-5.0
Title: package mysql-server 5.0.51a-3ubuntu5.2 failed to install/upgrade: 
Abhängigkeitsprobleme - lasse es unkonfiguriert
Uname: Linux 2.6.24-19-generic i686

** Affects: mysql-dfsg-5.0 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package

-- 
package mysql-server 5.0.51a-3ubuntu5.2 failed to install/upgrade: 
Abhängigkeitsprobleme - lasse es unkonfiguriert
https://bugs.launchpad.net/bugs/247795
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 247795] Re: package mysql-server 5.0.51a- 3ubuntu5.2 failed to install/upgrade: Abhängigkei tsprobleme - lasse es unkonfiguriert

2008-07-12 Thread CodeWarrior

** Attachment added: TerminalLog.txt
   http://launchpadlibrarian.net/15975429/TerminalLog.txt

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/15975430/Dependencies.txt

** Attachment added: DpkgTerminalLog.gz
   http://launchpadlibrarian.net/15975431/DpkgTerminalLog.gz

-- 
package mysql-server 5.0.51a-3ubuntu5.2 failed to install/upgrade: 
Abhängigkeitsprobleme - lasse es unkonfiguriert
https://bugs.launchpad.net/bugs/247795
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 189643] [NEW] Backspace and Delete keys have the wrong functionality in OO calc

2008-02-06 Thread codewarrior
Public bug reported:

Binary package hint: openoffice.org

Pressing Backspace (the key above \ and to the right of =) with a cell
selected brings up the Delete Contents dialog.  Pressing Delete (below
Insert and to the left of End) deletes the cell contents without any
dialog.  This is in contradiction to the manual, which states Pressing
Backspace deletes content without calling the dialog or changing
formats. and also in contradiction to the behavior on the Windows
version of OO calc, where pressing Backspace incurs no dialog.
Backspace otherwise has the correct functionality in text entry,
deleting the character immediately before the cursor, while Delete
removes the character immediately following the cursor.

I was not able to resolve this using the Tools-Customize... interface,
because there is no keybinding available for Delete contents without
dialog.

** Affects: openoffice.org (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Backspace and Delete keys have the wrong functionality in OO calc
https://bugs.launchpad.net/bugs/189643
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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