[Bug 1715074] [NEW] byobu requires tmux

2017-09-05 Thread Redmar
Public bug reported:

Byobu requires tmux to run, but tmux is not listed as a dependency.

$ byobu
/usr/bin/byobu: 205: exec: tmux: not found


Running 'apt-get install tmux' fixes this issue, and byobu starts as expected.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: byobu 5.106-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-93.116-generic 4.4.79
Uname: Linux 4.4.0-93-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.10
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Sep  5 08:57:56 2017
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-01-01 (612 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
PackageArchitecture: all
SourcePackage: byobu
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug packaging xenial

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

Title:
  byobu requires tmux

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

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

[Bug 1702235] Re: trimmomatic fails on spaces in filenames

2017-07-12 Thread Redmar
The suggested patch should address both. As I understand it, both
wrappers link to the same file, which uses the name of the wrapper file
to determine which part of the .jar to address.

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

Title:
  trimmomatic fails on spaces in filenames

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

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


[Bug 1702235] Re: trimmomatic fails on spaces in filenames

2017-07-04 Thread Redmar
Example command
TrimmomaticPE \
-threads 4 \
"/dev/shm/wdl/cromwell-executions/mlst/3614c5ff-8c3f-4a24-b8ad-44118ed58baf/call-trim/trim/1a1d2363-15c8-400e-9c12-0b094a391626/call-trimmomatic/shard-0/inputs/data/example/M
 938 R1.fastq.gz" \
"/dev/shm/wdl/cromwell-executions/mlst/3614c5ff-8c3f-4a24-b8ad-44118ed58baf/call-trim/trim/1a1d2363-15c8-400e-9c12-0b094a391626/call-trimmomatic/shard-0/inputs/data/example/M
 938 R2.fastq.gz" \
"M 938 _1.trimmed.fastq.gz" \
"M 938 _1.unpaired.gz" \
"M 938 _2.trimmed.fastq.gz" \
"M 938 _2.unpaired.gz" \
HEADCROP:2 \
ILLUMINACLIP:"/usr/share/trimmomatic/TruSeq3-PE-2.fa":2:20:12:1:true \
SLIDINGWINDOW:3:22 \
MINLEN:36 \
CROP: \
TOPHRED33

stderr:
Picked up _JAVA_OPTIONS: 
-Djava.io.tmpdir=/dev/shm/wdl/cromwell-executions/mlst/3614c5ff-8c3f-4a24-b8ad-44118ed58baf/call-trim/trim/1a1d2363-15c8-400e-9c12-0b094a391626/call-trimmomatic/shard-0/execution/tmp.XH2cjE
TrimmomaticPE: Started with arguments:
 -threads 4 
/dev/shm/wdl/cromwell-executions/mlst/3614c5ff-8c3f-4a24-b8ad-44118ed58baf/call-trim/trim/1a1d2363-15c8-400e-9c12-0b094a391626/call-trimmomatic/shard-0/inputs/data/example/M
 938 R1.fastq.gz 
/dev/shm/wdl/cromwell-executions/mlst/3614c5ff-8c3f-4a24-b8ad-44118ed58baf/call-trim/trim/1a1d2363-15c8-400e-9c12-0b094a391626/call-trimmomatic/shard-0/inputs/data/example/M
 938 R2.fastq.gz M 938 _1.trimmed.fastq.gz M 938 _1.unpaired.gz M 938 
_2.trimmed.fastq.gz M 938 _2.unpaired.gz HEADCROP:2 
ILLUMINACLIP:/usr/share/trimmomatic/TruSeq3-PE-2.fa:2:20:12:1:true 
SLIDINGWINDOW:3:22 MINLEN:36 CROP: TOPHRED33
Exception in thread "main" java.lang.RuntimeException: Unknown trimmer: M
at 
org.usadellab.trimmomatic.trim.TrimmerFactory.makeTrimmer(TrimmerFactory.java:67)
at 
org.usadellab.trimmomatic.Trimmomatic.createTrimmers(Trimmomatic.java:41)
at org.usadellab.trimmomatic.TrimmomaticPE.run(TrimmomaticPE.java:529)
at org.usadellab.trimmomatic.TrimmomaticPE.main(TrimmomaticPE.java:540)

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

Title:
  trimmomatic fails on spaces in filenames

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

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


[Bug 1702235] [NEW] trimmomatic fails on spaces in filenames

2017-07-04 Thread Redmar
Public bug reported:

There is an error in the wrapper for the java class, which means that
properly quoted arguments (like "File name.extension") get expanded, and
passed as File name.extension

from /usr/bin/TrimmomaticSE
# Original
#java -classpath "$JARVERSION" org.usadellab.$PKGNAME.$FUNCTIONTOCALL $@
# Fixed
java -classpath "$JARVERSION" org.usadellab.$PKGNAME.$FUNCTIONTOCALL "$@"

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: trimmomatic 0.35+dfsg-1
ProcVersionSignature: Ubuntu 4.4.0-83.106-generic 4.4.70
Uname: Linux 4.4.0-83-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.6
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Jul  4 09:31:26 2017
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-01-01 (549 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
PackageArchitecture: all
SourcePackage: trimmomatic
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  trimmomatic fails on spaces in filenames

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

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


[Bug 1592696] Re: snaps dont work with encrypted home: failed to create user data directory. errmsg: Permission denied

2016-06-18 Thread Redmar
@Bruno Nova,

I'm sorry, I misread the apparmor_parser comment, and thought I only had
to run apparmor_parser. After modifying /etc/apparmor.d/usr.bin.ubuntu-
core-launcher as described in #7 running the apparmor_parser fixed snaps
for me.

Thanks a lot for this workaround, now I can start using snaps again!

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

Title:
  snaps dont work with encrypted home: failed to create user data
  directory. errmsg: Permission denied

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

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


[Bug 1593578] Re: new users don't have /snap/bin in PATH when using 'su user'

2016-06-17 Thread Redmar
** Summary changed:

- new users don't have /snap/bin in PATH
+ new users don't have /snap/bin in PATH when using 'su user'

** Description changed:

  If you create a second user, they do not have /snap/bin in their PATH by
- default. This is both for users created with adduser and those created
- via the default gui (unity-control-center I think).
+ default when login in using 'su user'. This is both for users created
+ with adduser and those created via the default gui (unity-control-center
+ I think).
  
  This means that new users cannot use snaps from the command line.
  
  Workaround:
- Manually add /snap/bin to your PATH, by adding 
+ Manually add /snap/bin to your PATH, by adding
  PATH=$PATH:/snap/bin
  
  to your .bashrc file
+ 
+ Note: /snap/bin is in the PATH when doing a regular login in via
+ lightdm.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: snapd 2.0.8
  ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
  Uname: Linux 4.4.0-24-generic x86_64
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Jun 17 08:17:52 2016
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2016-05-26 (21 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  SourcePackage: snapd
  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/1593578

Title:
  new users don't have /snap/bin in PATH when using 'su user'

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

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


[Bug 1593578] [NEW] new users don't have /snap/bin in PATH

2016-06-17 Thread Redmar
Public bug reported:

If you create a second user, they do not have /snap/bin in their PATH by
default. This is both for users created with adduser and those created
via the default gui (unity-control-center I think).

This means that new users cannot use snaps from the command line.

Workaround:
Manually add /snap/bin to your PATH, by adding 
PATH=$PATH:/snap/bin

to your .bashrc file

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: snapd 2.0.8
ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
Uname: Linux 4.4.0-24-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Jun 17 08:17:52 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-05-26 (21 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
SourcePackage: snapd
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  new users don't have /snap/bin in PATH

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

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


[Bug 1592696] Re: snaps dont work with encrypted home: failed to create user data directory. errmsg: Permission denied

2016-06-16 Thread Redmar
I have tried the fix in #8 on 16.04 with encrypted home, but I still get
the same error:

redmar@raider:~$ sudo apparmor_parser -r 
/etc/apparmor.d/usr.bin.ubuntu-core-launcher
redmar@raider:~$ hello
failed to create user data directory. errmsg: Permission denied
redmar@raider:~$ which hello
/snap/bin/hello

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

Title:
  snaps dont work with encrypted home: failed to create user data
  directory. errmsg: Permission denied

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

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


[Bug 1592696] Re: snaps dont work with encrypted home: failed to create user data directory. errmsg: Permission denied

2016-06-15 Thread Redmar
This is from a fresh install of the latest yakkety in virtualbox:

$ grep DEN /var/log/syslog 
Jun 15 18:49:41 test-VirtualBox kernel: [   90.415758] audit: type=1400 
audit(1466009381.034:41): apparmor="DENIED" operation="open" 
profile="/usr/bin/ubuntu-core-launcher" name="/home/.ecryptfs/test/.Private/" 
pid=2345 comm="ubuntu-core-lau" requested_mask="r" denied_mask="r" fsuid=1000 
ouid=1000

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

Title:
  snaps dont work with encrypted home: failed to create user data
  directory. errmsg: Permission denied

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

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


[Bug 1574556] Re: apparmor denials reported for encryped HOME

2016-06-15 Thread Redmar
I've opened a separate bug report for snaps failing with "failed to
create user data directory. errmsg: Permission denied".
https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1592696

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

Title:
  apparmor denials reported for encryped HOME

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

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


[Bug 1592696] [NEW] snaps dont work with encrypted home: failed to create user data directory. errmsg: Permission denied

2016-06-15 Thread Redmar
Public bug reported:

No snaps appear to work with encrypted home. For example, even the
'hello' snap does not function: failed to create user data directory.
errmsg: Permission denied


The error message appears to be a bit misleading, since the ~/snap/hello/1 
directory tree is created, so the snap can access the home dir.


Workaround:
Install without encrypted home, if you do that snaps work properly.

However, see this comment for a possible workaround:
https://bugs.launchpad.net/snappy/+bug/1574556/comments/5

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: snapd 2.0.5
ProcVersionSignature: Ubuntu 4.4.0-24.43-generic 4.4.10
Uname: Linux 4.4.0-24-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia_drm nvidia_modeset nvidia
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: Unity
Date: Wed Jun 15 10:02:35 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-01-01 (165 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
SourcePackage: snapd
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  snaps dont work with encrypted home: failed to create user data
  directory. errmsg: Permission denied

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

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


[Bug 1574253] Re: totem segfaults on 16.04

2016-04-24 Thread Redmar
** Attachment added: "crash file"
   
https://bugs.launchpad.net/ubuntu/+source/totem/+bug/1574253/+attachment/4645368/+files/_usr_bin_totem.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/1574253

Title:
  totem segfaults on 16.04

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

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


[Bug 1574253] [NEW] totem segfaults on 16.04

2016-04-24 Thread Redmar
Public bug reported:

Starting from the terminal on a fully up to date install of 16.04

$ totem

(totem:8472): GLib-CRITICAL **: g_strsplit: assertion 'string != NULL'
failed

(totem:8472): GLib-CRITICAL **: g_strsplit: assertion 'string != NULL' failed
Segmentation fault (core dumped)

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: totem 3.18.1-1ubuntu4
Uname: Linux 4.4.0-999-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
Date: Sun Apr 24 15:02:28 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-01-01 (114 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
SourcePackage: totem
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  totem segfaults on 16.04

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

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


[Bug 1574210] [NEW] blank desktop on 16.04 on live and installed system

2016-04-24 Thread Redmar
Public bug reported:

I've been using 16.04 since January, but a recent upgrade broke the
unity desktop. I only get the background image, no top or side bar. I
installed the gnome shell as an alternative, gnome shell crashes on
login. For now, I'm using dwm as a workaround.

Please let me know if you need anything else to fix this.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: unity 7.4.0+16.04.20160415-0ubuntu1
Uname: Linux 4.4.0-999-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
BootLog: /dev/mapper/sda6_crypt: clean, 402437/2433024 files, 8915452/9723648 
blocks
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: None
Date: Sun Apr 24 11:51:17 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 bbswitch, 0.8: added
 nvidia-361, 361.42: added
EcryptfsInUse: Yes
GraphicsCard:
 Subsystem: Gigabyte Technology Co., Ltd Skylake Integrated Graphics [1458:d000]
 NVIDIA Corporation GM204 [GeForce GTX 970] [10de:13c2] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: ASUSTeK Computer Inc. GM204 [GeForce GTX 970] [1043:8508]
GsettingsChanges:
 b'com.canonical.Unity' b'minimize-count' b'69'
 b'org.gnome.desktop.interface' b'gtk-im-module' b"'gtk-im-context-simple'"
 b'org.gnome.desktop.interface' b'scaling-factor' b'uint32 1'
InstallationDate: Installed on 2016-01-01 (113 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
Lsusb:
 Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 002: ID 046d:c525 Logitech, Inc. MX Revolution Cordless Mouse
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Gigabyte Technology Co., Ltd. Z170XP-SLI
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.4.0-999-generic 
root=UUID=0637cac8-150b-429a-8680-cc82cfae2cea ro recovery nomodeset
SourcePackage: unity
UnitySupportTest: Error: command ['/usr/lib/nux/unity_support_test', '-p', 
'-f'] failed with exit code 5: Error: GLX is not available on the system
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/12/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F5
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Z170XP-SLI-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF5:bd10/12/2015:svnGigabyteTechnologyCo.,Ltd.:pnZ170XP-SLI:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ170XP-SLI-CF:rvrx.x:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: Z170XP-SLI
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
version.compiz: compiz 1:0.9.12.2+16.04.20160415-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Sun Apr 24 11:26:42 2016
xserver.configfile: default
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.18.3-1ubuntu2

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


** Tags: amd64 apport-bug ubuntu xenial

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

Title:
  blank desktop on 16.04 on live and installed system

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

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


[Bug 1569543] [NEW] cpu won't go past 2GHz even under heavy load

2016-04-12 Thread Redmar
Public bug reported:

I use this laptop for scientific analysis, so the performance loss is
very noticeable. This happened suddenly, and does not appear to be
related to a cooling problem. Obvious things like rebooting or manually
setting the CPU governor to 'performance' don't resolve this.

Before, the CPU would go up to 3.2GHz, and the temperature would be pushing 
against 85C, which is 'high' for this CPU. 
Now, the frequency only goes up to 2GHz, and the temperature stays at 60C

Please let me know if there is anything I can do to help resolve this
issue, I really cannot afford the performance loss that comes with this
problem, so I'm very motivated to help resolve this.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.16.0-67-generic 3.16.0-67.87~14.04.1
ProcVersionSignature: Ubuntu 3.16.0-67.87~14.04.1-generic 3.16.7-ckt24
Uname: Linux 3.16.0-67-generic x86_64
NonfreeKernelModules: zfs zunicode zcommon znvpair zavl
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Apr 12 21:38:49 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2015-06-29 (288 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release amd64+mac 
(20150218.1)
SourcePackage: linux-lts-utopic
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-lts-utopic (Ubuntu)
 Importance: Undecided
 Status: New


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

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

Title:
  cpu won't go past 2GHz even under heavy load

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

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


[Bug 1537357] [NEW] Problems inputing decimal with numpad

2016-01-23 Thread Redmar
Public bug reported:

Keyboard settings: English (US, with euro on 5)
Localisation settings: Dutch


It is impossible to input decimals using the numpad. In Dutch, the decimal 
separator is "," instead of "." 
However, when using (for example) the terminal (like bc), when I put in 2.5 
using the numpad, it gets changed to "2,5", and bc gives a syntax error. To 
input 2.5, I have to switch away from the numpad and use the period key to put 
in the decimal point.

In gnucash, the problem is the other way around. I can put in 2.5 using
the numpad, it does get changed to "2,5", but gnucash recognises it
properly as a fraction. However, In gnucash, I cannot put in 2.5 using
the period key. It doesnt put a "." or ",", or anything else. Its like
it doesn't accept whatever the period key sends as input, and stays
blank.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: indicator-keyboard 0.0.0+16.04.20151125-0ubuntu1
Uname: Linux 4.4.0-999-generic x86_64
ApportVersion: 2.19.3-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Jan 23 12:14:29 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-01-01 (21 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
SourcePackage: indicator-keyboard
UpgradeStatus: No upgrade log present (probably fresh install)
upstart.indicator-keyboard.log: (unity-control-center:3657): Gtk-CRITICAL **: 
gtk_notebook_set_current_page: assertion 'GTK_IS_NOTEBOOK (notebook)' failed

** Affects: indicator-keyboard (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug l10n l18n 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/1537357

Title:
  Problems inputing decimal with numpad

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1537357/+subscriptions

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


[Bug 1537357] Re: Problems inputing decimal with numpad

2016-01-23 Thread Redmar
Workaround:
For now, I've set the localisation to Irish, since they have the Euro and speak 
English, but there should be a better solution for this.

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

Title:
  Problems inputing decimal with numpad

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1537357/+subscriptions

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


[Bug 1530441] [NEW] Kernel panic when booting

2016-01-01 Thread Redmar
Public bug reported:

The live system boots only rarely, and gives the following kernel panic most of 
the time:
[drm] failed to retreive link info, disabling eDP
[drm] initialised i915 1.60 20150731 for :00:002.0 on minor 1
Kernel panic - not syncing: Timeout: Not all CPUs entered broadcast exception 
handler
Shutting down cpus with NMI


The installed system appears to kernel panic all of the time, except when using 
advanced -> upstart in grub. Please let me know what additional information you 
need to resolve this.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.3.0-2-generic 4.3.0-2.11
ProcVersionSignature: Ubuntu 4.3.0-2.11-generic 4.3.0
Uname: Linux 4.3.0-2-generic x86_64
ApportVersion: 2.19.2-0ubuntu9
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  trijntje   2230 F pulseaudio
 /dev/snd/controlC0:  trijntje   2230 F pulseaudio
CurrentDesktop: Unity
Date: Fri Jan  1 14:36:38 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-01-01 (0 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20151209)
IwConfig:
 enp0s31f6  no wireless extensions.
 
 lono wireless extensions.
Lsusb:
 Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 002: ID 046d:c525 Logitech, Inc. MX Revolution Cordless Mouse
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: Gigabyte Technology Co., Ltd. Z170XP-SLI
ProcFB:
 0 nouveaufb
 1 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-4.3.0-2-generic 
root=UUID=0637cac8-150b-429a-8680-cc82cfae2cea ro quiet splash 
init=/sbin/upstart
RelatedPackageVersions:
 linux-restricted-modules-4.3.0-2-generic N/A
 linux-backports-modules-4.3.0-2-generic  N/A
 linux-firmware   1.154
RfKill:
 
SourcePackage: linux
UdevLog: Error: [Errno 2] No such file or directory: '/var/log/udev'
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/12/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: F5
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: Z170XP-SLI-CF
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrF5:bd10/12/2015:svnGigabyteTechnologyCo.,Ltd.:pnZ170XP-SLI:pvrTobefilledbyO.E.M.:rvnGigabyteTechnologyCo.,Ltd.:rnZ170XP-SLI-CF:rvrx.x:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: Z170XP-SLI
dmi.product.version: To be filled by O.E.M.
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


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

Title:
  Kernel panic when booting

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

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


[Bug 1530441] Re: Kernel panic when booting

2016-01-01 Thread Redmar
Installing kernel 4.4.0-999-generic #201512302100 SMP Thu Dec 31 02:04:10 UTC 
2015 x86_64 x86_64 x86_64 GNU/Linux
 
from http://kernel.ubuntu.com/~kernel-ppa/mainline/daily/current/

solves the kernel panic for the default grub entry.

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

Title:
  Kernel panic when booting

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

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


[Bug 1467261] [NEW] ubuntu 14.04 hangs showing login screen when using nouveau

2015-06-21 Thread Redmar
Public bug reported:

Using ubuntu 14.04 with kernel 3.13.0-55-generic and the nouveau drivers
hangs on the lightdm screen. I cannot enter password or move mouse. I
also cant switch to text mode using ctrl +alt +f1, nor reboot with
REISUB.

* Using kernel 3.13.0-54-generic works, I can login and use the system even 
when using the nouveau driver
* Using kernel 3.13.0-55-generic with nvidia-331-updates also works.

Proposed solution:
Use the nvidia-311-updates driver instead of the open source nouveau driver.

Please let me know if you need any additional information.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
ProcVersionSignature: Ubuntu 3.13.0-55.94-generic 3.13.11-ckt20
Uname: Linux 3.13.0-55-generic i686
NonfreeKernelModules: nvidia
.proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
.proc.driver.nvidia.registry: Binary: 
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86 Kernel Module  331.113  Mon Dec  1 20:14:01 PST 
2014
 GCC version:  gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04)
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.11
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Sun Jun 21 15:32:35 2015
DistUpgraded: 2014-04-28 14:15:07,900 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 NVIDIA Corporation GK107 [GeForce GT 640] [10de:0fc1] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: Micro-Star International Co., Ltd. [MSI] Device [1462:8a92]
InstallationDate: Installed on 2013-05-24 (757 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
MachineType: Gigabyte Technology Co., Ltd. GA-880GM-UD2H
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-55-generic 
root=UUID=e68b16d5-dc00-4b2f-88d8-1535fc9ed05c ro quiet splash
SourcePackage: xserver-xorg-video-nouveau
UpgradeStatus: Upgraded to trusty on 2014-04-28 (419 days ago)
dmi.bios.date: 10/11/2010
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: F8
dmi.board.name: GA-880GM-UD2H
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.board.version: x.x
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF8:bd10/11/2010:svnGigabyteTechnologyCo.,Ltd.:pnGA-880GM-UD2H:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-880GM-UD2H:rvrx.x:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: GA-880GM-UD2H
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.libdrm2: libdrm2 2.4.60-2~ubuntu14.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.4
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.4
version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2.7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.6
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Sun Jun 21 15:21:17 2015
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputDell Dell USB Entry Keyboard KEYBOARD, id 8
 inputPixArt USB Optical Mouse MOUSE, id 9
xserver.errors: open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.15.1-0ubuntu2.7

** Affects: xserver-xorg-video-nouveau (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug compiz-0.9 i386 trusty ubuntu

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

Title:
  ubuntu 14.04 hangs showing login screen when using nouveau

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

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


[Bug 1443275] [NEW] fastqc doesn't generate report due to missing files

2015-04-13 Thread Redmar
Public bug reported:

It appears the fastqc package lacks a number of files required, which
means that it cannot display the analysis results, even though it does
seem to perform the analysis. This occurs both for the terminal and
graphical version of fastqc. I've attached the terminal output of the
program since it gives more useful debugging info. I believe the first
error (before the progress indicators) is regarding a data file required
for some parts of the analysis. The second error is about not finding an
image required for generating a report.

Please note: though it runs, this bug makes the fastqc program
completely useless since it will not generate any output.

$ fastqc 102517-21_ACAGTG_R1.fastq.gz
java.io.FileNotFoundException: cannot find Confituration/adapter_list.txt
at 
uk.ac.babraham.FastQC.Modules.AdapterContent.init(AdapterContent.java:79)
at 
uk.ac.babraham.FastQC.Analysis.OfflineRunner.processFile(OfflineRunner.java:129)
at 
uk.ac.babraham.FastQC.Analysis.OfflineRunner.init(OfflineRunner.java:95)
at 
uk.ac.babraham.FastQC.FastQCApplication.main(FastQCApplication.java:308)
Started analysis of 102517-21_ACAGTG_R1.fastq.gz
Approx 5% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 10% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 15% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 20% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 25% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 30% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 35% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 40% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 45% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 50% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 55% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 60% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 65% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 70% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 75% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 80% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 85% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 90% complete for 102517-21_ACAGTG_R1.fastq.gz
Approx 95% complete for 102517-21_ACAGTG_R1.fastq.gz
Analysis complete for 102517-21_ACAGTG_R1.fastq.gz
Failed to process file 102517-21_ACAGTG_R1.fastq.gz
java.lang.IllegalArgumentException: input == null!
at javax.imageio.ImageIO.read(ImageIO.java:1388)
at 
uk.ac.babraham.FastQC.Report.HTMLReportArchive.base64ForIcon(HTMLReportArchive.java:377)
at 
uk.ac.babraham.FastQC.Report.HTMLReportArchive.startDocument(HTMLReportArchive.java:301)
at 
uk.ac.babraham.FastQC.Report.HTMLReportArchive.init(HTMLReportArchive.java:84)
at 
uk.ac.babraham.FastQC.Analysis.OfflineRunner.analysisComplete(OfflineRunner.java:163)
at 
uk.ac.babraham.FastQC.Analysis.AnalysisRunner.run(AnalysisRunner.java:110)
at java.lang.Thread.run(Thread.java:745)

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: fastqc 0.11.2+dfsg-1
ProcVersionSignature: Ubuntu 3.16.0-34.45-generic 3.16.7-ckt8
Uname: Linux 3.16.0-34-generic x86_64
ApportVersion: 2.14.7-0ubuntu8.2
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Apr 13 08:20:29 2015
Dependencies:
 libcommons-math3-java 3.3-1
 libjbzip2-java 0.9.1-3
 libsam-java 1.113-1
InstallationDate: Installed on 2014-08-07 (248 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
PackageArchitecture: all
SourcePackage: fastqc
UpgradeStatus: Upgraded to utopic on 2014-10-27 (167 days ago)

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


** Tags: amd64 apport-bug utopic

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

Title:
  fastqc doesn't generate report due to missing files

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

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


[Bug 1443437] [NEW] fastqc package doesn't list java as a dependency

2015-04-13 Thread Redmar
Public bug reported:

$ fastqc 102517-21_ACAGTG_R1.fastq.gz -o fastqc/
Can't exec java: No such file or directory at /usr/bin/fastqc line 256.

Installing default-jre solves this problem.

ProblemType: Bug
DistroRelease: Ubuntu 15.04
Package: fastqc 0.11.2+dfsg-3
ProcVersionSignature: Ubuntu 3.19.0-13.13-generic 3.19.3
Uname: Linux 3.19.0-13-generic x86_64
ApportVersion: 2.17-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Mon Apr 13 14:56:54 2015
Dependencies:
 libcommons-math3-java 3.3-1
 libjbzip2-java 0.9.1-3
 libsam-java 1.113-1
InstallationDate: Installed on 2015-04-11 (1 days ago)
InstallationMedia: Ubuntu 15.04 Vivid Vervet - Beta amd64 (20150326)
PackageArchitecture: all
SourcePackage: fastqc
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug packaging vivid

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

Title:
  fastqc package doesn't list java as a dependency

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

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


[Bug 1390032] [NEW] Cannot install nonfree drivers due to dependency problem

2014-11-06 Thread Redmar
Public bug reported:

I cannot install non-free drivers for my video card due to a problem
with dependencies. I try installing drivers via software  updates -
Additional drivers.

For fglrx
$software-properties-gtk 
Warning: install transaction not completed successfully: Transaction failed: 
Pakketafhankelijkheden kunnen niet opgelost worden
 The following packages have unmet dependencies:

fglrx: Depends: libqtcore4 (= 4:4.8.4) but 
4:4.8.6+git49-gbc62005+dfsg-1ubuntu1 is to be installed
   Depends: xorg-video-abi-18 but it is a virtual package

For fglrx-updates
$ software-properties-gtk 
Warning: install transaction not completed successfully: Transaction failed: 
Pakketafhankelijkheden kunnen niet opgelost worden
 The following packages have unmet dependencies:

fglrx-updates: Depends: libqtcore4 (= 4:4.8.4) but 
4:4.8.6+git49-gbc62005+dfsg-1ubuntu1 is to be installed
   Depends: xorg-video-abi-18 but it is a virtual package

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: fglrx (not installed)
ProcVersionSignature: Ubuntu 3.16.0-24.32-generic 3.16.4
Uname: Linux 3.16.0-24-generic x86_64
ApportVersion: 2.14.7-0ubuntu8
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Nov  6 11:55:07 2014
DistUpgraded: 2014-10-27 11:47:39,708 DEBUG enabling apt cron job
DistroCodename: utopic
DistroVariant: ubuntu
InstallationDate: Installed on 2014-08-07 (90 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
MachineType: Acer Aspire M5500
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.16.0-24-generic 
root=UUID=812cd0cf-4edb-4f64-88bc-d16bb53612ab ro quiet splash vt.handoff=7
SourcePackage: fglrx-installer
UpgradeStatus: Upgraded to utopic on 2014-10-27 (10 days ago)
dmi.bios.date: 06/18/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: R01-B0
dmi.board.name: FG965M
dmi.board.vendor: Acer
dmi.chassis.type: 3
dmi.chassis.vendor: Acer
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrR01-B0:bd06/18/2007:svnAcer:pnAspireM5500:pvrR01-B0:rvnAcer:rnFG965M:rvr:cvnAcer:ct3:cvr:
dmi.product.name: Aspire M5500
dmi.product.version: R01-B0
dmi.sys.vendor: Acer
version.compiz: compiz 1:0.9.12+14.10.20140918-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.56-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.3.0-0ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.3.0-0ubuntu3
version.xserver-xorg-core: xserver-xorg-core 2:1.16.0-1ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.0-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.4.0-2ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.914-1~exp1ubuntu4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.11-1ubuntu2
xserver.bootTime: Thu Nov  6 11:11:17 2014
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputLogitech USB Receiver MOUSE, id 8
 inputLogitech USB Receiver KEYBOARD, id 9
 inputAT Translated Set 2 keyboard KEYBOARD, id 10
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.16.0-1ubuntu1
xserver.video_driver: radeon

** Affects: fglrx-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug ubuntu utopic

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

Title:
  Cannot install nonfree drivers due to dependency problem

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1390032/+subscriptions

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


[Bug 1327062] [NEW] usbview doesn't start with sudo privileges and therefore doesnt work

2014-06-06 Thread Redmar
Public bug reported:

The problem:
Starting usbview from the Dash or terminal gives the following error:
Can not open the file /sys/kernel/debug/usb/devices

 Verify that you have USB compiled into your kernel, 
 have the USB core modules loaded, and have the 
 usbdevfs filesystem mounted. 

Because of this, the program is not usable at all. However, the problem is not 
related to anything described in that error, since usbview simply needs root 
privileges to run.

The solution:
Run usbview with gksu.

The fix:
Add gksu as a dependency of usbview and modify the usbview.desktop command to 
add gksu.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: usbview 2.0-2 [modified: usr/share/applications/usbview.desktop]
ProcVersionSignature: Ubuntu 3.13.0-27.50-generic 3.13.11
Uname: Linux 3.13.0-27-generic i686
NonfreeKernelModules: fglrx
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: i386
CurrentDesktop: Unity
Date: Fri Jun  6 08:36:41 2014
InstallationDate: Installed on 2013-08-04 (305 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
SourcePackage: usbview
UpgradeStatus: Upgraded to trusty on 2013-12-21 (166 days ago)

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


** Tags: apport-bug i386 trusty

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

Title:
  usbview doesn't start with sudo privileges and  therefore doesnt work

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

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


[Bug 1326320] [NEW] gksu needed but not installed as dependency

2014-06-04 Thread Redmar
Public bug reported:

The catalyst control center (admin) only starts properly when gksu is
installed, but gksu is not a dependency of the fglrx-amdcccle package.

How to reproduce
1) remove gksu: sudo apt-get remove gkso
2) install  fglrx-amdcccle: sudo apt-get install  fglrx-amdcccle
3) Try starting the AMD catalyst control center from the Dash. You get a small 
terminal-like screen that ask for the password. If you input the password 
nothing else happens
4) install gksu: sudo apt-get install gksu
5) Open AMD catalyst again from the dash, now it opens properly.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: fglrx-amdcccle 2:13.350.1-0ubuntu2
ProcVersionSignature: Ubuntu 3.13.0-27.50-generic 3.13.11
Uname: Linux 3.13.0-27-generic i686
.tmp.unity.support.test.0:
 
.tmp.unity.support.test.1:
 
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Wed Jun  4 11:36:17 2014
DistUpgraded: 2013-12-22 00:13:31,626 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Redwood XT [Radeon HD 5670/5690/5730] 
[1002:68d8] (prog-if 00 [VGA controller])
   Subsystem: Gigabyte Technology Co., Ltd Device [1458:21ff]
InstallationDate: Installed on 2013-08-04 (304 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
MachineType: Acer Aspire M5500
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-27-generic 
root=UUID=10982603-61db-48f7-b8df-bfad739001ca ro quiet splash vt.handoff=7
SourcePackage: fglrx-installer
UpgradeStatus: Upgraded to trusty on 2013-12-21 (164 days ago)
dmi.bios.date: 06/18/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: R01-B0
dmi.board.name: FG965M
dmi.board.vendor: Acer
dmi.chassis.type: 3
dmi.chassis.vendor: Acer
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrR01-B0:bd06/18/2007:svnAcer:pnAspireM5500:pvrR01-B0:rvnAcer:rnFG965M:rvr:cvnAcer:ct3:cvr:
dmi.product.name: Aspire M5500
dmi.product.version: R01-B0
dmi.sys.vendor: Acer
version.compiz: compiz 1:0.9.11+14.04.20140423-0ubuntu1
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-4ubuntu5
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-4ubuntu5
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Wed Jun  4 09:06:15 2014
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputLogitech USB Receiver MOUSE, id 8
 inputLogitech USB Receiver KEYBOARD, id 9
 inputAT Translated Set 2 keyboard KEYBOARD, id 10
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.15.1-0ubuntu2
xserver.video_driver: radeon

** Affects: fglrx-installer (Ubuntu)
 Importance: Undecided
 Status: Confirmed


** Tags: apport-bug compiz-0.9 i386 trusty ubuntu

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

Title:
  gksu needed but not installed as dependency

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/fglrx-installer/+bug/1326320/+subscriptions

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


[Bug 1311135] [NEW] touchpad off after boot

2014-04-22 Thread Redmar
Public bug reported:

On a fresh install of 14.04, the tochpad won't come on after boot, and I
have to manually switch it on using Fn + F7. Using synclient
TouchpadOff=0 has no effect and the bios does not contain any settings
for the touchpad. When I boot to windows 7 I can use the touchapd
immediately.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xserver-xorg-input-synaptics 1.7.4-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Apr 22 15:57:22 2014
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
InstallationDate: Installed on 2014-04-18 (4 days ago)
InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release amd64 (20140417)
MachineType: Acer AO725
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-24-generic 
root=UUID=56bb9509-248d-40df-80ea-52eed5c19435 ro quiet splash vt.handoff=7
SourcePackage: xserver-xorg-input-synaptics
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 04/11/2012
dmi.bios.vendor: Insyde Corp.
dmi.bios.version: V1.00
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: ZA10_BZ
dmi.board.vendor: Acer
dmi.board.version: Base Board Version
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsydeCorp.:bvrV1.00:bd04/11/2012:svnAcer:pnAO725:pvrV1.00:rvnAcer:rnZA10_BZ:rvrBaseBoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
dmi.product.name: AO725
dmi.product.version: V1.00
dmi.sys.vendor: Acer
version.compiz: compiz 1:0.9.11+14.04.20140409-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-4ubuntu5
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-4ubuntu5
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Tue Apr 22 16:55:59 2014
xserver.configfile: default
xserver.errors:
 open /dev/dri/card0: No such file or directory
 AIGLX error: failed to open /usr/X11R6/lib64/modules/dri/fglrx_dri.so, 
error[/usr/X11R6/lib64/modules/dri/fglrx_dri.so: cannot open shared object 
file: No such file or directory]
 AIGLX error: failed to open /usr/lib64/dri/fglrx_dri.so, 
error[/usr/lib64/dri/fglrx_dri.so: cannot open shared object file: No such file 
or directory]
 AIGLX error: failed to open /usr/X11R6/lib/modules/dri/fglrx_dri.so, 
error[/usr/X11R6/lib/modules/dri/fglrx_dri.so: cannot open shared object file: 
No such file or directory]
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.15.1-0ubuntu2
xserver.video_driver: fglrx

** Affects: xserver-xorg-input-synaptics (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty ubuntu

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

Title:
  touchpad off after boot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-synaptics/+bug/1311135/+subscriptions

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


[Bug 1310503] [NEW] gnome-control-center doesnt have all translations

2014-04-21 Thread Redmar
Public bug reported:

gnome-control-center does not appear fully translated, even though it is
fully translated in launchpad. For example, the following string from
the Appearance tab has been translated in launchpad since 2013, but
still appears untranslated in an up to date install of trusty.

https://translations.launchpad.net/ubuntu/trusty/+source/gnome-control-
center-unity/+pots/gnome-control-center-
unity/nl/+translate?batch=10show=allsearch=Add+show+desktop

One thing that might be related is the switch from gnome-control-center to 
gnome-control-center-unity. This bug is filed against gnome-control-center, 
since gnome-control-center-unity is not installed on my system. However, 
gnome-control-center-unity is what is listed as the template to translate in 
launchpad.
gnome-control-center also exists in launchpad, but it keeps timing out so I 
can't check the status of that string, see: 
https://translations.launchpad.net/ubuntu/trusty/+source/gnome-control-center/+pots/gnome-control-center-2.0/nl/+translate

I encountered this problem for Dutch, I'm not sure if it exists for
other languages

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: gnome-control-center 1:3.6.3-0ubuntu56
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic i686
ApportVersion: 2.14.1-0ubuntu3
Architecture: i386
CurrentDesktop: Unity
Date: Mon Apr 21 10:01:29 2014
InstallationDate: Installed on 2013-08-04 (259 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
SourcePackage: gnome-control-center
UpgradeStatus: Upgraded to trusty on 2013-12-21 (120 days ago)
usr_lib_gnome-control-center:
 activity-log-manager 0.9.7-0ubuntu14
 deja-dup 30.0-0ubuntu4

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


** Tags: apport-bug i386 trusty

** Description changed:

  gnome-control-center does not appear fully translated, even though it is
  fully translated in launchpad. For example, the following string from
  the Appearance tab has been translated in launchpad since 2013, but
  still appears untranslated in an up to date install of trusty.
  
  https://translations.launchpad.net/ubuntu/trusty/+source/gnome-control-
  center-unity/+pots/gnome-control-center-
  unity/nl/+translate?batch=10show=allsearch=Add+show+desktop
  
  One thing that might be related is the switch from gnome-control-center to 
gnome-control-center-unity. This bug is filed against gnome-control-center, 
since gnome-control-center-unity is not installed on my system. However, 
gnome-control-center-unity is what is listed as the template to translate in 
launchpad.
  gnome-control-center also exists in launchpad, but it keeps timing out so I 
can't check the status of that string, see: 
https://translations.launchpad.net/ubuntu/trusty/+source/gnome-control-center/+pots/gnome-control-center-2.0/nl/+translate
+ 
+ I encountered this problem for Dutch, I'm not sure if it exists for
+ other languages
  
  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: gnome-control-center 1:3.6.3-0ubuntu56
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic i686
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: i386
  CurrentDesktop: Unity
  Date: Mon Apr 21 10:01:29 2014
  InstallationDate: Installed on 2013-08-04 (259 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
  SourcePackage: gnome-control-center
  UpgradeStatus: Upgraded to trusty on 2013-12-21 (120 days ago)
  usr_lib_gnome-control-center:
-  activity-log-manager 0.9.7-0ubuntu14
-  deja-dup 30.0-0ubuntu4
+  activity-log-manager 0.9.7-0ubuntu14
+  deja-dup 30.0-0ubuntu4

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

Title:
  gnome-control-center doesnt have all translations

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

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

[Bug 1305818] Re: mouse button to switch workspace stopped working

2014-04-14 Thread Redmar
*** This bug is a duplicate of bug 1304877 ***
https://bugs.launchpad.net/bugs/1304877

** This bug has been marked a duplicate of bug 1304877
   Functions assigned to extra mouse buttons in compiz do not work anymore.

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

Title:
  mouse button to switch workspace stopped working

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

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


[Bug 1305810] [NEW] images build with ubuntu-defaults-image cannot 'check cd for defects'

2014-04-10 Thread Redmar
Public bug reported:

Maybe its related to the fact that the checksum generated are sha, while
the original ubuntu images use md5 checksums?

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-defaults-builder 0.49
ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
Uname: Linux 3.13.0-23-generic i686
ApportVersion: 2.14.1-0ubuntu1
Architecture: i386
CurrentDesktop: Unity
Date: Thu Apr 10 14:09:35 2014
InstallationDate: Installed on 2013-08-04 (249 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
PackageArchitecture: all
SourcePackage: ubuntu-defaults-builder
UpgradeStatus: Upgraded to trusty on 2013-12-21 (109 days ago)

** Affects: ubuntu-defaults-builder (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 trusty

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

Title:
  images build with ubuntu-defaults-image cannot 'check cd for defects'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1305810/+subscriptions

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


[Bug 1305818] [NEW] mouse button to switch workspace stopped working

2014-04-10 Thread Redmar
Public bug reported:

I have a mouse with many buttons, so I use a bunch of them to switch
between different viewports. However, they suddenly stopped working a
few days ago. It looks like the mouse events are no longer captured by
compiz but are just sent to the current window (tested with xev | grep
button)

This problem also occurs for a brand new user, so it's not a problem
with my compiz profile.

Please let me know if there is anything I can do to help resolve this,
its really anoying!

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: compiz 1:0.9.11+14.04.20140408-0ubuntu1
ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
Uname: Linux 3.13.0-23-generic i686
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu1
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Thu Apr 10 14:12:18 2014
DistUpgraded: 2013-12-22 00:13:31,626 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
DkmsStatus:
 ndiswrapper, 1.59, 3.13.0-20-generic, i686: installed
 ndiswrapper, 1.59, 3.13.0-23-generic, i686: installed
 virtualbox, 4.3.10, 3.13.0-20-generic, i686: installed
 virtualbox, 4.3.10, 3.13.0-23-generic, i686: installed
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] Redwood XT [Radeon HD 5670/5690/5730] 
[1002:68d8] (prog-if 00 [VGA controller])
   Subsystem: Gigabyte Technology Co., Ltd Device [1458:21ff]
InstallationDate: Installed on 2013-08-04 (249 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
MachineType: Acer Aspire M5500
PackageArchitecture: all
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.13.0-23-generic 
root=UUID=10982603-61db-48f7-b8df-bfad739001ca ro quiet splash vt.handoff=7
SourcePackage: compiz
UpgradeStatus: Upgraded to trusty on 2013-12-21 (109 days ago)
dmi.bios.date: 06/18/2007
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: R01-B0
dmi.board.name: FG965M
dmi.board.vendor: Acer
dmi.chassis.type: 3
dmi.chassis.vendor: Acer
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvrR01-B0:bd06/18/2007:svnAcer:pnAspireM5500:pvrR01-B0:rvnAcer:rnFG965M:rvr:cvnAcer:ct3:cvr:
dmi.product.name: Aspire M5500
dmi.product.version: R01-B0
dmi.sys.vendor: Acer
version.compiz: compiz 1:0.9.11+14.04.20140408-0ubuntu1
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-4ubuntu2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-4ubuntu2
version.xserver-xorg-core: xserver-xorg-core 2:1.15.0-1ubuntu7
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Thu Apr 10 11:52:10 2014
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputLogitech USB Receiver MOUSE, id 8
 inputLogitech USB Receiver KEYBOARD, id 9
 inputAT Translated Set 2 keyboard KEYBOARD, id 10
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.15.0-1ubuntu7
xserver.video_driver: radeon

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


** Tags: apport-bug compiz-0.9 i386 trusty ubuntu

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

Title:
  mouse button to switch workspace stopped working

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

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


[Bug 1304021] [NEW] iso's created with ubuntu-defaults-builder do not support UEFI

2014-04-07 Thread Redmar
Public bug reported:

Iso images created with ubuntu-defaults-builder do not boot on UEFI hardware. 
I've unpacked the iso and it looks like the whole EFI folder is simply missing. 
Please let me know if you need any more information

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-defaults-builder 0.49
ProcVersionSignature: Ubuntu 3.13.0-23.45-generic 3.13.8
Uname: Linux 3.13.0-23-generic i686
ApportVersion: 2.14.1-0ubuntu1
Architecture: i386
CurrentDesktop: Unity
Date: Mon Apr  7 22:34:13 2014
InstallationDate: Installed on 2013-08-04 (246 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
PackageArchitecture: all
SourcePackage: ubuntu-defaults-builder
UpgradeStatus: Upgraded to trusty on 2013-12-21 (106 days ago)

** Affects: ubuntu-defaults-builder (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 trusty

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

Title:
  iso's created with ubuntu-defaults-builder do not support UEFI

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1304021/+subscriptions

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


[Bug 1280332] Re: [needs-packaging] request for packaging: ubuntu-defaults-nl

2014-02-23 Thread Redmar
** Changed in: ubuntu
 Assignee: (unassigned) = Redmar (redmar)

** Changed in: ubuntu
   Status: New = In Progress

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

Title:
  [needs-packaging] request for packaging: ubuntu-defaults-nl

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

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


[Bug 1280332] Re: [needs-packaging] request for packaging: ubuntu-defaults-nl

2014-02-23 Thread Redmar
I've adressed alle issues raised in #2, except for the Canonical
copyright notice since I'm not sure what to do about it. The updated
package is in the repo listed in the original bug description.

The canonical copyright notice is also present in the package that is
currently in the repository, so I don't think that should be a reason to
hold the package.

** Changed in: ubuntu
   Status: In Progress = Fix Committed

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

Title:
  [needs-packaging] request for packaging: ubuntu-defaults-nl

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

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


[Bug 1280332] Re: [needs-packaging] request for packaging: ubuntu-defaults-nl

2014-02-20 Thread Redmar
Hi, thanks for your response.

- Can you elaborate on this? I've tried searching for 'debian COPYING
file', but I can't find anything that seems relevant.

- This package is created using ubuntu-defaults-image, which is created
by martin pitt, and that message is automatically added to the package.
If I'd have to guess I'd say because the package is used to create
custom localised ubuntu images, and the name 'ubuntu' is copyright
canonical?

- This was added by default, I've removed it now, thanks

- This was done for compatibility with an earlier 12.04 ppa release of
the package, I'll remove the ubuntu-defaults-nl package from the
receipe.

- I'm not sure how to do this, should I create the file
debian/source/format with 3.0 (native) as only content? With or
without quotes?

- I've updated standards-version to 3.9.5 in debian/control

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

Title:
  [needs-packaging] request for packaging: ubuntu-defaults-nl

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

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


[Bug 1280332] [NEW] request for packaging: ubuntu-defaults-nl

2014-02-14 Thread Redmar
Public bug reported:

Updated some of the links to radiostations that have changed since the
last release of this package.  Also added the ubuntu-documentation to
the Launcher for ease of access. Further information from the original
packaging request:

Description: A package with customized default settings for the creation
of Dutch iso images.

URL: https://launchpad.net/~ubuntu-defaults-nl-team
License: GPL 3+
Notes: There are already similar packages for italian and chinese present in 
ubuntu

ppa: https://launchpad.net/~ubuntu-defaults-nl-team/+archive/stable

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: needs-packaging

** Summary changed:

- request for packageing: ubuntu-defaults-nl
+ request for packaging: ubuntu-defaults-nl

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

Title:
  request for packaging: ubuntu-defaults-nl

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

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


[Bug 1265461] [NEW] package libtcl8.6 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/i386-linux-gnu/libtcl8.6.so.0', which is also in package tcl8.6-lib:i386 8.6.0-1ubuntu1

2014-01-02 Thread Redmar
Public bug reported:

sudo aptitude safe-upgrade failed, automatic repport

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libtcl8.6 (not installed)
ProcVersionSignature: Ubuntu 3.12.0-7.15-generic 3.12.4
Uname: Linux 3.12.0-7-generic i686
ApportVersion: 2.12.7-0ubuntu3
Architecture: i386
Date: Thu Jan  2 10:18:50 2014
DpkgTerminalLog:
 Voorbereiden om tcl8.6 8.6.0-1ubuntu1 te vervangen (door 
.../tcl8.6_8.6.1-4_i386.deb) ...
 Uitpakken van vervangende tcl8.6 ...
 Selecting previously unselected package libtcl8.6:i386.
 Uitpakken van libtcl8.6:i386 (uit .../libtcl8.6_8.6.1-4_i386.deb) ...
DuplicateSignature: package:libtcl8.6:(not installed):trying to overwrite 
'/usr/lib/i386-linux-gnu/libtcl8.6.so.0', which is also in package 
tcl8.6-lib:i386 8.6.0-1ubuntu1
ErrorMessage: trying to overwrite '/usr/lib/i386-linux-gnu/libtcl8.6.so.0', 
which is also in package tcl8.6-lib:i386 8.6.0-1ubuntu1
InstallationDate: Installed on 2013-08-04 (151 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
SourcePackage: tcl8.6
Title: package libtcl8.6 (not installed) failed to install/upgrade: trying to 
overwrite '/usr/lib/i386-linux-gnu/libtcl8.6.so.0', which is also in package 
tcl8.6-lib:i386 8.6.0-1ubuntu1
UpgradeStatus: Upgraded to trusty on 2013-12-21 (11 days ago)

** Affects: tcl8.6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 trusty

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

Title:
  package libtcl8.6 (not installed) failed to install/upgrade: trying to
  overwrite '/usr/lib/i386-linux-gnu/libtcl8.6.so.0', which is also in
  package tcl8.6-lib:i386 8.6.0-1ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tcl8.6/+bug/1265461/+subscriptions

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


[Bug 1265462] [NEW] package libtk8.6 (not installed) failed to install/upgrade: trying to overwrite '/usr/lib/i386-linux-gnu/libtk8.6.so.0', which is also in package tk8.6-lib:i386 8.6.0-1ubuntu1

2014-01-02 Thread Redmar
Public bug reported:

sudo aptitude safe-upgrade failed, automatic repport

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: libtk8.6 (not installed)
ProcVersionSignature: Ubuntu 3.12.0-7.15-generic 3.12.4
Uname: Linux 3.12.0-7-generic i686
ApportVersion: 2.12.7-0ubuntu3
Architecture: i386
Date: Thu Jan  2 10:18:53 2014
DuplicateSignature: package:libtk8.6:(not installed):trying to overwrite 
'/usr/lib/i386-linux-gnu/libtk8.6.so.0', which is also in package 
tk8.6-lib:i386 8.6.0-1ubuntu1
ErrorMessage: trying to overwrite '/usr/lib/i386-linux-gnu/libtk8.6.so.0', 
which is also in package tk8.6-lib:i386 8.6.0-1ubuntu1
InstallationDate: Installed on 2013-08-04 (151 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
SourcePackage: tk8.6
Title: package libtk8.6 (not installed) failed to install/upgrade: trying to 
overwrite '/usr/lib/i386-linux-gnu/libtk8.6.so.0', which is also in package 
tk8.6-lib:i386 8.6.0-1ubuntu1
UpgradeStatus: Upgraded to trusty on 2013-12-21 (11 days ago)

** Affects: tk8.6 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 trusty

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

Title:
  package libtk8.6 (not installed) failed to install/upgrade: trying to
  overwrite '/usr/lib/i386-linux-gnu/libtk8.6.so.0', which is also in
  package tk8.6-lib:i386 8.6.0-1ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tk8.6/+bug/1265462/+subscriptions

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


[Bug 1265297] [NEW] Please release package for trusty

2014-01-01 Thread Redmar
Public bug reported:

syslinux-themes-ubuntu-trusty is not available at the moment, would it
be possible to make it available from the ubuntu trusty repository?

** Affects: syslinux-themes-ubuntu (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/1265297

Title:
  Please release package for trusty

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/syslinux-themes-ubuntu/+bug/1265297/+subscriptions

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


[Bug 1264656] Re: indicator-keyboard icon doesn't fit with theme

2013-12-30 Thread Redmar
The problem is not that changing themes doesn't update the icon, the
problem is that the icons do not fit with the themes. Therefore, this is
but is not a duplicate of bug 1237749

** This bug is no longer a duplicate of bug 1237749
   Icon does not change with theme switch

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

Title:
  indicator-keyboard icon doesn't fit with theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1264656/+subscriptions

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


[Bug 1264656] Re: indicator-keyboard icon doesn't fit with theme

2013-12-28 Thread Redmar
** Attachment added: Screenshot of indicator in radiance theme
   
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1264656/+attachment/3936816/+files/Radiance.png

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

Title:
  indicator-keyboard icon doesn't fit with theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1264656/+subscriptions

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


[Bug 1264656] [NEW] indicator-keyboard icon doesn't fit with theme

2013-12-28 Thread Redmar
Public bug reported:

The indicator icon of indicator-keyboard doesn't fit with the default themes 
shipped with ubuntu.
With the defaul theme (Ambiance), it shows a white square with black text, 
while all other icons have a black background with white (see Ambiance.png)
In the case of Radiance, the other theme shipped by default, the icon uses 
white text on a white background, making it impossible to read the text at all, 
see Radiance.png.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: indicator-keyboard 0.0.0+14.04.20131125-0ubuntu1
ProcVersionSignature: Ubuntu 3.12.0-7.15-generic 3.12.4
Uname: Linux 3.12.0-7-generic i686
ApportVersion: 2.12.7-0ubuntu3
Architecture: i386
CurrentDesktop: Unity
Date: Sat Dec 28 11:34:14 2013
InstallationDate: Installed on 2013-08-04 (146 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
SourcePackage: indicator-keyboard
UpgradeStatus: Upgraded to trusty on 2013-12-21 (6 days ago)

** Affects: indicator-keyboard (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 trusty

** Attachment added: Ambiance.png
   
https://bugs.launchpad.net/bugs/1264656/+attachment/3936813/+files/Ambiance.png

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

Title:
  indicator-keyboard icon doesn't fit with theme

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-keyboard/+bug/1264656/+subscriptions

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


[Bug 1263457] [NEW] ubuntu-doc translations outdated

2013-12-22 Thread Redmar
Public bug reported:

The ubuntu documentation for trusty is currently 100% translated to
Dutch on launchpad, but still appears partly untranslated on an actual
install.

For example, the following string has been translated since 2013-10-31, but 
still shows in english in the help-viewer.
https://translations.launchpad.net/ubuntu/trusty/+source/ubuntu-docs/+pots/ubuntu-help/nl/+translate?batch=10show=allsearch=is+the+sixth

Is there any way to do more frequent updates of the translations for the
docs so translators can test their work?

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: ubuntu-docs 13.10.2
ProcVersionSignature: Ubuntu 3.12.0-7.15-generic 3.12.4
Uname: Linux 3.12.0-7-generic i686
ApportVersion: 2.12.7-0ubuntu3
Architecture: i386
CurrentDesktop: Unity
Date: Sun Dec 22 10:19:14 2013
InstallationDate: Installed on 2013-08-04 (140 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
PackageArchitecture: all
SourcePackage: ubuntu-docs
UpgradeStatus: Upgraded to trusty on 2013-12-21 (0 days ago)

** Affects: ubuntu-docs (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 trusty

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

Title:
  ubuntu-doc translations outdated

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

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


[Bug 1235980] [NEW] slow fade effects make unity completely unusable

2013-10-06 Thread Redmar
Public bug reported:

A fresh install of ubuntu 13.10 is completely unusable on my Acer Aspire
One netbook. All fade effects are extremely slow, which makes the whole
desktop slow to a crawl. Because fade effects are present in both the
dash and the HUD, ubuntu is not usable. It takes over 2 full minutes
with the cpu at 100% for compiz to open the dash, opening the HUD takes
slightly shorter, around 30 seconds.

WORKAROUND:
Use unity-tweak-tool to disable blur alltogether via Search - General - 
Background blur - Off


ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: unity 7.1.1+13.10.20131004-0ubuntu1
ProcVersionSignature: Ubuntu 3.11.0-11.17-generic 3.11.3
Uname: Linux 3.11.0-11-generic i686
.tmp.unity.support.test.0:

ApportVersion: 2.12.5-0ubuntu1
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Sun Oct  6 16:28:07 2013
DistUpgraded: Fresh install
DistroCodename: saucy
DistroVariant: ubuntu
GraphicsCard:
 Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics 
Controller [8086:a011] (rev 02) (prog-if 00 [VGA controller])
   Subsystem: Acer Incorporated [ALI] Device [1025:0590]
   Subsystem: Acer Incorporated [ALI] Device [1025:0590]
InstallationDate: Installed on 2013-10-06 (0 days ago)
InstallationMedia: Ubuntu 13.10 Saucy Salamander - Beta i386 (20131004)
Lsusb:
 Bus 001 Device 002: ID 0402:7675 ALi Corp.
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Acer AOD257
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-11-generic 
root=UUID=b9824081-a4a0-4fed-b9e8-43c47c774da8 ro quiet splash vt.handoff=7
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/21/2011
dmi.bios.vendor: INSYDE
dmi.bios.version: V1.15
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: JE06_PT
dmi.board.vendor: Acer
dmi.board.version: Base Board Version
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnINSYDE:bvrV1.15:bd10/21/2011:svnAcer:pnAOD257:pvrV1.15:rvnAcer:rnJE06_PT:rvrBaseBoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
dmi.product.name: AOD257
dmi.product.version: V1.15
dmi.sys.vendor: Acer
version.compiz: compiz 1:0.9.10+13.10.20131004-0ubuntu1
version.libdrm2: libdrm2 2.4.46-1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.2-1ubuntu3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.2-1ubuntu3
version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu1
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu9
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.903-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.9-2ubuntu1
xserver.bootTime: Sun Oct  6 18:26:13 2013
xserver.configfile: default
xserver.errors:

xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id   24786
 vendor AUO
xserver.version: 2:1.14.3-3ubuntu1

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


** Tags: apport-bug compiz-0.9 i386 saucy ubuntu

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

Title:
  slow fade effects make unity completely unusable

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

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

[Bug 1235980] Re: slow fade effects make unity completely unusable

2013-10-06 Thread Redmar
** Description changed:

  A fresh install of ubuntu 13.10 is completely unusable on my Acer Aspire
  One netbook. All fade effects are extremely slow, which makes the whole
  desktop slow to a crawl. Because fade effects are present in both the
  dash and the HUD, ubuntu is not usable. It takes over 2 full minutes
  with the cpu at 100% for compiz to open the dash, opening the HUD takes
  slightly shorter, around 30 seconds.
  
+ WORKAROUND:
+ Use unity-tweak-tool to disable blur alltogether via Search - General - 
Background blur - Off
+ 
+ 
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: unity 7.1.1+13.10.20131004-0ubuntu1
  ProcVersionSignature: Ubuntu 3.11.0-11.17-generic 3.11.3
  Uname: Linux 3.11.0-11-generic i686
  .tmp.unity.support.test.0:
-  
+ 
  ApportVersion: 2.12.5-0ubuntu1
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Sun Oct  6 16:28:07 2013
  DistUpgraded: Fresh install
  DistroCodename: saucy
  DistroVariant: ubuntu
  GraphicsCard:
-  Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics 
Controller [8086:a011] (rev 02) (prog-if 00 [VGA controller])
-Subsystem: Acer Incorporated [ALI] Device [1025:0590]
-Subsystem: Acer Incorporated [ALI] Device [1025:0590]
+  Intel Corporation Atom Processor D4xx/D5xx/N4xx/N5xx Integrated Graphics 
Controller [8086:a011] (rev 02) (prog-if 00 [VGA controller])
+    Subsystem: Acer Incorporated [ALI] Device [1025:0590]
+    Subsystem: Acer Incorporated [ALI] Device [1025:0590]
  InstallationDate: Installed on 2013-10-06 (0 days ago)
  InstallationMedia: Ubuntu 13.10 Saucy Salamander - Beta i386 (20131004)
  Lsusb:
-  Bus 001 Device 002: ID 0402:7675 ALi Corp. 
-  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
-  Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
-  Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
-  Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
+  Bus 001 Device 002: ID 0402:7675 ALi Corp.
+  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
+  Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
+  Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
+  Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: Acer AOD257
  MarkForUpload: True
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-11-generic 
root=UUID=b9824081-a4a0-4fed-b9e8-43c47c774da8 ro quiet splash vt.handoff=7
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/21/2011
  dmi.bios.vendor: INSYDE
  dmi.bios.version: V1.15
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: JE06_PT
  dmi.board.vendor: Acer
  dmi.board.version: Base Board Version
  dmi.chassis.type: 10
  dmi.chassis.vendor: Chassis Manufacturer
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnINSYDE:bvrV1.15:bd10/21/2011:svnAcer:pnAOD257:pvrV1.15:rvnAcer:rnJE06_PT:rvrBaseBoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
  dmi.product.name: AOD257
  dmi.product.version: V1.15
  dmi.sys.vendor: Acer
  version.compiz: compiz 1:0.9.10+13.10.20131004-0ubuntu1
  version.libdrm2: libdrm2 2.4.46-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 9.2-1ubuntu3
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 9.2-1ubuntu3
  version.xserver-xorg-core: xserver-xorg-core 2:1.14.3-3ubuntu1
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu3.1
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.2.0-0ubuntu9
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.903-0ubuntu1
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:1.0.9-2ubuntu1
  xserver.bootTime: Sun Oct  6 18:26:13 2013
  xserver.configfile: default
  xserver.errors:
-  
+ 
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs:
-  product id   24786 
-  vendor AUO
+  product id   24786
+  vendor AUO
  xserver.version: 2:1.14.3-3ubuntu1

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

Title:
  slow fade effects make unity completely unusable

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

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

[Bug 1218376] [NEW] [Acer AOD257] suspend/resume failure

2013-08-29 Thread Redmar
Public bug reported:

Forced to do a hard reboot (sysRq keys did not respons) after suspending
the laptop by closing the lid.

ProblemType: KernelOops
DistroRelease: Ubuntu 13.10
Package: linux-image-3.11.0-4-generic 3.11.0-4.9
ProcVersionSignature: Ubuntu 3.11.0-4.9-generic 3.11.0-rc7
Uname: Linux 3.11.0-4-generic i686
Annotation: This occured during a previous suspend and prevented it from 
resuming properly.
ApportVersion: 2.12.1-0ubuntu2
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  trijntje   1558 F pulseaudio
Date: Thu Aug 29 14:15:30 2013
ExecutablePath: /usr/share/apport/apportcheckresume
Failure: suspend/resume
InstallationDate: Installed on 2012-11-01 (301 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
InterpreterPath: /usr/bin/python3.3
Lsusb:
 Bus 001 Device 002: ID 0402:7675 ALi Corp. 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Acer AOD257
MarkForUpload: True
ProcCmdline: /usr/bin/python3 /usr/share/apport/apportcheckresume
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.11.0-4-generic 
root=UUID=f2496972-ed3a-4a43-a55c-4eaa002cf2be ro verbose
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: Daemon not 
responding.
RelatedPackageVersions:
 linux-restricted-modules-3.11.0-4-generic N/A
 linux-backports-modules-3.11.0-4-generic  N/A
 linux-firmware1.113
SourcePackage: linux
Title: [Acer AOD257] suspend/resume failure
UpgradeStatus: Upgraded to saucy on 2013-06-15 (74 days ago)
UserGroups:
 
dmi.bios.date: 10/21/2011
dmi.bios.vendor: INSYDE
dmi.bios.version: V1.15
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: JE06_PT
dmi.board.vendor: Acer
dmi.board.version: Base Board Version
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnINSYDE:bvrV1.15:bd10/21/2011:svnAcer:pnAOD257:pvrV1.15:rvnAcer:rnJE06_PT:rvrBaseBoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
dmi.product.name: AOD257
dmi.product.version: V1.15
dmi.sys.vendor: Acer

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


** Tags: apport-kerneloops i386 resume saucy suspend

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

Title:
  [Acer AOD257] suspend/resume failure

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

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


[Bug 1216678] [NEW] liferea segfaults when updating feeds

2013-08-25 Thread Redmar
Public bug reported:

Liferea consistently crashes when it's updating feeds. I've attached the
output for starting from the terminal below, and hopefully apport added
the memory dump of the crash to this report.


$ liferea

(liferea:3259): GLib-CRITICAL **: g_variant_new_string: assertion
`string != NULL' failed

(liferea:3259): GLib-CRITICAL **: g_variant_new_string: assertion `string != 
NULL' failed
Segmentatiefout (geheugendump gemaakt)

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: liferea 1.8.10-0ubuntu2
ProcVersionSignature: Ubuntu 3.8.0-29.42-generic 3.8.13.5
Uname: Linux 3.8.0-29-generic i686
ApportVersion: 2.9.2-0ubuntu8.3
Architecture: i386
Date: Sun Aug 25 23:04:28 2013
InstallationDate: Installed on 2013-08-04 (21 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: liferea
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 raring

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

Title:
  liferea segfaults when updating feeds

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

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


[Bug 1216678] Re: liferea segfaults when updating feeds

2013-08-25 Thread Redmar
** Description changed:

- Liferea consistently crashes when it's updating feeds. I've attached the
- output for starting from the terminal below, and hopefully apport added
- the memory dump of the crash to this report.
- 
+ Liferea consistently crashes when it's updating this feed
+ [http://www.geenstijl.nl/atom.xml] . I've attached the output for
+ starting from the terminal below, and hopefully apport added the memory
+ dump of the crash to this report.
  
  $ liferea
  
  (liferea:3259): GLib-CRITICAL **: g_variant_new_string: assertion
  `string != NULL' failed
  
  (liferea:3259): GLib-CRITICAL **: g_variant_new_string: assertion `string != 
NULL' failed
  Segmentatiefout (geheugendump gemaakt)
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: liferea 1.8.10-0ubuntu2
  ProcVersionSignature: Ubuntu 3.8.0-29.42-generic 3.8.13.5
  Uname: Linux 3.8.0-29-generic i686
  ApportVersion: 2.9.2-0ubuntu8.3
  Architecture: i386
  Date: Sun Aug 25 23:04:28 2013
  InstallationDate: Installed on 2013-08-04 (21 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
  MarkForUpload: True
  ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  XDG_RUNTIME_DIR=set
-  LANG=nl_NL.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm
+  PATH=(custom, no user)
+  XDG_RUNTIME_DIR=set
+  LANG=nl_NL.UTF-8
+  SHELL=/bin/bash
  SourcePackage: liferea
  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/1216678

Title:
  liferea segfaults when updating feeds

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

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

[Bug 1216253] [NEW] sorting on rating doesnt work

2013-08-24 Thread Redmar
Public bug reported:

When searching for an app in the software center, sorting on rating
doesn't work. I keep getting the 'loading' animation, no matter how long
I wait. All the other sort options do work

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: software-center 13.08-0ubuntu1
Uname: Linux 3.11.0-031100rc2-generic i686
ApportVersion: 2.12.1-0ubuntu2
Architecture: i386
Date: Sat Aug 24 10:53:14 2013
InstallationDate: Installed on 2012-11-01 (295 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
MarkForUpload: True
PackageArchitecture: all
SourcePackage: software-center
UpgradeStatus: Upgraded to saucy on 2013-06-15 (69 days ago)

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


** Tags: apport-bug 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/1216253

Title:
  sorting on rating doesnt work

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

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


[Bug 1202998] Re: Only when using kernel parameter init=/sbin/e4rat-preload kernel panics when updating libc6

2013-08-18 Thread Redmar
Is this still a valid bug report? e4rat is not available from the ubuntu
repository.

** Summary changed:

- Only when using kernel parameter init=/sbin/e4rat-preload kernel panics when 
updating
+ Only when using kernel parameter init=/sbin/e4rat-preload kernel panics when 
updating libc6

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

Title:
  Only when using kernel parameter init=/sbin/e4rat-preload kernel
  panics when updating libc6

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

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


[Bug 1212995] [NEW] scroll to ajust sound does not work

2013-08-16 Thread Redmar
Public bug reported:

Using the mousewheel/scroll over the sound icon does not ajust the
volume (I'm using two-finger scrolling on a touchpad). If I click the
sound icon, I can scroll on the sound bar there, but it works the wrong
way arond. If I scroll up, it lowers the volume, and if I scroll down it
increases the volume.

If I go via system-settings - sound, scrolling also ajusts the sound
the wrong way.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: indicator-sound 12.10.2+13.10.20130812.1-0ubuntu1
Uname: Linux 3.11.0-031100rc2-generic i686
ApportVersion: 2.12-0ubuntu3
Architecture: i386
Date: Fri Aug 16 11:01:13 2013
InstallationDate: Installed on 2012-11-01 (287 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
MarkForUpload: True
SourcePackage: indicator-sound
UpgradeStatus: Upgraded to saucy on 2013-06-15 (61 days ago)

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


** Tags: apport-bug 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/1212995

Title:
  scroll to ajust sound does not work

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

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


[Bug 1212995] Re: scroll to ajust sound does not work

2013-08-16 Thread Redmar
** Description changed:

  Using the mousewheel/scroll over the sound icon does not ajust the
  volume (I'm using two-finger scrolling on a touchpad). If I click the
  sound icon, I can scroll on the sound bar there, but it works the wrong
  way arond. If I scroll up, it lowers the volume, and if I scroll down it
  increases the volume.
  
  If I go via system-settings - sound, scrolling also ajusts the sound
  the wrong way.
+ 
+ Ajusting the volume using the Fn keys of the laptop does work the
+ correct way (up for louder, down for softer).
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: indicator-sound 12.10.2+13.10.20130812.1-0ubuntu1
  Uname: Linux 3.11.0-031100rc2-generic i686
  ApportVersion: 2.12-0ubuntu3
  Architecture: i386
  Date: Fri Aug 16 11:01:13 2013
  InstallationDate: Installed on 2012-11-01 (287 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
  MarkForUpload: True
  SourcePackage: indicator-sound
  UpgradeStatus: Upgraded to saucy on 2013-06-15 (61 days ago)

** Description changed:

- Using the mousewheel/scroll over the sound icon does not ajust the
+ Using the mousewheel/scroll over the sound icon does not adjust the
  volume (I'm using two-finger scrolling on a touchpad). If I click the
  sound icon, I can scroll on the sound bar there, but it works the wrong
  way arond. If I scroll up, it lowers the volume, and if I scroll down it
  increases the volume.
  
- If I go via system-settings - sound, scrolling also ajusts the sound
+ If I go via system-settings - sound, scrolling also adjusts the sound
  the wrong way.
  
- Ajusting the volume using the Fn keys of the laptop does work the
- correct way (up for louder, down for softer).
+ However, the animation is correct on both cases: When I scroll DOWN, the
+ volume goes UP, and the volume bar also goes UP.
+ 
+ Adjusting the volume using the Fn keys of the laptop does work the
+ correct way. Up for louder, down for softer, animation is also correct
+ (Both in settings and in the notification).
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: indicator-sound 12.10.2+13.10.20130812.1-0ubuntu1
  Uname: Linux 3.11.0-031100rc2-generic i686
  ApportVersion: 2.12-0ubuntu3
  Architecture: i386
  Date: Fri Aug 16 11:01:13 2013
  InstallationDate: Installed on 2012-11-01 (287 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
  MarkForUpload: True
  SourcePackage: indicator-sound
  UpgradeStatus: Upgraded to saucy on 2013-06-15 (61 days ago)

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

Title:
  scroll to ajust sound does not work

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

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


[Bug 1202998] Re: kernel panic when updating

2013-08-09 Thread Redmar
This problem is only reproducable while using init=/sbin/e4rat-preload.

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

Title:
  kernel panic when updating

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

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


[Bug 1202998] Re: kernel panic when updating

2013-08-08 Thread Redmar
No, this problem did not occur before I upgraded to Saucy.

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

Title:
  kernel panic when updating

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

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


[Bug 1202998] Re: kernel panic when updating

2013-08-08 Thread Redmar
I was just able to reproduce the problem by using e4rat instead of
ureadahead, and installing updates which included libc6.

:$cat /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-3.10.0-5-generic 
root=UUID=11fd08db-f2a5-45bc-8daf-7baa813ba410 ro quiet splash 
init=/sbin/e4rat-preload vt.handoff=7

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

Title:
  kernel panic when updating

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

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


[Bug 1206467] Re: unetboot doesnt start as root

2013-08-08 Thread Redmar
** Description changed:

+ PROBLEM:
+ 
  Starting unetbootin from the Dash, it complains that it should be
  started as root. Running sudo unetbootin from the terminal does work.
- This is a new problem, in previous versions of ubuntu unetbootin would
- prompt for the administrator password when started from the Dash
+ 
+ WORKAROUND:
+ Manually install the package gksu
+ 
+ FIX:
+ gksu should be marked as a dependency for unetbootin in the debian package
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: unetbootin 575-1ubuntu1
  Uname: Linux 3.11.0-031100rc2-generic i686
  ApportVersion: 2.11-0ubuntu1
  Architecture: i386
  Date: Tue Jul 30 12:33:16 2013
  InstallationDate: Installed on 2012-11-01 (271 days ago)
  InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
  MarkForUpload: True
  SourcePackage: unetbootin
  UpgradeStatus: Upgraded to saucy on 2013-06-15 (44 days ago)

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

Title:
  unetboot doesnt start as root

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

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


[Bug 1206467] Re: unetboot doesnt start as root

2013-08-08 Thread Redmar
** Branch linked: lp:~redmar/ubuntu/saucy/unetbootin/fix-for-1206467

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

Title:
  unetboot doesnt start as root

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

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


[Bug 1202998] Re: kernel panic when updating

2013-08-07 Thread Redmar
I cannot install any new software, since dpkg got interrupted mid-
upgrade and calling 'dpkg --configure -a' triggers the kernel panic.
I've been trying to reproduce the panic on a fresh install of the daily
build on an external drive, but so far without success.

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

Title:
  kernel panic when updating

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

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


[Bug 1202998] Re: kernel panic when updating

2013-08-03 Thread Redmar
It looks like the panic only occurs when updating libc6. I found this
out because usually after the panic, I run 'sudo dpkg --configure -a'
and I can continue the update, but since the last panic dpkg starts by
configuring libc6, and then the panic occurs again. So at this point,
the panic is 100% reproducable, but I cannot install any new software.
If there is any way to collect more information about the panic, please
tell me. If not, I'll re-install ubuntu and try the mainline rc3 kernel.

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

Title:
  kernel panic when updating

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

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


[Bug 1202998] Re: kernel panic when updating

2013-07-31 Thread Redmar
Looks like a correction is in order, I just had a kernel panic while
running the mainline kernel. While the problem always occurs while
updating, it does not occur on every update, so it's hard to reproduce.

I've typed over the exact error messages I get on screen when it
happens:

[  595.024498] Kernel panic - not syncing: Attempted to kill init! 
exitcode=0xff00
[  595.024498]
[  595.024760] drm_kms_helper: panic occurred, switching back to text console


** Tags removed: kernel-fixed-upstream kernel-fixed-upstream-3.11.0-rc2
** Tags added: kernel-bug-exists-upstream kernel-bug-exists-upstream-3.11.0-rc2

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

Title:
  kernel panic when updating

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

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


[Bug 1206467] [NEW] unetboot doesnt start as root

2013-07-30 Thread Redmar
Public bug reported:

Starting unetbootin from the Dash, it complains that it should be
started as root. Running sudo unetbootin from the terminal does work.
This is a new problem, in previous versions of ubuntu unetbootin would
prompt for the administrator password when started from the Dash

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: unetbootin 575-1ubuntu1
Uname: Linux 3.11.0-031100rc2-generic i686
ApportVersion: 2.11-0ubuntu1
Architecture: i386
Date: Tue Jul 30 12:33:16 2013
InstallationDate: Installed on 2012-11-01 (271 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
MarkForUpload: True
SourcePackage: unetbootin
UpgradeStatus: Upgraded to saucy on 2013-06-15 (44 days ago)

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


** Tags: apport-bug 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/1206467

Title:
  unetboot doesnt start as root

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

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


[Bug 1202998] Re: kernel panic when updating

2013-07-29 Thread Redmar
** Tags removed: needs-upstream-testing
** Tags added: kernel-fixed-upstream kernel-fixed-upstream-3.11.0-rc2

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

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

Title:
  kernel panic when updating

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

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


[Bug 1206078] [NEW] notifications send multiple times

2013-07-29 Thread Redmar
Public bug reported:

When rhythmbox switches to a new song, it sends notifications three
times.  This happens both with autoplay and manuall skipping to the next
track. Using 'notify-send' to trigger a notification only shows the
notification once, leading me to believe the problem is with rythmbox
rather then the notification service itself.

One other thing I noticed. The first two notifications contain the track
+ album, but no cover art. The last and final notification also contains
the cover art.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: rhythmbox 2.99.1-0ubuntu1
Uname: Linux 3.11.0-031100rc2-generic i686
ApportVersion: 2.11-0ubuntu1
Architecture: i386
Date: Mon Jul 29 12:36:25 2013
InstallationDate: Installed on 2012-11-01 (270 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
MarkForUpload: True
SourcePackage: rhythmbox
UpgradeStatus: Upgraded to saucy on 2013-06-15 (43 days ago)

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


** Tags: apport-bug 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/1206078

Title:
  notifications send multiple times

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

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


[Bug 1202998] [NEW] kernel panic when updating

2013-07-19 Thread Redmar
Public bug reported:

Every time I update ubuntu 13.10 using sudo aptitude update  sudo
aptitude safe-upgrade, my pc freezes with a kernel panic: trying to kill
init. The error code is ff00. So far this has happened 4 or 5 times,
always when installing updates.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: linux-image-3.10.0-3-generic 3.10.0-3.12
ProcVersionSignature: Ubuntu 3.10.0-3.12-generic 3.10.1
Uname: Linux 3.10.0-3-generic i686
ApportVersion: 2.11-0ubuntu1
Architecture: i386
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  trijntje   1699 F pulseaudio
Date: Fri Jul 19 11:46:13 2013
InstallationDate: Installed on 2012-11-01 (259 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
Lsusb:
 Bus 001 Device 002: ID 0402:7675 ALi Corp. 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Acer AOD257
MarkForUpload: True
ProcFB: 0 inteldrmfb
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.10.0-3-generic 
root=UUID=f2496972-ed3a-4a43-a55c-4eaa002cf2be ro verbose 
init=/sbin/e4rat-preload
RelatedPackageVersions:
 linux-restricted-modules-3.10.0-3-generic N/A
 linux-backports-modules-3.10.0-3-generic  N/A
 linux-firmware1.112
SourcePackage: linux
UpgradeStatus: Upgraded to saucy on 2013-06-15 (33 days ago)
dmi.bios.date: 10/21/2011
dmi.bios.vendor: INSYDE
dmi.bios.version: V1.15
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: JE06_PT
dmi.board.vendor: Acer
dmi.board.version: Base Board Version
dmi.chassis.type: 10
dmi.chassis.vendor: Chassis Manufacturer
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnINSYDE:bvrV1.15:bd10/21/2011:svnAcer:pnAOD257:pvrV1.15:rvnAcer:rnJE06_PT:rvrBaseBoardVersion:cvnChassisManufacturer:ct10:cvrChassisVersion:
dmi.product.name: AOD257
dmi.product.version: V1.15
dmi.sys.vendor: Acer

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


** Tags: apport-bug 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/1202998

Title:
  kernel panic when updating

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

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


[Bug 572919] Re: Make the Ubuntu-release-updater changelog translatable

2013-04-30 Thread Redmar
I can confirm that the upgrade dialog for 12.10 to 13.04 still is fully
English, and there seems to be no way to translate it. I've taken a
quick look at the code, and it's not clear there has been any work to
try and support localisation of the changelog. Why has this been marked
as fix released?

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

Title:
  Make the Ubuntu-release-updater changelog translatable

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

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


[Bug 1174920] Re: unity HUD search can't match more detailed search term

2013-04-30 Thread Redmar
** Attachment added: afslu.png
   
https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1174920/+attachment/3660690/+files/afslu.png

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

Title:
  unity HUD search can't match more detailed search term

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

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


[Bug 1174920] [NEW] unity HUD search can't match more detailed search term

2013-04-30 Thread Redmar
Public bug reported:

The Dutch term for 'Shutdown' is 'Afsluiten'. If I type in 'afsl' in the
HUD, it shows the item 'Afsluiten', see the first screenshot. However,
if I make the searchterm more detailed by adding a letter, 'afslu', the
HUD does not show anything, not matter how long I wait. If I type
another letter, 'afslui', the item for 'Afsluiten' is visible in the HUD
again. This behaviour is completely reproducable, and also occurs for
some other terms.

For example, the same translation, 'Afsluiten', is used to close
firefox. The bug also occurs for the firefox menu: if I type 'afsl' in
firefox I get the (firefox) menu entry to shutdown firefox. However,
adding the 'u' makes all results disappear, and adding the 'i' brings
them back again.

Something else I've noticed, not sure if it's important:
If I type 'afslui', and then backspace the last 'i', the correct options remain 
visible.

Please let me know if you need any more information

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: unity 7.0.0daily13.04.18~13.04-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
Uname: Linux 3.8.0-19-generic i686
ApportVersion: 2.9.2-0ubuntu8
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Tue Apr 30 22:38:49 2013
InstallationDate: Installed on 2012-11-01 (180 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: unity
UpgradeStatus: Upgraded to raring on 2012-12-29 (121 days ago)

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


** Tags: apport-bug i386 raring

** Attachment added: afsl.png
   https://bugs.launchpad.net/bugs/1174920/+attachment/3660687/+files/afsl.png

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

Title:
  unity HUD search can't match more detailed search term

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

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


[Bug 1167743] Re: fault in Ubuntu 13.04 Dutch installer

2013-04-14 Thread Redmar
** Changed in: ubiquity (Ubuntu)
   Status: New = Fix Committed

** Changed in: ubuntu-translations
   Status: New = Fix Committed

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

Title:
  fault in Ubuntu 13.04 Dutch installer

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

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


[Bug 1167743] Re: fault in Ubuntu 13.04 Dutch installer

2013-04-14 Thread Redmar
Thanks a lot for spotting this, the error has been fixed. However, it
could be that the error will still be present in 13.04 since we are
already past NonLangPackFreeze.

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

Title:
  fault in Ubuntu 13.04 Dutch installer

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

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


[Bug 1075876] Re: ubuntu-defaults-builder: only quantal 64bit does not build

2013-01-24 Thread Redmar
The following error:
/usr/sbin/grub-probe: error: cannot find a device for / (is /dev mounted?)

also occurs in succesfull builds, so it would seem this is not a fatal
error. I've also attached the log for a succesfull Quantal 32 bit build.
This image was build on up-to-date raring.

** Attachment added: Succesfull build for Quantal 32. Build system Raring 32 
bit
   
https://bugs.launchpad.net/ubuntu/quantal/+source/ubuntu-defaults-builder/+bug/1075876/+attachment/3499217/+files/binary.log

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

Title:
  ubuntu-defaults-builder: only quantal 64bit does not build

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

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


[Bug 1096616] Re: using zram causes ubuntu raring (13.04) to hang

2013-01-22 Thread Redmar
Thanks a lot for solving this! I'll reopen the bug if I encounter this
problem again.

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

Title:
  using zram causes ubuntu raring (13.04) to hang

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

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


[Bug 1096616] [NEW] using zram causes ubuntu raring (13.04) to hang

2013-01-06 Thread Redmar
Public bug reported:

When using zram-config, sometimes the screen blacks and displays error
messages from zram. Music keeps playing on the background, and it is
also still possible to move the mouse cursor around, but nothing else.

Shutting down with magic sysrq keys does not work properly, the system
goes down but does not reboot with B.

I've attached /var/log/syslog, please let me know if you need more
information!

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: zram-config 0.1
ProcVersionSignature: Ubuntu 3.7.0-7.15-generic 3.7.0
Uname: Linux 3.7.0-7-generic i686
ApportVersion: 2.7-0ubuntu2
Architecture: i386
Date: Sun Jan  6 16:58:51 2013
Dependencies:
 
InstallationDate: Installed on 2012-11-01 (66 days ago)
InstallationMedia: Ubuntu 12.10 Quantal - Build i386 LIVE Binary 
20121018-21:07
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: zram-config
UpgradeStatus: Upgraded to raring on 2012-12-29 (7 days ago)

** Affects: zram-config (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 raring running-unity

** Attachment added: syslog.1
   https://bugs.launchpad.net/bugs/1096616/+attachment/3475541/+files/syslog.1

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

Title:
  using zram causes ubuntu raring (13.04) to hang

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

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


[Bug 1088132] [NEW] update-manager: restart window cannot be closed

2012-12-09 Thread Redmar
Public bug reported:

After updating Ubuntu 12.10 today I was prompted to restart the computer
to complete the update (probably because of the kernel update). However,
it was not possible to dismiss the prompt and opt to restart later: the
window had no close button, and the only option was to restart.

One of the things I've always liked about ubuntu is the fact that the
user is in control. Unlike in windows, in ubuntu it was possible to
dismiss the update prompt and restart later if you wish to do so. I
therefore think it is a mistake to not allow users to determine
themselves when they wish to restart their computer.

I've attached a screenshot of the problem.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: update-manager 1:0.174.3
ProcVersionSignature: Ubuntu 3.5.0-19.30-generic 3.5.7
Uname: Linux 3.5.0-19-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.6.1-0ubuntu9
Architecture: amd64
Date: Sun Dec  9 08:46:22 2012
GsettingsChanges:
 b'com.ubuntu.update-manager' b'first-run' b'false'
 b'com.ubuntu.update-manager' b'launch-time' b'1355038322'
 b'com.ubuntu.update-manager' b'window-height' b'847'
 b'com.ubuntu.update-manager' b'window-width' b'695'
InstallationDate: Installed on 2012-04-28 (224 days ago)
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120426-23:52
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: update-manager
UpgradeStatus: Upgraded to quantal on 2012-09-13 (86 days ago)

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


** Tags: amd64 apport-bug quantal running-unity

** Attachment added: Schermafdruk van 2012-12-09 08:46:02.png
   
https://bugs.launchpad.net/bugs/1088132/+attachment/3455157/+files/Schermafdruk%20van%202012-12-09%2008%3A46%3A02.png

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

Title:
  update-manager: restart window cannot be closed

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

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


[Bug 1075876] Re: ubuntu-defaults-builder: only quantal 64bit does not build

2012-11-23 Thread Redmar
This bug does not occur for raring, 32 or 64 bit.

** Summary changed:

- ubuntu-defaults-builder: example does not build
+ ubuntu-defaults-builder: only quantal 64bit does not build

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

Title:
  ubuntu-defaults-builder: only quantal 64bit does not build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1075876/+subscriptions

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


[Bug 1075876] Re: ubuntu-defaults-builder: example does not build

2012-11-21 Thread Redmar
I've done some more testing, and it appears this only happens for
building Quantal 64 bit, no matter which customizations are used. For
example, building the example on Q64bit with --arch i368 works, building
on Q32 with --arch amd64 fails.

I'll test if this bug occurs for raring next

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

Title:
  ubuntu-defaults-builder: example does not build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1075876/+subscriptions

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


[Bug 1077354] Re: [needs-packaging] ubuntu-defaults-nl needs packaging

2012-11-12 Thread Redmar
Thank you both for your time, Martin Pitt and Howard Chan, I had no idea
this would be so fast!

What if I have an updated version of this package, should I file a new
bug and tag it needs-packaging again or is there another approach I
should take?

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

Title:
  [needs-packaging] ubuntu-defaults-nl needs packaging

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

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


[Bug 1077354] [NEW] ubuntu-defaults-nl needs packaging

2012-11-10 Thread Redmar
Public bug reported:

Description: A package with customized default settings for the creation
of Dutch iso images.

URL: https://launchpad.net/~ubuntu-defaults-nl-team
License: GPL 3+
Notes: There are already similar packages for italian and chinese present in 
ubuntu

ppa: https://launchpad.net/~ubuntu-defaults-nl-team/+archive/stable

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: needs-packaging

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

Title:
  ubuntu-defaults-nl needs packaging

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

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


[Bug 1075876] Re: ubuntu-defaults-builder: example does not build

2012-11-08 Thread Redmar
It looks like this affects all builds, since building with theDutch
customization package also fails

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

Title:
  ubuntu-defaults-builder: example does not build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1075876/+subscriptions

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


[Bug 1075876] [NEW] ubuntu-defaults-builder: example does not build

2012-11-06 Thread Redmar
Public bug reported:

The example for ubuntu-defaults-builder does not build:

By following the man page:
/usr/share/doc/ubuntu-defaults-builder/examples/make-example
ubuntu-defaults-image --package ./defaults-builder-test_0.1_all.deb  
--components main,restricted,universe

Final part of the logfile:

Rebuilding /usr/share/applications/bamf.index...
Errors were encountered while processing:
 linux-image-3.5.0-17-generic
 linux-image-extra-3.5.0-17-generic
 linux-signed-image-3.5.0-17-generic
E: Sub-process /usr/bin/dpkg returned an error code (1)
P: Begin unmounting filesystems...
P: Saving caches...
Reading package lists...
Building dependency tree...
Reading state information...

I will attach the complete log

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: ubuntu-defaults-builder 0.44
ProcVersionSignature: Ubuntu 3.5.0-18.29-generic 3.5.7
Uname: Linux 3.5.0-18-generic x86_64
ApportVersion: 2.6.1-0ubuntu6
Architecture: amd64
Date: Wed Nov  7 08:40:35 2012
InstallationDate: Installed on 2012-04-28 (192 days ago)
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120426-23:52
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: ubuntu-defaults-builder
UpgradeStatus: Upgraded to quantal on 2012-09-13 (54 days ago)

** Affects: ubuntu-defaults-builder (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug quantal running-unity

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

Title:
  ubuntu-defaults-builder: example does not build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1075876/+subscriptions

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


[Bug 1075876] Re: ubuntu-defaults-builder: example does not build

2012-11-06 Thread Redmar
** Attachment added: binary.log for example build
   
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1075876/+attachment/3426415/+files/binary.log

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

Title:
  ubuntu-defaults-builder: example does not build

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/1075876/+subscriptions

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


[Bug 665820] Re: Translated screen saver descriptions not used

2012-10-19 Thread Redmar
yes, and they did get accepted. I just noticed that xscreensaver is
completely untranslated in 12.10, I will file a new bug

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

Title:
  Translated screen saver descriptions not used

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

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


[Bug 1068463] [NEW] xscreensaver translations not used

2012-10-19 Thread Redmar
Public bug reported:

xscreensaver translations are not used, at least for Dutch. The
xscreensaver template for quantal is fully translated, yet the interface
is all in English.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: xscreensaver 5.15-2ubuntu1
ProcVersionSignature: Ubuntu 3.5.0-17.28-generic 3.5.5
Uname: Linux 3.5.0-17-generic x86_64
ApportVersion: 2.6.1-0ubuntu3
Architecture: amd64
Date: Fri Oct 19 08:29:00 2012
InstallationMedia: Ubuntu 12.04 Precise - Build amd64 LIVE Binary 
20120426-23:52
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: xscreensaver
UpgradeStatus: Upgraded to quantal on 2012-09-13 (35 days ago)

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


** Tags: amd64 apport-bug quantal running-unity

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

Title:
  xscreensaver translations not used

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

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


[Bug 808587] Re: Unity should automatically select Keep In Launcher for icons that are sorted

2012-10-13 Thread Redmar
Awesome, I can't wait to see this function in ubuntu. A big thanks to
everyone who worked on this feature!

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

Title:
  Unity should automatically select Keep In Launcher for icons that are
  sorted

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/808587/+subscriptions

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


[Bug 1042070] Re: soffice.bin crashed with SIGSEGV in g_menu_exporter_menu_prepare()

2012-10-05 Thread Redmar
I get this error repeatedly while trying to safe a spreadsheet imported
from .csv to .ods. The file only contained the imported .csv and a
single barplot generated from that data.

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

Title:
  soffice.bin crashed with SIGSEGV in g_menu_exporter_menu_prepare()

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

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


[Bug 1054746] Re: [FFe] [UIFe] No easy way to disable results from Canonical partners in lenses

2012-09-26 Thread Redmar
As a translator, three extra strings are not a big deal, so +1 on that
account. I also think this option will address important privacy
concerns.

However, I do feel there have been too many UIFE this cycle, as #11
indicates. It is a huge motivation killer to lose a couple of hours of
work due to some external change you have little control over. Just
imagine losing a couple of hours worth of work on some nice feature.
Especially when you are a volunteer donating your free time to a
project.

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

Title:
  [FFe] [UIFe] No easy way to disable results from Canonical partners in
  lenses

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

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


[Bug 998271] Re: adding --mirror option for ubuntu-defaults-image to choose archive mirrors

2012-09-19 Thread Redmar
This looks great!. I installed apt-cacher on my local network to try to
speed up the downloads, but noticed it is not used. Will I be able to
specify the apt-cacher server as a mirror as well with this change?

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

Title:
  adding --mirror option for ubuntu-defaults-image to choose archive
  mirrors

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-defaults-builder/+bug/998271/+subscriptions

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


[Bug 1051237] [NEW] no swap after installing from mini.iso with encrypted home

2012-09-15 Thread Redmar
Public bug reported:

When installing kubunut from the mini.iso and chosing to encrypt the
home dir, there is no active swap after reboot. I believe this is
related to the fact that the harddisk I installed on was /dev/sdb during
installation, but is /dev/sda after install.

I've attached /etc/fstab and /etc/crypttab, please let me know if you
need any other information.

ProblemType: Bug
DistroRelease: Ubuntu 12.10
Package: debian-installer (not installed)
ProcVersionSignature: Ubuntu 3.5.0-14.19-generic 3.5.3
Uname: Linux 3.5.0-14-generic i686
ApportVersion: 2.5.1-0ubuntu7
Architecture: i386
CurrentDmesg:
 [ 1275.685015] zram: Creating 1 devices ...
 [ 1276.022256] Adding 383044k swap on /dev/zram0.  Priority:5 extents:1 
across:383044k SS
Date: Sat Sep 15 13:44:43 2012
EcryptfsInUse: Yes
Lsusb:
 Bus 001 Device 002: ID 0402:5602 ALi Corp. M5602 Video Camera Controller
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Acer Aspire 5100
MemoryUsage:
 total   used   free sharedbuffers cached
 Mem:766092 701336  64756  0  22352 323572
 -/+ buffers/cache: 355412 410680
 Swap:   383044  14184 368860
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcEnviron:
 LANGUAGE=
 TERM=xterm
 PATH=(custom, no user)
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.5.0-14-generic 
root=UUID=e8966b00-18f9-494b-85c5-9f5548c2ceff ro splash quiet vt.handoff=7
SourcePackage: debian-installer
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/15/2007
dmi.bios.vendor: Acer
dmi.bios.version: V3.10A
dmi.board.name: Navarro
dmi.board.vendor: Acer
dmi.board.version: N/A
dmi.chassis.type: 10
dmi.chassis.vendor: Acer
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnAcer:bvrV3.10A:bd10/15/2007:svnAcer:pnAspire5100:pvrV3.10A:rvnAcer:rnNavarro:rvrN/A:cvnAcer:ct10:cvrN/A:
dmi.product.name: Aspire 5100
dmi.product.version: V3.10A
dmi.sys.vendor: Acer

** Affects: debian-installer (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 quantal

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

Title:
  no swap after installing from mini.iso with encrypted home

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1051237/+subscriptions

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


[Bug 1051237] Re: no swap after installing from mini.iso with encrypted home

2012-09-15 Thread Redmar
** Attachment added: fstab
   https://bugs.launchpad.net/bugs/1051237/+attachment/3316247/+files/fstab

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

Title:
  no swap after installing from mini.iso with encrypted home

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1051237/+subscriptions

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


[Bug 1051237] Re: no swap after installing from mini.iso with encrypted home

2012-09-15 Thread Redmar
** Attachment added: crypttab
   
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1051237/+attachment/3316258/+files/crypttab

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

Title:
  no swap after installing from mini.iso with encrypted home

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1051237/+subscriptions

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


[Bug 1051239] [NEW] default grub-install not on same disk as root partition

2012-09-15 Thread Redmar
Public bug reported:

When installing from mini.iso on usb, some hardware will recognise the
install usb as /dev/sda, and name the internal HD /dev/sdb. If you then
install the system to /dev/sdb, the default location for grub is still
/dev/sda (even though this is not indicated anywhere in the installer).
This results in an unusable system after reboot, since grub was
installed to the usb-drive. Furthermore, this behaviour is inconsistent
with that of the graphical installer (ubiquity), which installs grub on
the same disk the system is installed to.

I would therefore like to request a change in the default behaviour of 
debian-installer to install grub to the same disk as the root partition. This 
has two advantages:
1) Install is less likely to fail
2) Consistency across all installers for ubuntu.

Another solution would be to at least have the installer indicate where
it is going to install grub, so users have some way to know something
could be going wrong.

** Affects: debian-installer (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/1051239

Title:
  default grub-install not on same disk as root partition

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1051239/+subscriptions

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


[Bug 1042187] Re: soffice.bin crashed with SIGSEGV in g_main_context_dispatch()

2012-09-14 Thread Redmar
Got this error when resizing the Calc window while working on a chart.

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

Title:
  soffice.bin crashed with SIGSEGV in g_main_context_dispatch()

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

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


[Bug 1044035] Re: UIFe: Checkbox header graphic is wrong

2012-09-12 Thread Redmar
Hi. I saw the discussion between dpm and roadmr on irc, and I want to add a 
request: 
Please add a comment to the relevant string to indicate to translators the 
maximum length of the translation. This way, we know what the limit is and can 
try to modify our translations to fit it.

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

Title:
  UIFe: Checkbox header graphic is wrong

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

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


[Bug 1041760] Re: i368 netboot install xubuntu fails installing software

2012-08-28 Thread Redmar
I had not noticed the logs were in Dutch, sorry. The problem is indeed
unmet dependencies, does this mean this bug will go away as new packages
hit the archive?

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

Title:
  i368 netboot install xubuntu fails installing software

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1041760/+subscriptions

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


[Bug 1041838] Re: i386 netboot install ubuntu server: no wired network after install [incorrect name in interfaces file]

2012-08-28 Thread Redmar
1) No, I just used the default latest build for netboot, found here 
http://iso.qa.ubuntu.com/qatracker/milestones/219/builds/21555/downloads
2) I don't think I'm using pxe, I'm installing from usb with the image linked 
in 1)
3) biosdevname was not installed, but installing it and rebooting did not solve 
the problem.


I'm also marking the bug as confirmed since I'm not doing a preseeded 
installation, so afaik, the ubuntu-devel instructions do not apply.

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

Title:
  i386 netboot install ubuntu server: no wired network after install
  [incorrect name in interfaces file]

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1041838/+subscriptions

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


[Bug 1041760] Re: i368 netboot install xubuntu fails installing software

2012-08-27 Thread Redmar
** Attachment added: dpkg.log
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1041760/+attachment/3279551/+files/dpkg.log

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

Title:
  i368 netboot install xubuntu fails installing software

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1041760/+subscriptions

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


[Bug 1041760] Re: i368 netboot install xubuntu fails installing software

2012-08-27 Thread Redmar
** Attachment added: syslog
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1041760/+attachment/3279558/+files/syslog

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

Title:
  i368 netboot install xubuntu fails installing software

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1041760/+subscriptions

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


[Bug 1041760] Re: i368 netboot install xubuntu fails installing software

2012-08-27 Thread Redmar
** Attachment added: installer.tar.gz
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1041760/+attachment/3279557/+files/installer.tar.gz

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

Title:
  i368 netboot install xubuntu fails installing software

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/debian-installer/+bug/1041760/+subscriptions

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


[Bug 1041760] [NEW] i368 netboot install xubuntu fails installing software

2012-08-26 Thread Redmar
Public bug reported:

When installing Xubuntu with the netboot image the installation fails at
the 'select and install software step'. I'm able to select Xubuntu
desktop succesfully, but the subsequent download/install fails.

Please let me know if there is a way to get more detailed information
about what goes wrong.

** Affects: ubiquity (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/1041760

Title:
  i368 netboot install xubuntu fails installing software

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

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


[Bug 1041838] [NEW] i368 netboot install ubuntu server: no wired network after install

2012-08-26 Thread Redmar
Public bug reported:

After installing installing ubuntu server via the netboot image I get no
(wired) internet connection on this hardware:
https://launchpad.net/+hwdb/+fingerprint/b845c366ea09c60efa3a45c1b5b21525

Please let me know what other information you need to investigate this
further.

** Affects: ubiquity (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/1041838

Title:
  i368 netboot install ubuntu server: no wired network after install

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

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


[Bug 1041838] Re: i368 netboot install ubuntu server: no wired network after install

2012-08-26 Thread Redmar
The problem appears to be that my wired network device is seen as 'em10'
during the installation, but as eth0 after the install.

I've attached the relevant lines from /etc/network/interfaces

** Attachment added: interfaces
   
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1041838/+attachment/3277680/+files/interfaces

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

Title:
  i386 netboot install ubuntu server: no wired network after install
  [incorrect name in interfaces file]

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

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


[Bug 1041838] Re: i386 netboot install ubuntu server: no wired network after install [incorrect name in interfaces file]

2012-08-26 Thread Redmar
I've just done a netboot install of kubuntu, it has working network
after reboot and the following lines in /etc/network/interfaces:

auto lo
iface lo inet loopback

# The primary network interface
#NetworkManager#auto em10
#NetworkManager#iface em10 inet dhcp

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

Title:
  i386 netboot install ubuntu server: no wired network after install
  [incorrect name in interfaces file]

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

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


  1   2   3   4   >