[Bug 1802738] Re: cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB modem

2019-06-06 Thread Maarten Jacobs
Hello Kai-Heng,

I see how the fix I provided is included in the 4.4.0, however I don't
see it (yet) in 4.15.0. Is there something I need to do to get this fix
into 4.15.0, or will it eventually percolate through by itself?

Thanks!

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

Title:
  cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB
  modem

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

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

[Bug 1590799] Re: nfs-kernel-server does not start because of dependency failure

2019-06-06 Thread Maarten Jacobs
Hello Rafael,

In response to your question. I upgraded my server from Trusty to Xenial
and then found out my NFS services weren't running right. After some
digging I came across this this bug, and I applied the work-around
manually, as I mentioned in my comment #73.

A week or two later I realized my NFS service once again stopped
working, which then made me realize the changes I'd applied manually
were no longer present. I assumed that was due to the files being
replaced with updated ones when a package update was distributed.

At that point I figured out how to make my work-around survive, as
documented in my comment #75.

I do not understand the intricacies of this issue, so the only thing I
can say is that me applying these changes resolves the problem for me.
I'd have to find some time to dig into this more to figure out why the
baseline versions of the services don't work for me.

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

Title:
  nfs-kernel-server does not start because of dependency failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1590799/+subscriptions

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

[Bug 1590799] Re: nfs-kernel-server does not start because of dependency failure

2019-05-19 Thread Maarten Jacobs
As it turns out, I'd not subscribed to this bug so I didn't get comments
after I posted mine. I had to refer back to my own comment to figure out
the solution since my NFS server apparently broke earlier this week.

An update to nfs-common (I think that's the package that installs the
service files) was pushed out and overwrote the "fix" I'd put in
earlier.

A more complete fix (after some trial and error) was to create the
"override.conf" files for nfs-server and nfs-mountd using:

sudo systemctl edit nfs-server (same for nfs-mountd).

I copy/pasted the baseline service definitions into the override files
and added my own tweaks. With that, the override files I am currently
running with are as follows (output from systemctl cat nfs-server and
nfs-mountd):

---
# /etc/systemd/system/nfs-server.service.d/override.conf
[Unit]
Description=NFS server and services
DefaultDependencies=no
Requires= network.target proc-fs-nfsd.mount
Requires= nfs-mountd.service
Wants=rpcbind.socket
Wants=nfs-idmapd.service

After= local-fs.target
After= network.target proc-fs-nfsd.mount rpcbind.socket nfs-mountd.service
After= nfs-idmapd.service rpc-statd.service
Before= rpc-statd-notify.service

# GSS services dependencies and ordering
Wants=auth-rpcgss-module.service
After=rpc-gssd.service rpc-svcgssd.service

# start/stop server before/after client
Before=remote-fs-pre.target

Wants=nfs-config.service
After=nfs-config.service

BindsTo=rpcbind.service
After=rpcbind.service

[Service]
EnvironmentFile=-/run/sysconfig/nfs-utils

ExecStart=
Type=oneshot
RemainAfterExit=yes
ExecStartPre=/usr/sbin/exportfs -r
ExecStart=/usr/sbin/rpc.nfsd $RPCNFSDARGS
ExecStop=/usr/sbin/rpc.nfsd 0
ExecStopPost=/usr/sbin/exportfs -au
ExecStopPost=/usr/sbin/exportfs -f

ExecReload=/usr/sbin/exportfs -r

[Install]
WantedBy=multi-user.target
--

Note the addition of:
   BindsTo=rpcbind.service
   After=rpcbind.service
   ExecStart=

--
# /etc/systemd/system/nfs-mountd.service.d/override.conf
[Unit]
Description=NFS Mount Daemon
DefaultDependencies=no
Requires=proc-fs-nfsd.mount
After=proc-fs-nfsd.mount
After=network.target local-fs.target
After=rpcbind.socket
BindsTo=nfs-server.service

Wants=nfs-config.service rpcbind.service
After=nfs-config.service rpcbind.service

[Service]
EnvironmentFile=-/run/sysconfig/nfs-utils
Type=forking
ExecStart=
ExecStart=/usr/sbin/rpc.mountd $RPCMOUNTDARGS
--

Note the addition of "rpcbind.service" on the "Wants" and "After" lines,
as well as the "ExecStart=".

It took me a bit to figure out the "ExecStart=" directives were
required. As I found out, the ExecStart directive is additive, so the
"ExecStart=" directive is required to "clear out" the directive set in
the baseline service files. (In other words, the baseline service file
is read before override.conf is read).

This appears to work for me on Ubuntu 16.04.06. I am not in a position
to verify these tweaks work on later versions of Ubuntu.

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

Title:
  nfs-kernel-server does not start because of dependency failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1590799/+subscriptions

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

[Bug 1590799] Re: nfs-kernel-server does not start because of dependency failure

2019-04-28 Thread Maarten Jacobs
This issue just popped up for me after upgrading from 14.04 to 16.04.6.

Per comments #20 and #25, I changed nfs-mountd.service to include
rpcbind.service

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

Title:
  nfs-kernel-server does not start because of dependency failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1590799/+subscriptions

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

[Bug 1590799] Re: nfs-kernel-server does not start because of dependency failure

2019-04-28 Thread Maarten Jacobs
This issue just popped up for me after upgrading from 14.04 to 16.04.6.

Per comments #20 and #25, I changed nfs-mountd.service to include
rpcbind.service to the Wants and After statements:

Wants=nfs-config.service rpcbind.service
After=nfs-config.service rpcbind.service

I also added BindsTo and Wants statements to nfs-server.service:

BindsTo=rpcbind.service
After=rpcbind.service

On a reboot, nfs-server service ran as expected.

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

Title:
  nfs-kernel-server does not start because of dependency failure

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nfs-utils/+bug/1590799/+subscriptions

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

[Bug 1802738] Re: cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB modem

2018-11-30 Thread Maarten Jacobs
The patch was picked up in the stable kernel
(https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/), and
added to 4.19.5, 4.14.84, 4.9.141, 4.4.165, and 4.20-rc4.

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

Title:
  cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB
  modem

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

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

[Bug 1758653] Re: gvfsd[1366]: mkdir failed on directory /var/cache/samba: Permission denied

2018-11-22 Thread Maarten Jacobs
Oddly enough, this problem started for me after I mounted a NFS volume
using autofs.

Not quite sure how that relates to samba - but it may mean something.

In response to David Spoelstra's comment. I meant to follow his
direction but accidentally installed samba-common (rather then samba-
common-bin).

Both packages appear to create /var/cache/samba, which resolves the
problem experienced by gvfsd.

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

Title:
  gvfsd[1366]: mkdir failed on directory /var/cache/samba: Permission
  denied

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

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

[Bug 1802738] Re: cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB modem

2018-11-20 Thread Maarten Jacobs
My kernel patch was accepted this morning (very quick!!). Per the
notification received:

"The patch will show up in the next release of the linux-next tree
(usually sometime within the next 24 hours during the week.)

The patch will hopefully also be merged in Linus's tree for the
next -rc kernel release."

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

Title:
  cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB
  modem

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

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

[Bug 1802738] Re: cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB modem

2018-11-19 Thread Maarten Jacobs
Hello Joseph,

To keep things in sync here (and to make sure the bug doesn't expire due
to inactivity):

1. I worked my way through the process for submitting a kernel patch. (Not for 
the faint hearted I might add ;))
2. The patch has been submitted - now I have to wait and see if there's anybody 
listening.

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

Title:
  cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB
  modem

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

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

[Bug 1802738] Re: cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB modem

2018-11-11 Thread Maarten Jacobs
The change I applied to cdc-acm.c is as follows:

--- cdc-acm.orig.c  2018-11-11 11:31:18.754382981 -0500
+++ cdc-acm.c   2018-11-10 17:32:29.802278377 -0500
@@ -1713,6 +1713,9 @@
{ USB_DEVICE(0x0572, 0x1324), /* Conexant USB MODEM RD02-D400 */
.driver_info = NO_UNION_NORMAL, /* has no union descriptor */
},
+   { USB_DEVICE(0x0572, 0x1349), /* Hiro (Conexant) USB MODEM H50228 */
+   .driver_info = NO_UNION_NORMAL, /* has no union descriptor */
+   },
{ USB_DEVICE(0x0572, 0x1328), /* Shiro / Aztech USB MODEM UM-3100 */
.driver_info = NO_UNION_NORMAL, /* has no union descriptor */
},

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

Title:
  cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB
  modem

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

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

[Bug 1802738] [NEW] cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB modem

2018-11-11 Thread Maarten Jacobs
Public bug reported:

I procured a USB modem manufactured by Hiro (model number H50228). This
is in fact a Conexant modem, and while some conexant models are
supported in cdc_adm, this particular type is not.

Hence, when I connect the modem to my system, cdc_adm does not
initialize the modem properly, as evidenced by errors reported through
journalctl:


Nov 10 21:46:10  kernel: usbcore: registered new interface driver cdc_acm
Nov 10 21:46:10  kernel: cdc_acm: USB Abstract Control Model driver for 
USB modems and ISDN adapters
Nov 10 21:47:01  kernel: cdc_acm 4-2:1.0: Zero length descriptor 
references
Nov 10 21:47:01  kernel: cdc_acm: probe of 4-2:1.0 failed with error -22

Similar errors of this type have been reported previously, and following
the resolution for these errors I recompiled the cdc_acm kernel module,
after which the modem is successfully registered:

Nov 10 21:47:48  kernel: usbcore: registered new interface driver cdc_acm
Nov 10 21:47:48  kernel: cdc_acm: USB Abstract Control Model driver for 
USB modems and ISDN adapters
Nov 10 21:48:17  kernel: cdc_acm 4-2:1.0: ttyACM0: USB ACM device

With my modified kernel module, the modem works (at least for the
purposes I need it).

I will attach the patch once this bug has been opened. I don't know how
to submit a patch for formal consideration so need some help on that
front... Neither am I sure how to figure out exactly if this was already
addressed in an upstream fix.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.4.0-138-generic 4.4.0-138.164
ProcVersionSignature: Ubuntu 4.4.0-138.164-generic 4.4.155
Uname: Linux 4.4.0-138-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.18
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  jacobsma   4053 F pulseaudio
 /dev/snd/controlC0:  jacobsma   4053 F pulseaudio
 /dev/snd/controlC2:  jacobsma   4053 F pulseaudio
CurrentDesktop: XFCE
Date: Sun Nov 11 11:20:40 2018
HibernationDevice: RESUME=UUID=899fa33b-30cb-41f4-b709-557ad528a5bd
InstallationDate: Installed on 2016-03-06 (979 days ago)
InstallationMedia: Xubuntu 14.04.4 LTS "Trusty Tahr" - Release amd64 
(20160217.1)
MachineType: System manufacturer System Product Name
ProcFB: 0 nouveaufb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-138-generic 
root=UUID=70a8bdf6-e697-4112-b584-4b650002555d ro
RelatedPackageVersions:
 linux-restricted-modules-4.4.0-138-generic N/A
 linux-backports-modules-4.4.0-138-generic  N/A
 linux-firmware 1.157.20
RfKill:
 
SourcePackage: linux
UpgradeStatus: Upgraded to xenial on 2018-03-16 (240 days ago)
dmi.bios.date: 09/11/2014
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 1701
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: M5A78L-M LX PLUS
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev X.0x
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1701:bd09/11/2014:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnM5A78L-MLXPLUS:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


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

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

Title:
  cdc_acm driver lacks trival support for Hiro (Conexant) H05228 USB
  modem

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

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

[Bug 1710051] Re: xorg crash/freeze when Chrome uses WebGL, caused by: GPU HANG: ... chrome ... reason: Hang on render ring, action: reset

2018-07-23 Thread Maarten Jacobs
I have been seeing this similar issue for some time but hadn't gotten to
looking into it. My system was also running with the subject driver:

xserver-xorg-video-intel   2:2.99.917+git20160325-1ubuntu1.2
amd64X.Org X server -- Intel i8xx, i9xx display driver

My graphics card:

01:00.0 VGA compatible controller: NVIDIA Corporation GF119 [GeForce GT
610] (rev a1)

For experimentation sake, I switched to NVidia proprietary drivers... To
see if that helps any (for my case).

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

Title:
  xorg crash/freeze when Chrome uses WebGL, caused by: GPU HANG: ...
  chrome ... reason: Hang on render ring, action: reset

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1710051/+subscriptions

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

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

2018-03-04 Thread Maarten Jacobs
Public bug reported:

Package installation fails - the font files appear to be downloaded but
fail the hash check.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: ttf-mscorefonts-installer 3.4+nmu1ubuntu2
ProcVersionSignature: Ubuntu 4.4.0-116.140-generic 4.4.98
Uname: Linux 4.4.0-116-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.15
AptOrdering:
 ttf-mscorefonts-installer: Configure
 NULL: ConfigurePending
Architecture: amd64
Date: Sat Mar  3 21:13:11 2018
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
InstallationDate: Installed on 2013-05-04 (1764 days ago)
InstallationMedia: Xubuntu 13.04 "Raring Ringtail" - Release amd64 (20130423.1)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.3
 apt  1.2.25
SourcePackage: msttcorefonts
Title: package ttf-mscorefonts-installer 3.4+nmu1ubuntu2 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 1
UpgradeStatus: Upgraded to xenial on 2018-03-03 (0 days ago)

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


** Tags: amd64 apport-package need-duplicate-check xenial

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

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

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

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

[Bug 1693273] [NEW] package unattended-upgrades 0.82.1ubuntu2.5 failed to install/upgrade: EOF on stdin at conffile prompt

2017-05-24 Thread Maarten Jacobs
Public bug reported:

Ran into this issue when I booted up my laptop today - the error was
presented immediately as I logged on.

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: unattended-upgrades 0.82.1ubuntu2.5
ProcVersionSignature: Ubuntu 3.13.0-119.166-generic 3.13.11-ckt39
Uname: Linux 3.13.0-119-generic x86_64
NonfreeKernelModules: wl
ApportVersion: 2.14.1-0ubuntu3.23
AptOrdering:
 freerdp-nightly: Install
 unattended-upgrades: Install
 freerdp-nightly: Configure
 unattended-upgrades: Configure
Architecture: amd64
Date: Sat May 20 03:34:24 2017
ErrorMessage: EOF on stdin at conffile prompt
InstallationDate: Installed on 2013-05-04 (1480 days ago)
InstallationMedia: Xubuntu 13.04 "Raring Ringtail" - Release amd64 (20130423.1)
PackageArchitecture: all
RelatedPackageVersions:
 dpkg 1.17.5ubuntu5.7
 apt  1.0.1ubuntu2.17
SourcePackage: unattended-upgrades
Title: package unattended-upgrades 0.82.1ubuntu2.5 failed to install/upgrade: 
EOF on stdin at conffile prompt
UpgradeStatus: Upgraded to trusty on 2014-04-25 (1124 days ago)

** Affects: unattended-upgrades (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package trusty

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

Title:
  package unattended-upgrades 0.82.1ubuntu2.5 failed to install/upgrade:
  EOF on stdin at conffile prompt

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1693273/+subscriptions

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


[Bug 1587123] Re: Light locker does not lock the display

2016-10-06 Thread Maarten Jacobs
I have finally been able to spend some time to dig into this more. After
much trial and error, I ran xfce-power-manager from the command line
(xfce4-power-manager --debug --no-daemon), and I realized the following
message is being displayed over and over:

TRACE[xfpm-inhibit.c:357] xfpm_inhibit_un_inhibit(): UnHibit message received
TRACE[xfpm-inhibit.c:95] xfpm_inhibit_has_inhibit_changed(): Inhibit removed
TRACE[xfpm-inhibit.c:343] xfpm_inhibit_inhibit(): Inhibit send application 
name=/usr/bin/google-chrome reason=Uploading data to 
bn3sch020022343.gateway.messenger.live.com sender=:1.5650
TRACE[xfpm-inhibit.c:101] xfpm_inhibit_has_inhibit_changed(): Inhibit added
TRACE[xfpm-inhibit.c:357] xfpm_inhibit_un_inhibit(): UnHibit message received
TRACE[xfpm-inhibit.c:95] xfpm_inhibit_has_inhibit_changed(): Inhibit removed

Based on this, I closed my "hotmail" (mail.live.com) page in Google -
and subsequently my screen locks and the screensaver engages.

If I re-open hotmail, the screen no longer locks and my displays stay on
forever.

The ultimate question is why a background process can interrupt the
power manager like this? This is not the expected behavior, is there
either a bug in the code, or something wrong with my configuration?

** Package changed: light-locker (Ubuntu) => xfce4-power-manager
(Ubuntu)

** Summary changed:

- Light locker does not lock the display
+ Display is not locked on Xubuntu

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

Title:
  Display is not locked on Xubuntu

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

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


[Bug 1587120] Re: Connection refused when application connects to dbus socket

2016-06-04 Thread Maarten Jacobs
The problem with light-locker (as I mentioned in comment #2) is not
related to this. I added NO_AT_BRIDGE=1 to my environment
(/etc/environment) which resolve the presentation of this error.

Consider adding NO_AT_BRIDGE=1 a work-around for this bug, although it's
not (yet) clear to me why this is needed or what it changes in the
system behavior to prevent this error from being presented.

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

Title:
  Connection refused when application connects to dbus socket

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

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


[Bug 1587123] Re: Light locker does not lock the display

2016-06-04 Thread Maarten Jacobs
** Description changed:

  I recently upgraded to kernel 4.2.0-36-generic, and since then light-
  locker doesn't work anymore. However long I leave my machine on, it
  never locks.
  
  I played around with the power management settings, to no avail.
  
  I believe (such is my theory) that this is related to a problem with
  dbus (https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/1587120),
- however in case it is not I'm opning a separate bug on light-locker
+ however in case it is not I'm opening a separate bug on light-locker
  specifically.
  
  Note that I have a number of different machines all running the same
  version of xubuntu, and all have the same problem after the recent
  upgrade.
  
  I also have a machine that is running xscreensaver, which is working
  fine.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: light-locker 1.4.0-0ubuntu1
  ProcVersionSignature: Ubuntu 4.2.0-36.42~14.04.1-generic 4.2.8-ckt8
  Uname: Linux 4.2.0-36-generic x86_64
  ApportVersion: 2.14.1-0ubuntu3.21
  Architecture: amd64
  CurrentDesktop: XFCE
  Date: Mon May 30 11:50:27 2016
  ExecutablePath: /usr/bin/light-locker
  InstallationDate: Installed on 2016-03-06 (84 days ago)
  InstallationMedia: Xubuntu 14.04.4 LTS "Trusty Tahr" - Release amd64 
(20160217.1)
  SourcePackage: light-locker
  UpgradeStatus: No upgrade log present (probably fresh install)

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

Title:
  Light locker does not lock the display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/light-locker/+bug/1587123/+subscriptions

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


[Bug 1587120] Re: Connection refused when application connects to dbus socket

2016-06-04 Thread Maarten Jacobs
This appears to be the same issue as that reported in
https://bugs.launchpad.net/ubuntu/+source/at-spi2-core/+bug/1193236.

However that bug was marked as "invalid" - even though the symptoms
reported in it persist and have been reported at later dates (and I
found the same issue).

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

Title:
  Connection refused when application connects to dbus socket

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

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


[Bug 1587123] [NEW] Light locker does not lock the display

2016-05-30 Thread Maarten Jacobs
Public bug reported:

I recently upgraded to kernel 4.2.0-36-generic, and since then light-
locker doesn't work anymore. However long I leave my machine on, it
never locks.

I played around with the power management settings, to no avail.

I believe (such is my theory) that this is related to a problem with
dbus (https://bugs.launchpad.net/ubuntu/+source/dbus/+bug/1587120),
however in case it is not I'm opning a separate bug on light-locker
specifically.

Note that I have a number of different machines all running the same
version of xubuntu, and all have the same problem after the recent
upgrade.

I also have a machine that is running xscreensaver, which is working
fine.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: light-locker 1.4.0-0ubuntu1
ProcVersionSignature: Ubuntu 4.2.0-36.42~14.04.1-generic 4.2.8-ckt8
Uname: Linux 4.2.0-36-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.21
Architecture: amd64
CurrentDesktop: XFCE
Date: Mon May 30 11:50:27 2016
ExecutablePath: /usr/bin/light-locker
InstallationDate: Installed on 2016-03-06 (84 days ago)
InstallationMedia: Xubuntu 14.04.4 LTS "Trusty Tahr" - Release amd64 
(20160217.1)
SourcePackage: light-locker
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: light-locker (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

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

Title:
  Light locker does not lock the display

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/light-locker/+bug/1587123/+subscriptions

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


[Bug 1587120] Re: Connection refused when application connects to dbus socket

2016-05-30 Thread Maarten Jacobs
I opened bug https://bugs.launchpad.net/ubuntu/+source/light-
locker/+bug/1587123 specifically for my issue with light-locker, which
may/not be related to this issue.

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

Title:
  Connection refused when application connects to dbus socket

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

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


[Bug 1323758] Re: Mouse stops working when connected usb-storage-device

2015-12-23 Thread Maarten Jacobs
Magic! I'd been trying to figure out how to prevent my mouse from
stopping at apparently random points... Works like magic!

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

Title:
  Mouse stops working when connected usb-storage-device

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

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


[Bug 1323758] Re: Mouse stops working when connected usb-storage-device

2015-12-23 Thread Maarten Jacobs
Magic! I'd been trying to figure out how to prevent my mouse from
stopping at apparently random points... Works like magic!

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to qemu in Ubuntu.
https://bugs.launchpad.net/bugs/1323758

Title:
  Mouse stops working when connected usb-storage-device

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

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


[Bug 1318000] [NEW] Nouveau video driver does not correctly identify display on Ubuntu 14.04

2014-05-09 Thread Maarten Jacobs
Public bug reported:

I recently stepped up my machine to Ubuntu 140.04. Prior to the move, I
was running with NVidia proprietary drivers.

Today I decided to go back to the X.org drivers - however it appears
there is some issue that is preventing the XServer from correctly
identifying my displays.

It presently only uses a single display (I have two), with the wrong
resolution. It also identifies the display as Default and does not
allow me to change resolution, etc.

I noted the same issue on my laptop, where the display is identified as
Default when I use the Nouveau driver.

On my workstation I have a NVIDIA Corporation G94 [GeForce 9600 GT] (rev
a1).

On my laptop I have a NVIDIA Corporation G98M [Quadro NVS 160M] (rev
a1).

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8
ProcVersionSignature: Ubuntu 3.13.0-24.47-generic 3.13.9
Uname: Linux 3.13.0-24-generic i686
ApportVersion: 2.14.1-0ubuntu3
Architecture: i386
CurrentDesktop: XFCE
Date: Fri May  9 14:04:18 2014
InstallationDate: Installed on 2010-12-21 (1235 days ago)
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to trusty on 2014-04-26 (12 days ago)

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


** Tags: apport-bug i386 resolution trusty

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

Title:
  Nouveau video driver does not correctly identify display on Ubuntu
  14.04

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

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


[Bug 1309651] Re: MiniDLNA missing from Ubuntu 14.04 LTS

2014-04-27 Thread Maarten Jacobs
Great Thanos, your PPA certainly saved me a bit of a headache.

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

Title:
  MiniDLNA missing from Ubuntu 14.04 LTS

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

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


[Bug 1243970] Re: Cursor is \scrambled\ when shape changes in Remote Desktop Session

2014-01-05 Thread Maarten Jacobs
I can retest this, but it'll be a bit before I can get round to this as
I'll have to build a test platform with the right configuration. I'll
post the requested additional data when I'm able to recreate the
problem.

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

Title:
  Cursor is \scrambled\ when shape changes in Remote Desktop Session

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

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


[Bug 1159724] Re: Evince Error setting extended attribute 'xdg.origin.url' while saving a duplicate

2013-12-01 Thread Maarten Jacobs
Not anything to do with FAT32 (I don't think) as I just ran into the
same issue copying a file to a NFS mounted EXT4 filesystem.

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

Title:
  Evince Error setting extended attribute 'xdg.origin.url' while saving
  a duplicate

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

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


[Bug 1243970] Re: Cursor is \scrambled\ when shape changes in Remote Desktop Session

2013-10-25 Thread Maarten Jacobs
I have played around with this issue some more. For as far as I can
determine the problem only appears to affect RDP sessions; VNC sessions
do not seem to have the problem.

FWIW...

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

Title:
  Cursor is \scrambled\ when shape changes in Remote Desktop Session

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

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


[Bug 1243970] Re: Cursor is \scrambled\ when shape changes in Remote Desktop Session

2013-10-25 Thread Maarten Jacobs
Ok - the problem seems to be related to the fact that I had two monitors
set up - split over two graphics cards (the onboard and a second card).
As soon as I disabled one of the two monitors the effect disappeared.

 I've installed a different graphics card that allows me to run both
monitors from the same card and the problem appears to be resolved.

Still - I'd not have expected this behavior, and I can hardly imagine
this is as designed. Furthermore, when I also couldn't get the system
to properly recognize the second monitor - something that now works ok.

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

Title:
  Cursor is \scrambled\ when shape changes in Remote Desktop Session

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

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


[Bug 1159724] Re: Evince Error setting extended attribute 'xdg.origin.url' while saving a duplicate

2013-10-25 Thread Maarten Jacobs
I just ran into the same problem - when trying to copy a file to a FAT32
formatted USB stick. I'm wondering if the target filesystem format has
something to do with it?

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

Title:
  Evince Error setting extended attribute 'xdg.origin.url' while saving
  a duplicate

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

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


[Bug 1243970] [NEW] Cursor is \scrambled\ when shape changes in Remote Desktop Session

2013-10-23 Thread Maarten Jacobs
Public bug reported:

When I run a Remote Desktop Session to a windows host - either local on
my machine in a VM or remote - the cursor appears in a garbled square -
maybe 20x20 pixels.

The square seems to show some of the content of the windows hidden by
the Remote Session application.

I tried this with a variety of different Remote Desktop Applications -
and all have the same issue, when the cursor in the Remote Session is
not an arrow, it is scrambled.

I also found that with Remmina, the problem does not appear - because
the cursor shape never changes.

I cannot get a screenshot of the behavior - taking the screenshot
somehow resolves the problem - but only for the fraction of time that
the screenshot is taken.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: xorg 1:7.7+1ubuntu6
ProcVersionSignature: Ubuntu 3.11.0-12.19-generic 3.11.3
Uname: Linux 3.11.0-12-generic i686
ApportVersion: 2.12.5-0ubuntu2
Architecture: i386
Date: Wed Oct 23 19:01:14 2013
InstallationDate: Installed on 2010-12-21 (1037 days ago)
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
MarkForUpload: True
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to saucy on 2013-10-18 (5 days ago)

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


** Tags: apport-bug corruption i386 saucy

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

Title:
  Cursor is \scrambled\ when shape changes in Remote Desktop Session

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

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


[Bug 1069019] Re: [software-properties-gtk] can not delete, enable or modify any software source with non-ASCII characters in the comment

2013-10-18 Thread Maarten Jacobs
I just came across the same issue after I upgraded to 13.10 Saucy from
13.04 Raring and I could no longer change my Software Sources.

Turned out I had a รด hiding in one of the comments in my sources.list.
Things worked fine after I changed that to an o without ^.

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

Title:
  [software-properties-gtk] can not delete, enable or modify any
  software source with non-ASCII characters in the comment

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-apt/+bug/1069019/+subscriptions

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

[Bug 701505] Re: Problem with Adobe Reader update: Unable to find the HTML rendering library

2013-07-04 Thread Maarten Jacobs
I fixed this problem by installing the package kompozer and pointing
to the /usr/lib/kompozer directory for the HTML Rendering Library.

More importantly I killed the /opt/Adobe/Reader9/Reader/intellinux/bin
/SynchronizerApp-binary process that was running - I believe this
prevented the change in the setting from being applied initially. After
I killed this process and restarted reader, the error went away.

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

Title:
  Problem with Adobe Reader update: Unable to find the HTML rendering
  library

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

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


[Bug 832401] Re: pactl command fails with connection refused

2012-12-09 Thread Maarten Jacobs
Same issue here... Running XUbuntu 12.10. pactl list works successfully
when executed from the local machine.

Connection refused when executing pactl through an ssh session to the
same machine (same user).

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

Title:
  pactl command fails with connection refused

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

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


[Bug 832401] Re: pactl command fails with connection refused

2012-12-09 Thread Maarten Jacobs
Funnily enough there is a workaround for me...

ssh user@server pactl list

works fine and does not return an error.

Wondering if the case I'm looking at has nothing to do with pactl.
Trying to figure out other cases that might result in the same failure.

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

Title:
  pactl command fails with connection refused

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

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


[Bug 1082726] [NEW] Duplicated filesystem icons appear on XUbuntu 12.10 desktop

2012-11-24 Thread Maarten Jacobs
Public bug reported:

I upgraded to XUbuntu 12.10 from 12.04; since I did it shows my old
Windows partition twice on the desktop (as an unmounted 74GB
Filesystem).

I found some instructions here:

http://askubuntu.com/questions/207296/after-upgrade-to-
xubuntu-12-10-i-have-2-mount-points-for-each-partition

for a non-persistent work-around.

However I have not been able to find a persistent work-around, so the
problem re-appears every time I reboot.

It would appear this is a bug - but I couldn't find one. Does anybody
know if a bug should be open on this, and if so whether one exists
already? Does anybody know what causes this behavior, and what I can do
to prevent it?

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Duplicated filesystem icons appear on XUbuntu 12.10 desktop

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

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


[Bug 1082726] Re: Duplicated filesystem icons appear on XUbuntu 12.10 desktop

2012-11-24 Thread Maarten Jacobs
Assign to xfce4 - not sure what the right package is.

** Package changed: ubuntu = xfce4 (Ubuntu)

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

Title:
  Duplicated filesystem icons appear on XUbuntu 12.10 desktop

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

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


[Bug 1081811] [NEW] Cannot add Software Updater to System Submenu in XUbuntu 11.10

2012-11-21 Thread Maarten Jacobs
Public bug reported:

Today I upgraded from XUbuntu 12.04 to XUbuntu 12.10 on two machines.
After upgrading the second machine, I noticed that the Update Manager
(Software Updater) launcher no longer shows in the System sub-menu
from the xfce menu.

I tried enabling Software Updater through Settings Manager-Main
Menu. The Software Updater option is shown as disabled (no checkmark
- see attached screenshot).

When I select the checkbox it will be checked, and remain checked for ~
2 seconds, after which it becomes unchecked again.

I noticed that making the selection causes some changes to files that
exist in ~/.config/menus/ and ~/.local/share/applications.

However, when I first selected the option for Software Updater, the
file applications.menu was created in ~/.config/menus (it did not exist
before), so I am thinking there is some sort of inconsistency between
the location of the actual configuration files that drive the menu
layout, and where alacarte seems to think the configuration files
reside.

Anyways - if anybody has any idea how to fix this I'd appreciate it. I'd
like to be able to enable menu options, and to be able to run Software
Updater from the menu.

P.S.: I also tried enabling Software Sources on the same submenu -
with the same result, so the problem is not specific to Software
Updater, I believe.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: alacarte 3.5.5-0ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic i686
ApportVersion: 2.6.1-0ubuntu6
Architecture: i386
Date: Wed Nov 21 17:26:12 2012
ExecutablePath: /usr/bin/alacarte
InstallationDate: Installed on 2011-12-22 (335 days ago)
InstallationMedia: Xubuntu 11.10 Oneiric Ocelot - Release i386 (20111012)
InterpreterPath: /usr/bin/python2.7
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: alacarte
UpgradeStatus: Upgraded to quantal on 2012-11-20 (1 days ago)

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


** Tags: apport-bug i386 quantal

** Attachment added: Alacarte - Main Menu Editor.png
   
https://bugs.launchpad.net/bugs/1081811/+attachment/3440775/+files/Alacarte%20-%20Main%20Menu%20Editor.png

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

Title:
  Cannot add Software Updater to System Submenu in XUbuntu 11.10

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

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


[Bug 488696] Re: syntax error in nsswitch config near [ syntax error ]

2012-06-17 Thread Maarten Jacobs
Hmm. I ran into more issues with autofs. Not sure when they actually
started, I only noticed them today. After some poking around I figured
out that:

1. The map auto.master: Local domain name not set error occurs when I include 
+auto.master in /etc/auto.master. I also found out that this entry in 
/etc/auto.master is not required (at least on my installation).
2. For some bizarre reason, the way I had my autofs map files set up didn't 
work anymore without specifically adding .local to the server identification. 
For instance I'd set up:

/home/user/Pictures server:/home/user/Pictures

I had to change this to:

/home/user/Pictures server.local:/home/user/Pictures

This (so far) appears to have solved my issues with automount.

At the same time I also changed /etc/nsswitch.conf:

From:

hosts:  files mdns4_minimal [NOTFOUND=return] dns mdns4

To:

hosts:  files dns mdns4_minimal [NOTFOUND=return] mdns4

But I'm not sure that had any impact.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to autofs5 in Ubuntu.
https://bugs.launchpad.net/bugs/488696

Title:
  syntax error in nsswitch config near [ syntax error ]

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

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


[Bug 488696] Re: syntax error in nsswitch config near [ syntax error ]

2012-06-17 Thread Maarten Jacobs
Note to previous - had to install dnsmasq package and run the dnsmasq
deamon to fix the problem with the resolution of hostnames on the local
network. After that I removed the .local extension from the server
name and things are still working for me.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to autofs5 in Ubuntu.
https://bugs.launchpad.net/bugs/488696

Title:
  syntax error in nsswitch config near [ syntax error ]

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

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


[Bug 488696] Re: syntax error in nsswitch config near [ syntax error ]

2012-06-17 Thread Maarten Jacobs
Hmm. I ran into more issues with autofs. Not sure when they actually
started, I only noticed them today. After some poking around I figured
out that:

1. The map auto.master: Local domain name not set error occurs when I include 
+auto.master in /etc/auto.master. I also found out that this entry in 
/etc/auto.master is not required (at least on my installation).
2. For some bizarre reason, the way I had my autofs map files set up didn't 
work anymore without specifically adding .local to the server identification. 
For instance I'd set up:

/home/user/Pictures server:/home/user/Pictures

I had to change this to:

/home/user/Pictures server.local:/home/user/Pictures

This (so far) appears to have solved my issues with automount.

At the same time I also changed /etc/nsswitch.conf:

From:

hosts:  files mdns4_minimal [NOTFOUND=return] dns mdns4

To:

hosts:  files dns mdns4_minimal [NOTFOUND=return] mdns4

But I'm not sure that had any impact.

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

Title:
  syntax error in nsswitch config near [ syntax error ]

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

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


[Bug 488696] Re: syntax error in nsswitch config near [ syntax error ]

2012-06-17 Thread Maarten Jacobs
Note to previous - had to install dnsmasq package and run the dnsmasq
deamon to fix the problem with the resolution of hostnames on the local
network. After that I removed the .local extension from the server
name and things are still working for me.

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

Title:
  syntax error in nsswitch config near [ syntax error ]

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

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


[Bug 909102] Re: network-manager-openvpn claims connection established when it's not

2012-05-05 Thread Maarten Jacobs
** Changed in: network-manager-openvpn (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/909102

Title:
  network-manager-openvpn claims connection established when it's not

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/909102/+subscriptions

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


[Bug 909102] Re: network-manager-openvpn claims connection established when it's not

2012-05-05 Thread Maarten Jacobs
I have captured more output during a session where I tested the behavior
of the openvpn plugin.

Using the referenced instructions (which are incorrect btw as nm-
openvpn-service does not reside in /usr/libexec, but in
/usr/lib/NetworkManager/), I created two output files that capture the
debug:

nm-openvpn-service.out - captures debug for a normal session where the
server is accepting connections.

nm-openvpn-service-error.out - captures output where the server is not
accepting connections, but the VPN connection is still marked as up on
the client side.

I've also attached /var/log/syslog that captures the same sessions. I
assume timestamps between the openvpn-service output and syslog can be
used to correlate the individually captured sessions with the output
recorded in syslog.

(The three log files are in the attached debug_out.tgz tarball - so I
can attach all three log files as one)

Let me know if anything else is needed!!!

** Attachment added: debug_output.tgz
   
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/909102/+attachment/3132346/+files/debug_output.tgz

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

Title:
  network-manager-openvpn claims connection established when it's not

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/909102/+subscriptions

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


[Bug 965314] Re: core dumped - segmentation fault

2012-05-05 Thread Maarten Jacobs
Actually - the work-around for this issue is to disable sync. If you
cannot get Chromium to stay up, you'll have to delete your Chromium
configuration:

1. cd ~/.config
2. rm -rf chromium
3. restart chromium - it should now stay up, as long as you don't sign in to 
chromium

These steps work for me and prevent Chromium from failing - if somebody
has a case where Chromium still fails, even with sync disabled, then
that's a different problem from what I'm observing on my installation.

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

Title:
  core dumped - segmentation fault

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

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


[Bug 965314] Re: core dumped - segmentation fault

2012-05-01 Thread Maarten Jacobs
The same, or similar issue is being tracked here:

http://code.google.com/p/chromium/issues/detail?id=121660

** Bug watch added: code.google.com/p/chromium/issues #121660
   http://code.google.com/p/chromium/issues/detail?id=121660

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

Title:
  core dumped - segmentation fault

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

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


[Bug 965314] Re: core dumped - segmentation fault

2012-04-30 Thread Maarten Jacobs
I seem to be experiencing a similar issue - Chromium seems to core dump
immediately when it loads. Only occassionally it doesn't - I'm actually
writing this bug in Firefox as I can't seem to get Chromium to stay up.

I ran Chromium from the command line, and collected some information:

jacobsma@snellebak:~$ chromium-browser 
Gkr-Message: received an invalid, unencryptable, or non-utf8 secret
Gkr-Message: call to daemon returned an invalid response: (null).(null)()
[11259:11273:165486117836:ERROR:native_backend_gnome_x.cc(664)] Keyring find 
failed: Error communicating with gnome-keyring-daemon
[11259:11259:165486445951:ERROR:browser_main_loop.cc(138)] Gdk: 
IA__gdk_window_get_events: assertion `GDK_IS_WINDOW (window)' failed
[11259:11259:165486446253:ERROR:browser_main_loop.cc(138)] GLib-GObject: 
g_object_ref: assertion `G_IS_OBJECT (object)' failed
[11259:11259:165487584864:ERROR:browser_main_loop.cc(138)] GLib-GObject: 
g_object_unref: assertion `G_IS_OBJECT (object)' failed
[11259:11259:165527533125:ERROR:x11_util.cc(1121)] X Error detected: serial 
27968, error_code 10 (BadAccess (attempt to access private resource denied)), 
request_code 140, minor_code 1 (X_ShmAttach)
[11259:11259:165527535112:ERROR:x11_util.cc(1121)] X Error detected: serial 
27969, error_code 148 (BadShmSeg (invalid shared segment parameter)), 
request_code 140, minor_code 3 (X_ShmPutImage)
[11259:11259:165527536294:ERROR:x11_util.cc(1121)] X Error detected: serial 
28044, error_code 148 (BadShmSeg (invalid shared segment parameter)), 
request_code 140, minor_code 2 (X_ShmDetach)

 During this session Chromium stayed up - however I figured perhaps
the output was relevant.

Further sessions always result in the same output:

jacobsma@snellebak:~$ chromium-browser 
chromium-browser: /build/buildd/cairo-1.10.2/src/cairo-surface.c:1287: 
cairo_surface_set_device_offset: Assertion `status == CAIRO_STATUS_SUCCESS' 
failed.
Aborted (core dumped)

 The cairo error has been reported in varios other bugs (is it ever
going to be fixed??) - and does not seem to be related to this problem
as the core happens a fraction of time after the cairo error is
logged.

I've collected two core dumps and will attach them to this bug report.


** Attachment added: chromium.core.20120429.gz
   
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/965314/+attachment/3120504/+files/chromium.core.20120429.gz

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

Title:
  core dumped - segmentation fault

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

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


[Bug 965314] Re: core dumped - segmentation fault

2012-04-30 Thread Maarten Jacobs
** Attachment added: chromium.core.20120430.gz
   
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/965314/+attachment/3120508/+files/chromium.core.20120430.gz

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

Title:
  core dumped - segmentation fault

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

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


[Bug 965314] Re: core dumped - segmentation fault

2012-04-30 Thread Maarten Jacobs
Here's data on my configuration:

Package: chromium-browser 18.0.1025.151~r130497-0ubuntu1
PackageArchitecture: i386
ProcEnviron:
 LANGUAGE=en_US:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 3.2.0-24.37-generic 3.2.14
RelatedPackageVersions:
 chromium-browser 18.0.1025.151~r130497-0ubuntu1
 chromium-browser-l10n18.0.1025.151~r130497-0ubuntu1
 chromium-browser-inspector   N/A
 chromium-browser-dbg N/A
 chromium-codecs-ffmpeg   N/A
 chromium-codecs-ffmpeg-extra 18.0.1025.151~r130497-0ubuntu1

I've attached the complete apport-bug output for reference.


** Attachment added: chromium.bug.20120430
   
https://bugs.launchpad.net/ubuntu/+source/chromium-browser/+bug/965314/+attachment/3120526/+files/chromium.bug.20120430

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

Title:
  core dumped - segmentation fault

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

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


[Bug 909102] Re: network-manager-openvpn claims connection established when it's not

2012-04-11 Thread Maarten Jacobs
Yes - highly (and easily) reproducible.

1. Use Windows as Server (I'm using XP), XUbuntu as Client
2. Install OpenVPN on Windows XP (download here 
http://swupdate.openvpn.org/community/releases/openvpn-2.2.2-install.exe)
3. Configure simple server on Windows (follow these instructions 
http://openvpn.net/index.php/open-source/documentation/miscellaneous/78-static-key-mini-howto.html)
4. Launch OpenVPN GUI on Windows (do NOT connect on windows)
5. Set up VPN Connection on XUbuntu - to match OpenVPN connection created on 
Windows Server
6. Connect on Windows
7. Connect on XUbuntu
8. Connection will be marked as established on XUbuntu - similar message seen 
on Windows
9. Verify connection by pinging server from client, and vice-versa (use IP 
addresses as defined in configuration). Will require Windows Firewall to be 
updated to return ICMP Echo Packets.
10. Disconnect VPN connection on Server/Windows (connection is not lost on 
Client/XUbuntu side)
11. Disconnect  VPN connection on Client/XUbuntu side
12. Reconnect on Client/XUbuntu side. Connection will be shown as established 
on Client/XUbuntu (through pop-up window). Connection does not show as 
connected on Server/Windows.
13. Attempt to ping server from client - no success.

On step 12 above, the network-manager erroneously assumes the connection
is established when it is done initializing - even before it made a
connection with the server. Refer to the log output I provided with the
original bug report.

Hope this helps.

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

Title:
  network-manager-openvpn claims connection established when it's not

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/909102/+subscriptions

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


[Bug 909102] Re: network-manager-openvpn claims connection established when it's not

2012-04-11 Thread Maarten Jacobs
** Changed in: network-manager-openvpn (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/909102

Title:
  network-manager-openvpn claims connection established when it's not

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/909102/+subscriptions

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


[Bug 903825] Re: Ubuntu 11.10 slow shutdown

2011-12-30 Thread Maarten Jacobs
Thanks for the fix - I've been looking for this for some time now but
hadn't managed to figure it our myself!

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

Title:
  Ubuntu 11.10 slow shutdown

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

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


[Bug 909102] [NEW] network-manager-openvpn claims connection established when it's not

2011-12-27 Thread Maarten Jacobs
Public bug reported:

I'm using pre-shared keys to create a simple PTP VPN connection. My
server is running on windows XP, my client on XUbuntu 11.10.

I'm using the plugin to allow my XUbuntu machine to establish the
connection to the windows machine. I have the OpenVPN software installed
on the windows machine.

If I enable the server on windows, I can connect successfully to the
server and exchange data.

However, if I disable the server on the windows machine, and attempt to
create the VPN connection, I get the pop-up that states the VPN
connection has been established. In fact there is no VPN connection (as
the server is not accepting connections).

I therefore believe the plugin claims success too early - or it
reporting a certain status to network-manager is interpreted
incorrectly.

Here's a snippet from syslog (I've blanked out my IP addresses):

Dec 27 12:17:09 snellebak nm-openvpn[16201]: UDPv4 link local: [undef]
Dec 27 12:17:09 snellebak nm-openvpn[16201]: UDPv4 link remote: 
[AF_INET]xxx.xxx.xxx.xxx:1194
Dec 27 12:17:10 snellebak NetworkManager[705]: info VPN connection 'test' (IP 
Config Get) complete.
Dec 27 12:17:10 snellebak NetworkManager[705]: info Policy set 'test' (tun0) 
as default for IPv4 routing and DNS.
Dec 27 12:17:10 snellebak NetworkManager[705]: info VPN plugin state changed: 
4

 At this stage the VPN connection is marked as established 

Dec 27 12:17:18 snellebak nm-openvpn[16201]: Peer Connection Initiated with 
[AF_INET]xxx.xxx.xxx.xxx:1194
Dec 27 12:17:19 snellebak nm-openvpn[16201]: Initialization Sequence Completed

 When the VPN server is enabled, the connection is not really
established until this point

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: network-manager-openvpn 0.9.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-14.23-generic 3.0.9
Uname: Linux 3.0.0-14-generic i686
ApportVersion: 1.23-0ubuntu4
Architecture: i386
Date: Tue Dec 27 13:06:46 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: network-manager-openvpn
UpgradeStatus: Upgraded to oneiric on 2011-10-28 (60 days ago)

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


** Tags: apport-bug i386 oneiric

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

Title:
  network-manager-openvpn claims connection established when it's not

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/909102/+subscriptions

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


[Bug 909102] Re: network-manager-openvpn claims connection established when it's not

2011-12-27 Thread Maarten Jacobs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/909102

Title:
  network-manager-openvpn claims connection established when it's not

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager-openvpn/+bug/909102/+subscriptions

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


[Bug 907834] [NEW] Save Path does not update when files are present

2011-12-22 Thread Maarten Jacobs
Public bug reported:

Running qBitTorrent v2.8.4.

I added a number of torrents that were downloaded to the default
download location. I then started re-organizing my downloads and moved
all of my music downloads to the Music folder in my home directory.

I wanted to move the torrent location to match the new locations of the
files - however when I change the Save Path for the torrent to the new
location it won't persist. After selecting the new location, the Save
Path automagically reverts back to the old location.

When I remove the files from the new location in the Music directory, I
can successfully change the save path of the torrent - and the files are
moved automatically as well.

However this means that I need to do some manual handiwork to create the
folder the torrent is downloaded to, if I want to download the torrent
into a different location from the default.

When I add the torrent, qBittorent adds the folder to my default
location. If i want to retain that default folder name, I then need to
manually create a folder with that name in the new (non-default)
location I want to store the files in. After that I can update the Save
Path in qBittorrent, and start the download.

Unless I'm missing something it'd be good if either (or both) a)
qBittorrent would allow me to update the Save Path on a torrent if I
move the original folder the torrent was already downloaded in; b) allow
me to specify a new root location for the torrent to be downloaded to
- which would then create a new folder like it does when I opt to use
the default download location.

Please let me know if I'm doing something wrong - but to me it doesn't
seem to be working 100%?

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: qbittorrent 2.8.4-1
ProcVersionSignature: Ubuntu 3.0.0-14.23-generic 3.0.9
Uname: Linux 3.0.0-14-generic i686
ApportVersion: 1.23-0ubuntu4
Architecture: i386
Date: Thu Dec 22 11:36:47 2011
ExecutablePath: /usr/bin/qbittorrent
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: qbittorrent
UpgradeStatus: Upgraded to oneiric on 2011-10-28 (55 days ago)

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


** Tags: apport-bug i386 oneiric

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

Title:
  Save Path does not update when files are present

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

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


[Bug 907834] Re: Save Path does not update when files are present

2011-12-22 Thread Maarten Jacobs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/907834

Title:
  Save Path does not update when files are present

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

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


[Bug 887850] Re: Assert failures in cairo-surface.c:1287: cairo_surface_set_device_offset: Assertion `status == CAIRO_STATUS_SUCCESS' failed, after upgrading to Oneiric with unity-2d

2011-12-22 Thread Maarten Jacobs
Folks - not sure if this problem is unique to Chromium.

I actually found the same issue with Banshee today. After some
investigation of that problem I see there is a multitude of Cairo
Assertion Failure bugs reported for Banshee as well - which all point to
a mysterious private bug https://bugs.launchpad.net/bugs/830028.

I then did a wider search and saw a similar problem having been reported
for GWibber - again a lot of bugs, all duplicates of each other, but
eventually pointed to this bug.

Not quite sure what Cairo is, or what it does - I assume its part of
some framework that various different applications rely on... I've not
been able to find anything out there that seems to point to a fix for
this - I know this problem has been around for a while now.

Anyways, just my two cents - if anybody has anything to add I'm happy to
listen!

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

Title:
  Assert failures in cairo-surface.c:1287:
  cairo_surface_set_device_offset: Assertion `status ==
  CAIRO_STATUS_SUCCESS' failed, after upgrading to Oneiric with unity-2d

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

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


[Bug 869635] Re: long delay at shutdown/reboot - network-manager doesn't close correctly

2011-12-11 Thread Maarten Jacobs
Retraction of my previous comment. I did implement the workaround and it
worked once... Ever since I'm having the same issue again.

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

Title:
  long delay at shutdown/reboot - network-manager doesn't close
  correctly

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

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


[Bug 869635] Re: long delay at shutdown/reboot - network-manager doesn't close correctly

2011-12-10 Thread Maarten Jacobs
I have the same issue - running Ubuntu 11.10 on a Dell Latitude D830.

The noted work-around above fixes the problem on my installation.

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

Title:
  long delay at shutdown/reboot - network-manager doesn't close
  correctly

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

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


[Bug 902661] [NEW] Chromium unsets preferred webbrowser

2011-12-10 Thread Maarten Jacobs
Public bug reported:

I'm running XUbuntu 11.10 (actually Ubuntu 11.10 with the xubuntu
packages installed on top).

When I select Chromium to be my preferred web browser from
settings-setting manager-preferred application, Chromium will be
launched when I select Web Browser from the main pull-down menu.

However, when Chromium starts, it produces a message stating Chromium
is not your default browser (or words of that nature). When I select
yes, and then reopen preferred applications, Chromium is no longer
selected as the default web browser.

It would seem that Chromium doesn't understand how to interpret the
default settings in xfce4 - or muddles them up when it tries to make
itself the default browser.

The work-around is easy - tell Chromium not to ask anymore, and don't
allow it to set itself as the default browser (use preferred
applications instead to select the preferred browser).

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: chromium-browser 15.0.874.106~r107270-0ubuntu0.11.10.1
ProcVersionSignature: Ubuntu 3.0.0-13.22-generic 3.0.6
Uname: Linux 3.0.0-13-generic i686
NonfreeKernelModules: nvidia
ApportVersion: 1.23-0ubuntu4
Architecture: i386
Date: Sat Dec 10 19:44:50 2011
Desktop-Session:
 DESKTOP_SESSION = xubuntu
 XDG_CONFIG_DIRS = /etc/xdg/xdg-xubuntu:/etc/xdg:/etc/xdg
 XDG_DATA_DIRS = /usr/share/xubuntu:/usr/local/share/:/usr/share/:/usr/share
Env:
 MOZ_PLUGIN_PATH = None
 LD_LIBRARY_PATH = None
ExecutablePath: /usr/lib/chromium-browser/chromium-browser
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release i386 (20110427.1)
ProcEnviron:
 
SourcePackage: chromium-browser
UpgradeStatus: Upgraded to oneiric on 2011-12-03 (7 days ago)
chromium-default: CHROMIUM_FLAGS=

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 oneiric

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

Title:
  Chromium unsets preferred webbrowser

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

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


[Bug 902661] Re: Chromium unsets preferred webbrowser

2011-12-10 Thread Maarten Jacobs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/902661

Title:
  Chromium unsets preferred webbrowser

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

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


[Bug 782726] Re: Dual-Head Configuration does not work properly with Compiz

2011-11-22 Thread Maarten Jacobs
I did recently step up to Oneiric, however as I did not like the new
Ubuntu environment, I decided to switch over to xubuntu. I tried running
with the Ubuntu environment but got an error that it failed to load the
session.

I therefore cannot retest this bug in my current con figuration.

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

Title:
  Dual-Head Configuration does not work properly with Compiz

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

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


[Bug 882028] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Maarten Jacobs
Public bug reported:

Samba failed to install when upgrading to 11.10

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: samba 2:3.5.8~dfsg-1ubuntu2.3
ProcVersionSignature: Ubuntu 2.6.38-12.51-generic 2.6.38.8
Uname: Linux 2.6.38-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Wed Oct 26 09:26:37 2011
ErrorMessage: ErrorMessage: package samba is not ready for configuration  
cannot configure (current status `half-installed')
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
NmbdLog:
 
SambaServerRegression: Yes
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: 
ErrorMessage: package samba is not ready for configuration  cannot configure 
(current status `half-installed')
UbuntuFailedConnect: Yes
UpgradeStatus: Upgraded to oneiric on 2011-10-25 (0 days ago)

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


** Tags: apport-package i386 oneiric

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/882028

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 882028] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Maarten Jacobs
-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/882028

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 882028] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Maarten Jacobs
After completion of the upgrade, reinstalled samba through Synaptic.
Installation completed successfully and resources shared through Samba
(aka printer) can be used by windows platforms.

This therefore appears to be some funky transient issue associated with
the upgrade process, not Samba itself.

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to samba in Ubuntu.
https://bugs.launchpad.net/bugs/882028

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 882028] [NEW] package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Maarten Jacobs
Public bug reported:

Samba failed to install when upgrading to 11.10

ProblemType: Package
DistroRelease: Ubuntu 11.10
Package: samba 2:3.5.8~dfsg-1ubuntu2.3
ProcVersionSignature: Ubuntu 2.6.38-12.51-generic 2.6.38.8
Uname: Linux 2.6.38-12-generic i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Wed Oct 26 09:26:37 2011
ErrorMessage: ErrorMessage: package samba is not ready for configuration  
cannot configure (current status `half-installed')
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
NmbdLog:
 
SambaServerRegression: Yes
SmbConfIncluded: Yes
SmbLog:
 
SourcePackage: samba
Title: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: 
ErrorMessage: package samba is not ready for configuration  cannot configure 
(current status `half-installed')
UbuntuFailedConnect: Yes
UpgradeStatus: Upgraded to oneiric on 2011-10-25 (0 days ago)

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


** Tags: apport-package i386 oneiric

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 882028] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Maarten Jacobs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/882028

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 882028] Re: package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade: ErrorMessage: package samba is not ready for configuration cannot configure (current status `half-installed')

2011-10-26 Thread Maarten Jacobs
After completion of the upgrade, reinstalled samba through Synaptic.
Installation completed successfully and resources shared through Samba
(aka printer) can be used by windows platforms.

This therefore appears to be some funky transient issue associated with
the upgrade process, not Samba itself.

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

Title:
  package samba 2:3.5.8~dfsg-1ubuntu2.3 failed to install/upgrade:
  ErrorMessage: package samba is not ready for configuration  cannot
  configure (current status `half-installed')

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

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


[Bug 700191] Re: Evince PDF print fails with pdftoraster failed error

2011-10-26 Thread Maarten Jacobs
Retested after upgrade to Ubuntu 11.10, with HPLIP 3.11.7 and Evince
3.2.0.

This bug does not appear on this configuration. It must be specific to
the configuration I originally found the problem on.

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

Title:
  Evince PDF print fails with pdftoraster failed error

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

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


[Bug 782726] [NEW] Dual-Head Configuration does not work properly with Compiz

2011-05-14 Thread Maarten Jacobs
Public bug reported:

Binary package hint: xorg

After upgrading from 10.10 Maverick to 11.04 Natty I found that my dual-
head display configuration on 10.10 no longer worked properly on 11.04.

My desired set-up is to have two 1440x900 monitors set up side-by-side
and the desktop stretched across the both of them.

It took me some time to figure out the right configuration on 10.10, but
I got it to work so I was less than enthused about it not working on
11.04.

I documented a question on this issue here:

https://answers.launchpad.net/ubuntu/+question/157414/+index

I have attached a screenshot of my side-by-side configuration - as is
clear the larger portion of the display is not shown right.

After some digging, I found that a above-and-below configuration did
work without the presentation being garbled. I'll try to attach a
screenshot of that situation as well (after I've submitted the bug as it
would appear it's not possible to attach multiple files??)

Then, at the end of the day (literally) I stumbled upon a reference to
issues with compiz - so I decided to try and log onto Ubuntu using
Ubuntu Classic (No Effects). If I understand correctly, this option
will force the system to run Metacity (??) window manager. After I did
this, the side-by-side configuration worked without garbling.

I therefore have a perfectly acceptable work-around for this problem
(i.e. don't use compiz), and I've not lost anything in my transition
from 10.10 to 11.04 (other than a days worth of digging to find the
work-around).

However I felt that it is probably appropriate to open a bug on this. As
i indicated above, the problem went away once i stopped using compiz -
so I think that's where the problem is but I've not been able to
ascertain that (in other words the problem may be lower down somewhere).

ProblemType: Bug
DistroRelease: Ubuntu 11.04
Package: xorg 1:7.6+4ubuntu3
ProcVersionSignature: Ubuntu 2.6.38-8.42-generic 2.6.38.2
Uname: Linux 2.6.38-8-generic i686
Architecture: i386
CompizPlugins: 
[core,bailer,detection,composite,opengl,decor,mousepoll,vpswitch,regex,animation,snap,expo,move,compiztoolbox,place,grid,imgpng,gnomecompat,wall,ezoom,workarounds,staticswitcher,resize,fade,unitymtgrabhandles,scale,session,unityshell]
CompositorRunning: compiz
DRM.card0.VGA.1:
 status: connected
 enabled: enabled
 dpms: On
 modes: 1440x900 1280x1024 1280x1024 1440x900 1280x960 1152x864 1024x768 
1024x768 1024x768 832x624 800x600 800x600 800x600 800x600 640x480 640x480 
640x480 640x480 720x400
 edid-base64: 
AP///wAWCQYZtQIAACYRAQNoKRp4KoX1plhHmSQSUFS/74CBgHFPgUCVD5UAAQEBAQEBmimg0FGEIjBQmDYAmgERAAAc/wBLMTY3OUNBMDAwNjkz/QAyTB5TDgAKICAgICAg/ABIMTlXCiAgICAgICAgAH4=
Date: Sat May 14 12:50:36 2011
DistUpgraded: Log time: 2011-05-11 19:19:10.034707
DistroCodename: natty
DistroVariant: ubuntu
GraphicsCard:
 ATI Technologies Inc RV280 [Radeon 9200] [1002:5961] (rev 01) (prog-if 00 [VGA 
controller])
   Subsystem: PC Partner Limited Sapphire Radeon 9200 [174b:7c13]
   Subsystem: PC Partner Limited Sapphire Radeon 9200 [174b:7c12]
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
MachineType: ASUSTeK Computer INC. A7N8X-X
ProcEnviron:
 LANGUAGE=en_US:en
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.38-8-generic 
root=UUID=018f5979-3444-4290-8b62-a02af3685786 ro quiet splash radeon.modeset=1 
vt.handoff=7
Renderer: Unknown
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to natty on 2011-05-12 (2 days ago)
dmi.bios.date: 08/19/2003
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: ASUS A7N8X-X ACPI BIOS Rev 1006
dmi.board.name: A7N8X-X
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: REV 2.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufactture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrASUSA7N8X-XACPIBIOSRev1006:bd08/19/2003:svnASUSTeKComputerINC.:pnA7N8X-X:pvrREV2.xx:rvnASUSTeKComputerINC.:rnA7N8X-X:rvrREV2.xx:cvnChassisManufactture:ct3:cvrChassisVersion:
dmi.product.name: A7N8X-X
dmi.product.version: REV 2.xx
dmi.sys.vendor: ASUSTeK Computer INC.
version.compiz: compiz 1:0.9.4+bzr20110415-0ubuntu2
version.libdrm2: libdrm2 2.4.23-1ubuntu6
version.libgl1-mesa-dri: libgl1-mesa-dri 7.10.2-0ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 7.10.2-0ubuntu2
version.xserver-xorg: xserver-xorg 1:7.6+4ubuntu3
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:6.14.0-0ubuntu4
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.14.0-4ubuntu7.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20110107+b795ca6e-0ubuntu7

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


** Tags: apport-bug compiz-0.9 corruption i386 natty regression-update ubuntu

-- 
You received this bug notification because you are a member 

[Bug 782726] Re: Dual-Head Configuration does not work properly with Compiz

2011-05-14 Thread Maarten Jacobs
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/782726

Title:
  Dual-Head Configuration does not work properly with Compiz

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


[Bug 782726] Re: Dual-Head Configuration does not work properly with Compiz

2011-05-14 Thread Maarten Jacobs
Here's the screenshot with the side-by-side configuration (most of the
display is garbled).

** Attachment added: Garbled side-by-side configuration
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/782726/+attachment/2128565/+files/Screenshot.png

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

Title:
  Dual-Head Configuration does not work properly with Compiz

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


[Bug 782726] Re: Dual-Head Configuration does not work properly with Compiz

2011-05-14 Thread Maarten Jacobs
Here is the working above-and-below configuration.

** Attachment added: Working above-and-below configuration
   
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/782726/+attachment/2128566/+files/Screenshot-1.png

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

Title:
  Dual-Head Configuration does not work properly with Compiz

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


[Bug 700191] Re: Evince PDF print fails with pdftoraster failed error

2011-05-14 Thread Maarten Jacobs
Updated information... Stepped-up to Ubuntu 11.04 w/ HPLIP 3.11.5.
Evince version 2.23.0.

PDF documents now print OK from Evince (document Viewer).

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

Title:
  Evince PDF print fails with pdftoraster failed error

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


[Bug 700191] [NEW] Evince PDF print fails with pdftoraster failed error

2011-01-07 Thread Maarten Jacobs
Public bug reported:

Binary package hint: evince

Printing a PDF file from evince fails. Ran printer problem diagnostic
tool (output attached), which tells me the status is pdftoraster
failed.

Forced Evince to older version (2.32.0-0ubuntu1), still same issue.

Printed a test page - worked fine.

Installed Adobe Reader - printed fine.

Not sure whether this problem is in Evince or Cups. Given that Adobe
prints correctly, I'd think it's Evince, but not sure.

I am opening this as a new bug since Evince worked ok until a bunch of
new packages were published earlier this week that might have caused
this issue, leading me to believe this is a new problem.

Ubuntu Release 10.10 Maverick
Kernel 2.6.35-24-generic
Evince version 2.32.0-0ubuntu1.1
Cups version 1.4.4-6ubuntu2.3

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: evince 2.32.0-0ubuntu1.1
ProcVersionSignature: Ubuntu 2.6.35-24.42-generic 2.6.35.8
Uname: Linux 2.6.35-24-generic i686
Architecture: i386
Date: Fri Jan  7 20:50:58 2011
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Release i386 (20101007)
ProcEnviron:
 LANG=en_US.utf8
 SHELL=/bin/bash
SourcePackage: evince

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


** Tags: apport-bug i386 maverick

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

Title:
  Evince PDF print fails with pdftoraster failed error

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


[Bug 700191] Re: Evince PDF print fails with pdftoraster failed error

2011-01-07 Thread Maarten Jacobs

** Attachment added: Debug out put from pinter diagnistic tool
   
https://bugs.launchpad.net/bugs/700191/+attachment/1787567/+files/Printer%20Problem.txt

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

Title:
  Evince PDF print fails with pdftoraster failed error

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