[Bug 733836] Re: Error: file not found when booting, then boots up anyway

2013-02-22 Thread Michael Egger
Hi Flo!
I'm using a self configurated desktop workstation, but I think the problem is 
that I have upgraded from precise to quantal and then to the raring dailys. 
Maybe incompatible old configuration files?

Architecture: amd64
InstallationDate: Installed on 2012-09-19 (142 days ago)
InstallationMedia: Ubuntu 12.04.1 LTS Precise Pangolin - Release amd64 
(20120823.1)

cheers

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

Title:
  Error: file not found when booting, then boots up anyway

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

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


[Bug 733836] Re: Error: file not found when booting, then boots up anyway

2013-02-08 Thread Michael Egger
The error i get after choosing Ubuntu in grub2 is:

error: file not found.
error: file not found.
error: file not found.
Press any key to continue ...

here is my grub.cfg:

$ cat grub.cfg 
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  set have_grubenv=true
  load_env
fi
set default=0

if [ x${feature_menuentry_id} = xy ]; then
  menuentry_id_option=--id
else
  menuentry_id_option=
fi

export menuentry_id_option

if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}

function recordfail {
  set recordfail=1
  if [ -n ${have_grubenv} ]; then if [ -z ${boot_once} ]; then save_env 
recordfail; fi; fi
}

function load_video {
  if [ x$feature_all_video_module = xy ]; then
insmod all_video
  else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
  fi
}

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_msdos
insmod ext2
set root='hd0,msdos2'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 
--hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  
ea06e8dd-40ce-482a-8dd2-be2b88635892
else
  search --no-floppy --fs-uuid --set=root ea06e8dd-40ce-482a-8dd2-be2b88635892
fi
font=/usr/share/grub/unicode.pf2
fi

if loadfont $font ; then
  set gfxmode=auto
  load_video
  insmod gfxterm
  set locale_dir=$prefix/locale
  set lang=en_US
  insmod gettext
fi
terminal_output gfxterm
if [ ${recordfail} = 1 ]; then
  set timeout=-1
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=white/black
set menu_color_highlight=black/light-gray
if background_color 44,0,30; then
  clear
fi
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
function gfxmode {
set gfxpayload=${1}
if [ ${1} = keep ]; then
set vt_handoff=vt.handoff=7
else
set vt_handoff=
fi
}
if [ ${recordfail} != 1 ]; then
  if [ -e ${prefix}/gfxblacklist.txt ]; then
if hwmatch ${prefix}/gfxblacklist.txt 3; then
  if [ ${match} = 0 ]; then
set linux_gfx_mode=keep
  else
set linux_gfx_mode=text
  fi
else
  set linux_gfx_mode=text
fi
  else
set linux_gfx_mode=keep
  fi
else
  set linux_gfx_mode=text
fi
export linux_gfx_mode
menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os 
$menuentry_id_option 'gnulinux-simple-ea06e8dd-40ce-482a-8dd2-be2b88635892' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 
--hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  
f186e672-0f46-46fe-ad89-34620ea571b2
else
  search --no-floppy --fs-uuid --set=root 
f186e672-0f46-46fe-ad89-34620ea571b2
fi
linux   /vmlinuz-3.8.0-5-generic 
root=UUID=ea06e8dd-40ce-482a-8dd2-be2b88635892 ro   quiet splash nomodeset 
nmi_watchdog=0 $vt_handoff
initrd  /initrd.img-3.8.0-5-generic
}
submenu 'Advanced options for Ubuntu' $menuentry_id_option 
'gnulinux-advanced-ea06e8dd-40ce-482a-8dd2-be2b88635892' {
menuentry 'Ubuntu, with Linux 3.8.0-5-generic' --class ubuntu --class 
gnu-linux --class gnu --class os $menuentry_id_option 
'gnulinux-3.8.0-5-generic-advanced-ea06e8dd-40ce-482a-8dd2-be2b88635892' {
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
  search --no-floppy --fs-uuid --set=root 
--hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  
f186e672-0f46-46fe-ad89-34620ea571b2
else
  search --no-floppy --fs-uuid --set=root 
f186e672-0f46-46fe-ad89-34620ea571b2
fi
echo'Loading Linux 3.8.0-5-generic ...'
linux   /vmlinuz-3.8.0-5-generic 
root=UUID=ea06e8dd-40ce-482a-8dd2-be2b88635892 ro   quiet splash nomodeset 
nmi_watchdog=0 $vt_handoff
echo'Loading initial ramdisk ...'
initrd  /initrd.img-3.8.0-5-generic
}
menuentry 'Ubuntu, with Linux 3.8.0-5-generic (recovery mode)' --class 
ubuntu --class gnu-linux --class gnu --class os 

[Bug 733836] Re: Error: file not found when booting, then boots up anyway

2013-02-07 Thread Michael Egger
This bug affects me as well after a distrubution upgrade from 12.10 to
13.04

$ lsb_release -rd
Description:Ubuntu Raring Ringtail (development branch)
Release:13.04

$ apt-cache show grub2
Package: grub2
Priority: extra
Section: universe/admin
Installed-Size: 32
Maintainer: Ubuntu Developers
Original-Maintainer: GRUB Maintainers
Architecture: amd64
Version: 2.00-12ubuntu1
Depends: grub-pc (= 2.00-12ubuntu1), grub-common
Filename: pool/universe/g/grub2/grub2_2.00-12ubuntu1_amd64.deb
Size: 2538
MD5sum: bd2867e84bb969fa45fa50b9541cbf74
SHA1: 1e47f9816b6ab85d8da612e6ab8ba393b2ccdaa6
SHA256: b31f8f895c8da4ff4fce3b64ce0dc769fc2401aaa117de065c08dfd00fc6bcef
Description-en: GRand Unified Bootloader, version 2 (dummy package)
 This is a dummy transitional package to handle GRUB 2 upgrades.  It can be
 safely removed.
Multi-Arch: foreign
Homepage: http://www.gnu.org/software/grub/
Description-md5: bbb470013d1f2450dba730f10fbd09b4
Bugs: https://bugs.launchpad.net/ubuntu/+filebug
Origin: Ubuntu


** Tags added: raring

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

Title:
  Error: file not found when booting, then boots up anyway

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

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


[Bug 1044747] Re: mtp filesystem can't mount

2013-02-07 Thread Michael Egger
Hi
I have the same problem here with Galaxy S2 (I9100) on Ubuntu 13.04.
Using Cyanogenmod 9.1 (android 4.0.4) with kernel 3.0.32-CM

Nautilus shows up the android device, but i can't mount it.

$ mtp-detect 
Error: Unable to open ~/.mtpz-data for reading.
libmtp version: 1.1.5

Listing raw device(s)
Device 0 (VID=04e8 and PID=685e) is a Samsung Galaxy Y.
   Found 1 device(s):
   Samsung: Galaxy Y (04e8:685e) @ bus 2, dev 6
Attempting to connect device(s)
LIBMTP PANIC: Unable to find interface  endpoints of device
Unable to open raw device 0
OK.

regards
Michael

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

Title:
  mtp filesystem can't mount

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

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


[Bug 1098561] Re: Unsupported hardware watermark appears when FGLRX is installed on 13.04

2013-02-05 Thread Michael Egger
Confirmed on HD 7800 Series (using fglrx-updates)

$ fglrxinfo
display: :0  screen: 0
OpenGL vendor string: Advanced Micro Devices, Inc.
OpenGL renderer string: AMD Radeon HD 7800 Series
OpenGL version string: 4.2.11986 Compatibility Profile Context

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

Title:
  Unsupported hardware watermark appears when FGLRX is installed on
  13.04

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

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


[Bug 1048781] [NEW] unity sidebar - corrupted tooltip on first mouse hover

2012-09-10 Thread Michael Egger
Public bug reported:

lsb_release -rd

Description:Ubuntu 12.04.1 LTS
Release:12.04

apt-cache policy unity

unity:
  Installed: 5.14.0-0ubuntu1
  Candidate: 5.14.0-0ubuntu1
  Version table:
 *** 5.14.0-0ubuntu1 0
500 http://at.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 
Packages
100 /var/lib/dpkg/status
 5.10.0-0ubuntu6 0
500 http://at.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

apt-cache policy fglrx
fglrx:
  Installed: 2:8.960-0ubuntu1.1
  Candidate: 2:8.960-0ubuntu1.1
  Version table:
 *** 2:8.960-0ubuntu1.1 0
500 http://at.archive.ubuntu.com/ubuntu/ precise-updates/restricted 
amd64 Packages
100 /var/lib/dpkg/status
 2:8.960-0ubuntu1 0
500 http://at.archive.ubuntu.com/ubuntu/ precise/restricted amd64 
Packages

problem description:

if I hover over an icon on the unity side panel the first time, the tooltip 
won't show up, if I hover the second time it works like expected.
Sorry I can't give a screenshot because if I press the print key the unity 
overlay seems to be refreshed an the tooltip shows up like normal instantly.
I think this bug only occurs with proprietary ATI drivers.

Thanks for your help!

cheers,
Michael

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: unity 5.14.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
Uname: Linux 3.2.0-29-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.0.1-0ubuntu12
Architecture: amd64
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
Date: Mon Sep 10 21:15:36 2012
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug precise 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/1048781

Title:
  unity sidebar - corrupted tooltip on first mouse hover

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

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

[Bug 1048781] Re: unity dash - corrupted tooltip on first mouse hover

2012-09-10 Thread Michael Egger
** Description changed:

  lsb_release -rd
  
- Description:  Ubuntu 12.04.1 LTS
- Release:  12.04
- 
+ Description:  Ubuntu 12.04.1 LTS
+ Release:  12.04
  
  apt-cache policy unity
  
- unity:
-   Installed: 5.14.0-0ubuntu1
-   Candidate: 5.14.0-0ubuntu1
-   Version table:
-  *** 5.14.0-0ubuntu1 0
- 500 http://at.archive.ubuntu.com/ubuntu/ precise-updates/main 
amd64 Packages
- 100 /var/lib/dpkg/status
-  5.10.0-0ubuntu6 0
- 500 http://at.archive.ubuntu.com/ubuntu/ precise/main amd64 
Packages
+ unity:
+   Installed: 5.14.0-0ubuntu1
+   Candidate: 5.14.0-0ubuntu1
+   Version table:
+  *** 5.14.0-0ubuntu1 0
+ 500 http://at.archive.ubuntu.com/ubuntu/ precise-updates/main 
amd64 Packages
+ 100 /var/lib/dpkg/status
+  5.10.0-0ubuntu6 0
+ 500 http://at.archive.ubuntu.com/ubuntu/ precise/main amd64 
Packages
  
  apt-cache policy fglrx
- fglrx:
-   Installed: 2:8.960-0ubuntu1.1
-   Candidate: 2:8.960-0ubuntu1.1
-   Version table:
-  *** 2:8.960-0ubuntu1.1 0
- 500 http://at.archive.ubuntu.com/ubuntu/ 
precise-updates/restricted amd64 Packages
- 100 /var/lib/dpkg/status
-  2:8.960-0ubuntu1 0
- 500 http://at.archive.ubuntu.com/ubuntu/ precise/restricted amd64 
Packages
- 
+ fglrx:
+   Installed: 2:8.960-0ubuntu1.1
+   Candidate: 2:8.960-0ubuntu1.1
+   Version table:
+  *** 2:8.960-0ubuntu1.1 0
+ 500 http://at.archive.ubuntu.com/ubuntu/ 
precise-updates/restricted amd64 Packages
+ 100 /var/lib/dpkg/status
+  2:8.960-0ubuntu1 0
+ 500 http://at.archive.ubuntu.com/ubuntu/ precise/restricted amd64 
Packages
  
  problem description:
  
  if I hover over an icon on the unity dash the first time, the tooltip won't 
show up, if i hover the second time it works like expected.
  Sorry I can't give a screenshot because if I press the print key the unity 
overlay seems to be refreshed an the tooltip shows up like normal instantly.
  I think this bug only occurs with proprietary ATI drivers.
+ 
+ Thanks for your help!
+ 
+ cheers,
+ Michael
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.14.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
  Uname: Linux 3.2.0-29-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu12
  Architecture: amd64
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,unitymtgrabhandles,workarounds,scale,expo,ezoom,unityshell]
  Date: Mon Sep 10 21:15:36 2012
  InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Release amd64 
(20120425)
  ProcEnviron:
-  TERM=xterm
-  PATH=(custom, no user)
-  LANG=en_US.UTF-8
-  SHELL=/bin/bash
+  TERM=xterm
+  PATH=(custom, no user)
+  LANG=en_US.UTF-8
+  SHELL=/bin/bash
  SourcePackage: unity
  UpgradeStatus: No upgrade log present (probably fresh install)

** Description changed:

  lsb_release -rd
  
  Description:  Ubuntu 12.04.1 LTS
  Release:  12.04
  
  apt-cache policy unity
  
  unity:
    Installed: 5.14.0-0ubuntu1
    Candidate: 5.14.0-0ubuntu1
    Version table:
   *** 5.14.0-0ubuntu1 0
  500 http://at.archive.ubuntu.com/ubuntu/ precise-updates/main 
amd64 Packages
  100 /var/lib/dpkg/status
   5.10.0-0ubuntu6 0
  500 http://at.archive.ubuntu.com/ubuntu/ precise/main amd64 
Packages
  
  apt-cache policy fglrx
  fglrx:
    Installed: 2:8.960-0ubuntu1.1
    Candidate: 2:8.960-0ubuntu1.1
    Version table:
   *** 2:8.960-0ubuntu1.1 0
  500 http://at.archive.ubuntu.com/ubuntu/ 
precise-updates/restricted amd64 Packages
  100 /var/lib/dpkg/status
   2:8.960-0ubuntu1 0
  500 http://at.archive.ubuntu.com/ubuntu/ precise/restricted amd64 
Packages
  
  problem description:
  
- if I hover over an icon on the unity dash the first time, the tooltip won't 
show up, if i hover the second time it works like expected.
+ if I hover over an icon on the unity side panel the first time, the tooltip 
won't show up, if i hover the second time it works like expected.
  Sorry I can't give a screenshot because if I press the print key the unity 
overlay seems to be refreshed an the tooltip shows up like normal instantly.
  I think this bug only occurs with proprietary ATI drivers.
  
  Thanks for your help!
  
  cheers,
  Michael
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: unity 5.14.0-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-29.46-generic 3.2.24
  Uname: Linux 3.2.0-29-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.0.1-0ubuntu12
  Architecture: amd64
  CompizPlugins: