Re: [Bug 226330] Re: reduce unnecessary screen realestate use when Deskbar is stuck to panel

2008-11-19 Thread Dan Kortschak
The submitter is somewhat jaded with the lack of response from package
maintainers in dealing with a wide variety of bugs including critical
flaws and has better things to do with his time.

On Wed, 2008-11-19 at 15:35 +, Sebastien Bacher wrote:
> closing the bug, the ubuntu team is not going to work on that and the
> submitter doesn't seem to be interested to open the bug on the GNOME bug
> tracker to discuss the changes there
> 
> ** Changed in: deskbar-applet (Ubuntu)
>Status: New => Invalid

-- 
reduce unnecessary screen realestate use when Deskbar is stuck to panel
https://bugs.launchpad.net/bugs/226330
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 230886] Re: upgrade from Gutsy to Hardy removes /etc/rcS.d/S50alsa-utils: breaks setting restore at boot on Eee

2008-09-28 Thread Dan Kortschak
Be that as it may, the udev rule fails to restore sound settings at
boot. So no sound on Eee. It may not be due to a lack of S50alsa-utils,
but the system still dos not work.

On Fri, 2008-09-26 at 15:21 +, Daniel T Chen wrote:
> Look at the udev rule shipped by alsa-utils.
> 
> ** Changed in: alsa-utils (Ubuntu)
>Status: New => Won't Fix

-- 
upgrade from Gutsy to Hardy removes /etc/rcS.d/S50alsa-utils: breaks setting 
restore at boot on Eee
https://bugs.launchpad.net/bugs/230886
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 226330] Re: reduce unnecessary screen realestate use when Deskbar is stuck to panel

2008-10-07 Thread Dan Kortschak
I have not have time - but yes I am still interested in this change.

cheers

On Tue, 2008-10-07 at 21:11 +, Sebastien Bacher wrote:
> do you still have interest in this change? did you send it to GNOME?
> 
> ** Changed in: deskbar-applet (Ubuntu)
>Status: New => Incomplete

-- 
reduce unnecessary screen realestate use when Deskbar is stuck to panel
https://bugs.launchpad.net/bugs/226330
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 229798] [NEW] SDHC /home not properly umounted at shutdown on Eee PC

2008-05-12 Thread Dan Kortschak
Public bug reported:

Binary package hint: sysvinit

Eee PC with hardy install does not properly umount all volumes at
shutdown. On reboot /dev/sdb1 (/home - a SDHC card mounted by UUID at
boot) nearly always (>90% of time) requires fsck, reporting "/dev/sdb1
not cleanly unmounted..."

This problem has been noted with Mandriva on the Eee as seen at
. The fix as
described at that page is not applicable to the hardy initscripts, but
placing the `sync; sync; sync; sleep 3' in rc.localstop does not fix
problem.

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 8.04
Release:8.04
Codename:   hardy

$ dpkg -l initscripts 
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-f/Unpacked/Failed-cfg/Half-inst/t-aWait/T-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  initscripts2.86.ds1-14.1u Scripts for initializing and shutting down t

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

-- 
SDHC /home not properly umounted at shutdown on Eee PC
https://bugs.launchpad.net/bugs/229798
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 229798] Re: SDHC /home not properly umounted at shutdown on Eee PC

2008-05-14 Thread Dan Kortschak
syncing volumes as described above immediately before the final halt
command in /etc/init.d/halt (shown below) does not fix the problem.


log_action_msg "Will now halt"
sleep 1

>>>

halt -d -f -i $poweroff $hddown
}

-- 
SDHC /home not properly umounted at shutdown on Eee PC
https://bugs.launchpad.net/bugs/229798
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 161154] Re: automount removable media mounts as read only though mtab says rw

2008-05-15 Thread Dan Kortschak
Close this - this seems to be a FAT fs corruption problem with large
files.

-- 
automount removable media mounts as read only though mtab says rw
https://bugs.launchpad.net/bugs/161154
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 230886] [NEW] upgrade from Gutsy to Hardy removes /etc/rcS.d/S50alsa-utils: breaks setting restore at boot on Eee

2008-05-15 Thread Dan Kortschak
Public bug reported:

Binary package hint: alsa-utils

alsa-utils deb postinst script removes `/etc/rcS.d/S50alsa-utils' and no
start rc script link is installed (at any run level) by update-rc.d,
this results in failure to restore alsa setting on Eee at boot.

#!/bin/sh

set -e

case "$1" in
  configure)
if dpkg --compare-versions "$2" lt "1.0.10-1ubuntu6"; then
rm -f /etc/alsa/modprobe-post-install.d/alsa-utils
rmdir /etc/alsa/modprobe-post-install.d 2>/dev/null || true
rmdir /etc/alsa 2>/dev/null || true

rm -f /etc/udev/alsa-utils.rules

rm -f /etc/rcS.d/S50alsa-utils # < Removal of old start 
link - OK for [re]configuration
rm -f /etc/udev/rules.d/z60_alsa-utils.rules
fi
;;
  abort-upgrade|abort-remove|abort-deconfigure)
# Nothing to do because we didn't take any action in the prerm
;;
  *)
echo "postinst called with unknown argument \`$1'" >&2
exit 1
;;
esac

# Automatically added by dh_installinit
if [ -x "/etc/init.d/alsa-utils" ]; then
update-rc.d alsa-utils stop 50 0 6 . >/dev/null || exit $?  # < No 
alsa-utils start linked at rcS.d - Not OK
fi
# End automatically added section
# Automatically added by dh_installmenu
if [ "$1" = "configure" ] && [ -x "`which update-menus 2>/dev/null`" ]; then
update-menus
fi
# End automatically added section


$ lsb_release -rd
Description:Ubuntu 8.04
Release:8.04


$ dpkg -l alsa-utils
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-f/Unpacked/Failed-cfg/Half-inst/t-aWait/T-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  alsa-utils 1.0.15-3ubuntu ALSA utilities

** Affects: alsa-utils (Ubuntu)
 Importance: Undecided
 Status: New

-- 
upgrade from Gutsy to Hardy removes /etc/rcS.d/S50alsa-utils: breaks setting 
restore at boot on Eee
https://bugs.launchpad.net/bugs/230886
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 226330] Re: reduce unnecessary screen realestate use when Deskbar is stuck to panel

2008-05-29 Thread Dan Kortschak
Here is a cropped screenshot showing the menu/window up from the panel.
The large brown border to the text entry pane adds nothing. Further, I'd
have to say that having the actions above the text entry is counter
intuitive given how most actions based on text entry work (e.g. file
dialogue window), and it is the reverse of the situation in the previous
functional version (where deskbar just worked as a menu - ahhh, those
were the days; I find that I'm just not using these days.)

cheers

** Attachment added: "Deskbar screen-space bloat"
   http://launchpadlibrarian.net/14781583/Screenshot-1.png

-- 
reduce unnecessary screen realestate use when Deskbar is stuck to panel
https://bugs.launchpad.net/bugs/226330
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 269471] Re: Rhythmbox cannot handle a certain podcast URL

2009-01-24 Thread Dan Kortschak
I can confirm that this happens for these two URLs too:

http://www.abc.net.au/rn/podcast/feeds/bbing.xml
http://www.abc.net.au/rn/podcast/feeds/correspond.xml

But not for a number of others from the same site including:

http://www.abc.net.au/rn/podcast/feeds/mind.xml

The second of the two above appears to be HTML rather than XML, so that
explains that one.

Perhaps it's just a problem with the ABC?

-- 
Rhythmbox cannot handle a certain podcast URL
https://bugs.launchpad.net/bugs/269471
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 269471] Re: Rhythmbox cannot handle a certain podcast URL

2009-03-20 Thread Dan Kortschak
Ross, what feeds are you attempting to use. The reported URLs above were
all from the abc.net.au podcasts feeds - I've looked through their feeds
and they are, to varying degrees, non conforming to the standards for
feeds. I think this may be the problem.

I've reported the problem to the ABC and they don't seem very much to
care. If you are trying ABC feeds, you might want to add a complaint, if
it's not the ABC, put the feed through
http://feedvalidator.org/check.cgi and check whether it's the feed or
rhythmbox.

(I'm using the same version as you and most feeds work).

-- 
Rhythmbox cannot handle a certain podcast URL
https://bugs.launchpad.net/bugs/269471
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 335754] Re: Evolution doesn't update IMAP on server after applied message filter

2009-03-27 Thread Dan Kortschak
I can confirm this: also does not change read/unread status or deleted
status.

-- 
Evolution doesn't update IMAP on server after applied message filter
https://bugs.launchpad.net/bugs/335754
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 327775] Re: Evolution won't parse messages, stuck on "Formating message ..." in the status bar

2009-03-27 Thread Dan Kortschak
This has just started happening for me - only with html messages, but
100% reproducible.

Though I should add that the non-response has been going on for a long
time (don't recall how many versions): when evolution has decided it is
doing something it's non-response to a window closure circumvents the
window manager's monitoring of that, so a killall is the oply thing that
will close the window. This I think is a significant failing in the UI.

-- 
Evolution won't parse messages, stuck on "Formating message ..." in the status 
bar
https://bugs.launchpad.net/bugs/327775
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 28661] Re: [Bug 28661] Re: mailer crashes while trying to format message

2006-07-28 Thread Dan Kortschak
Nope, I haven't received another email that causes that crash. I've
still not managed to upgrade to Dapper yet - bandwidth issues - so
anything I provide is probably not much use anymore anyway.

cheers
Dan

On Fri, 2006-07-28 at 16:22 +, Sebastien Bacher wrote:
> do you still have the issue. Could you attach the example if that's the
> case?
> 
-- 
_   .`.`o
     o| ,\__ `./`r
  Dr. Dan Kortschak  dan.kortschak at adelaide.edu.au<\/\_O> O
  "|`...'.\
  Is a citizen subject to the laws of a criminal state?`  :\
  : \
  PGP public key available from pgp.mit.edu
  F9B3 3810 C4DD E214 347C  B8DA D879 B7A7 EECC 5A40

  By replying to this email you implicitly accept that your response
  may be forwarded to other recipients.

-- 
mailer crashes while trying to format message
https://launchpad.net/bugs/28661

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


[Bug 158452] minor UI error: tracker-preferences spelling error

2007-10-29 Thread Dan Kortschak
Public bug reported:

Binary package hint: tracker-search-tool

In /usr/bin/tracker-preferences, there is a spelling error in the second
tab, `Performance': "Use addit*onal memory...".

Package: tracker-search-tool
Architecture: i386
Source: tracker
Version: 0.6.3-0ubuntu3

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

-- 
minor UI error: tracker-preferences spelling error
https://bugs.launchpad.net/bugs/158452
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


[Bug 158448] hiding/unhiding gnome-panel with left button causes whole screen shudder

2007-10-29 Thread Dan Kortschak
Public bug reported:

Binary package hint: gnome-panel

Package: gnome-panel
Architecture: i386
Version: 1:2.20.0.1-0ubuntu6

Click on left hide button. At end of slide into hidden position, the
whole screen moves a several pixels to right and then back as panel
completes the hide. This is reversed on unhide.

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

-- 
hiding/unhiding gnome-panel with left button causes whole screen shudder
https://bugs.launchpad.net/bugs/158448
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


[Bug 158458] minor UI: notification area doesn't properly clean rendering up after tooltips cover it

2007-10-29 Thread Dan Kortschak
Public bug reported:

Binary package hint: gnome-panel

Package: gnome-panel
Architecture: i386
Version: 1:2.20.0.1-0ubuntu6

When tool tips are rendered over the notification area from applets next
to it, the notification area applet does not properly return the pixels
between notifying icons to background.

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

-- 
minor UI: notification area doesn't properly clean rendering up after tooltips 
cover it
https://bugs.launchpad.net/bugs/158458
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


[Bug 158454] gnome-ppp does not minimise on connection

2007-10-29 Thread Dan Kortschak
Public bug reported:

Binary package hint: gnome-ppp

Package: gnome-ppp
Architecture: i386
Version: 0.3.23-1

Gnome PPP does not minimise when connection is established (even with
this option set in preferences).

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

-- 
gnome-ppp does not minimise on connection
https://bugs.launchpad.net/bugs/158454
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


[Bug 158544] feature request: bring back menu option from 2.19.6.1

2007-10-29 Thread Dan Kortschak
Public bug reported:

Binary package hint: deskbar-applet

Sorry to put a feature request in this.

The menu option for the deskbar was (in my view) one of it's nicest
feature - low profile high functionality. Now gone.

Please bring it back.

** Affects: deskbar-applet (Ubuntu)
 Importance: Undecided
 Status: New

-- 
feature request: bring back menu option from 2.19.6.1
https://bugs.launchpad.net/bugs/158544
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


[Bug 173796] Re: ac97 has driver but i have no sound

2008-04-30 Thread Dan Kortschak
http://trilug.org/~crimsun/alsa-info.sh gives a 404 Error.

I am having the same problem with the AC'97 Audio controller and a
recent (this morning) update to Hardy - no sound now.

$ lspci | grep Audio

00:1f.5 Multimedia audio controller: Intel Corporation 82801BA/BAM AC'97
Audio Controller (rev 12)

-- 
ac97 has driver but i have no sound
https://bugs.launchpad.net/bugs/173796
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 226330] [NEW] reduce unnecessary screen realestate use when Deskbar is stuck to panel

2008-05-03 Thread Dan Kortschak
Public bug reported:

Binary package hint: deskbar-applet

I'm very happy to see that an option has been included in the Deskbar
applet's preferences that allows it to be used as a panel menu item
rather than a floating window (fix to bug #158544).

Please remove the unnecessary decoration from the pop-up when this
option is set. We don't need a huge orange border to show us where to
type, and it just gets in the way. (I'd have to say that the arrangement
of the UI in the 2.19.6.1 version made much more sense than it does
now).

cheers

** Affects: deskbar-applet (Ubuntu)
 Importance: Undecided
 Status: New

-- 
reduce unnecessary screen realestate use when Deskbar is stuck to panel
https://bugs.launchpad.net/bugs/226330
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 226336] [NEW] workplace switcher gives no indication of active workspace when only one maximised window in WS

2008-05-03 Thread Dan Kortschak
Public bug reported:

Binary package hint: gnome-panel

In the most recent version of the Workspace Switcher (gnome-panel
2.22.1.2-0ubuntu3 and gnome-panel-data 2.22.1.2-0ubuntu3) there is no
colour indication showing which workspace is currently active when there
is a maximised window in that workspace (if the window is no maximised
the desktop appears orange).

In previous versions, windows in active workspaces appeared as a
different colour - now only unfocussed windows in the active workspace
are highlighted. This leads to confusion when there is a focussed
maximised window.

$ lsb_release -rd
Description:Ubuntu 8.04
Release:8.04
$ dpkg -l gnome-panel*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-f/Unpacked/Failed-cfg/Half-inst/t-aWait/T-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   Version  
  Description
+++-==-==-
ii  gnome-panel1:2.22.1.2-0ubuntu3  
  launcher and docking facility for GNOME
ii  gnome-panel-data   1:2.22.1.2-0ubuntu3  
  common files for the GNOME Panel

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

-- 
workplace switcher gives no indication of active workspace when only one 
maximised window in WS
https://bugs.launchpad.net/bugs/226336
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 226336] Re: workplace switcher gives no indication of active workspace when only one maximised window in WS

2008-05-06 Thread Dan Kortschak
Screenshot thumb showing lack of distinction between active and inactive
workspace - just visible, greater colour distance would be appreciated.

** Attachment added: "Screenshot-2.png"
   http://launchpadlibrarian.net/14248672/Screenshot-2.png

-- 
workplace switcher gives no indication of active workspace when only one 
maximised window in WS
https://bugs.launchpad.net/bugs/226336
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 158458] Re: minor UI: notification area doesn't properly clean rendering up after tooltips cover it

2008-05-08 Thread Dan Kortschak
Already checked - sorry I didn't report back. All good now.

cheers
Dan

On Thu, 2008-05-08 at 12:31 +, Sebastien Bacher wrote:
> could you try if that's still an issue in hardy?

-- 
Dan Kortschak <[EMAIL PROTECTED]>

-- 
minor UI: notification area doesn't properly clean rendering up after tooltips 
cover it
https://bugs.launchpad.net/bugs/158458
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 158448] Re: hiding/unhiding gnome-panel with left button causes whole screen shudder

2008-05-08 Thread Dan Kortschak
All OK now. I'm using a legacy nVidia, so no eye candy for me, so I
can't comment on whether it happens with compiz on, but it's certainly
fine without.

cheers
Dan

On Thu, 2008-05-08 at 12:31 +, Sebastien Bacher wrote:
> could you try if that's still an issue in hardy? do you use the desktop
> effects option? does it happen when you don't use those?

-- 
Dan Kortschak <[EMAIL PROTECTED]>

-- 
hiding/unhiding gnome-panel with left button causes whole screen shudder
https://bugs.launchpad.net/bugs/158448
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 161154] automount removable media mounts as read only though mtab says rw

2007-11-09 Thread Dan Kortschak
Public bug reported:

Gutsy

$ uname -r
2.6.22-14-386

Automounted media (USB thumb drive) mounts as rw according to mtab:
$ grep disk /etc/mtab
/dev/sdb1 /media/disk vfat 
rw,nosuid,nodev,shortname=mixed,uid=1000,utf8,umask=077,usefree 0 0

but /media/disk responds as read only:
$ touch /media/disk/test
touch: cannot touch `/media/disk/test': Read-only file system

pmounting removable media results in the same issue, though mounting
using mount at /mnt allows rw access.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
automount removable media mounts as read only though mtab says rw
https://bugs.launchpad.net/bugs/161154
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


Re: [Bug 121487] Re: Gnome-PPP will not dock or minimize

2008-01-28 Thread Dan Kortschak
A patch has already been submitted to this bug - and yet it has not been 
committed to the distro. It's not even a matter of 'where are the 
developers'. This is getting pretty frustrating - not all of us are in a 
position to download all of the source dependencies and make the 
(extremely minor) change that is necessary.

Raval Seojattan wrote:
> I have this problem too, where are the developers??? can't someone say
> when we can expect an update?
>
>

-- 
Gnome-PPP will not dock or minimize
https://bugs.launchpad.net/bugs/121487
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


Re: [Bug 158448] Re: hiding/unhiding gnome-panel with left button causes whole screen shudder

2007-10-30 Thread Dan Kortschak
I can't see how I can get a screen shot of this. The bug is a dynamic
thing, but I can try to describe how to generate it more clearly.

1. If you hide the panel by clicking the bottom left button shown in the
screen shot the panel slides to the left.

2. Hiding: When the panel has almost reached the completely hidden
position (about 20pixels from completely hidden), the entire desktop and
any maximised window jumps about 20pixels to the right and then slides
to the left with the panel until the panel is hidden.

3. Unhiding: When you click on the button to unhide the panel the effect
is reversed:- the desktop and maximised windows move right and then jump
back left by the same amount as the panel starts its slide to the right.

In both cases non-maximised windows do not make this jump affect.

My guess is that it's a defect with the routine responsible for
maximised windows staying maximally maximised :) , so it's probably not
actually a panel bug.

cheers


On Tue, 2007-10-30 at 13:50 +, Sebastien Bacher wrote:
> Thank you for your bug. The description is not clear, could you describe
> easy steps to trigger the issue and attach a screenshot showing the bug?
> 
> ** Changed in: gnome-panel (Ubuntu)
>Importance: Undecided => Low
>  Assignee: (unassigned) => Ubuntu Desktop Bugs (desktop-bugs)
>Status: New => Incomplete

-- 
hiding/unhiding gnome-panel with left button causes whole screen shudder
https://bugs.launchpad.net/bugs/158448
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


Re: [Bug 158458] Re: minor UI: notification area doesn't properly clean rendering up after tooltips cover it

2007-10-30 Thread Dan Kortschak
Here are four screen shots - one before issue is seen and three
different outcomes from not cleaning up.

You can see stray pixels between the Bluetooth icon and the tab of the
notification area. Sometime these stray pixels appear between the
Bluetooth icon and the NM Applet icon - it depends on how they have been
placed by the Notification Area applet.

cheers

On Tue, 2007-10-30 at 13:47 +, Sebastien Bacher wrote:
> Thank you for your bug. Could you make a screenshot of the issue?
> 
> ** Changed in: gnome-panel (Ubuntu)
>Importance: Undecided => Low
>  Assignee: (unassigned) => Ubuntu Desktop Bugs (desktop-bugs)
>Status: New => Incomplete

-- 
minor UI: notification area doesn't properly clean rendering up after tooltips 
cover it
https://bugs.launchpad.net/bugs/158458
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


[Bug 158458] Re: minor UI: notification area doesn't properly clean rendering up after tooltips cover it

2007-10-30 Thread Dan Kortschak
** Attachment added: "Screenshot-0.png"
   http://launchpadlibrarian.net/10220587/Screenshot-0.png

-- 
minor UI: notification area doesn't properly clean rendering up after tooltips 
cover it
https://bugs.launchpad.net/bugs/158458
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


[Bug 158458] Re: minor UI: notification area doesn't properly clean rendering up after tooltips cover it

2007-10-30 Thread Dan Kortschak
** Attachment added: "Screenshot-1.png"
   http://launchpadlibrarian.net/10220588/Screenshot-1.png

-- 
minor UI: notification area doesn't properly clean rendering up after tooltips 
cover it
https://bugs.launchpad.net/bugs/158458
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


[Bug 158458] Re: minor UI: notification area doesn't properly clean rendering up after tooltips cover it

2007-10-30 Thread Dan Kortschak
** Attachment added: "Screenshot-2.png"
   http://launchpadlibrarian.net/10220589/Screenshot-2.png

-- 
minor UI: notification area doesn't properly clean rendering up after tooltips 
cover it
https://bugs.launchpad.net/bugs/158458
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


[Bug 158458] Re: minor UI: notification area doesn't properly clean rendering up after tooltips cover it

2007-10-30 Thread Dan Kortschak
** Attachment added: "Screenshot-3.png"
   http://launchpadlibrarian.net/10220590/Screenshot-3.png

-- 
minor UI: notification area doesn't properly clean rendering up after tooltips 
cover it
https://bugs.launchpad.net/bugs/158458
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


[Bug 158448] Re: hiding/unhiding gnome-panel with left button causes whole screen shudder

2007-10-30 Thread Dan Kortschak
** Attachment added: "Screenshot-1.png"
   http://launchpadlibrarian.net/10220622/Screenshot-1.png

-- 
hiding/unhiding gnome-panel with left button causes whole screen shudder
https://bugs.launchpad.net/bugs/158448
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


[Bug 158448] Re: hiding/unhiding gnome-panel with left button causes whole screen shudder

2007-10-30 Thread Dan Kortschak
** Attachment added: "Screenshot-2.png"
   http://launchpadlibrarian.net/10220628/Screenshot-2.png

-- 
hiding/unhiding gnome-panel with left button causes whole screen shudder
https://bugs.launchpad.net/bugs/158448
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


[Bug 24061] Re: GPG error with apt-get (BADSIG 40976EAF437D05B5)

2009-11-12 Thread Dan Kortschak
I am having the same problem, but using ftp without a proxy (we have
proxy authentication problems using http/apt here):

Reading package lists... Done
W: GPG error: ftp://au.archive.ubuntu.com jaunty-updates Release: The following 
signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic 
Signing Key 
W: You may want to run apt-get update to correct these problems

So, at least for this case it is not a matter of apt working around
truly broken proxies. Pointing to other repos
(ftp://mirror.internode.on.net/) results in no error.

-- 
GPG error with apt-get (BADSIG 40976EAF437D05B5)
https://bugs.launchpad.net/bugs/24061
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 474727] [NEW] pbs_server does not email server events

2009-11-04 Thread Dan Kortschak
Public bug reported:

The torque server does not email queue event changes to the requested
address when specified e,g. in torque script including:

<..snip..>
#PBS -m ae
# PBS -M u...@host
<..snip..>

does not result in notification to u...@host on job abort or termination
as it should.

Rebuilding from the sdeb and replacing the pbs_server executable in
place (without replacing any other files from the torque-server deb)
fixes the problem.

It seems that the initial build environment is where pbs_server gets its
information about the location/existence of sendmail (through the
configure script) and in the case of the build of this package that was
either not in place or not detected.

$ lsb_release -rd
Description:Ubuntu 9.04
Release:9.04
$ apt-cache policy torque-server
torque-server:
  Installed: 2.3.6+dfsg-0ubuntu3
  Candidate: 2.3.6+dfsg-0ubuntu3
  Version table:
 *** 2.3.6+dfsg-0ubuntu3 0
500 ftp://au.archive.ubuntu.com jaunty/multiverse Packages
100 /var/lib/dpkg/status

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

-- 
pbs_server does not email server events
https://bugs.launchpad.net/bugs/474727
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 474727] Re: pbs_server does not email server events

2009-11-04 Thread Dan Kortschak
Note:
<..snip..>
#PBS -m ae
# PBS -M u...@host
<..snip..>

should read:
<..snip..>
#PBS -m ae
#PBS -M u...@host
<..snip..>

Typo in bug report not torque script. Added additional comment as
description not editable.

-- 
pbs_server does not email server events
https://bugs.launchpad.net/bugs/474727
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 439708] [NEW] /usr/share/pixmaps/ncbilogo.xpm in package ncbi-data corrupted

2009-09-30 Thread Dan Kortschak
Public bug reported:

Binary package hint: ncbi-data

The NCBI logo icon used by all NCBI packages and provided by ncbi-data
is corrupted - Ugly black stripes right of the DNA helix.

$ lsb_release -cia
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 9.04
Release:9.04
Codename:   jaunty
$ dpkg -S /usr/share/pixmaps/ncbilogo.xpm
ncbi-data: /usr/share/pixmaps/ncbilogo.xpm
$ dpkg -l ncbi-data
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name Version  
Description
+++---
ii  ncbi-data6.1.20080302-4   
Platform-independent data for the NCBI toolkit
$ apt-cache policy ncbi-data
ncbi-data:
  Installed: 6.1.20080302-4
  Candidate: 6.1.20080302-4
  Version table:
 *** 6.1.20080302-4 0
500 http://mirror.internode.on.net jaunty/universe Packages
100 /var/lib/dpkg/status

** Affects: ncbi-tools6 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
/usr/share/pixmaps/ncbilogo.xpm in package ncbi-data corrupted
https://bugs.launchpad.net/bugs/439708
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 441962] Re: zenmap: inconsistency between suggested package and method used for su-to-root/gksu

2009-10-15 Thread Dan Kortschak
In the amd64 and i386 karmic packages the file in question is still
broken.

I don't have time to test the install (this tool is on a net book
required for work), but inspection of the package shows that the path in
the file in question (`/usr/share/applications/zenmap-root.desktop') now
attempts to point to a script that intelligently chooses which su-root
command to use (nice fix), however the file name for that script (from
inspection of the package should be `/usr/share/zenmap/su-to-zenmap.sh')
is incorrectly defined in the menu definition, reflecting the build
environment:
`/build/buildd/nmap-5.00/debian/tmp/usr/share/zenmap/su-to-zenmap.sh'

Sorry I can't test this, but I hope the information is helpful
nonetheless.

-- 
zenmap: inconsistency between suggested package and method used for 
su-to-root/gksu
https://bugs.launchpad.net/bugs/441962
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 363065] Re: No plone-site in dropdown menu in the ZMI

2009-09-24 Thread Dan Kortschak
Mikel Larreategi's solution doesn't work for me. The last line fails
with:

...
_imaging.c:3138: warning: return type defaults to ‘int’
_imaging.c: In function ‘DL_EXPORT’:
_imaging.c:3138: error: expected declaration specifiers before ‘init_imaging’
_imaging.c:3149: error: expected ‘{’ at end of input
error: command 'gcc' failed with exit status 1


python2.4 version:

$ python2.4 -V
Python 2.4.6


** Attachment added: "Output from attempt to build python-imaging"
   http://launchpadlibrarian.net/32416932/python-imaging-fail.log

-- 
No plone-site in dropdown menu in the ZMI
https://bugs.launchpad.net/bugs/363065
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 363065] Re: No plone-site in dropdown menu in the ZMI

2009-09-24 Thread Dan Kortschak
Sorry, should add.

Jaunty 64, pretty much fresh of a live CD.

-- 
No plone-site in dropdown menu in the ZMI
https://bugs.launchpad.net/bugs/363065
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 363065] Re: No plone-site in dropdown menu in the ZMI

2009-09-24 Thread Dan Kortschak
Thanks will try at next available time.

On Fri, 2009-09-25 at 05:52 +, Mikel Larreategi wrote:
> You need to install c and python headers to be able to compile PIL:
> 
> sudo apt-get install build-essentials python2.4
> 
> And also libjpeg and zlib for PIL
> 
> sudo apt-get install libjpeg62-dev zlib1g-dev libfreetype6-dev
> 
-- 
_   .`.`o
     o| ,\__ `./`r
  Dr. Dan Kortschak  dan.kortschak at adelaide.edu.au<\/\_O> O
  "|`...'.\
  Every time I see an adult on a bicycle, I no longer  `  :\
  despair for the future of the human race.   : \
-- H. G. Wells, 1904

  By replying to this email you implicitly accept that your response
  may be forwarded to other recipients, unless otherwise specified.

-- 
No plone-site in dropdown menu in the ZMI
https://bugs.launchpad.net/bugs/363065
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 437463] [NEW] [needs packaging] evolution plugin 'delete-duplicates-plugin'

2009-09-26 Thread Dan Kortschak
Public bug reported:

Evolution has associated with it a number of useful plugins in the
evolution-plugins package. A significant absence is a plugin to remove
duplicates in mail folders.

This plugin exists but has never been packaged with ubuntu, resulting in
significant confusion for a large number of users of the plugin each
time evolution is upgraded and quite a large number of queries about
where such a functionality might be found (more than 4.5M hits on google
for "remove duplicate evolution").

URL: http://www.gnome.org/~carlosg/stuff/evolution/
License: GPLv2
Notes: Four versions exist at the above location all below v0.0.5, however I 
have not had any stability issue with this plugin.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Description changed:

  Evolution has associated with it a number of useful plugins in the
  evolution-plugins package. A significant absence is a plugin to remove
  duplicates in mail folders.
  
  This plugin exists but has never been packaged with ubuntu, resulting in
  significant confusion for a large number of users of the plugin each
  time evolution is upgraded and quite a large number of queries about
  where such a functionality might be found (more than 4.5M hits on google
  for "remove duplicate evolution").
  
  URL: http://www.gnome.org/~carlosg/stuff/evolution/
  License: GPLv2
- Notes: Four versions exist at the above location all below v0.0.5, however I 
have not had any stabilty issue with this plugin.
+ Notes: Four versions exist at the above location all below v0.0.5, however I 
have not had any stability issue with this plugin.

-- 
[needs packaging] evolution plugin 'delete-duplicates-plugin'
https://bugs.launchpad.net/bugs/437463
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 360827] Re: A missing directory and wrong init-scripts in torque-2.3.6 in Jaunty

2009-10-01 Thread Dan Kortschak
After spending a bit of time, more than necessary, I got the server
working, but only after a number of times seeing /etc/init.d/torque-
server clobbering established node files.

To help others out in the same situation (i.e. people who don't read
carefully) I want to clarify the first bug report instructions -
particularly that the check for existing serverdb needs to change too:

case "$1" in
  start)
log_daemon_msg "Starting $DESC"

if [ ! -r /var/lib/torque/server_priv/serverdb ]; then
DAEMON_SERVER_OPTS="-t create $DAEMON_SERVER_OPTS"
fi

In the provided package, the test is for the non-existent
/var/spool/torque/server_priv/serverdb file.

-- 
A missing directory and wrong init-scripts in torque-2.3.6 in Jaunty
https://bugs.launchpad.net/bugs/360827
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 441063] Re: torque-gui: /usr/lib/xpbs/tclIndex and /usr/lib/xpbsmon/tclIndex point to non-existent files

2009-10-02 Thread Dan Kortschak
** Attachment added: "xpbs-tclIndex"
   http://launchpadlibrarian.net/32892688/xpbs-tclIndex

-- 
torque-gui: /usr/lib/xpbs/tclIndex and /usr/lib/xpbsmon/tclIndex point to 
non-existent files
https://bugs.launchpad.net/bugs/441063
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 441063] Re: torque-gui: /usr/lib/xpbs/tclIndex and /usr/lib/xpbsmon/tclIndex point to non-existent files

2009-10-02 Thread Dan Kortschak
** Attachment added: "xpbsmon-tclIndex"
   http://launchpadlibrarian.net/32892713/xpbsmon-tclIndex

-- 
torque-gui: /usr/lib/xpbs/tclIndex and /usr/lib/xpbsmon/tclIndex point to 
non-existent files
https://bugs.launchpad.net/bugs/441063
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 441063] [NEW] torque-gui: /usr/lib/xpbs/tclIndex and /usr/lib/xpbsmon/tclIndex point to non-existent files

2009-10-02 Thread Dan Kortschak
Public bug reported:

/usr/lib/xpbs/tclIndex and /usr/lib/xpbsmon/tclIndex point to non-
existent file; the files clearly have remnants of the build environment
in them, resulting in a broken file description.

$ dpkg -l torque-gui
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ NameVersion Description
+++-===-===-==
ii  torque-gui  2.3.6+dfsg-0ubu GUI for torque clients
$ lsb_release -cia
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 9.04
Release:9.04
Codename:   jaunty
$ apt-cache policy torque-gui
torque-gui:
  Installed: 2.3.6+dfsg-0ubuntu3
  Candidate: 2.3.6+dfsg-0ubuntu3
  Version table:
 *** 2.3.6+dfsg-0ubuntu3 0
500 ftp://au.archive.ubuntu.com jaunty/multiverse Packages
100 /var/lib/dpkg/status

Diffs (purely by way to indicating problem) - changes fix problem:
xpbs-tclIndex
xpbsmon-tclIndex

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

-- 
torque-gui: /usr/lib/xpbs/tclIndex and /usr/lib/xpbsmon/tclIndex point to 
non-existent files
https://bugs.launchpad.net/bugs/441063
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 441962] [NEW] zenmap: inconsistency between suggested package and method used for su-to-root/gksu

2009-10-03 Thread Dan Kortschak
Public bug reported:

Binary package hint: nmap

Menu launch of zenmap under zfce4 fails when suggested packages are
installed due to inconsistency between suggestions and method for
gaining root: package suggests 'gksu', menu entry tries su-to-root
(provided by package 'menu'). For this reason, under the recommended
installation, starting zenmap as su root from the menu fails to work.


$ lsb_release -rd
Description:Ubuntu 9.04
Release:9.04


$ dpkg -l zenmap
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Cfg-files/Unpacked/Failed-cfg/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  zenmap 4.76-0ubuntu4  The Network Mapper Front End


$ apt-cache policy zenmap
zenmap:
  Installed: 4.76-0ubuntu4
  Candidate: 4.76-0ubuntu4
  Version table:
 *** 4.76-0ubuntu4 0
500 http://mirror.internode.on.net jaunty/universe Packages
100 /var/lib/dpkg/status


$ dpkg -s
dpkg-query: --status needs at least one package name argument

Use --help for help about querying packages;
Use --license for copyright license and lack of warranty (GNU GPL).


$ dpkg -s zenmap
Package: zenmap
Status: install ok installed
Priority: extra
Section: net
Installed-Size: 3184
Maintainer: Ubuntu Core Developers 
Architecture: i386
Source: nmap
Version: 4.76-0ubuntu4
Replaces: nmapfe
Provides: nmapfe
Depends: python, python-central (>= 0.6.11), nmap, python (>= 2.5) | 
python-pysqlite2, python-gtk2, python-gobject
Recommends: gksu
Conflicts: nmapfe
Description: The Network Mapper Front End
 Zenmap is an Nmap frontend. It is meant to be useful for advanced users
 and to make Nmap easy to use by beginners. It was originally derived
 from Umit, an Nmap GUI created as part of the Google Summer of Code.
Original-Maintainer: LaMont Jones 
Python-Version: all


Menu description file:

$ cat /usr/share/applications/zenmap-root.desktop
[Desktop Entry]
# The format of this file is specified at
# http://freedesktop.org/Standards/desktop-entry-spec/
# The entries are in the order they are listed in version 0.9.4
Type=Application
Version=1.0
Encoding=UTF-8
Name=Zenmap (as root)
GenericName=The Network Mapper Front End
GenericName[en_GB]=The Network Mapper Front End
GenericName[it]=Interfaccia per il Network Mapper
Comment=Network Mapper frontend
Icon=zenmap.xpm
TryExec=su-to-root
Exec=su-to-root -X -c /usr/bin/zenmap
Path=
Terminal=false
MimeType=
Categories=GNOME;Application;Network;


Changing 'Exec' attribute, or installing 'menu' fixes problem. Suggest either 
change recommended package or method used.

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

-- 
zenmap: inconsistency between suggested package and method used for 
su-to-root/gksu
https://bugs.launchpad.net/bugs/441962
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 1860374] [NEW] External Editor plugin does not open external editor

2020-01-20 Thread Dan Kortschak
Public bug reported:

Installing evolution-plugins-experimental, which contains the external
editor plugin does nothing when opening a new message (with or without
the "Automatically launch when a new mail is edited" check box being
set. The Gnome wiki says "If Automatically launch when a new mail is
edited is not set, you need to select File â–¸ Compose in External Editor
in the mail composer." This File option does not exist.

As an aside, the contacts-map plugin, claimed to exist in this package
does not exist at all.

~ $ dpkg -L evolution-plugins-experimental
/.
/usr
/usr/lib
/usr/lib/evolution
/usr/lib/evolution/plugins
/usr/lib/evolution/plugins/liborg-gnome-external-editor.so
/usr/lib/evolution/plugins/org-gnome-external-editor.eplug
/usr/share
/usr/share/doc
/usr/share/doc/evolution-plugins-experimental
/usr/share/doc/evolution-plugins-experimental/copyright
/usr/share/doc/evolution-plugins-experimental/changelog.Debian.gz
~ $ dpkg -s evolution-plugins-experimental
Package: evolution-plugins-experimental
Status: install ok installed
Priority: optional
Section: gnome
Installed-Size: 69
Maintainer: Ubuntu Developers 
Architecture: amd64
Source: evolution
Version: 3.28.5-0ubuntu0.18.04.1
Depends: libc6 (>= 2.4), libcamel-1.2-61 (>= 3.28.5), libevolution (>= 3.28.5), 
libevolution (<< 3.29), libglib2.0-0 (>= 2.46.0), libgtk-3-0 (>= 3.0.0), 
evolution (= 3.28.5-0ubuntu0.18.04.1)
Description: experimental plugins for Evolution
 Evolution is a groupware suite which integrates mail, calendar,
 address book, to-do list and memo tools.
 .
 This package includes plugins for Evolution. The plugins belong
 to the set of "experimental" plugins, which are unsupported, have
 undergone little testing, and might cause problems to the rest of
 Evolution. Use with care.
 .
 The following plugins are included.
  - external-editor
  - contacts-map
Original-Maintainer: Debian GNOME Maintainers 

Homepage: https://wiki.gnome.org/Apps/Evolution

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: evolution-plugins-experimental 3.28.5-0ubuntu0.18.04.1
ProcVersionSignature: Ubuntu 5.3.0-26.28~18.04.1-generic 5.3.13
Uname: Linux 5.3.0-26-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.9
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Tue Jan 21 07:40:34 2020
InstallationDate: Installed on 2019-05-22 (243 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: evolution
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic

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

Title:
  External Editor plugin does not open external editor

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

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

[Bug 1722478] Re: Two-finger scrolling and click-and-drag no longer works after resuming from suspend

2020-01-24 Thread Dan Kortschak
Also on 18.04.3 with 5.3.0-26-generic on a clevo p650re.

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

Title:
  Two-finger scrolling and click-and-drag no longer works after resuming
  from suspend

To manage notifications about this bug go to:
https://bugs.launchpad.net/linux/+bug/1722478/+subscriptions

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

[Bug 1862589] Re: Synaptics touchpad sporadically not detected at boot

2020-03-01 Thread Dan Kortschak
Any suggestions as to how to debug this would be greatly appreciated.

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

Title:
  Synaptics touchpad sporadically not detected at boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe/+bug/1862589/+subscriptions

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

[Bug 1591472] Re: Xorg crashes immediately on login returning to greeter

2016-06-25 Thread Dan Kortschak
Yoo hoo! Is anyone home?

Some triage love would be greatly appreciated here.

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

Title:
  Xorg crashes immediately on login returning to greeter

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

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


[Bug 1755923] [NEW] package ttf-mscorefonts-installer 3.4+nmu1ubuntu2 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2018-03-14 Thread Dan Kortschak
Public bug reported:

The mscorefont issue continues unabated!

Every morning I am greeted with an autoupdater dialogue telling me that
the ms core ttf fonts can't be installed. This morning I try using the
CL and get this:

```
~ $ sudo apt-get install --reinstall ttf-mscorefonts-installer
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages were automatically installed and are no longer required:
  libqmi-glib1 linux-headers-4.4.0-101 linux-headers-4.4.0-101-generic 
linux-headers-4.4.0-103 linux-headers-4.4.0-103-generic linux-headers-4.4.0-104 
linux-headers-4.4.0-104-generic linux-headers-4.4.0-109
  linux-headers-4.4.0-109-generic linux-image-4.4.0-101-generic 
linux-image-4.4.0-103-generic linux-image-4.4.0-104-generic 
linux-image-4.4.0-109-generic linux-image-extra-4.4.0-101-generic
  linux-image-extra-4.4.0-103-generic linux-image-extra-4.4.0-104-generic 
linux-image-extra-4.4.0-109-generic
Use 'sudo apt autoremove' to remove them.
0 to upgrade, 0 to newly install, 1 to reinstall, 0 to remove and 10 not to 
upgrade.
Need to get 29.5 kB of archives.
After this operation, 0 B of additional disk space will be used.
Get:1 http://mirror.internode.on.net/pub/ubuntu/ubuntu xenial/multiverse amd64 
ttf-mscorefonts-installer all 3.4+nmu1ubuntu2 [29.5 kB]
Fetched 29.5 kB in 0s (136 kB/s)   
Preconfiguring packages ...
(Reading database ... 628677 files and directories currently installed.)
Preparing to unpack .../ttf-mscorefonts-installer_3.4+nmu1ubuntu2_all.deb ...
mscorefonts-eula license has already been accepted
Unpacking ttf-mscorefonts-installer (3.4+nmu1ubuntu2) over (3.4+nmu1ubuntu2) ...
Processing triggers for fontconfig (2.11.94-0ubuntu1.1) ...
Processing triggers for update-notifier-common (3.168.8) ...
ttf-mscorefonts-installer: processing...
ttf-mscorefonts-installer: downloading 
http://downloads.sourceforge.net/corefonts/andale32.exe
Err:1 http://downloads.sourceforge.net/corefonts/andale32.exe
  Protocol "http" not supported or disabled in libcurl
E: Failed to fetch https://nchc.dl.sourceforge.net/project/corefonts/the 
fonts/final/andale32.exe Protocol "http" not supported or disabled in libcurl

E: Download Failed
Setting up ttf-mscorefonts-installer (3.4+nmu1ubuntu2) ...

These fonts were provided by Microsoft "in the interest of cross-
platform compatibility".  This is no longer the case, but they are
still available from third parties.

You are free to download these fonts and use them for your own use,
but you may not redistribute them in modified form, including changes
to the file name or packaging format.

/home//fonts/*: No such file or directory

All done, errors in processing 1 file(s)
mv: cannot stat 'andalemo.ttf': No such file or directory
mv: cannot stat 'ariblk.ttf': No such file or directory
mv: cannot stat 'arial.ttf': No such file or directory
mv: cannot stat 'arialbd.ttf': No such file or directory
mv: cannot stat 'arialbi.ttf': No such file or directory
mv: cannot stat 'ariali.ttf': No such file or directory
mv: cannot stat 'comic.ttf': No such file or directory
mv: cannot stat 'comicbd.ttf': No such file or directory
mv: cannot stat 'cour.ttf': No such file or directory
mv: cannot stat 'courbd.ttf': No such file or directory
mv: cannot stat 'couri.ttf': No such file or directory
mv: cannot stat 'courbi.ttf': No such file or directory
mv: cannot stat 'georgia.ttf': No such file or directory
mv: cannot stat 'georgiab.ttf': No such file or directory
mv: cannot stat 'georgiai.ttf': No such file or directory
mv: cannot stat 'georgiaz.ttf': No such file or directory
mv: cannot stat 'impact.ttf': No such file or directory
mv: cannot stat 'times.ttf': No such file or directory
mv: cannot stat 'timesbd.ttf': No such file or directory
mv: cannot stat 'timesbi.ttf': No such file or directory
mv: cannot stat 'timesi.ttf': No such file or directory
mv: cannot stat 'trebuc.ttf': No such file or directory
mv: cannot stat 'trebucbd.ttf': No such file or directory
mv: cannot stat 'trebucit.ttf': No such file or directory
mv: cannot stat 'trebucbi.ttf': No such file or directory
mv: cannot stat 'verdana.ttf': No such file or directory
mv: cannot stat 'verdanab.ttf': No such file or directory
mv: cannot stat 'verdanai.ttf': No such file or directory
mv: cannot stat 'verdanaz.ttf': No such file or directory
mv: cannot stat 'webdings.ttf': No such file or directory
One or more fonts could not be extracted.
The fonts are NOT installed.
Please run 'dpkg-reconfigure ttf-mscorefonts-installer' to perform the 
installation again
dpkg: error processing package ttf-mscorefonts-installer (--configure):
 subprocess installed post-installation script returned error exit status 1
Errors were encountered while processing:
 ttf-mscorefonts-installer
E: Sub-process /usr/bin/dpkg returned an error code (1)
```

Can we please just let sourceforge die and move somewhere else?

System/package details:

$ lsb_release -rd
Descr

[Bug 990377] Re: lock icon in User Accounts is at best confusing

2018-05-02 Thread Dan Kortschak
One of my hobbies is to shout into the void; bugs are my favourite.

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

Title:
  lock icon in User Accounts is at best confusing

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-control-center/+bug/990377/+subscriptions

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "lspci output with acpi=off noapic boot"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262934/+files/lspci-acpi%3Doff-noapic.txt

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
acpi.tar.bz was not obtainable

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "lspci output for working 16.04 system on same hardware"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262936/+files/lspci-16.04.txt

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "dmesg from boot that results in hang"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262939/+files/dmesg.txt

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "dmidecode.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262933/+files/dmidecode.txt

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "dmidecode output for working 16.04 system on same 
hardware"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262937/+files/dmidecode-16.04.txt

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] [NEW] Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
Public bug reported:

Booting an Ubuntu 18.04.2 LTS amd64 installer USB on a Clevo P650RE3
results in a hang shortly after the desktop is presented, unless
acpi=off and noapic (or nolapic) are given as kernel boot parameters.
The same installer runs without issue on other machines and the 16.04
installer runs without issue on the P650RE3.

Without passing acpi=off and noapic, a desktop comes up and a terminal
can be obtained, but keystrokes and mouse clicks are not responded to
after a small number of seconds. The mouse pointer continues to move
with trackpad input.

With careful timing I was able to obtain, uname, dmidecode and (an
empty) lspci output. I was not able to obtain any /proc/acpi
information, but do have dmesg. These are all attached. With acpi=off
and noapic, I can get lspci and dmidecode output, but obviously no
/proc/acpi. In this case the lspci output is not impty and dmidecode is
identical to the failing case.

** Affects: linux (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: cosmic

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "uname for working 16.04 system on same hardware"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262935/+files/uname-16.04.txt

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "uname.txt"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262932/+files/uname.txt

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
** Attachment added: "/proc/acpi for working 16.04 system on same hardware"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1828568/+attachment/5262938/+files/acpi-16.04.tar.bz

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
lspci.txt is empty

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
What magic is required to get into safe graphic mode from the Disco live
USB? (normal boot on that version fails in the same way)

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1828568] Re: Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless acpi=off and noapic

2019-05-10 Thread Dan Kortschak
Ah, you mean nomodeset. I have tried that now with both 18.04 and 19.04
with success. Both live USBs are stable for at least 10 minutes.

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

Title:
  Ubuntu 18.04.2 LTS amd64 installer hangs shortly after boot unless
  acpi=off and noapic

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

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

[Bug 1830000] [NEW] NVIDIA driver (390) does not allow progress to login screen

2019-05-22 Thread Dan Kortschak
Public bug reported:

Installing the nvidia-driver-390 package and disabling (or not) the
nouveau drivers results in a system that superficially appears to busy
hang before reaching the login screen, leaving only the fsck
"/dev/sda1: clean,..." message on the screen.

The machine is alive, and logging in remotely gives a hint at what is
happening. The output of top shows that init and systemd are struggling
with something:

```
top - 17:24:00 up 1 min,  1 user,  load average: 2.76, 1.00, 0.36
Tasks: 188 total,   2 running, 106 sleeping,   0 stopped,   0 zombie
%Cpu(s): 17.0 us, 15.2 sy,  0.0 ni, 67.6 id,  0.0 wa,  0.0 hi,  0.1 si,  0.0 st
KiB Mem : 16238012 total, 15513832 free,   242248 used,   481932 buff/cache
KiB Swap: 16001020 total, 16001020 free,0 used. 15716900 avail Mem 

  PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND 
   
1 root  20   0  225600   9312   6672 S  60.4  0.1   0:51.63 /sbin/init 
nosplash
  797 root  20   0   71656   7180   5296 S  26.8  0.0   0:14.92 
/lib/systemd/systemd-logind
 1133 root  20   0   46368   3584   1976 R  13.9  0.0   0:12.01 
/lib/systemd/systemd-udevd 
  795 root  20   0 1773200  30772  12548 S  13.2  0.2   0:11.71 
/usr/lib/snapd/snapd   
  784 message+  20   0   51464   6036   3988 S  12.9  0.0   0:11.15 
/usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --s+ 
  308 root  19  -1  249904 120460 114260 S  10.7  0.7   0:10.60 
/lib/systemd/systemd-journald  
 1132 root  20   0   46368   3584   1976 S  10.0  0.0   0:08.71 
/lib/systemd/systemd-udevd 
 1134 root  20   0   46368   3260   1656 S  10.0  0.0   0:08.61 
/lib/systemd/systemd-udevd 
  333 root  20   0   46368   4684   3084 S   5.0  0.0   0:04.25 
/lib/systemd/systemd-udevd   
```

Eventually, Xorg does manage to get a word in, but falls over, to try
again repeatedly.

```
top - 16:52:36 up 2 min,  1 user,  load average: 1.69, 1.04, 0.43
Tasks: 187 total,   2 running, 106 sleeping,   0 stopped,   0 zombie
%Cpu(s):  9.5 us,  3.7 sy,  0.0 ni, 85.6 id,  0.0 wa,  0.0 hi,  1.2 si,  0.0 st
KiB Mem : 16238012 total, 15457080 free,   278152 used,   502780 buff/cache
KiB Swap: 16001020 total, 16001020 free,0 used. 15680684 avail Mem 

  PID USER  PR  NIVIRTRESSHR S  %CPU %MEM TIME+ COMMAND 
   
 1821 root  20   0  312908  61228  20584 R  65.2  0.4   0:01.97 
/usr/lib/xorg/Xorg vt1 -displayfd 3 -auth /run/user/121/gdm/Xauthority -b+ 
  806 root  20   0   71656   7200   5320 S  18.5  0.0   0:24.83 
/lib/systemd/systemd-logind
```

A further hint comes from syslog which is spammed with systemd trying to
start nvidia-persistenced, which is then killed. This happens hundreds
of times while the machine is up. This except shows one instance.

```
May 22 16:34:52 cube systemd[1]: Starting NVIDIA Persistence Daemon...
May 22 16:34:52 cube nvidia-persistenced: Verbose syslog connection opened
May 22 16:34:52 cube nvidia-persistenced: Now running with user ID 123 and 
group ID 127
May 22 16:34:52 cube systemd[1]: Started NVIDIA Persistence Daemon.
May 22 16:34:52 cube nvidia-persistenced: Started (31927)
May 22 16:34:52 cube nvidia-persistenced: device :01:00.0 - registered
May 22 16:34:52 cube nvidia-persistenced: Local RPC service initialized
May 22 16:34:52 cube nvidia-persistenced: Received signal 15
May 22 16:34:52 cube systemd[1]: Stopping NVIDIA Persistence Daemon...
May 22 16:34:52 cube nvidia-persistenced: Socket closed.
May 22 16:34:52 cube nvidia-persistenced: PID file unlocked.
May 22 16:34:52 cube nvidia-persistenced: PID file closed.
May 22 16:34:52 cube nvidia-persistenced: The daemon no longer has permission 
to remove its runtime data directory /var/run/nvidia-persistenced
May 22 16:34:52 cube nvidia-persistenced: Shutdown (31927)
May 22 16:34:52 cube systemd[1]: Stopped NVIDIA Persistence Daemon.
```

This is a fresh install of 18.04.2 (less than an hour old). If apport
has not collected all the necessary details I'll post them after this.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg 1:7.7+19ubuntu7.1
ProcVersionSignature: Ubuntu 4.18.0-20.21~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-20-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNI

[Bug 1830000] Re: NVIDIA driver (390) does not allow progress to login screen

2019-05-22 Thread Dan Kortschak
Unfortunately that does not resolve the issue. The behaviour remains the
same.

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

Title:
  NVIDIA driver (390) does not allow progress to login screen

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

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

[Bug 1830029] [NEW] nouveau driver for nvidia is sluggish on GTX970M to the point of unusability

2019-05-22 Thread Dan Kortschak
Public bug reported:

I am trying to use the nouveau drivers on a recent (today) install of
18.04 on a 2.5yo laptop. Unfortunately the nvidia drivers don't work at
all.

What I am finding is that the sluggishness of the display is comparable
to the case when nouveau drivers are disabled. The only real difference
is in the amount of noise coming from the fan because of a slightly
reduced CPU load due to Xorg.

I don't even know where to start looking into this intelligently, but I
would have expected that the drivers would have gotten to a usable state
in the past 2 1/2 years since I last tried them on this machine.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: xorg 1:7.7+19ubuntu7.1
ProcVersionSignature: Ubuntu 4.18.0-20.21~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-20-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
BootLog: Error: [Errno 13] Permission denied: '/var/log/boot.log'
CompositorRunning: None
CurrentDesktop: ubuntu:GNOME
Date: Wed May 22 21:05:40 2019
DistUpgraded: Fresh install
DistroCodename: bionic
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes
GraphicsCard:
 Intel Corporation HD Graphics 530 [8086:191b] (rev 06) (prog-if 00 [VGA 
controller])
   Subsystem: CLEVO/KAPOK Computer HD Graphics 530 [1558:6540]
 NVIDIA Corporation GM204M [GeForce GTX 970M] [10de:13d8] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: CLEVO/KAPOK Computer GM204M [GeForce GTX 970M] [1558:6540]
InstallationDate: Installed on 2019-05-22 (0 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 004: ID 5986:066d Acer, Inc 
 Bus 001 Device 003: ID 0cf3:e300 Atheros Communications, Inc. 
 Bus 001 Device 002: ID 1c7a:0603 LighTuning Technology Inc. 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Notebook P65_P67RGRERA
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.18.0-20-generic 
root=UUID=d6da27fa-5d91-4240-b3c9-c7de06124a36 ro nomodeset quiet nosplash
SourcePackage: xorg
Symptom: display
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/27/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1.05.13
dmi.board.asset.tag: Tag 12345
dmi.board.name: P65_P67RGRERA
dmi.board.vendor: Notebook
dmi.board.version: Not Applicable
dmi.chassis.asset.tag: No Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Notebook
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1.05.13:bd01/27/2016:svnNotebook:pnP65_P67RGRERA:pvrNotApplicable:rvnNotebook:rnP65_P67RGRERA:rvrNotApplicable:cvnNotebook:ct10:cvrN/A:
dmi.product.family: Not Applicable
dmi.product.name: P65_P67RGRERA
dmi.product.sku: Not Applicable
dmi.product.version: Not Applicable
dmi.sys.vendor: Notebook
version.compiz: compiz N/A
version.libdrm2: libdrm2 2.4.95-1~18.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 18.2.8-0ubuntu0~18.04.2
version.libgl1-mesa-glx: libgl1-mesa-glx 18.2.8-0ubuntu0~18.04.2
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A

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


** Tags: amd64 apport-bug bionic performance ubuntu

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

Title:
  nouveau driver for nvidia is sluggish on GTX970M to the point of
  unusability

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

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

[Bug 1830029] Re: nouveau driver for nvidia is sluggish on GTX970M to the point of unusability

2019-05-22 Thread Dan Kortschak
Removing the nomodeset kernel parameter makes GDM snappier, but it then
hangs on login (relevant portion of syslog attached).

** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1830029/+attachment/5265713/+files/syslog

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

Title:
  nouveau driver for nvidia is sluggish on GTX970M to the point of
  unusability

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

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

[Bug 1830034] [NEW] dock obstructs desktop icons when in auto-hide mode

2019-05-22 Thread Dan Kortschak
Public bug reported:

When not in auto-hide mode, icons are shifted out of the way of the
dock. This does not happen when the dock is in auto-hide mode meaning
that when there is no window to cause it to hide, the icons at the edge
of the desktop are obscured. These icons are commonly Home, Trash and
various volumes.

Either the icons should be autplaced out of the way of the dock, or the
dock should be able to be made to auto-hide always (my preferred
solution) as well as only when a window would be obstructed.

~ $ lsb_release -rd
Description:Ubuntu 18.04.2 LTS
Release:18.04
~ $ apt-cache policy gnome-shell-extension-ubuntu-dock 
gnome-shell-extension-ubuntu-dock:
  Installed: 0.9.1ubuntu18.04.3
  Candidate: 0.9.1ubuntu18.04.3
  Version table:
 *** 0.9.1ubuntu18.04.3 500
500 http://au.archive.ubuntu.com/ubuntu bionic-updates/main amd64 
Packages
500 http://au.archive.ubuntu.com/ubuntu bionic-updates/main i386 
Packages
100 /var/lib/dpkg/status
 0.9.1 500
500 http://au.archive.ubuntu.com/ubuntu bionic/main amd64 Packages
500 http://au.archive.ubuntu.com/ubuntu bionic/main i386 Packages

** Affects: gnome-shell-extension-ubuntu-dock (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "who's-hiding.png"
   
https://bugs.launchpad.net/bugs/1830034/+attachment/5265725/+files/who%27s-hiding.png

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

Title:
  dock obstructs desktop icons when in auto-hide mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1830034/+subscriptions

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

[Bug 1711377] Re: Nautilus desktop mode should relearn handling a dock nicely in intellihide

2019-05-22 Thread Dan Kortschak
An alternative (preferable IMO, and probably simpler) is to make the
dock configurable to always hide.

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

Title:
  Nautilus desktop mode should relearn handling a dock nicely in
  intellihide

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-desktop-icons/+bug/1711377/+subscriptions

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

[Bug 1830000] Re: NVIDIA driver (390) does not allow progress to login screen

2019-05-22 Thread Dan Kortschak
I will give that a go. The nomodeset option was set during istall,
presumably because the live usb install media doesn't boot without it. I
vaguely recall altering that option at the grub menu, but it was a long
day yesterday, so I am not sure (as an aside, why does the grub menu not
come up with shift or esc any more - I needed to alter the grub files to
make it possible to see the menu at all, which is pretty unfriendly).

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

Title:
  NVIDIA driver (390) does not allow progress to login screen

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

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

[Bug 1830029] Re: nouveau driver for nvidia is sluggish on GTX970M to the point of unusability

2019-05-22 Thread Dan Kortschak
Please undo the incomplete. The action that was asked for was performed
in the comment #2.

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

Title:
  nouveau driver for nvidia is sluggish on GTX970M to the point of
  unusability

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

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

[Bug 1830000] Re: NVIDIA driver (390) does not allow progress to login screen

2019-05-22 Thread Dan Kortschak
re:nomodeset: That's odd unless the drivers on the live usb media are
old; nomodeset is definitely needed to not lock up from the live usb on
this machine.

re:grubmenu: I'm not using UEFI, so AFAIU, shift should be the key
(though I tried both). Is it edge triggered? If not, I've had the key
held down from the moment the boot process is started at the boot medium
option screen of my BIOS.

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

Title:
  NVIDIA driver (390) does not allow progress to login screen

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

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

[Bug 1830029] Re: nouveau driver for nvidia is sluggish on GTX970M to the point of unusability

2019-05-22 Thread Dan Kortschak
The reason I ask this is that launchpad has an unfortunate approach to
issue management (these two that you have been communicating in are a
welcome change - thanks) where bugs go stale for years or are dropped
due to lack of engagement from maintainers.

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

Title:
  nouveau driver for nvidia is sluggish on GTX970M to the point of
  unusability

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

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

[Bug 1830000] Re: NVIDIA driver (390) does not allow progress to login screen

2019-05-23 Thread Dan Kortschak
Thank you so very much. That has fixed the problem. In the next couple
of weeks when I can find some time, I'll look into the other issue that
you've been managing and try it with a mainline kernel.

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

Title:
  NVIDIA driver (390) does not allow progress to login screen

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

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

[Bug 1830000] Re: NVIDIA driver (390) does not allow progress to login screen

2019-05-23 Thread Dan Kortschak
Yes, sorry. Removing nomodeset allowed boot to desktop and a functional
and stable system.

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

Title:
  NVIDIA driver (390) does not allow progress to login screen

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

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

[Bug 1830000] Re: NVIDIA driver (390) does not allow progress to login screen

2019-05-23 Thread Dan Kortschak
As an after thought. This could be mitigated by having the nvidia
drivers' postinst check for nomodeset in /etc/defaults/grub and warn if
it is present. It is already running grub-update.

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

Title:
  NVIDIA driver (390) does not allow progress to login screen

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

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

[Bug 1830000] Re: NVIDIA driver (390) does not allow progress to login screen

2019-05-23 Thread Dan Kortschak
Note that I'm not suggesting that it be altered mechanically, but rather
than a warning be written that it may not be what is wanted (note also
that this issue is not about nouveau drivers but NVidia-provided
drivers).

If I'd seen a warning like that on doing `ubuntu-drivers autoinstall`,
this issue would probably not have been filed.

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

Title:
  NVIDIA driver (390) does not allow progress to login screen

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

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

[Bug 1830444] Re: IPv4 does not provide "Shared to other computers" method

2019-05-24 Thread Dan Kortschak
Image of current directly available control panel.

** Attachment added: "no-shared-to-other.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830444/+attachment/5266382/+files/no-shared-to-other.png

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

Title:
  IPv4 does not provide "Shared to other computers" method

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830444/+subscriptions

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

[Bug 1830444] Re: IPv4 does not provide "Shared to other computers" method

2019-05-24 Thread Dan Kortschak
Image of nm-connection editor control, including shared to other.

** Attachment added: "with-shared-to-other.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830444/+attachment/5266383/+files/with-shared-to-other.png

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

Title:
  IPv4 does not provide "Shared to other computers" method

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830444/+subscriptions

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

[Bug 1830444] [NEW] IPv4 does not provide "Shared to other computers" method

2019-05-24 Thread Dan Kortschak
Public bug reported:

In previous versions of Ubuntu (16.04 and before), it was possible to
specify the IPv4 method to use "Shared to other computers" directly from
the top bar (via the via the nm-connection-editor/nm-applet).

This ability is no longer available via the preferred network
configuration panel in the gnome control center, i.e. without invoking
either nm-connection-editor directly or via the nm-applet (which then
doubles up the network controls in the top bar).

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gnome-control-center 1:3.28.2-0ubuntu0.18.04.4
ProcVersionSignature: Ubuntu 4.18.0-20.21~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-20-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat May 25 09:12:16 2019
InstallationDate: Installed on 2019-05-22 (2 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic third-party-packages

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

Title:
  IPv4 does not provide "Shared to other computers" method

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830444/+subscriptions

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

[Bug 1830449] [NEW] Power control panel does not provide suspend on lid close dependent on battery power

2019-05-24 Thread Dan Kortschak
Public bug reported:

In previous versions of Ubuntu (16.04) it was possible to set an
automatic suspend on laptop lid closure when the laptop was battery
powered, but not when on mains. This is no longer available; automatic
suspend provided by the power control panel is purely time-based. The
gnome tweak tool does offer a lid-based suspend trigger, but this is
independent of power source.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gnome-control-center 1:3.28.2-0ubuntu0.18.04.4
ProcVersionSignature: Ubuntu 4.18.0-20.21~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-20-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat May 25 09:33:46 2019
InstallationDate: Installed on 2019-05-22 (2 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic third-party-packages

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

Title:
  Power control panel does not provide suspend on lid close dependent on
  battery power

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830449/+subscriptions

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

[Bug 1830448] [NEW] gnome shell does not respect "Photos: Do nothing" for removable media

2019-05-24 Thread Dan Kortschak
Public bug reported:

Setting "Photos: Do nothing" in the removable media panel of the gnome
control center had no effect in that inserting a removable volume with
photos/video (GoPro SD card) results in Shotwell being opened. The only
way to prevent this from happening is to check "Never prompt or start
programs on media insertion" which then prevents convenient starting of
e.g. DVD playing.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gnome-control-center 1:3.28.2-0ubuntu0.18.04.4
ProcVersionSignature: Ubuntu 4.18.0-20.21~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-20-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sat May 25 09:24:20 2019
InstallationDate: Installed on 2019-05-22 (2 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic third-party-packages

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

Title:
  gnome shell does not respect "Photos: Do nothing" for removable media

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830448/+subscriptions

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

[Bug 1830448] Re: gnome shell does not respect "Photos: Do nothing" for removable media

2019-05-24 Thread Dan Kortschak
This setting prevents Shotwell from starting, but obviously block
everything else as well.

** Attachment added: "never-do-anything.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830448/+attachment/5266389/+files/never-do-anything.png

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

Title:
  gnome shell does not respect "Photos: Do nothing" for removable media

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830448/+subscriptions

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

[Bug 1830448] Re: gnome shell does not respect "Photos: Do nothing" for removable media

2019-05-24 Thread Dan Kortschak
With this setting Shotwell is still started on insertion.

** Attachment added: "do-nothing-for-photos.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830448/+attachment/5266388/+files/do-nothing-for-photos.png

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

Title:
  gnome shell does not respect "Photos: Do nothing" for removable media

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830448/+subscriptions

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

[Bug 1830449] Re: Power control panel does not provide suspend on lid close dependent on battery power

2019-05-24 Thread Dan Kortschak
** Attachment added: "automatic-suspend.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830449/+attachment/5266393/+files/automatic-suspend.png

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

Title:
  Power control panel does not provide suspend on lid close dependent on
  battery power

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830449/+subscriptions

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

[Bug 1830449] Re: Power control panel does not provide suspend on lid close dependent on battery power

2019-05-24 Thread Dan Kortschak
** Attachment added: "lid-suspend.png"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830449/+attachment/5266394/+files/lid-suspend.png

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

Title:
  Power control panel does not provide suspend on lid close dependent on
  battery power

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830449/+subscriptions

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

[Bug 1830444] Re: IPv4 does not provide "Shared to other computers" method

2019-05-25 Thread Dan Kortschak
This is part of the set up process for installation of ev3dev linux on
an EV3 robot controller (see https://www.ev3dev.org/docs/tutorials
/connecting-to-the-internet-via-usb/ scroll down to the linux
instructions).

Connection to the USB via USB is an mandatory step prior to setting up
wi-fi. This step does not work without this option.

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

Title:
  IPv4 does not provide "Shared to other computers" method

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830444/+subscriptions

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

[Bug 1830531] Re: .local domain look ups do not trigger name publication

2019-05-26 Thread Dan Kortschak
~ $ lsb_release -rd
Description:Ubuntu 18.04.2 LTS
Release:18.04

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

Title:
  .local domain look ups do not trigger name publication

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

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

[Bug 1830531] [NEW] .local domain look ups do not trigger name publication

2019-05-26 Thread Dan Kortschak
Public bug reported:

On my local network I find that with 18.04 network name lookups using
.local domains no not work unless stimulated by a non-18.04 machine
first. This is observed for ssh, http, https and ping, but probably not
limited to those.

To demonstrate this here is a ping example.

~ $ ping pi.local
ping: pi.local: Name or service not known
~ $ ping pi.local
ping: pi.local: Name or service not known

# At this point head to another machine running 16.04.6 and execute ping 
pi.local.
# This is immediately successful. Then head back to the 18.04 machine.

~ $ ping pi.local
PING pi.local (192.168.108.28) 56(84) bytes of data.
64 bytes from pi.this.domain (192.168.108.28): icmp_seq=1 ttl=64 time=4.43 ms
64 bytes from pi.this.domain (192.168.108.28): icmp_seq=2 ttl=64 time=5.64 ms
64 bytes from pi.this.domain (192.168.108.28): icmp_seq=3 ttl=64 time=5.98 ms
64 bytes from pi.this.domain (192.168.108.28): icmp_seq=4 ttl=64 time=5.84 ms
^C
--- pi.local ping statistics ---
4 packets transmitted, 4 received, 0% packet loss, time 7018ms
rtt min/avg/max/mdev = 4.435/5.476/5.986/0.613 ms

After a couple of minutes, the name resolution fails again, but can be
brought back again by following the procedure above.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: avahi-daemon 0.7-3.1ubuntu1.2
ProcVersionSignature: Ubuntu 4.18.0-20.21~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-20-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Sun May 26 20:04:58 2019
InstallationDate: Installed on 2019-05-22 (4 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: avahi
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic

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

Title:
  .local domain look ups do not trigger name publication

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

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

[Bug 1830531] Re: .local domain look ups do not trigger name publication

2019-05-26 Thread Dan Kortschak
Before I get a chance to look into this later today, I'd like to note
that the network device is not firewalling those packets since a few
days ago before I installed 18.04 on this machine it was behaving as
expected and the 16.04 machine mentioned in the OP is not being blocked
(it is on a slightly more restrictive policy than this one, but neither
block that port). As for the possibility of blocking outbound packets
from the machine itself, this seems most likely, however, as mentioned,
this is a new install and I have not added any firewalling policy that
would block them, suggesting that it's an out of the box setting.

I'll report back on these and the other tests when I am at that
location.

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

Title:
  .local domain look ups do not trigger name publication

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

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

[Bug 1830531] Re: .local domain look ups do not trigger name publication

2019-05-27 Thread Dan Kortschak
I have checked iptables and there are no rules.

# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source   destination 

Chain FORWARD (policy ACCEPT)
target prot opt source   destination 

Chain OUTPUT (policy ACCEPT)
target prot opt source   destination 


Looking at the the network traffic leaves me bewildered. There is too much 
variability to be able to make any sense of what is going on. Sometimes ping 
works and sometimes not. Restarting avahi-daemon does not appear to make any 
difference to this apart from the obvious flurry of packets when it does.

avahi-resolve-host-name does not behave significantly differently to
ping (it does sometimes work, but then so does ping).

I'm lost with trying to sort this out though.

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

Title:
  .local domain look ups do not trigger name publication

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

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

[Bug 1830979] [NEW] org.gtk.setting.file-chooser.location-mode setting is not respected and is reset to path-bar

2019-05-29 Thread Dan Kortschak
Public bug reported:

The org.gtk.settings.file-chooser.location-mode="filename-entry" setting
is not respected by open and save (other?) file dialogs. Whenever a file
dialog is opened it is in bread crumb ("path-bar") mode irrespective of
the state the conf was set to (in this case "filename-entry"). On
opening dconf-editor, the setting has reverted to "path-bar".

Nautilus does respect the equivalent setting
org.gnome.nautilus.preferences.always-use-location-entry.

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: gnome-core (not installed)
ProcVersionSignature: Ubuntu 4.18.0-20.21~18.04.1-generic 4.18.20
Uname: Linux 4.18.0-20-generic x86_64
NonfreeKernelModules: nvidia_modeset nvidia
ApportVersion: 2.20.9-0ubuntu7.6
Architecture: amd64
CurrentDesktop: ubuntu:GNOME
Date: Thu May 30 07:48:16 2019
InstallationDate: Installed on 2019-05-22 (7 days ago)
InstallationMedia: Ubuntu 18.04.2 LTS "Bionic Beaver" - Release amd64 (20190210)
SourcePackage: meta-gnome3
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic

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

Title:
  org.gtk.setting.file-chooser.location-mode setting is not respected
  and is reset to path-bar

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/meta-gnome3/+bug/1830979/+subscriptions

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

[Bug 1830444] Re: IPv4 does not provide "Shared to other computers" method

2019-06-01 Thread Dan Kortschak
** Changed in: gnome-control-center (Ubuntu)
   Status: Incomplete => New

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

Title:
  IPv4 does not provide "Shared to other computers" method

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/1830444/+subscriptions

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

[Bug 1830531] Re: .local domain look ups do not trigger name publication

2019-06-01 Thread Dan Kortschak
I don't claim that the packets are not being sent, but rather that the
system does not work as expected out of the box when it did in a
previous LTR. I don't really care what package is the cause except to
help get the problem fixed. I have done as much debugging of this as I
am capable since networking is not my area. If additional specific
question need addressing, I can follow up.

** Changed in: avahi (Ubuntu)
   Status: Incomplete => New

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

Title:
  .local domain look ups do not trigger name publication

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

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

[Bug 1860374] Re: External Editor plugin does not open external editor

2020-10-10 Thread Dan Kortschak
The deficit here is not the action, but rather that the action is not
documented in any way except in the source.

>From the source there are two ways to open the editor, either by setting
the "Automatically launch when a new mail is edited" option and then
pressing any key in the Evolution editor, or by pressing Shift-Ctrl-E
with or without that option set.

** 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/1860374

Title:
  External Editor plugin does not open external editor

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

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

[Bug 1695651] Re: GNOME Weather: "Forecast not available"

2021-03-25 Thread Dan Kortschak
The debian bug is informative https://bugs.debian.org/cgi-
bin/bugreport.cgi?bug=983917 and shows that it is fixed upstream
(commit: https://salsa.debian.org/gnome-
team/libgweather/-/commit/bacbf97c838abb33c18aceff09bb06d6df396329).

** Bug watch added: Debian Bug tracker #983917
   https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=983917

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

Title:
  GNOME Weather: "Forecast not available"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-weather/+bug/1695651/+subscriptions

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

  1   2   >