Re: [Bug 1713313] Re: Unable to launch pkexec'ed applications on Wayland session

2019-05-01 Thread Phillip Susi
costales writes:

> Would this hack fix the issue? (Add/Remove xhost +si:localuser:root to the 
> launcher)
> I don't know if this could means something dangerous in Wayland.

I'm not sure if it will fix things run as root via pkexec but it will if
you manually run gui programs as root.  There's no risk involved since
root can already do anything anyhow, including debug the X server and
force it to let them connect.

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

Title:
  Unable to launch pkexec'ed applications on Wayland session

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

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

[Bug 1789922] Re: Unmount is broken

2018-09-11 Thread Phillip Susi
Upstream concluded that the bug lies in udisks.  It needs a similar fix
to one it got before to wait for the changes to propagate before
returning from resize. Unmount needs a similar waiter.


** Also affects: udisks2 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: gnome-disk-utility (Ubuntu)
   Status: New => Invalid

** Bug watch added: github.com/storaged-project/udisks/issues #573
   https://github.com/storaged-project/udisks/issues/573

** Also affects: udisks via
   https://github.com/storaged-project/udisks/issues/573
   Importance: Unknown
   Status: Unknown

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789922

Title:
  Unmount is broken

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

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

[Bug 1789922] Re: Unmount is broken

2018-09-10 Thread Phillip Susi
It turns out that just trying to unmount an fs is broken.  Apparently
resize mounts the fs first for some reason, then when it tries to
unmount, it can't.


** Summary changed:

- Resize is broken
+ Unmount is broken

** Description changed:

- Try to resize an ext4 partition with the gnome disks utility.  It throws
- an error saying it can't unmount the filesystem because it isn't
- mounted.  This is on 18.04.
+ Try to unmount or resize an ext4 partition with the gnome disks utility.
+ It throws an error saying it can't unmount the filesystem because it
+ isn't mounted.  This is on 18.04.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789922

Title:
  Unmount is broken

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

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

[Bug 1789922] Re: Resize is broken

2018-09-10 Thread Phillip Susi
Nevermind, it still doesn't work on the right disk.  While the disk is
not mounted initially, by the time unuse_data_iterate() is called, it
has been mounted for some reason.  I'm thinking there is a race
condition where something mounts the fs temporarily and unmounts it, and
during the time it is mounted is when unuse_data_iterate() is called,
which sees it is mounted, and tries to unmount it, but by the time the
unmount request goes through, it has already been unmounted.


** Changed in: gnome-disk-utility (Ubuntu)
   Status: Invalid => New

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789922

Title:
  Resize is broken

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

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

[Bug 1789922] Re: Resize is broken

2018-09-10 Thread Phillip Susi
Man this cold must really be messing with my head.  I had the wrong
drive selected and actually was trying to resize the root partition.


** Changed in: gnome-disk-utility (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789922

Title:
  Resize is broken

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

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

[Bug 1789922] Re: Resize is broken

2018-09-10 Thread Phillip Susi
So I ran it under gdb and set a breakpoint to find how unmount_cb() is
being called and traced the problem back up to unuse_data_iterate().  It
calls gdu_utils_is_in_use_full(), which incorrectly identifies the mount
point of the filesystem as "/".  So it looks like either it is finding
the wrong mount point for the filesystem and trying to unmount the root
( which you obviously can't do ), or unuse_data_iterate() is actually
being called on the root filesystem instead of the one you are trying to
resize.  Unfortunately I can't tell which since almost all of the data
this code is working with gdb tells me has an incomplete type.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789922

Title:
  Resize is broken

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

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

[Bug 1789922] Re: Resize is broken

2018-08-30 Thread Phillip Susi
Actually it looks like it's gnome-disk-utility that does the unmount and
throws the error.  I can't for the life of me figure out this rat nest
of code though.  In gduresizedialog.c, resize() calls
gdu_utils_ensure_unused() and passes it unmount_cb(), which appears to
be what is throwing that error message after the unmount fails.  What I
can't see is where the actual unmount is done.
gdu_utils_ensure_unused() appears to call g_task_new to set up a task to
invoke that callback after the task itself as run, but I see no call to
g_task_run_in_thread() which would actually specify the task function to
run, and make it run.

** Package changed: udisks2 (Ubuntu) => gnome-disk-utility (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789922

Title:
  Resize is broken

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

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

[Bug 1789693] Re: Format volume requires a volume label

2018-08-30 Thread Phillip Susi
** Changed in: gnome-disk-utility (Ubuntu)
   Status: New => In Progress

** Changed in: gnome-disk-utility (Ubuntu)
 Assignee: (unassigned) => Phillip Susi (psusi)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789693

Title:
  Format volume requires a volume label

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

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

[Bug 1789693] Re: Format volume requires a volume label

2018-08-29 Thread Phillip Susi
Fixed it.


** Tags added: patch

** Patch added: "debdiff.patch"
   
https://bugs.launchpad.net/ubuntu/+source/gnome-disk-utility/+bug/1789693/+attachment/5182282/+files/debdiff.patch

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789693

Title:
  Format volume requires a volume label

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

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

[Bug 573417] Re: disk utility should have udf as an option to format as

2018-08-29 Thread Phillip Susi
This appears to have been fixed at some point over the last 8 years.
There is now an "other" option that opens another dialog that includes
udf as an option.


** Changed in: gnome-disk-utility (Ubuntu)
   Status: Triaged => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/573417

Title:
  disk utility should have udf as an option to format as

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-disk-utility/+bug/573417/+subscriptions

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

[Bug 1023710] Re: Disk Utility's partition creation window is too small

2018-08-29 Thread Phillip Susi
In the years since this was reported, it appears to have been fixed.
There have been substantial changes to the dialog and everything now
seems to fit.


** Changed in: gnome-disk-utility (Ubuntu)
   Status: New => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1023710

Title:
  Disk Utility's partition creation window is too small

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

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

[Bug 1789693] [NEW] Format volume requires a volume label

2018-08-29 Thread Phillip Susi
Public bug reported:

A volume label is an optional feature, but the dialog box greys out the
next button unless you type something in the label field.

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

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1789693

Title:
  Format volume requires a volume label

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

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

Re: [Bug 1652282] Re: Xwayland not using XAUTHORITY, prevents root applications from connecting

2018-08-28 Thread Phillip Susi
On 8/21/2018 9:34 PM, Daniel van Vugt wrote:
> Phillip,
> 
> Mutter is not just a binary, but is also the library which provides ALL
> the graphics for the login screen and gnome-shell. So yes Ubuntu does
> use mutter for everything :)

Ohh... I thought it was an alternative light weight compositing window
manager similar to compiz.  Or was that clutter?

I'm not sure why taking care of spawning Xwayland would be in the
compositing graphics library.

> If your Wayland login option has gone missing then that means the
> Wayland backend ("eglnative") of mutter had crashed during startup and
> so has been disabled. Please log a NEW bug for that by running:

Will do.  Happens in a virtual machine so should be easy to reproduce.

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

Title:
  Xwayland not using XAUTHORITY, prevents root applications from
  connecting

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

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

[Bug 1652282] Re: Xwayland not using XAUTHORITY, prevents root applications from connecting

2018-08-21 Thread Phillip Susi
Ubuntu doesn't use mutter by default though ( is that what lubuntu uses?
).  I looked at this again today and for some reason gdm isn't giving
the option to log in with a wayland session.  I switched to lightdm and
it appears to not bother with Xwayland and just runs gnome-shell, and
gnome-shell in turn spawns Xwayland, so *it* needs patched to add
XAUTHORITY too.


** Also affects: gnome-shell (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Xwayland not using XAUTHORITY, prevents root applications from
  connecting

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

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

Re: [Bug 1713313] Re: Unable to launch pkexec'ed applications on Wayland session

2018-08-20 Thread Phillip Susi
On 8/15/2018 11:46 AM, bodhi.zazen wrote:
> Phillip: I don't know why they even allow you to speak on this thread.
> Please stop spreading misinformation .

Go stand in front of a mirror.  That is the person spreading
misinformation.

> Your gdm3 / XAUTHORITY "bug" has been closed as obsolete, it does not
> work the way you envision.
> 
> https://bugzilla.gnome.org/show_bug.cgi?id=789867

No, it hasn't... it has been migrated to the new bug tracker.

> Yes it was migrated, but there is no acknowledgement in the new location
> that your gdm3 / XAUTHORITY "bug" is going to get addressed in the new
> location and, as with your other "bugs", will be closed .
> 
> The other "bug" you claimed earlier was closed as "not a bug"
> 
> https://bugs.freedesktop.org/show_bug.cgi?id=91071

That isn't mine, and it was closed because it was filed against
Xwayland, which is not where the bug is.  Xwayland is doing what it was
told to do by gdm3.

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

Title:
  Unable to launch pkexec'ed applications on Wayland session

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

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

Re: [Bug 1713313] Re: Unable to launch pkexec'ed applications on Wayland session

2018-08-15 Thread Phillip Susi
On 8/6/2018 12:57 PM, PeterPall wrote:
> This isn't a bug but a major feature of wayland: If you have root rights
> you no more get access to the graphical user interface which makes it
> harder for a gui application to spy on another application's keyboard
> input. The backdraw of this is that every application that needs root
> rights for its work has to be re-written to have 2 parts:

No Peter, this is incorrect.  Wayland is just fine with programs running
as root.  The bug is in gdm3 which is supposed to generate an Xorg
configuration that sets up XAUTHORITY.  Instead when it configures the
Xwayland X11 compatibility server, it configures it to check UID instead
of using XAUTHORITY.  The result is that X11 apps running as root fail
to work, but native Wayland/GTK3 applications run as root work just fine.

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

Title:
  Unable to launch pkexec'ed applications on Wayland session

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

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

[Bug 1782262] [NEW] systemd's default critical battery policy is to hybrid suspend

2018-07-17 Thread Phillip Susi
Public bug reported:

Despite the fact that hibernation is not officially supported, and does
not work out of the box ( and still does not seem to work even after I
manually added the resume= kernel parameter ), the default policy of
systemd on a critical battery level is to perform a hybrid suspend,
wasting time and power writing ram to disk that will never be resumed.

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

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

Title:
  systemd's default critical battery policy is to hybrid suspend

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

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

[Bug 1773334] Re: Ubuntu 18.04 mounted network shares not appearing under devices in file manager

2018-06-20 Thread Phillip Susi
I have patched glib to fix this.  Could you try the version in my PPA
and verify that it works?

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

Title:
  Ubuntu 18.04 mounted network shares not appearing under devices in
  file manager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1773334/+subscriptions

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

[Bug 1773334] Re: Ubuntu 18.04 mounted network shares not appearing under devices in file manager

2018-06-19 Thread Phillip Susi
Reported upstream: https://gitlab.gnome.org/GNOME/glib/issues/1424


** Package changed: udisks2 (Ubuntu) => glib2.0 (Ubuntu)

** Changed in: glib2.0 (Ubuntu)
   Importance: Undecided => High

** Changed in: glib2.0 (Ubuntu)
   Status: Confirmed => Triaged

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

Title:
  Ubuntu 18.04 mounted network shares not appearing under devices in
  file manager

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1773334/+subscriptions

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

[Bug 1767331] Re: package uuid-runtime 2.31.1-0.4ubuntu3 failed to install/upgrade: O pacote está num mau estado de inconsistência; deve reinstala-lo antes de tentar configura-lo.

2018-06-05 Thread Phillip Susi
** Package changed: util-linux (Ubuntu) => glib2.0 (Ubuntu)

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

Title:
  package uuid-runtime 2.31.1-0.4ubuntu3 failed to install/upgrade: O
  pacote está num mau estado de inconsistência; deve  reinstala-lo antes
  de tentar configura-lo.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/glib2.0/+bug/1767331/+subscriptions

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

[Bug 1652282] Re: Xwayland not using XAUTHORITY, prevents root applications from connecting

2017-12-11 Thread Phillip Susi
On 12/7/2017 3:39 PM, Jeremy Bicha wrote:
> $ sudo su
> root@mycomputer:/home/me# gedit
> No protocol specified
> Unable to init server: Could not connect: Connection refused
> 
> (gedit:4492): Gtk-WARNING **: cannot open display: :0

sudo defaults to scrubbing the environment; use sudo -E gedit instead of
sudo su.  Or on Debian just use su without the - argument.  sudo was
explicitly configured to not scrub DISPLAY so that users can still run
X11 applications after sudoing, but has not been updated to include
WAYLAND_DISPLAY in that list.  You can also of course, simply set
WAYLAND_DISPLAY after sudoing to root.

> Therefore, I'm closing this bug. Sorry.

I'm sorry, but as long as the man page for gdm says that it will
configure an XAUTHORITY and it does not, this is ipso facto, a bug,
whatever you think about gui applications running as root.

If this really was an intentional change upstream, they should document
it in the NEWS and man page.  I certainly have not been able to find
anything in the changelog or git commit history that indicates this was
intentional, and of course, the man page should be updated to match the
new implementation if it was intended.



** Changed in: gdm3 (Ubuntu)
   Status: Won't Fix => New

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

Title:
  Xwayland not using XAUTHORITY, prevents root applications from
  connecting

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

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

[Bug 1713313] Re: Unable to launch pkexec'ed applications on Wayland session

2017-12-11 Thread Phillip Susi
** Bug watch added: GNOME Bug Tracker #789867
   https://bugzilla.gnome.org/show_bug.cgi?id=789867

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

Title:
  Unable to launch pkexec'ed applications on Wayland session

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

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

Re: [Bug 1713313] Re: Unable to launch pkexec'ed applications on Wayland session

2017-12-11 Thread Phillip Susi
On 12/7/2017 8:15 PM, bodhi.zazen wrote:
> Wayland , upstream, does not and will not support running graphical
> applications, as root, from the terminal using sudo , period, end of story.
> There are other mechanisms to grant graphical applications root access, but
> again the application itself is not going to run as root.

Yes, it does, as you can easily test by suing to root and running gedit.

> And if you take your fat head out of your ass and look upstream you will
> see every bug files against wayland regarding the problem of running
> graphical applications with sudo has been closed as either not a bug or
> wont fix.

https://bugs.freedesktop.org/show_bug.cgi?id=91071 is not.

Neither is https://bugzilla.gnome.org/show_bug.cgi?id=789867

And there it is noted that wayland does not explicitly allow or deny
root applications.

> On the forums, we would ban him for a period of time, 1-3 months
> depending on his behavior. Often we would start with a week or a month,
> but on his return he would start right back up with his violations, and
> we would extend the ban. Eventually he would cool down and we would
> restore his  privileges.

Well now you're just lieing.  You banned me permanently one time because
I dared to point out that you incorrectly closed another user's thread
for breaking the rules when he did no such thing.

> reference 32 is here https://lwn.net/Articles/517375/

This talks about weston not having to be run as root; not disallowing
client applications running as root.

> The blog is here http://mupuf.org/blog/2014/02/19/wayland-compositors-
> why-and-how-to-handle/

This talks about having weston be able to isolate different clients from
interfering with one another.  Nowhere does it talk about refusing
clients with uid=0.

> Please could both of you take a deep breath and stop the personal
> attacks and aggressive language?

I haven't made any personal attacks.  What I have done is point out that
this misconception that disallowing root applications is not true; that
gdm fails to perform its job as described by its man page.  This
therefore is, ipso facto, a bug, whether or not you agree with the
terrible user facing consequences it has.

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

Title:
  Unable to launch pkexec'ed applications on Wayland session

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

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

[Bug 1652282] Re: Xwayland not using XAUTHORITY, prevents root applications from connecting

2017-12-07 Thread Phillip Susi
No, it is NOT the new standard since as I have said, wayland apps have
no issue running as root.  Applications will NOT be totally rewritten to
split off the parts that need root into a separate program.  YOU stop
changing the title, YOU are being a nuisance: this does not just affect
gparted.  In fact, gparted has now worked around the issue by
automatically running xhost to fix the broken configuration.

Jeremy, you can easily see it is true by simply suing to root and
running any native wayland ( gdm3 ) application ( like gedit ).  It
works just fine.

As long as gdm3 continues to NOT perform the Xauthority configuration
its man page says it is supposed to, it is a bug in gdm3.


** Also affects: gdm3 (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Xwayland not using XAUTHORITY, prevents root applications from
  connecting

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

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

[Bug 1713313] Re: Unable to launch pkexec'ed applications on Wayland session

2017-12-06 Thread Phillip Susi
Excuse my language Bodhi, but bull shit.  You actually can run wayland
apps as root just fine.  It is only X11 apps running under wayland that
no longer run as root, and the reason is simply that gdm3 fails to
configure Xwayland with a proper Xauthority policy, the way its man page
says it should.  It isn't doing what its documentation says it should,
so it's a bug.

Some idiots who think they are the end all know it alls are simply
seizing on the opportunity to push their agenda that GUI applications
should not be run as root.


** Also affects: gdm3 (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  Unable to launch pkexec'ed applications on Wayland session

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

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

[Bug 1731794] Re: package grub-common 2.02~beta2-36ubuntu3.12 failed to install/upgrade: subprocess new pre-removal script returned error exit status 1

2017-12-01 Thread Phillip Susi
Looks like a systemd problem:

Failed to execute operation: Connection timed out
Failed to retrieve unit: Connection timed out
Failed to stop grub-common.service: Connection timed out


** Package changed: grub2 (Ubuntu) => systemd (Ubuntu)

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

Title:
  package grub-common 2.02~beta2-36ubuntu3.12 failed to install/upgrade:
  subprocess new pre-removal script returned error exit status 1

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

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

[Bug 1728228] Re: package grub-common 2.02~beta2-36ubuntu3.12 failed to install/upgrade: sub-processo novo script pre-removal retornou estado de saída de erro 1

2017-11-13 Thread Phillip Susi
** Also affects: systemd (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  package grub-common 2.02~beta2-36ubuntu3.12 failed to install/upgrade:
  sub-processo novo script pre-removal retornou estado de saída de erro
  1

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

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

[Bug 1697450] Re: Installer freezes at session startup

2017-09-22 Thread Phillip Susi
** No longer affects: ubiquity (Ubuntu)

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

Title:
  Installer freezes at session startup

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

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

[Bug 1655779] Re: udev deletes and recreates partition devices when the disk is opened r/w

2017-02-21 Thread Phillip Susi
** Package changed: udev (Ubuntu) => systemd (Ubuntu)

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

Title:
  udev deletes and recreates partition devices when the disk is opened
  r/w

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

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


[Bug 1595963] Re: vt1-6 getting stuck or blank

2016-11-10 Thread Phillip Susi
If you can reproduce it, let us know and we'll try to get a better
handle on it.  Had you already logged in on that terminal before, or was
it supposed to still be sitting at the login prompt?


** No longer affects: systemd (Ubuntu)

** Changed in: util-linux (Ubuntu)
   Status: Confirmed => Incomplete

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

Title:
  vt1-6 getting stuck or blank

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

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


[Bug 1581594] Re: constantly shows wrong temperature (99°C )

2016-05-17 Thread Phillip Susi
It seems that this extra attribute needs to not be treated as
temperature.  I have patched libatasmart to do this.  Please try the
version in my ppa and see if it resolves it for you.  You can add my ppa
by running sudo add-apt-repository ppa:psusi/ppa, then an apt-get update
and upgrade should install the new version of libatasmart.


** No longer affects: gnome-disk-utility (Ubuntu)

** Package changed: udisks2 (Ubuntu) => libatasmart (Ubuntu)

** Changed in: libatasmart (Ubuntu)
   Status: New => In Progress

** Changed in: libatasmart (Ubuntu)
 Assignee: (unassigned) => Phillip Susi (psusi)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1581594

Title:
  constantly shows wrong temperature (99°C )

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

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

[Bug 1574029] Re: Failed to boot after upgrade to 16.04 LTS

2016-04-29 Thread Phillip Susi
** Package changed: grub (Ubuntu) => shared-mime-info (Ubuntu)

** Summary changed:

- Failed to boot after upgrade to 16.04 LTS
+ Upgrade failed

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to shared-mime-info in Ubuntu.
https://bugs.launchpad.net/bugs/1574029

Title:
  Upgrade failed

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/shared-mime-info/+bug/1574029/+subscriptions

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


[Bug 1571500] Re: console port speed impossible to set on ttyUSB0

2016-04-22 Thread Phillip Susi
Then it is a defect in the systemd script: it should not be using the
--keep-baud option.


** Package changed: util-linux (Ubuntu) => systemd (Ubuntu)

** Changed in: systemd (Ubuntu)
   Importance: Undecided => High

** Changed in: systemd (Ubuntu)
   Status: Invalid => Triaged

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

Title:
  console port speed impossible to set on ttyUSB0

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

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


[Bug 1566359] Re: Date and Time conflict with Windows 8.1 dual boot with Ubuntu 16.04 Daily Build

2016-04-18 Thread Phillip Susi
Sadly, the time and date settings used to at least have a check box you
could tick to tell the system that the RTC should use local time, but
along with many other useful options, this appears to have been removed
from gnome-settings-daemon.  Ubiquity should also set this option by
default when doing a side-by-side install.


** Also affects: gnome-settings-daemon (Ubuntu)
   Importance: Undecided
   Status: New

** Package changed: grub-installer (Ubuntu) => ubiquity (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-settings-daemon in Ubuntu.
https://bugs.launchpad.net/bugs/1566359

Title:
  Date and Time conflict with Windows 8.1 dual boot with Ubuntu 16.04
  Daily Build

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

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


[Bug 1530554] Re: pavucontrol (pavucontrol_3.0-3build1_amd64.deb) not run:

2016-01-06 Thread Phillip Susi
** Changed in: pavucontrol (Ubuntu)
   Status: New => Invalid

** Project changed: pulseaudio => ubuntu

** No longer affects: ubuntu

** Project changed: gnome-system-monitor => gnome-system-monitor
(Ubuntu)

** Changed in: gnome-system-monitor (Ubuntu)
   Status: New => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-system-monitor in Ubuntu.
https://bugs.launchpad.net/bugs/1530554

Title:
  pavucontrol (pavucontrol_3.0-3build1_amd64.deb) not run:

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

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


[Bug 1513281] Re: gpg passphrase no longer prompted for

2015-11-07 Thread Phillip Susi
It appears that pinentry-gnome3 is listed as task: ubuntu-desktop, and
so it should have been installed to handle this, yet it has not.  The
ubuntu-desktop package does not depend on it so it looks like a problem
with meta.


** Also affects: ubuntu-meta (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  gpg passphrase no longer prompted for

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

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


[Bug 1513281] [NEW] gpg passphrase no longer prompted for

2015-11-04 Thread Phillip Susi
Public bug reported:

In 15.04 and prior, when using enigmail to send signed email, it would
prompt for my passphrase.  Now it fails saying the passphrase is invalid
( without prompting )  This seems to be because we used to use gnome-
keyring with gpg support enabled, but gnome-keyring is run without gpg
enabled, and so gpg-agent is started, but without the required switches
to use pinentry to prompt for the passphrase, so it only works for
command line gpg, not gui apps like thunderbird/enigmail.

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

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


** Tags: regression-release

** Also affects: gnome-keyring (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  gpg passphrase no longer prompted for

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

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


[Bug 1459475] [NEW] friendly-recovery slows down boot time

2015-05-27 Thread Phillip Susi
Public bug reported:

I noticed that systemd-fsck-root.service runs very late in my boot,
which slows it down.  This turns out to be due to friendly-
recovery.service being After=udev settle, and Before=systemd-fsck-
root.service.  This causes fsck-root to wait until after udev settle,
which takes quite some time ( which is probably another issue ), even
though during normal boots, friendly-recovery is not run at all due to
its Condition depending on the kernel command line recovery argument.

Is there a way to reorganize the relationships so that the transitive
ordering is not triggered when friendly-recovery is not run at all?

** Affects: friendly-recovery (Ubuntu)
 Importance: Undecided
 Status: New

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

** Also affects: systemd (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  friendly-recovery slows down boot time

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/friendly-recovery/+bug/1459475/+subscriptions

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


[Bug 1453602] [NEW] mediatomb fails to start at boot

2015-05-10 Thread Phillip Susi
Public bug reported:

mediatomb fails to start at boot because the network is not yet up.
It's unit file lists After: network-online.target, but this target comes
up before NetworkManager has brought the network up.  I'm guessing it
only counts networks configured in /etc/interfaces.

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

** Affects: network-manager (Ubuntu)
 Importance: Undecided
 Status: New

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

** Also affects: systemd (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: network-manager (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  mediatomb fails to start at boot

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

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


[Bug 1343095] Re: Can't format a usb flash stick

2014-07-20 Thread Phillip Susi
*** This bug is a duplicate of bug 1059872 ***
https://bugs.launchpad.net/bugs/1059872

** This bug is no longer a duplicate of bug 1318954
   Error formatting disk Error synchronizing after initial wipe: Timed out 
waiting for object (udisks-error-quark, 0)
** This bug has been marked a duplicate of bug 1059872
   Error formatting disk using disk utility

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1343095

Title:
  Can't format a usb flash stick

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

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


[Bug 1318954] Re: Error formatting disk Error synchronizing after initial wipe: Timed out waiting for object (udisks-error-quark, 0)

2014-07-20 Thread Phillip Susi
*** This bug is a duplicate of bug 1059872 ***
https://bugs.launchpad.net/bugs/1059872

** This bug has been marked a duplicate of bug 1059872
   Error formatting disk using disk utility

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1318954

Title:
  Error formatting disk Error synchronizing after initial wipe: Timed
  out waiting for object (udisks-error-quark, 0)

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-disk-utility/+bug/1318954/+subscriptions

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


[Bug 1069235] Re: Cannot format disk with existing partition table: Error synchronizing after initial wipe: Timed out waiting for object

2014-07-20 Thread Phillip Susi
*** This bug is a duplicate of bug 1059872 ***
https://bugs.launchpad.net/bugs/1059872

** This bug is no longer a duplicate of bug 1318954
   Error formatting disk Error synchronizing after initial wipe: Timed out 
waiting for object (udisks-error-quark, 0)
** This bug has been marked a duplicate of bug 1059872
   Error formatting disk using disk utility

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1069235

Title:
  Cannot format disk with existing partition table: Error synchronizing
  after initial wipe: Timed out waiting for object

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

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


[Bug 1079683] Re: gnome-disks fails to work with filesystems

2014-07-20 Thread Phillip Susi
*** This bug is a duplicate of bug 1059872 ***
https://bugs.launchpad.net/bugs/1059872

** This bug is no longer a duplicate of bug 1318954
   Error formatting disk Error synchronizing after initial wipe: Timed out 
waiting for object (udisks-error-quark, 0)
** This bug has been marked a duplicate of bug 1059872
   Error formatting disk using disk utility

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1079683

Title:
  gnome-disks fails to work with filesystems

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

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


[Bug 1343095] [NEW] Can't format a usb flash stick

2014-07-16 Thread Phillip Susi
Public bug reported:

When attempting to format a usb flash stick and choosing the MBR
partition table, gnome-disk-utility reports Error sycnchrnonizing after
initial wipe: timed out waiting for object (udisks-error-quark,0).
Further, it seems to have corrupted the existing partition table,
causing parted to complain Error: Invalid Partition table - recursive
partition on /dev/sde.

Furthermore, the format dialog is misleading as it gives the option to
perform a quick format that is non destructive and preserves existing
data, which is not what happens when you repartition a disk.

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

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1343095

Title:
  Can't format a usb flash stick

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

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


[Bug 1251213] Re: From the lock screen , It happened to unable to type password

2014-06-08 Thread Phillip Susi
This does not appear to have anything to do with the installer.


** Package changed: ubiquity (Ubuntu) = gnome-screensaver (Ubuntu)

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

Title:
  From the lock screen , It happened to unable to type password

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

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


[Bug 1321816] [NEW] udev uses wrong/conflicting /dev/disk/by-path link for scsi disks

2014-05-21 Thread Phillip Susi
Public bug reported:

The /dev/disk/by-path links to scsi disks are supposed to be of the form
scsi-$host:$bus:$device$lun.  The host portion is always zero, leading
to duplicates from different hosts.  It appears these numbers are pulled
from ID_PATH, and I can't figure out where this variable comes from.

I noticed this while playing around with the lio fake scsi target
adapter.  Here is the full udev info on a disk created on such an
adapter.  As you can see, it has been assigned scsi host id 13, so that
is what it should be using for the $host digit, rather than zero.

P: /devices/tcm_loop_0/tcm_loop_adapter_5/host13/target13:0:1/13:0:1:0/block/sdg
N: sdg
S: disk/by-path/scsi-0:0:1:0
E: DEVLINKS=/dev/disk/by-path/scsi-0:0:1:0
E: DEVNAME=/dev/sdg
E: 
DEVPATH=/devices/tcm_loop_0/tcm_loop_adapter_5/host13/target13:0:1/13:0:1:0/block/sdg
E: DEVTYPE=disk
E: ID_BUS=scsi
E: ID_MODEL=FILEIO
E: ID_MODEL_ENC=FILEIO\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20
E: ID_PART_TABLE_TYPE=dos
E: ID_PATH=scsi-0:0:1:0
E: ID_PATH_TAG=scsi-0_0_1_0
E: ID_REVISION=4.0
E: ID_SCSI=1
E: ID_TYPE=disk
E: ID_VENDOR=LIO-ORG
E: ID_VENDOR_ENC=LIO-ORG\x20
E: MAJOR=8
E: MINOR=96
E: SUBSYSTEM=block
E: USEC_INITIALIZED=400656927711
E: nomdmonddf=1
E: nomdmonisw=1

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

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

Title:
  udev uses wrong/conflicting /dev/disk/by-path link for scsi disks

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

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


[Bug 1239087]

2014-05-20 Thread Phillip Susi
FYI, when you unbind the scsi disk driver by writing the 1 to the delete
knob in sysfs, it takes care of issuing the synchronize cache and
start/stop unit commands.  You can see this in dmesg.  You mentioned the
usb mass storage driver, which I would not have thought of.  I'd bet
that is the issue.  My guess is that most drives appear to work because
they shut off their LED when given the STOP UNIT command when the scsi
disk driver unbinds, but if the usb mass storage driver is still bound,
some drives decide to keep the LED on.

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1239087

Title:
  Safely remove is not working (or broken) in Gnome Disks

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-disk-utility/+bug/1239087/+subscriptions

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


[Bug 916906] Re: When gparted opens mounted internal Ext* volumes will then show as unmounted in nautilus Devices be removed from unity launcher

2014-02-26 Thread Phillip Susi
I believe this was fixed by a change in libparted for bug #1220165.  Is
anyone still seeing this in saucy?


** Changed in: unity
   Status: Confirmed = Incomplete

** Changed in: gparted (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: gvfs (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: nautilus (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: unity (Ubuntu)
   Status: Confirmed = Incomplete

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

Title:
  When gparted opens  mounted internal Ext*  volumes will then show as
  unmounted in nautilus Devices  be removed from unity launcher

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

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


[Bug 195483] Re: Sound Juicer - MP3 quality doesn't change

2014-02-23 Thread Phillip Susi
It looks like this was fixed upstream years ago.


** Changed in: sound-juicer (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  Sound Juicer - MP3 quality doesn't change

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-media/+bug/195483/+subscriptions

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


[Bug 1281588] [NEW] Disk standby timer is broken

2014-02-18 Thread Phillip Susi
Public bug reported:

gnome-disk-utility's support for the drive standby timer is broken.
Instead of issuing the STANDBY command to the drive, it issues the IDLE
command.

** Affects: gnome-disk-utility (Ubuntu)
 Importance: Undecided
 Status: Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1281588

Title:
  Disk standby timer is broken

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

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


[Bug 1281588] Re: Disk standby timer is broken

2014-02-18 Thread Phillip Susi
** Package changed: gnome-disk-utility (Ubuntu) = udisks (Ubuntu)

** Changed in: udisks (Ubuntu)
   Status: Confirmed = New

** Changed in: udisks (Ubuntu)
   Status: New = Triaged

** Changed in: udisks (Ubuntu)
   Status: Triaged = In Progress

** Changed in: udisks (Ubuntu)
   Importance: Undecided = High

** Changed in: udisks (Ubuntu)
 Assignee: (unassigned) = Phillip Susi (psusi)

** Package changed: udisks (Ubuntu) = udisks2 (Ubuntu)

** Changed in: udisks2 (Ubuntu)
 Assignee: Phillip Susi (psusi) = (unassigned)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-disk-utility in Ubuntu.
https://bugs.launchpad.net/bugs/1281588

Title:
  Disk standby timer is broken

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

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


[Bug 1067876] Re: Missing Safely Remove Drive option from Quicklists. Only have Eject.

2014-01-20 Thread Phillip Susi
Can you run tail -f -n 0 /var/log/syslog, then activate the safely
remove option, and paste the output, and check to see if the /dev/sdX
node is still present?

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

Title:
  Missing Safely Remove Drive option from Quicklists. Only have
  Eject.

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

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


[Bug 1067876] Re: Missing Safely Remove Drive option from Quicklists. Only have Eject.

2014-01-19 Thread Phillip Susi
I tested with usb flash sticks, and yes, the light goes off after safely
remove.

After you safe remote the hd, does the /dev/?da file still show up?

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

Title:
  Missing Safely Remove Drive option from Quicklists. Only have
  Eject.

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

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


[Bug 1067876] Re: Missing Safely Remove Drive option from Quicklists. Only have Eject.

2014-01-18 Thread Phillip Susi
I'm seeing the safely remove option just fine in 13.10.

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

Title:
  Missing Safely Remove Drive option from Quicklists. Only have
  Eject.

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

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


[Bug 1251899] Re: every time I restart udisksd, the unity panel adds another audio disc icon

2013-11-27 Thread Phillip Susi
** Bug watch added: GNOME Bug Tracker #719423
   https://bugzilla.gnome.org/show_bug.cgi?id=719423

** Also affects: gvfs via
   https://bugzilla.gnome.org/show_bug.cgi?id=719423
   Importance: Unknown
   Status: Unknown

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

Title:
  every time I restart udisksd, the unity panel adds another audio
  disc icon

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

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


[Bug 1251899] Re: every time I restart udisksd, the unity panel adds another audio disc icon

2013-11-26 Thread Phillip Susi
Seems this is a bug in gvfs-udisks2-volume-monitor.  Killing that clears
the duplicates.


** Package changed: unity (Ubuntu) = gvfs (Ubuntu)

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

Title:
  every time I restart udisksd, the unity panel adds another audio
  disc icon

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

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


[Bug 1020759]

2013-11-06 Thread Phillip Susi
(In reply to comment #2)
 The motivation for moving out of /media was that with /media any user can
 access the filesystem that your user mounts.

This isn't true.  The filesystem is mounted so that only the mounting
user has permissions.

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

Title:
  /run/media is an unnecessary divergence from the FHS

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

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


[Bug 396226] Re: GDM logs out after some minutes of typing on the keyboard

2013-10-09 Thread Phillip Susi
** No longer affects: util-linux (Ubuntu Karmic)

** No longer affects: util-linux (Ubuntu)

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

Title:
  GDM logs out after some minutes of typing on the keyboard

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

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


[Bug 1237169] [NEW] CD Drive widget does not show selected drive

2013-10-08 Thread Phillip Susi
Public bug reported:

I could have sworn I filed this a few years ago but can't find it now.
The cd drive selection widget in the sound-juicer preferences shows a
blank instead of the default drive.  Upstream has a recent commit to fix
this, which I have cherry picked and hope to get into saucy before final
freeze the day after tomorrow, and then back port to 12.04.

** Affects: sound-juicer
 Importance: Unknown
 Status: Unknown

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

** Affects: sound-juicer (Ubuntu)
 Importance: Undecided
 Status: New

** Bug watch added: GNOME Bug Tracker #674191
   https://bugzilla.gnome.org/show_bug.cgi?id=674191

** Also affects: sound-juicer via
   https://bugzilla.gnome.org/show_bug.cgi?id=674191
   Importance: Unknown
   Status: Unknown

** Also affects: brasero (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  CD Drive widget does not show selected drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/sound-juicer/+bug/1237169/+subscriptions

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


[Bug 1237169] Re: CD Drive widget does not show selected drive

2013-10-08 Thread Phillip Susi
** Branch linked: lp:~psusi/ubuntu/saucy/brasero/fix-drive-selector

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

Title:
  CD Drive widget does not show selected drive

To manage notifications about this bug go to:
https://bugs.launchpad.net/sound-juicer/+bug/1237169/+subscriptions

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


[Bug 1197969] Re: Date and Time config missing cities

2013-07-04 Thread Phillip Susi
** Package changed: compizconfig-settings-manager (Ubuntu) = gnome-
control-center (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/1197969

Title:
  Date and Time config missing cities

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

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


[Bug 257454] Re: sound-juicer crashed with SIGSEGV in g_closure_invoke()

2013-06-24 Thread Phillip Susi
8.10 has reached end of life.  I don't suppose you can still reproduce
this on 12.04 or newer?


** Changed in: sound-juicer (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: sound-juicer (Ubuntu)
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned)

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

Title:
  sound-juicer crashed with SIGSEGV in g_closure_invoke()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sound-juicer/+bug/257454/+subscriptions

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


[Bug 269854] Re: sound-juicer crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

2013-06-24 Thread Phillip Susi
** Changed in: sound-juicer (Ubuntu)
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned)

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

Title:
  sound-juicer crashed with SIGSEGV in g_cclosure_marshal_VOID__VOID()

To manage notifications about this bug go to:
https://bugs.launchpad.net/sound-juicer/+bug/269854/+subscriptions

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


[Bug 123431] Re: Shifted replay of audio tracks from hybrid CD

2013-06-24 Thread Phillip Susi
What do you mean it doesn't conform to the blue book standard?  And does
this still happen with 12.04 or later?


** Changed in: sound-juicer (Ubuntu)
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned)

** Changed in: sound-juicer (Ubuntu)
   Status: Triaged = Incomplete

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

Title:
  Shifted replay of audio tracks from hybrid CD

To manage notifications about this bug go to:
https://bugs.launchpad.net/sound-juicer/+bug/123431/+subscriptions

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


[Bug 32484] Re: selection should default to free space

2013-06-21 Thread Phillip Susi
** Changed in: gparted (Ubuntu)
   Status: Triaged = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to a duplicate bug report (48042).
https://bugs.launchpad.net/bugs/32484

Title:
  selection should default to free space

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

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


[Bug 515600] Re: does not generate seektables

2013-06-20 Thread Phillip Susi
This has been fixed in gstreamer1.0, which sound-juicer now uses.


** Changed in: gstreamer0.10 (Ubuntu)
   Status: Triaged = Won't Fix

** Changed in: sound-juicer (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  does not generate seektables

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

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


[Bug 67698] Re: prerm should not remove alternative on upgrade

2013-06-14 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: galeon (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  prerm should not remove alternative on upgrade

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

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


[Bug 260918] Re: needed: libv4l and associated application patches (or gspca stopped working in 2.6.27)

2013-06-12 Thread Phillip Susi
** No longer affects: amsn (Ubuntu Lucid)

** No longer affects: came (Ubuntu Lucid)

** No longer affects: camorama (Ubuntu Lucid)

** Changed in: camorama (Ubuntu)
   Status: Confirmed = Invalid

** No longer affects: camstream (Ubuntu Lucid)

** No longer affects: ekiga (Ubuntu Lucid)

** No longer affects: gst-plugins-good0.10 (Ubuntu Lucid)

** No longer affects: libv4l (Ubuntu Lucid)

** No longer affects: mplayer (Ubuntu Lucid)

** No longer affects: pwlib (Ubuntu Lucid)

** No longer affects: vlc (Ubuntu Lucid)

** No longer affects: xawtv (Ubuntu Lucid)

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
https://bugs.launchpad.net/bugs/260918

Title:
  needed: libv4l and associated application patches (or gspca stopped
  working in 2.6.27)

To manage notifications about this bug go to:
https://bugs.launchpad.net/adobe-flash-plugin-tools/+bug/260918/+subscriptions

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


[Bug 343219] Re: Adding Fast User Switcher applet causes shut down options to disappear from System menu

2013-06-12 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: fast-user-switch-applet (Ubuntu)
   Status: New = Invalid

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

Title:
  Adding Fast User Switcher applet causes shut down options to disappear
  from System menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/null-and-void/+bug/343219/+subscriptions

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


[Bug 130610] Re: fast-user-switch-applet crashed with SIGSEGV

2013-06-12 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: fast-user-switch-applet (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  fast-user-switch-applet crashed with SIGSEGV

To manage notifications about this bug go to:
https://bugs.launchpad.net/fast-user-switch-applet/+bug/130610/+subscriptions

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


[Bug 366076] Re: DBus error org.gtk.Private.RemoteVolumeMonitor.Failed: An operation is already pending on CD eject attempt

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  DBus error org.gtk.Private.RemoteVolumeMonitor.Failed: An operation
  is already pending on CD eject attempt

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

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


[Bug 352263] Re: not usefoul message Cannot unmount volume ... probably mounted manually

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  not usefoul message Cannot unmount volume ... probably mounted
  manually

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

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


[Bug 352270] Re: extra dbus timeout error displayed when an unmount error dialog stay on screen

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  extra dbus timeout error displayed when an unmount error dialog stay
  on screen

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

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


[Bug 115230] Re: specific icon in the data being written notification

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  specific icon in the data being written notification

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-mount/+bug/115230/+subscriptions

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


[Bug 203722] Re: Double clicking on Floppy Drive gives an error (Unable to mount location) despite it's mounted but not opened in Hardy RC

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Double clicking on Floppy Drive gives an error (Unable to mount
  location) despite it's mounted but not opened in Hardy RC

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

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


[Bug 325315] Re: Flushing Cache notification too verbose

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  Flushing Cache notification too verbose

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-mount/+bug/325315/+subscriptions

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


[Bug 344839] Re: Cannot Mount External drive error message is unhelpful

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  Cannot Mount External drive error message is unhelpful

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-mount/+bug/344839/+subscriptions

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


[Bug 239407] Re: Unable to Access Floppy Drive in Ubuntu Hardy LTS (NOT Beta/ Release Candidate)

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: New = Invalid

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

Title:
  Unable to Access Floppy Drive in Ubuntu Hardy LTS (NOT Beta/ Release
  Candidate)

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

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


[Bug 132279] Re: 'Cannot mount volume' details are not selectable

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  'Cannot mount volume' details are not selectable

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-mount/+bug/132279/+subscriptions

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


[Bug 117011] Re: Gnome-mount will only mount encrypted partitions and not drives created with cryptsetup/luks

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  Gnome-mount will only mount encrypted partitions and not drives
  created with cryptsetup/luks

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-mount/+bug/117011/+subscriptions

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


[Bug 236309] Re: Users need guidance for: Cannot mount volume. message

2013-06-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-mount (Ubuntu)
   Status: Triaged = Invalid

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

Title:
  Users need guidance for: Cannot mount volume. message

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-mount/+bug/236309/+subscriptions

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


[Bug 274197] Re: GPM Icon locks up on AC Status change

2013-06-10 Thread Phillip Susi
Intrepid has reached end of life.  Do you still have this issue on 12.04
or later?


** Changed in: gnome-power-manager (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in Ubuntu.
https://bugs.launchpad.net/bugs/274197

Title:
  GPM Icon locks up on AC Status change

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

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


[Bug 457816] Re: cannot play Quicktime reference media

2013-06-07 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: mplayerplug-in (Ubuntu)
   Status: New = Invalid

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

Title:
  cannot play Quicktime reference media

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

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


[Bug 153248] Re: landscape printed output is trucated to portrait page width

2013-06-06 Thread Phillip Susi
Hardy has reached end of life, and this package is not present in later
releases. Closing all related bugs.

** Changed in: cupsys (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  landscape printed output is trucated to portrait page width

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

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


[Bug 73750] Re: After hibernate: Battery not correctly recognized/displayed in Panel applet

2013-05-23 Thread Phillip Susi
It is upower --dump that we need to see, not udisks.  Please attach this
information after waking up.


** Changed in: gnome-power-manager (Ubuntu)
   Status: Confirmed = Incomplete

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-power-manager in Ubuntu.
https://bugs.launchpad.net/bugs/73750

Title:
  After hibernate: Battery not correctly recognized/displayed in Panel
  applet

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

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


[Bug 231773] Re: Appearance dialog breaking and entering CompizConfig, instead of custom radio button

2013-05-14 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: compizconfig-settings-manager (Ubuntu)
   Status: New = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in Ubuntu.
https://bugs.launchpad.net/bugs/231773

Title:
  Appearance dialog breaking and entering CompizConfig, instead of
  custom radio button

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

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


[Bug 175078] Re: Standard error should remain empty under normal circumstances

2013-05-13 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gstreamer0.10-pitfdll (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Standard error should remain empty under normal circumstances

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gstreamer0.10-pitfdll/+bug/175078/+subscriptions

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


[Bug 174049] Re: nautilus crashed with SIGSEGV in g_slist_foreach()

2013-05-13 Thread Phillip Susi
Ales, please have apport file a new bug.


** Changed in: nautilus (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  nautilus crashed with SIGSEGV in g_slist_foreach()

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

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


[Bug 289988] Re: Ctrl-Shift-V shortcut no longer works in gnome-terminal

2013-05-13 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: vmware-player (Ubuntu)
   Status: New = Invalid

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

Title:
  Ctrl-Shift-V shortcut no longer works in gnome-terminal

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/vmware-player/+bug/289988/+subscriptions

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


[Bug 185691] Re: cd burning returns cannot send CUE sheet and fails on SATA burners

2013-05-13 Thread Phillip Susi
Is this still an issue on 12.04 or later?  If so can you confirm that
cdrecord does work, and the model of the drive?


** Changed in: brasero (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: brasero (Ubuntu)
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned)

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

Title:
  cd burning returns cannot send CUE sheet and fails on SATA burners

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

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


[Bug 203668] Re: [Hardy] Selecting Quit causes Gnome to stop responding

2013-05-13 Thread Phillip Susi
Hardy has reached end of life.  Does this happen with 12.04 or later?


** Changed in: gnome-session (Ubuntu)
   Status: Confirmed = Incomplete

** Changed in: gnome-session (Ubuntu)
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned)

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

Title:
  [Hardy] Selecting Quit causes Gnome to stop responding

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

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


[Bug 202850] Re: Rhythmbox doesn't warn if hfsplus isn't installed

2013-05-13 Thread Phillip Susi
iPods don't expose themselves as a raw block device, so even if they use
hfsplus internally ( which I don't think they do ), it isn't needed.


** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Rhythmbox doesn't warn if hfsplus isn't installed

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

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


[Bug 232259] Re: wrong browser language in javascript

2013-05-13 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: xulrunner-1.9 (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  wrong browser language in javascript

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/epiphany-browser/+bug/232259/+subscriptions

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


[Bug 203068] Re: Slow scrolling in Epiphany

2013-05-13 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: xulrunner-1.9 (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  Slow scrolling in Epiphany

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/epiphany-browser/+bug/203068/+subscriptions

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


[Bug 181645] Re: epiphany-gecko crashed with SIGSEGV in __kernel_vsyscall()

2013-05-13 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: xulrunner-1.9 (Ubuntu)
   Status: Confirmed = Invalid

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

Title:
  epiphany-gecko crashed with SIGSEGV in __kernel_vsyscall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/epiphany-browser/+bug/181645/+subscriptions

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


[Bug 146167] Re: Installing codecs exposes bad and ugly terminology

2013-05-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-app-install (Ubuntu)
   Status: Triaged = Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gst-plugins-good0.10 in Ubuntu.
https://bugs.launchpad.net/bugs/146167

Title:
  Installing codecs exposes bad and ugly terminology

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-app-install/+bug/146167/+subscriptions

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


[Bug 577955] Re: all conduits breaked!

2013-05-10 Thread Phillip Susi
This package has been removed from Ubuntu. Closing all related bugs.

** Changed in: gnome-pilot (Ubuntu)
   Status: New = Invalid

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

Title:
  all conduits breaked!

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

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


[Bug 85291] Re: filesystems are never fsck'ed if they live on removable USB disks

2013-05-09 Thread Phillip Susi
Automatic periodic fscks have long annoyed many people and don't do any
good, which is why we have stopped doing them on internal disks.  It
would likely be much more of an annoyance on removable media.  Ext3/4
don't need such checks even if you unplug them without unmounting.  For
the filesystems that do ( fat, ntfs ), we don't have a way of detecting
when they need checked, or decent tools to properly check them anyhow.


** Changed in: gnome-volume-manager (Ubuntu)
   Status: Confirmed = Won't Fix

-- 
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-volume-manager in Ubuntu.
https://bugs.launchpad.net/bugs/85291

Title:
  filesystems are never fsck'ed if they live on removable USB disks

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

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


[Bug 1176106] Re: Nautilus file order problem when copying files to FAT32 USB

2013-05-04 Thread Phillip Susi
It happens to work in Windows because you are probably using NTFS, which
does actually store all directory entries in alphabetical order, and FAT
stores them in the first free space, so if you create a fresh, empty
directory, then add the files, that will be the order they end up in.
Removing and adding more files to the directory though, will cause the
order to jumble up.

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

Title:
  Nautilus file order problem when copying files to FAT32 USB

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

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


[Bug 1176106] Re: Nautilus file order problem when copying files to FAT32 USB

2013-05-03 Thread Phillip Susi
This is a defect in the device, not nautilus.  The order files are
stored in the directory on disk is undefined and can not be relied on.
Either the device should be sorting them or you should use a play list
to tell the device the order you want them listed in.


** Changed in: nautilus (Ubuntu)
   Status: New = Invalid

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

Title:
  Nautilus file order problem when copying files to FAT32 USB

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

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


  1   2   3   >