[Bug 1965190] Re: software centre search is non-obvious

2022-03-16 Thread Brett Sutton
I just notice the search icon to the top left of the title bar.

No, No and No.

The search should be front and centre not in the title bar.

FYI my actually close icon is on the right-hand side. I can't remember
if this is standard gnome or not.

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

Title:
  software centre search is non-obvious

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


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

[Bug 1965190] [NEW] software centre search is non-obvious

2022-03-16 Thread Brett Sutton
Public bug reported:

Every time I go to install software from the software centre I find the
interface less than intuitive.

I'm expecting the home page to have a search button.

Instead, it has a spotify banner, a set of editors' picks and a list of
categories.

This is all great and all but I know the name of the software, I just
want to search for it.

Please add a large obvious search bar between the spotify ad and the
list of editors' picks.


lsb_release -rd
Description:Ubuntu 21.10
Release:21.10

** Affects: gnome-software (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/1965190

Title:
  software centre search is non-obvious

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


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

[Bug 1745066] Re: Snap documatation of hook changes

2018-01-23 Thread Brett Sutton
And updated doco for the install hook

 CURRENT
“install”

The install hook is called upon initial install, before any services
contained by the snap are started. If the hook exits non-zero, the
installation of the snap will fail.

Example

Before running the snapcraft command to build your snap, this install
file should be placed at this location:

/snap/hooks/install.

#!/bin/sh
set -e

# Run any commands needed to setup the snap.
# This could be downloading a list of dynamic configuration options or creating 
a database.


 SUGGESTED
“install”

The install hook is called the snaps installation has completed but
before before any services contained by the snap are started. If the
'install' hook exits non-zero, the installation of the snap will fail
causing a full rollback.

The install hook can be used to run any commands needed as part of the
setup, such as creating or upgrading a database or downloading
dynamically configured files.

You can also provide some initial default values for the key/value store
by calling:

snapctl set =


The install script lives along side the configure script at:

/snap/hooks/install

Example

#!/bin/sh
set -e

snapctl set username=daemon_user
snapctl set password=

# Run any commands needed to setup the snap.
# This could be downloading a list of dynamic configuration options or creating 
a database.

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

Title:
  Snap documatation of hook changes

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

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

[Bug 1745066] [NEW] Snap documatation of hook changes

2018-01-23 Thread Brett Sutton
Public bug reported:

The documentation for the 'hook' scripts is somewhat ambiguous.

I tried to include 'snap set' commands from within the install hook
which just causes the hook to hang (I'm guess the set command is waiting
for the install to finish which it never will).

I would like to suggest the following doco changes for the hook scripts


 CURRENT -
Hooks types

“configure”

The configure hook is called upon initial snap install (after any
services contained by the snap have started), after a refresh, and
whenever the user requests a configuration change via the snap set
command. If the hook exits non-zero, the configuration will not be
applied.

snap set / snap get

The snap set and snap get commands to write or read a configuration
value inside a snap through a “configure” hook are operated the
following way:

snap set  =
snap get  
Note that the configure hook is called without parameters. From within a hook, 
configuration values passed by the user can be retrieved with the snapctl get 
 command, which implies the following order of operation for a snap set 
command:

The user runs snap set some-app username=foo to change the “username” value in 
the some-app snap.
snapd runs the configure hook shipped with some-app.
The configure hook iterates over possible configuration keys (which username is 
part of) by calling snapctl get  and does something with them (eg. update 
a configuration file of the application).


--- SUGGESTED - feel free to make any
edits.

Hooks types

“configure”

The configure hook is called when the snap is first installed (and after
any services contained within the snap have started), after a refresh,
and whenever the user requests a configuration change via the snap set
command.

If the hook exits non-zero, the configuration will not be applied.


snap set / snap get

The snap set and snap get commands are available to the user to write or
read configuration values for a snap. The snap set/get commands store
key/value pairs in a keystore specific to your snap.

Your hook script can read/write these values by calling 
snapctl get 
snapctl set =

When the user runs 'snap set' your “configure” hook is called to notify
it that a change has been made. If the user runs 'snap get' your
"configure" will NOT be called.

Note that the configure hook is called without parameters. This means
its up to you to check each key/value to see if any have changed. There
is no way for your configure hook to iterate over the list of keys, as
such you hook must know what key names it needs to check.

What your configure hook does when notified is completely up to you, but
often it you will want to update one of your configuration files or may
be a database value.


A typical workflow might be:

1. The user runs `snap set some-app username=foo`
2. snapd updates the snap keystore for 'some-app'. The 'username' key now has a 
value of 'foo'
3. snapd runs the configure hook shipped with some-app.
4. The configure hook iterates over the known configuration keys (which 
username is part of) by calling snapctl get  and does something with each 
key/value (eg. update you database connection string).

** Affects: snap (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/1745066

Title:
  Snap documatation of hook changes

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

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

[Bug 1745062] [NEW] snap documentation for 'try' needs more details

2018-01-23 Thread Brett Sutton
Public bug reported:

The snap 'try' documentation is a bit light on.

>From my first read I assumed that if I ran snap try that I could then
edit files in the 'prime' directory and any changes would immediately
affect the running snap.

On further reading it appears that snap try installs a write able copy
at /snap//current

Can we change the documentation.

Current doco:
The try command installs an unpacked snap into the system for testing purposes. 
The unpacked snap content continues to be used even after installation, so 
non-metadata changes there go live instantly. Metadata changes such as those 
performed in snap.yaml will require reinstallation to go live.

If snap-dir argument is omitted, the try command will attempt to infer
it if either snapcraft.yaml file and prime directory or meta/snap.yaml
file can be found relative to current working directory.

Once you are done testing the installed unpacked snap, it can be
uninstalled with the remove option.

-
Suggested changes - feel free to make any changes you feel appropriate.

The try command installs an unpacked snap into the the directory 
'/snap//current' 
for testing purposes. 

You can then directly edit files in the /snap//current
directory to test changes without going through a full build cycle.

Metadata changes such as those performed in snap.yaml will require
reinstallation to go live.

If your snap is a daemon, in most cases, you will need to restart the daemon 
for the changes to take affect.
snap restart  

When running 'snap try', if the snap-dir argument is omitted, the try
command will attempt to infer it by looking under the current working
directory for either  the snapcraft.yaml file and prime directory or
meta/snap.yaml.

In most cases you want need to run:
cd 
snap try --devmode prime

Once you are done testing the installed unpacked snap, it can be
uninstalled with the remove option.

snap remove 

Running 'snap try prime' will cause your snap to be installed into:

/snap//current

** Affects: snap (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/1745062

Title:
  snap documentation for 'try' needs more details

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

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

[Bug 1727695] Re: snap linker/libs problem with 17.10

2018-01-21 Thread Brett Sutton
OK, I found my problem.

I had previously installed :
apt install snapcraft

so i was using the debian snapcraft package.

I removed the deb snapcraft

apt remove snapcraft

then installed the snap version

sudo snap install --classic --edge snapcraft

And now my snap runs :)

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

Title:
  snap linker/libs problem with 17.10

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

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

[Bug 1727695] Re: snap linker/libs problem with 17.10

2018-01-21 Thread Brett Sutton
The soluiont of installing edge didn't work for me.
I'm still seeing :

/snap/pi-gation/x8/usr/lib/jvm/default-java/jre/bin/java: relocation
error: /snap/pi-gation/x8/lib/x86_64-linux-gnu/libdl.so.2: symbol
_dl_catch_error, version GLIBC_PRIVATE not defined in file libc.so.6
with link time reference

I ran:
sudo snap install --classic --edge snapcraft

I then deleted all the snap subdirectories and then re-ran snapscraft.

I then re-installed the snap via;

snap remove pi-gation 
sudo snap install --dangerous --devmode pi-gation_0.1_amd64.snap


/var/log/syslog then reported:

an 21 19:30:19 slayer-3 systemd[1]: Started Service for snap application 
pi-gation.pi-gation.
Jan 21 19:30:19 slayer-3 pi-gation.pi-gation[22478]: 
/snap/pi-gation/x1/usr/lib/jvm/default-java/jre/bin/java: relocation error: 
/snap/pi-gation/x1/lib/x86_64-linux-gnu/libdl.so.2: symbol _dl_catch_error, 
version GLIBC_PRIVATE not defined in file libc.so.6 with link time reference
Jan 21 19:30:19 slayer-3 systemd[1]: snap.pi-gation.pi-gation.service: Main 
process exited, code=exited, status=127/n/a
Jan 21 19:30:19 slayer-3 systemd[1]: snap.pi-gation.pi-gation.service: Unit 
entered failed state.
Jan 21 19:30:19 slayer-3 systemd[1]: snap.pi-gation.pi-gation.service: Failed 
with result 'exit-code'.


lsb_release -a
LSB Version:
core-9.20160110ubuntu5-amd64:core-9.20160110ubuntu5-noarch:cxx-3.0-amd64:cxx-3.0-noarch:cxx-3.1-amd64:cxx-3.1-noarch:cxx-3.2-amd64:cxx-3.2-noarch:cxx-4.0-amd64:cxx-4.0-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-3.1-amd64:desktop-3.1-noarch:desktop-3.2-amd64:desktop-3.2-noarch:desktop-4.0-amd64:desktop-4.0-noarch:desktop-4.1-amd64:desktop-4.1-noarch:graphics-2.0-amd64:graphics-2.0-noarch:graphics-3.0-amd64:graphics-3.0-noarch:graphics-3.1-amd64:graphics-3.1-noarch:graphics-3.2-amd64:graphics-3.2-noarch:graphics-4.0-amd64:graphics-4.0-noarch:graphics-4.1-amd64:graphics-4.1-noarch:languages-3.2-amd64:languages-3.2-noarch:languages-4.0-amd64:languages-4.0-noarch:languages-4.1-amd64:languages-4.1-noarch:multimedia-3.2-amd64:multimedia-3.2-noarch:multimedia-4.0-amd64:multimedia-4.0-noarch:multimedia-4.1-amd64:multimedia-4.1-noarch:printing-9.20160110ubuntu5-amd64:printing-9.20160110ubuntu5-noarch:qt4-3.1-amd64:qt4-3.1-noarch:security-9.20160110ubuntu5-amd64:security-9.20160110ubuntu5-noarch
Distributor ID: Ubuntu
Description:Ubuntu 17.10
Release:17.10
Codename:   artful

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

Title:
  snap linker/libs problem with 17.10

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

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

[Bug 1675674] Re: package linux-image-4.8.0-44-generic 4.8.0-44.47 failed to install/upgrade: subprocess installed post-installation script was killed by signal (Terminated)

2017-03-28 Thread Brett Sutton
I let the hung process sit for some hours (2-4) and when I came back I
found the following logged to the console:

sudo dpkg --configure -a
Setting up linux-image-extra-4.8.0-44-generic (4.8.0-44.47) ...
run-parts: executing /etc/kernel/postinst.d/apt-auto-removal 4.8.0-44-generic 
/boot/vmlinuz-4.8.0-44-generic
run-parts: executing /etc/kernel/postinst.d/dkms 4.8.0-44-generic 
/boot/vmlinuz-4.8.0-44-generic
rm: cannot remove '/var/lib/dkms/nvidia-375/375.39/build': Directory not empty
ERROR: Cannot create report: [Errno 17] File exists: 
'/var/crash/nvidia-375.0.crash'
Error!  Patch buildfix_kernel_4.10.patch as specified in dkms.conf cannot be
found in /var/lib/dkms/nvidia-375/375.39/build/patches/.
run-parts: executing /etc/kernel/postinst.d/initramfs-tools 4.8.0-44-generic 
/boot/vmlinuz-4.8.0-44-generic
update-initramfs: Generating /boot/initrd.img-4.8.0-44-generic
run-parts: executing /etc/kernel/postinst.d/unattended-upgrades 
4.8.0-44-generic /boot/vmlinuz-4.8.0-44-generic
run-parts: executing /etc/kernel/postinst.d/update-notifier 4.8.0-44-generic 
/boot/vmlinuz-4.8.0-44-generic
run-parts: executing /etc/kernel/postinst.d/zz-update-grub 4.8.0-44-generic 
/boot/vmlinuz-4.8.0-44-generic
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-4.8.0-44-generic
Found initrd image: /boot/initrd.img-4.8.0-44-generic
Found linux image: /boot/vmlinuz-4.8.0-41-generic
Found initrd image: /boot/initrd.img-4.8.0-41-generic
Found linux image: /boot/vmlinuz-4.8.0-39-generic
Found initrd image: /boot/initrd.img-4.8.0-39-generic
Found linux image: /boot/vmlinuz-4.8.0-26-generic
Found initrd image: /boot/initrd.img-4.8.0-26-generic
Found linux image: /boot/vmlinuz-3.19.0-33-generic
Found initrd image: /boot/initrd.img-3.19.0-33-generic
Found Windows Boot Manager on /dev/sda1@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for EFI firmware configuration
done
Setting up linux-signed-image-generic (4.8.0.44.56) ...
Setting up linux-headers-4.8.0-44-generic (4.8.0-44.47) ...
Examining /etc/kernel/header_postinst.d.
run-parts: executing /etc/kernel/header_postinst.d/dkms 4.8.0-44-generic 
/boot/vmlinuz-4.8.0-44-generic
Setting up man-db (2.7.5-1) ...
Updating database of manual pages ...
Setting up linux-image-generic (4.8.0.44.56) ...
Setting up linux-headers-generic (4.8.0.44.56) ...
Setting up linux-signed-generic (4.8.0.44.56) ...
Setting up linux-generic (4.8.0.44.56) ...


The mentioned crash report contained:

cat /var/crash/nvidia-375.0.crash
ProblemType: Package
DKMSKernelVersion: 4.8.0-44-generic
Date: Wed Mar 29 01:54:24 2017
Package: nvidia-375 375.39-0ubuntu0.16.10.1
PackageVersion: 375.39-0ubuntu0.16.10.1
SourcePackage: nvidia-graphics-drivers-375
Title: nvidia-375 375.39-0ubuntu0.16.10.1: nvidia-375 kernel module failed to 
build

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

Title:
  package linux-image-4.8.0-44-generic 4.8.0-44.47 failed to
  install/upgrade: subprocess installed post-installation script was
  killed by signal (Terminated)

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

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


[Bug 1675674] Re: package linux-image-4.8.0-44-generic 4.8.0-44.47 failed to install/upgrade: subprocess installed post-installation script was killed by signal (Terminated)

2017-03-28 Thread Brett Sutton
I can confirm the same problem.

I tried killing the process and running dpkg --configure -a but the
process hung again.

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

Title:
  package linux-image-4.8.0-44-generic 4.8.0-44.47 failed to
  install/upgrade: subprocess installed post-installation script was
  killed by signal (Terminated)

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

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


[Bug 1501340] Re: Eclipse sub menu are uncomplete with 16.04 xerius beta 1 (wily werewolf got such a problem )

2016-04-29 Thread Brett Sutton
I perhaps should say that I'm running gnome-ubuntu so unity isn't
involved.

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

Title:
  Eclipse sub menu are uncomplete with 16.04 xerius beta 1 (wily
  werewolf got such a problem )

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

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


[Bug 1501340] Re: Eclipse sub menu are uncomplete with 16.04 xerius beta 1 (wily werewolf got such a problem )

2016-04-29 Thread Brett Sutton
I can confirm the same problem on 16.04 and the evn SWT_GTK3=0 also
solved the problem 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/1501340

Title:
  Eclipse sub menu are uncomplete with 16.04 xerius beta 1 (wily
  werewolf got such a problem )

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

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


[Bug 1545880] [NEW] Nemo crashes with Sig 11 under wayland

2016-02-15 Thread Brett Sutton
Public bug reported:

Running Ubuntu 15.10 with Gnome 3.18.2 under wayland Nemo crashes on
start up with a signal 11.

core dump attached.

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

** Attachment added: "_usr_bin_nemo.1000.crash"
   
https://bugs.launchpad.net/bugs/1545880/+attachment/4572497/+files/_usr_bin_nemo.1000.crash

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

Title:
  Nemo crashes with Sig 11 under wayland

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

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


[Bug 1385999] [NEW] [Dell Inc. Dell System XPS L502X] suspend/resume failure [non-free: nvidia]

2014-10-26 Thread Brett Sutton
Public bug reported:

system generates this error after EVERY resume from hibinate (e.g. if I
close the laptop lid and then re-open it at some later point).

ProblemType: KernelOops
DistroRelease: Ubuntu 14.10
Package: linux-image-3.16.0-22-generic 3.16.0-22.29
ProcVersionSignature: Ubuntu 3.16.0-22.29-generic 3.16.4
Uname: Linux 3.16.0-22-generic x86_64
NonfreeKernelModules: nvidia
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.14.7-0ubuntu6
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  bsutton3742 F pulseaudio
Date: Mon Oct 27 09:12:48 2014
DuplicateSignature: suspend/resume:Dell Inc. Dell System XPS L502X:A06
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
HibernationDevice: RESUME=UUID=69caecd8-283c-403b-b8da-6f5ff7793641
InstallationDate: Installed on 2013-06-23 (490 days ago)
InstallationMedia: Ubuntu-GNOME 13.04 Raring Ringtail - Release amd64 
(20130424)
InterpreterPath: /usr/bin/python3.4
MachineType: Dell Inc. Dell System XPS L502X
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-22-generic 
root=/dev/mapper/ubuntu--gnome--vg-root ro quiet splash vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 linux-restricted-modules-3.16.0-22-generic N/A
 linux-backports-modules-3.16.0-22-generic  N/A
 linux-firmware 1.136
SourcePackage: linux
Title: [Dell Inc. Dell System XPS L502X] suspend/resume failure [non-free: 
nvidia]
UpgradeStatus: No upgrade log present (probably fresh install)
UserGroups: dialout
dmi.bios.date: 07/20/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A06
dmi.board.name: 0YR8NN
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: 0.1
dmi.modalias: 
dmi:bvnDellInc.:bvrA06:bd07/20/2011:svnDellInc.:pnDellSystemXPSL502X:pvr:rvnDellInc.:rn0YR8NN:rvrA00:cvnDellInc.:ct8:cvr0.1:
dmi.product.name: Dell System XPS L502X
dmi.sys.vendor: Dell Inc.

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


** Tags: amd64 apport-kerneloops resume suspend utopic

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

Title:
  [Dell Inc. Dell System XPS L502X] suspend/resume failure [non-free:
  nvidia]

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

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


[Bug 874268] Re: system-config-printer not reachable in menus of GNOME shell

2012-05-18 Thread Brett Sutton
This needs to be re-opened as it is still a problem 12.04. 
The system settings still has a dicky printer configuration tool.
I had a problem where I couldn't print due to an authentication problem (samba) 
The only solution was to launch the system config printer tool from the command 
line so I could authorise the job.
I understand and agree with the need to provide a simplifed user experience but 
removing core functionality is not the way to achive this.

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

Title:
  system-config-printer not reachable in menus of GNOME shell

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/system-config-printer/+bug/874268/+subscriptions

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


[Bug 973845] Re: network manager keeps trying to connect to random wireless connections when already connected to wired connection

2012-04-12 Thread Brett Sutton
Mathieu,
thanks for the thoughts.

Firstly the issue with the password being re-requested is not to do with have 
two networks with the same name.
The problem occurs regularly when I arrive home. My wlan has a fairly unique 
name 'noojee' so I can be very certain that no one else is using it.

The NM developers seemed to have gone over-board in what I guess was an attept 
to simplify the nm interface.
The result of this is that if you 'accidently' click on a wlan connection from 
then on your laptop will continously try to connect to that wlan. The problem 
is that the NM developers have provided no means of removing that wlan from 
your 'auto connect' list.

If I've understood you statement regarding 'Disconnecting explicitly'
which I've taken to mean 'disable you wlan' then that does work for me
either as it disables all of my wlan connections when I just want to
disable the ones that keep annoying me.

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

Title:
  network manager keeps trying to connect to random wireless connections
  when already connected to wired connection

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

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


[Bug 973845] Re: network manager keeps trying to connect to random wireless connections when already connected to wired connection

2012-04-12 Thread Brett Sutton
Sorry the last paragraph was missing the key word 'not'

If I've understood you statement regarding 'Disconnecting explicitly'
which I've taken to mean 'disable you wlan' then that does NOT work for
me either, as it disables all of my wlan connections, when I just want
to disable the ones that keep annoying me.

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

Title:
  network manager keeps trying to connect to random wireless connections
  when already connected to wired connection

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

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


[Bug 973845] [NEW] network manager keeps trying to connect to random wireless connections when already connected to wired connection

2012-04-04 Thread Brett Sutton
Public bug reported:

At work my laptop can see 10+ wireless connections, non of which I'm
interesed in connecting to.

Even whilst I'm connected to a wired lan, network manager randomly pops
open a request to enter the password for a number of these network
connections. These requests seem to happen at random intervals during
the day.

As I'm using gnome 3 this actually gets worse. When it asks for a
wireless password I first get a gnome themed password prompt (which I
cancel) and then i get the standard non-themed password prompt.

To make things even worse, if I attempt to go in and attempt to edit the
wireless settings, the 'Configure...' button is disabled unless I'm
already connected to a network. (ARGH).

Love,
Brett

lsb_release -rd
Description:Ubuntu 11.10
Release:11.10


sudo apt-cache policy network-manager
[sudo] password for bsutton: 
network-manager:
  Installed: 0.9.1.90-0ubuntu5.1
  Candidate: 0.9.1.90-0ubuntu5.1
  Version table:
 *** 0.9.1.90-0ubuntu5.1 0
500 http://us.archive.ubuntu.com/ubuntu/ oneiric-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 0.9.1.90-0ubuntu3 0
500 http://us.archive.ubuntu.com/ubuntu/ oneiric/main amd64 Packages

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: network-manager-gnome 0.9.1.90-0ubuntu6
ProcVersionSignature: Ubuntu 3.0.0-18.31-generic 3.0.26
Uname: Linux 3.0.0-18-generic x86_64
ApportVersion: 1.23-0ubuntu4
Architecture: amd64
CRDA: Error: [Errno 2] No such file or directory
Date: Thu Apr  5 09:18:57 2012
ExecutablePath: /usr/bin/nm-applet
IfupdownConfig:
 auto lo
 iface lo inet loopback
InstallationMedia: Ubuntu 11.04 Natty Narwhal - Release amd64+mac (20110427.1)
IpRoute:
 default via 10.11.0.1 dev eth0  proto static 
 10.0.0.0/8 dev eth0  proto kernel  scope link  src 10.10.0.222  metric 1 
 169.254.0.0/16 dev eth0  scope link  metric 1000
Keyfiles: Error: [Errno 2] No such file or directory
NetworkManager.state:
 [main]
 NetworkingEnabled=true
 WirelessEnabled=true
 WWANEnabled=false
SourcePackage: network-manager-applet
UpgradeStatus: Upgraded to oneiric on 2011-12-19 (107 days ago)

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


** Tags: amd64 apport-bug oneiric

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

Title:
  network manager keeps trying to connect to random wireless connections
  when already connected to wired connection

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

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


[Bug 973845] Re: network manager keeps trying to connect to random wireless connections when already connected to wired connection

2012-04-04 Thread Brett Sutton
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/973845

Title:
  network manager keeps trying to connect to random wireless connections
  when already connected to wired connection

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

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


[Bug 429277] Re: left-handed mouse no longer working

2012-02-22 Thread Brett Sutton
Acutally it doesn't work in lucid.
Every now and then my system reverts to right handed.

When in a non-working state my xinput looks like this:

 xinput list
⎡ Virtual core pointer  id=2[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer  (2)]
⎜   ↳ Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)id=12   [slave  
pointer  (2)]
⎜   ↳ Tripplite B015-000 R0.74 USB to PS2 adapter.  id=14   [slave  pointer 
 (2)]
⎜   ↳ SynPS/2 Synaptics TouchPadid=16   [slave  pointer  (2)]
⎣ Virtual core keyboard id=3[master keyboard (2)]
↳ Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
↳ Power Button  id=6[slave  keyboard (3)]
↳ Video Bus id=7[slave  keyboard (3)]
↳ Video Bus id=8[slave  keyboard (3)]
↳ Power Button  id=9[slave  keyboard (3)]
↳ Sleep Button  id=10   [slave  keyboard (3)]
↳ Laptop_Integrated_Webcam_2HDM id=11   [slave  keyboard (3)]
↳ Tripplite B015-000 R0.74 USB to PS2 adapter.  id=13   [slave  
keyboard (3)]
↳ AT Translated Set 2 keyboard  id=15   [slave  keyboard (3)]
↳ Dell WMI hotkeys  id=17   [slave  keyboard (3)]

lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 11.10
Release:11.10
Codename:   oneiric

uname -r
3.0.0-16-generic

dpkg -s gnome-settings-daemon
Package: gnome-settings-daemon
Status: install ok installed
Priority: optional
Section: gnome
Installed-Size: 1588
Maintainer: Ubuntu Desktop Team ubuntu-desk...@lists.ubuntu.com
Architecture: amd64
Version: 3.2.2-0ubuntu2.1
Depends: libappindicator3-1 (= 0.2.92), libc6 (= 2.4), libcairo2 (= 1.10.0), 
libcanberra-gtk3-0 (= 0.25), libcanberra0 (= 0.2), libcolord1 (= 0.1.12), 
libcups2 (= 1.4.0), libdbus-glib-1-2 (= 0.88), libfontconfig1 (= 2.8.0), 
libgconf2-4 (= 2.31.1), libgdk-pixbuf2.0-0 (= 2.22.0), libglib2.0-0 (= 
2.29.14), libgnome-desktop-3-2 (= 3.1.5), libgnomekbd7 (= 2.91.90), 
libgtk-3-0 (= 3.1.10), liblcms2-2 (= 2.2+git20110628-2), libnotify4 (= 
0.7.3), libpolkit-gobject-1-0 (= 0.99), libpulse-mainloop-glib0 (= 1:0.99.1), 
libpulse0 (= 1:0.99.1), libupower-glib1 (= 0.9.9), libx11-6, libxfixes3 (= 
1:4.0.1), libxi6 (= 2:1.2.99.4), libxklavier16 (= 5.1), 
dconf-gsettings-backend | gsettings-backend, gsettings-desktop-schemas, 
nautilus-data (= 2.91.3-1)
Recommends: pulseaudio
Suggests: x11-xserver-utils, gnome-screensaver, metacity | x-window-manager
Breaks: banshee ( 0.13.2+dfsg-7), gnome-color-manager ( 3.0), 
gnome-control-center ( 1:2.21.5), gnome-screensaver ( 2.28.0), 
gnome-session ( 2.24), rhythmbox ( 0.11.5), totem ( 2.22.0)
Conffiles:
 /etc/xdg/autostart/gnome-settings-daemon.desktop 
d80fe6e07c196b0b069fc6185d3e3a29
 /etc/xdg/autostart/gnome-fallback-mount-helper.desktop 
58e84e1f8fd68806037a2f70265af2f9
 /etc/dbus-1/system.d/org.gnome.SettingsDaemon.DateTimeMechanism.conf 
0c753d296e5fe10239b210c97c1f20e7
 /etc/gnome/config/Xaw.ad 8b1d2b8fd63d2966d223c36ac56a8081 obsolete
 /etc/gnome/config/Tk.ad 0774b17084384112e7e2b5ef3d044b3c obsolete
 /etc/gnome/config/General.ad 49682440378a2c7ef52c37ee91f0ba0d obsolete
 /etc/gnome/config/Emacs.ad 348fea42a2bc046db8ba8323027d545b obsolete
 /etc/gnome/config/Motif.ad 12aca8840f777bcbec2894578141f8e2 obsolete
 /etc/gnome/config/Editres.ad 05a3123759008f95ddc2425c822bcfa4 obsolete
Description: daemon handling the GNOME session settings
 This package contains the daemon which is responsible for setting the
 various parameters of a GNOME session and the applications that run
 under it. It handles the following kinds of settings:
 .
  * Keyboard: layout, accessibility options, shortcuts, media keys
  * Clipboard management
  * Theming: background, icons, GTK+ applications
  * Cleanup of unused files
  * Mouse: cursors, speed, accessibility options
  * Startup of other daemons: screensaver, sound daemon
  * Typing break
 .
 It also sets various application settings through X resources and
 freedesktop.org XSETTINGS.
Original-Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org

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

Title:
  left-handed mouse no longer working

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

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

[Bug 429277] Re: left-handed mouse no longer working

2012-02-22 Thread Brett Sutton
Continuing on from my last post. After a reboot my mouse resumed correct
left-handed operation without my having to go back into the system
settings.


Here is my xlist after the reboot with my mouse working: (but it looks 
identical to the non-working state)

xinput list
⎡ Virtual core pointer  id=2[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointerid=4[slave  pointer  (2)]
⎜   ↳ Microsoft Microsoft 5-Button Mouse with IntelliEye(TM)id=12   [slave  
pointer  (2)]
⎜   ↳ Tripplite B015-000 R0.74 USB to PS2 adapter.  id=14   [slave  pointer 
 (2)]
⎜   ↳ SynPS/2 Synaptics TouchPadid=16   [slave  pointer  (2)]
⎣ Virtual core keyboard id=3[master keyboard (2)]
↳ Virtual core XTEST keyboard   id=5[slave  keyboard (3)]
↳ Power Button  id=6[slave  keyboard (3)]
↳ Video Bus id=7[slave  keyboard (3)]
↳ Video Bus id=8[slave  keyboard (3)]
↳ Power Button  id=9[slave  keyboard (3)]
↳ Sleep Button  id=10   [slave  keyboard (3)]
↳ Laptop_Integrated_Webcam_2HDM id=11   [slave  keyboard (3)]
↳ Tripplite B015-000 R0.74 USB to PS2 adapter.  id=13   [slave  
keyboard (3)]
↳ AT Translated Set 2 keyboard  id=15   [slave  keyboard (3)]
↳ Dell WMI hotkeys  id=17   [slave  keyboard (3)]

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

Title:
  left-handed mouse no longer working

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

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

[Bug 701259] Re: dell-laptop module hard blocks wifi on Dell Vostro 1520

2011-11-14 Thread Brett Sutton
I had what appeared to be exactly this problem.

When I toggle the fn-f2 key the wirless connection would appear to be
enabled but as soon as I click the 'Enable Wirless' option it would
disappear and the 'wireless connection disabled by hardware switch'
message would come up.

Whilst reading this post and in frustration I rapidly toggled the fn-f2
key (three times I think) and suddenly my wireless connection password
dialog popped open and all was fixed.

My wireless connection is now working fine (but I'm not prepared to
touch the fn-f2 key again).

I'm running 11.10. The problem only occured about two weeks after
installing 11.10 and possible after I accidently toggled the fn-f2 key.

Maybe this isn't exactly the same problem but the symptoms do appear to
be identical.

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

Title:
  dell-laptop module hard blocks wifi on Dell Vostro 1520

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

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


[Bug 608170] [NEW] package flashplugin-installer 10.1.53.64ubuntu0.10.04.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-21 Thread Brett Sutton
Public bug reported:

Binary package hint: flashplugin-nonfree

when attempting to perform an sudo apt-get upgrade on my box the
following occurs:

sudo apt-get upgrade
Reading package lists... Done
Building dependency tree   
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
1 not fully installed or removed.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? y
Setting up flashplugin-installer (10.1.53.64ubuntu0.10.04.3) ...
Downloading...
--2010-07-21 20:38:00--  
http://archive.canonical.com/pool/partner/a/adobe-flashplugin/adobe-flashplugin_10.1.53.64.orig.tar.gz
Resolving archive.canonical.com... 91.189.88.33
Connecting to archive.canonical.com|91.189.88.33|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 4739416 (4.5M) [application/x-gzip]
Saving to: `./adobe-flashplugin_10.1.53.64.orig.tar.gz'

 0K .. .. .. .. ..  1% 47.0K
97s

...

 4600K .. .. 100%
1.38M=10s

2010-07-21 20:38:11 (465 KB/s) - `./adobe-
flashplugin_10.1.53.64.orig.tar.gz' saved [4739416/4739416]

Download done.
Flash Plugin installed.
update-alternatives: error: /var/lib/dpkg/alternatives/iceape-flashplugin 
corrupt: invalid status
dpkg: error processing flashplugin-installer (--configure):
 subprocess installed post-installation script returned error exit status 2
Errors were encountered while processing:
 flashplugin-installer
E: Sub-process /usr/bin/dpkg returned an error code (1)




System details
lsb_release -rd
Description:Ubuntu 10.04 LTS
Release:10.04

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: flashplugin-installer 10.1.53.64ubuntu0.10.04.3
ProcVersionSignature: Ubuntu 2.6.32-23.37-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-23-generic x86_64
Architecture: amd64
Date: Wed Jul 21 20:07:37 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
SourcePackage: flashplugin-nonfree
Title: package flashplugin-installer 10.1.53.64ubuntu0.10.04.3 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2

** Affects: flashplugin-nonfree (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package lucid

-- 
package flashplugin-installer 10.1.53.64ubuntu0.10.04.3 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
https://bugs.launchpad.net/bugs/608170
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 608170] Re: package flashplugin-installer 10.1.53.64ubuntu0.10.04.3 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-07-21 Thread Brett Sutton

** Attachment added: AptOrdering.txt
   http://launchpadlibrarian.net/52254305/AptOrdering.txt

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

** Attachment added: Df.txt
   http://launchpadlibrarian.net/52254308/Df.txt

** Attachment added: Dmesg.txt
   http://launchpadlibrarian.net/52254309/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/52254311/DpkgTerminalLog.txt

-- 
package flashplugin-installer 10.1.53.64ubuntu0.10.04.3 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2
https://bugs.launchpad.net/bugs/608170
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 582160] [NEW] package flashplugin-installer 10.0.45.2ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-05-18 Thread Brett Sutton
Public bug reported:

Binary package hint: flashplugin-nonfree

When installing flashplugin-installer apt-get reports the error message 
reported below.
When this occurs I'm unable to remove or install the plugin. 
I manually removed the package by using: gksu gedit /var/lib/dpkg/status and 
removing the package details and then attempted a re-install with the same 
problem.

If I look in firefox flash is loaded however the myth packages mentioned
below appear to require this particular version.

Download done.
Flash Plugin installed.
update-alternatives: error: /var/lib/dpkg/alternatives/iceape-flashplugin 
corrupt: invalid status
dpkg: error processing flashplugin-installer (--configure):
 subprocess installed post-installation script returned error exit status 2
dpkg: dependency problems prevent configuration of mythnetvision:
 mythnetvision depends on flashplugin-installer | adobe-flashplugin; however:
  Package flashplugin-installer is not configured yet.
  Package adobe-flashplugin is not installed.
dpkg: error processing mythnetvision (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of flashplugin-nonfree:
 flashplugin-nonfree depends on flashplugin-installer; however:
  Package flashplugin-installer is not configured yet.
dpkg: error processing flashplugin-nonfree (--configure):
 dependency problems - leaving unconfigured


-
Additional information:
lsb_release -rd
Description:Ubuntu 10.04 LTS
Release:10.04


apt-cache policy flashplugin-nonfree
flashplugin-nonfree:
  Installed: 10.0.45.2ubuntu1
  Candidate: 10.0.45.2ubuntu1
  Version table:
 *** 10.0.45.2ubuntu1 0
500 http://ftp.iinet.net.au/pub/ubuntu/ lucid/multiverse Packages
100 /var/lib/dpkg/status

I ran the following commands which didn't help
sudo rm -rf  /var/lib/dpkg/info/flashplugin-installer.{postinst,prerm,postrm}
sudo apt-get remove --purge flashplugin-installer
sudo apt-get clean
sudo apt-get update

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: flashplugin-installer 10.0.45.2ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
Uname: Linux 2.6.32-22-generic x86_64
AptOrdering:
 mythtv-backend-master: Install
 flashplugin-installer: Configure
 mythnetvision: Configure
 mythplugins: Configure
 mythtv-backend-master: Configure
Architecture: amd64
Date: Mon May 17 22:23:27 2010
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
SourcePackage: flashplugin-nonfree
Title: package flashplugin-installer 10.0.45.2ubuntu1 failed to 
install/upgrade: subprocess installed post-installation script returned error 
exit status 2

** Affects: flashplugin-nonfree (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package lucid

-- 
package flashplugin-installer 10.0.45.2ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/582160
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 582160] Re: package flashplugin-installer 10.0.45.2ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2010-05-18 Thread Brett Sutton

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

** Attachment added: Df.txt
   http://launchpadlibrarian.net/48644613/Df.txt

** Attachment added: Dmesg.txt
   http://launchpadlibrarian.net/48644614/Dmesg.txt

** Attachment added: DpkgTerminalLog.txt
   http://launchpadlibrarian.net/48644615/DpkgTerminalLog.txt

-- 
package flashplugin-installer 10.0.45.2ubuntu1 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2
https://bugs.launchpad.net/bugs/582160
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 563200] Re: package dahdi-dkms 1:2.2.1+dfsg-1ubuntu1 failed to install/upgrade: dahdi kernel module failed to build

2010-04-30 Thread Brett Sutton
This was also a problem in 9.10 as well as 9.10 server.
It appears that the linux headers installed don't match the current linux 
kernel version.

After the ubuntu upgrade completed I re-run 
apt-get install dahdi-dkms 

This fix the problem.

I wonder if there is some sort of install order issue where the required 
headers are not installed until after dahdi is built.
In 9.10 server it appeared that apt-get install linux-headers was installing a 
version of the headers that was more recent than the running kernel. I don't 
know if that somehow relates to this problem.

-- 
package dahdi-dkms 1:2.2.1+dfsg-1ubuntu1 failed to install/upgrade: dahdi 
kernel module failed to build
https://bugs.launchpad.net/bugs/563200
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 283489] apport-collect data

2009-10-04 Thread Brett Sutton
Architecture: i386
Dependencies:
 
DistroRelease: Ubuntu 9.04
Package: linux None [modified: /var/lib/dpkg/info/linux.list]
PackageArchitecture: i386
ProcEnviron:
 SHELL=/bin/bash
 PATH=(custom, user)
 LANG=en_AU.UTF-8
Uname: Linux 2.6.28-15-generic i686
UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

-- 
MP-BIOS bug: 8254 timer not connected to IO-APIC
https://bugs.launchpad.net/bugs/283489
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 363249] [NEW] terminal crashes after changing system fonts to 12 point while terminal open

2009-04-18 Thread Brett Sutton
Public bug reported:

Binary package hint: gnome-terminal

jaunty 9.04 final beta.

ProblemType: Bug
Architecture: amd64
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/gnome-terminal
Package: gnome-terminal 2.26.0-0ubuntu2
ProcEnviron:
 LANG=en_AU.UTF-8
 SHELL=/bin/bash
SourcePackage: gnome-terminal
Uname: Linux 2.6.28-11-generic x86_64

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


** Tags: amd64 apport-bug

-- 
terminal crashes after changing system fonts to 12 point while terminal open
https://bugs.launchpad.net/bugs/363249
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 363249] Re: terminal crashes after changing system fonts to 12 point while terminal open

2009-04-18 Thread Brett Sutton

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

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/25694137/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/25694138/ProcStatus.txt

-- 
terminal crashes after changing system fonts to 12 point while terminal open
https://bugs.launchpad.net/bugs/363249
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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