[Bug 1640662] Re: [xenial64]Cannot sign in U1 account with error "GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown:The name io.snapcraft.SnapdLoginService was not provided by any .service files"

2017-07-04 Thread Kajetan Mazur
** Also affects: ubuntu
   Importance: Undecided
   Status: New

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

Title:
  [xenial64]Cannot sign in U1 account with error
  "GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown:The name
  io.snapcraft.SnapdLoginService was not provided by any .service files"

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1640662/+subscriptions

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


[Bug 1513162] Re: Nautilus crash when try move any icons

2017-02-03 Thread Kajetan Kaczmarek
I just install MINT 18.1 and this BUG has already repaired :)


** Changed in: nautilus (Ubuntu)
   Status: Expired => 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/1513162

Title:
  Nautilus crash when try move any icons

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

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


[Bug 1614241] [NEW] changing colours in the palette only works with workarounds

2016-08-17 Thread Kajetan
Public bug reported:

According to the fbterm manpage the sequence "ESC  [  3 ; n ; r ; g ; b
}" should change the colour "n" to the specified values. However, this
only works when changing the first colour. When changing another colour
a switch to another tty and back is needed to apply the changes.

Steps to reproduce:

*) start fbterm
*) print all the colours (e.g. using 'for i in {0..255}; do echo -ne "\E[2;$i} 
"; done; tput sgr0; echo')
*) change a colour (e.g. using 'echo -e "\E[3;16;0;255;0"')
*) verify that the change has been applied by e.g. printing all the colours 
again
*) change another colour (e.g. 'echo -e "\E[3;17;0;255;0"')
At this point the colour map doesn't change anymore, no matter how many colours 
I change. Only switching to another tty and back again applies my changes.

The bug: in src/screen_render.cpp, line 39 (in function
"Screen::setPalette"): When setPalette is called it checks whether the
pointer to the palette has changed in this line. However, the pointer is
only changed the first time a colour is changed by "FbShell::request" in
src/fbshell.cpp (the function starts in line 510). The changes are
written to the palette as they should (but "setPalette" assumes that
nothing has changed since the pointer doesn't change).

Commenting "if (mPalette == palette) return;" out in line 39 in
src/screen_render.cpp seems to work for me.

I'd *guess* it would be safe to remove the check from "setPalette" since
it seems to me that it isn't called often anyway?

All the information as requested by the Ubuntu bug reporting guidelines:

1) "lsb_release -rd"
Description:Ubuntu 14.04.5 LTS
Release:14.04
2) "apt-cache policy fbterm"
fbterm:
  Installed: 1.7-2
  Candidate: 1.7-2
  Version table:
 *** 1.7-2 0
500 http://ubuntu.lagis.at/ubuntu/ trusty/universe amd64 Packages
100 /var/lib/dpkg/status
3) what I'd expect to happen
changing multiple colours works as described in the man page
4) what actually happens
only one colour could be changed as described in the man page (and further 
colours needed switching to another tty)

(edit: formatting)

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

** Description changed:

  According to the fbterm manpage the sequence "ESC  [  3 ; n ; r ; g ; b
  }" should change the colour "n" to the specified values. However, this
  only works when changing the first colour. When changing another colour
  a switch to another tty and back is needed to apply the changes.
  
  Steps to reproduce:
  
  *) start fbterm
  *) print all the colours (e.g. using 'for i in {0..255}; do echo -ne 
"\E[2;$i} "; done; tput sgr0; echo')
  *) change a colour (e.g. using 'echo -e "\E[3;16;0;255;0"')
  *) verify that the change has been applied by e.g. printing all the colours 
again
  *) change another colour (e.g. 'echo -e "\E[3;17;0;255;0"')
  At this point the colour map doesn't change anymore, no matter how many 
colours I change. Only switching to another tty and back again applies my 
changes.
  
- Bug in the code: in src/screen_render.cpp, line 39 (in function
+ The bug: in src/screen_render.cpp, line 39 (in function
  "Screen::setPalette"): When setPalette is called it checks whether the
  pointer to the palette has changed in this line. However, the pointer is
  only changed the first time a colour is changed by "FbShell::request" in
  src/fbshell.cpp (the function starts in line 510). The changes are
  written to the palette as they should (but "setPalette" assumes that
  nothing has changed since the pointer doesn't change).
  
  Commenting "if (mPalette == palette) return;" out in line 39 in
  src/screen_render.cpp seems to work for me.
  
  I'd *guess* it would be safe to remove the check from "setPalette" since
  it seems to me that it isn't called often anyway?
  
- 
  All the information as requested by the Ubuntu bug reporting guidelines:
  
  1)
  "lsb_release -rd"
  Description:  Ubuntu 14.04.5 LTS
  Release:  14.04
  2)
  "apt-cache policy fbterm"
  fbterm:
-   Installed: 1.7-2
-   Candidate: 1.7-2
-   Version table:
-  *** 1.7-2 0
- 500 http://ubuntu.lagis.at/ubuntu/ trusty/universe amd64 Packages
- 100 /var/lib/dpkg/status
+   Installed: 1.7-2
+   Candidate: 1.7-2
+   Version table:
+  *** 1.7-2 0
+ 500 http://ubuntu.lagis.at/ubuntu/ trusty/universe amd64 Packages
+ 100 /var/lib/dpkg/status
  3)
  changing multiple colours works as described in the man page
  4)
  only one colour could be changed as described in the man page (and further 
colours needed switching to another tty)

** Description changed:

  According to the fbterm manpage the sequence "ESC  [  3 ; n ; r ; g ; b
  }" should change the colour "n" to the specified values. However, this
  only works when changing the first colour. When changing another colour
  a switch to another tty and back is needed to apply the changes.
  
  Steps to reproduce:
  
  *) start fbterm
  *) print all the colours (e.g. 

[Bug 1362282] Re: Error when trying to update: 'ProcessError: 0 - ErrorInProc...'

2016-05-02 Thread Kajetan
I'm sorry, I don't have the backups of those logs anymore... (And I
can't reproduce the issue)

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

Title:
  Error when trying to update: 'ProcessError: 0 - ErrorInProc...'

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

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


[Bug 1293105] Re: Keyboard shortcuts not working in SuperTuxKart 0.8.1 in Ubuntu 12.04

2015-12-04 Thread Kajetan
Great, thanks! :-D

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

Title:
  Keyboard shortcuts not working in SuperTuxKart 0.8.1 in Ubuntu 12.04

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

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


[Bug 1513162] [NEW] Nautilus crash when try move any icons

2015-11-04 Thread Kajetan Kaczmarek
Public bug reported:

Nautilus and Nemo crash when I try move any icon. Rest function working
normally. You can see it on this movie:
https://www.youtube.com/watch?v=eg5W9mCerxY

Error:
(nautilus:8645): Gdk-ERROR **: The program 'nautilus' received an X Window 
System error.
This probably reflects a bug in the program.
The error was 'BadWindow (invalid Window parameter)'.
  (Details: serial 2358 error_code 3 request_code 141 (Composite) minor_code 8)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the GDK_SYNCHRONIZE environment
   variable to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)
Pułapka debuggera/breakpoint

system: Linux Mint 17.2 Cinnamon 64 bit 3.16.0-38-generic
Cinnamon: 2.6.13
 
nautilus 3.10.1
nemo 2.6.7

** Affects: nautilus (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/1513162

Title:
  Nautilus crash when try move any icons

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

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

[Bug 1413316] Re: Dialler shows 'No network' even though SIM is present (vivid)

2015-01-31 Thread Kajetan
I can reproduce this on my Nexus 4 (which has one sim slot).

When I ran /usr/bin/ofono-setup I got the following output:
mc-tool: couldn't load account 'ofono/ofono/account0': Method GetAll with 
signature s on interface org.freedesktop.DBus.Properties doesn't exist
Try 'mc-tool list' to list known accounts.
creating ofono/ofono/account0
ofono/ofono/account0
enabling ofono/ofono/account0
ofono accounts initialized

After a reboot everything worked as expected.


OS Build Details:
OS build number: 86
Ubuntu Image part: 20150131
Ubuntu build description: Ubuntu Vivid Verver (development branch) - armhf 
(20150131-020204)
Device Image part: 20150129
Device build description: aosp_mako-userdebug 4.4.2 KOT49H 
20141117-0039-0ubuntu9 test-keys

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

Title:
  Dialler shows 'No network' even though SIM is present (vivid)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1413316/+subscriptions

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


[Bug 1288747] Re: [334] Parts of the UI randomly flicker when moving the mouse

2014-10-02 Thread Kajetan
@Sir Sword: This problem only occurs when installing the latest nvidia
drivers - when the Additional Drivers utility is used you'll get the
driver version 331.38 (as far as I know). Unless very recent Nvidia
cards are in use version 331.38 should work very well. (However, it
would definitely be useful if that patch would be released, but
extensive testing might still be needed (I have to admit that I'm just
guessing, I'm nowhere near being a developer...))

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

Title:
  [334] Parts of the UI randomly flicker when moving the mouse

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

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


[Bug 1366592] [NEW] empty lines are not shown in messages

2014-09-07 Thread Kajetan
Public bug reported:

It seems that newlines in messages are sent and received, but they are
not shown in the messaging-app (I would expect that they would be
shown). However, the newline is shown in the notification bubble (see
attached screenshot) and in the Notification center.

OS: Ubuntu 14.10 (r203)

Version of the app:
$ apt-cache policy messaging-app
messaging-app:
  Installed: 0.1+14.10.20140813.2-0ubuntu1
  Candidate: 0.1+14.10.20140828.3-0ubuntu1
  Version table:
 0.1+14.10.20140828.3-0ubuntu1 0
500 http://ports.ubuntu.com/ubuntu-ports/ utopic/universe armhf Packages
 *** 0.1+14.10.20140813.2-0ubuntu1 0
100 /var/lib/dpkg/status

** Affects: messaging-app (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: Message in Notification bubble (with newlines) and 
messaging-app (without newlines)
   
https://bugs.launchpad.net/bugs/1366592/+attachment/4198012/+files/2014_09_07_20%3A37%3A41.png

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

Title:
  empty lines are not shown in messages

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

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


[Bug 1362282] Re: Error when trying to update: 'ProcessError: 0 - ErrorInProc...'

2014-09-06 Thread Kajetan
After a sudo apt-get upgrade my device stopped booting and I had to re-
flash Utopic. However, I was able to create a backup of my home
directory (and the log files in it). Right after the flash I was
notified about the same updates that couldn't be installed before.
However, they could be installed without an error this time.

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

Title:
  Error when trying to update: 'ProcessError: 0 - ErrorInProc...'

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

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


[Bug 1362282] [NEW] Error when trying to update: 'ProcessError: 0 - ErrorInProc...'

2014-08-27 Thread Kajetan
Public bug reported:

I'm having problems with updates lately: When I click on the
'update'-button next to the name of a program in the System Settings the
update is downloaded, but is not beeing installed. The error message I
get is ProcessError: 0 - ErrorInProc... (the message is shortened like
this, even in landscape mode). When I click on the 'retry'-button I
either get the same error or sometimes 'DBusError:
org.freedesktop.DBus.Error.UnknownObject No s...'.

Since I get the same error message for nine updates that could be
installed I suspect that there could be a bug in the System Settings.
However, a PayUI update installed without an error.

Are there logfiles which could help to pinpoint the problem?


Device: Nexus 4
OS: Ubuntu 14.10 (r203)

** Affects: ubuntu-system-settings (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/1362282

Title:
  Error when trying to update: 'ProcessError: 0 - ErrorInProc...'

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

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


[Bug 1303028] Re: fscanf is not behaving as expected under certain circumstances

2014-04-06 Thread Kajetan
I'm sorry, I was quite sure that it was a bug in this version of the compiler 
because it worked in version 4.8
Could you eventually point out where I could get help with the code? I am 
rather new to programming.

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

Title:
  fscanf is not behaving as expected under certain circumstances

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

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


[Bug 1303028] Re: fscanf is not behaving as expected under certain circumstances

2014-04-06 Thread Kajetan
I'm sorry, I was quite sure that it was a bug in this version of the
compiler because it worked in version 4.8

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

Title:
  fscanf is not behaving as expected under certain circumstances

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

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


[Bug 1303028] [NEW] fscanf is not behaving as expected under certain circumstances

2014-04-05 Thread Kajetan
Public bug reported:

When I compile the attached program I do not get any errors or warnings. When I 
execute it it causes a segmentation fault at the last call of fscanf and 
something strange happens: the index ('z') gets the value that the variable 
('core') should get.
This causes fclose to close the wrong file which then leads to the segmentation 
fault.
This only happens when the last two digits (in binary) of 'CORECOUNT' are '1' 
(e.g. CORECOUNT=3 (0011)).
When declaring another integer (e.g. tmp) and setting it to 0 the program works 
as expected when the last two binary digits of 'CORECOUNT' are '1'. When this 
is not the case (e.g. 'CORECOUNT'=4) the program won't work anymore and might 
in some cases segfault.

OS: Ubuntu 12.04.4 LTS (via 'lsb_release -rd')
version of gcc: 4.6.3-1ubuntu5 (via 'apt-cache policy gcc'; for more details 
see below)

This program does not work on other computers with gcc 4.6 but it works
with gcc 4.8


$ apt-cache policy gcc
gcc:
  Installed: 4:4.6.3-1ubuntu5
  Candidate: 4:4.6.3-1ubuntu5
  Version table:
 *** 4:4.6.3-1ubuntu5 0
500 http://at.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
100 /var/lib/dpkg/status

** Affects: gcc-4.6 (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: errtest.c
   https://bugs.launchpad.net/bugs/1303028/+attachment/4067392/+files/errtest.c

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

Title:
  fscanf is not behaving as expected under certain circumstances

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

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


[Bug 1303028] Re: fscanf is not behaving as expected under certain circumstances

2014-04-05 Thread Kajetan
** Attachment added: testinput
   
https://bugs.launchpad.net/ubuntu/+source/gcc-4.6/+bug/1303028/+attachment/4067393/+files/testinput

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

Title:
  fscanf is not behaving as expected under certain circumstances

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

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


[Bug 1293105] [NEW] Keyboard shortcuts not working in SuperTuxKart 0.8.1 in Ubuntu 12.04

2014-03-16 Thread Kajetan
Public bug reported:

When I play SuperTuxKart fullscreen I can not use any keyboard shortcuts. Only 
Ctrl+Alt+[1-7] are working.
Ctrl and Alt keys seem to be ignored; when I press Ctrl+Alt+Arrow Key to switch 
between workspaces the menues are selected as if I would only press the arrow 
keys. This also applies when I use Unity2D.
However, when I don't play it fullscreen everything works perfectly.

I have not noticed any problems in other fullscreen applications yet.


version of SuperTuxKart: 0.8.1 (I use ppa:stk/dev; output of 'apt-cache policy 
pkgname' is further below)
version of Irrlicht: 1.8.0
version of Ubuntu: Ubuntu 12.04.4 LTS (via lsb_release -rd)
(window manager: compiz)
version of compiz: 0.9.7.12
(version of Kernel: 3.11.0-18)

$ apt-cache policy supertuxkart
supertuxkart:
  Installed: 0.8.1-0donk1
  Candidate: 0.8.1-0donk1
  Version table:
 *** 0.8.1-0donk1 0
500 http://ppa.launchpad.net/stk/dev/ubuntu/ precise/main amd64 Packages
100 /var/lib/dpkg/status
 0.8-1~ubuntu12.04.1 0
100 http://at.archive.ubuntu.com/ubuntu/ precise-backports/universe 
amd64 Packages
 0.7+dfsg1-2 0
500 http://at.archive.ubuntu.com/ubuntu/ precise/universe amd64 Packages

** Affects: supertuxkart (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/1293105

Title:
  Keyboard shortcuts not working in SuperTuxKart 0.8.1 in Ubuntu 12.04

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

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


[Bug 1287168] Re: installing freeglut3-dev would remove lots of GUI related packages

2014-03-08 Thread Kajetan
I found a workaround:
I downgraded my Nvidia-driver from version 331.20 to version 304.116 using 
jockey-gtk. Then I had to remove mesa-common-dev and then I could install 
freeglut3-dev. Now I'm going to try to install the latest Nvidia-driver again 
to find out if it breaks something...

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

Title:
   installing freeglut3-dev would remove lots of GUI related packages

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

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


[Bug 1287168] Re: installing freeglut3-dev would remove lots of GUI related packages

2014-03-08 Thread Kajetan
It didn't break anything.
nvidia-xserver-settings even stopped segfaulting :D

However, installing freeglut3-dev this way is a bit inconvenient...

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

Title:
   installing freeglut3-dev would remove lots of GUI related packages

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

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


[Bug 1287168] [NEW] installing freeglut3-dev would remove lots of GUI related packages

2014-03-03 Thread Kajetan
Public bug reported:


When I try to install freeglut3-dev via command line apt says that a lot of 
packages would be removed when I continued.

To be more accurate:

$ sudo apt-get install freeglut3-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
  x11-apps x11-session-utils x11-xfs-utils xinit libfs6
Use 'apt-get autoremove' to remove them.
The following extra packages will be installed:
  libgl1-mesa-dev libgl1-mesa-glx libgl1-mesa-glx:i386 libglapi-mesa 
libglapi-mesa:i386 libglu1-mesa-dev
  libx11-xcb-dev libxcb-glx0-dev libxdamage-dev libxext-dev libxfixes-dev 
libxxf86vm-dev
  x11proto-damage-dev x11proto-dri2-dev x11proto-fixes-dev x11proto-gl-dev 
x11proto-xext-dev
  x11proto-xf86vidmode-dev xserver-xorg xserver-xorg-core 
xserver-xorg-input-evdev
Suggested packages:
  xfonts-100dpi xfonts-75dpi
The following packages will be REMOVED:
  libegl1-mesa-drivers-lts-saucy libegl1-mesa-lts-saucy libgbm1-lts-saucy 
libgl1-mesa-dri-lts-saucy
  libgl1-mesa-dri-lts-saucy:i386 libgl1-mesa-glx-lts-saucy 
libgl1-mesa-glx-lts-saucy:i386 libglamor-ltss0
  libglapi-mesa-lts-saucy libglapi-mesa-lts-saucy:i386 
libopenvg1-mesa-lts-saucy libxatracker1-lts-saucy
  ubuntu-desktop x11-xserver-utils-lts-saucy xorg xserver-common-lts-saucy 
xserver-xorg-core-lts-saucy
  xserver-xorg-glamoregl-lts-saucy xserver-xorg-input-all-lts-saucy 
xserver-xorg-input-evdev-lts-saucy
  xserver-xorg-input-mouse-lts-saucy xserver-xorg-input-synaptics-lts-saucy
  xserver-xorg-input-vmmouse-lts-saucy xserver-xorg-input-wacom-lts-saucy 
xserver-xorg-lts-saucy
  xserver-xorg-video-all-lts-saucy xserver-xorg-video-ati-lts-saucy 
xserver-xorg-video-cirrus-lts-saucy
  xserver-xorg-video-fbdev-lts-saucy xserver-xorg-video-intel-lts-saucy 
xserver-xorg-video-mach64-lts-saucy
  xserver-xorg-video-mga-lts-saucy xserver-xorg-video-modesetting-lts-saucy
  xserver-xorg-video-neomagic-lts-saucy xserver-xorg-video-nouveau-lts-saucy
  xserver-xorg-video-openchrome-lts-saucy xserver-xorg-video-r128-lts-saucy
  xserver-xorg-video-radeon-lts-saucy xserver-xorg-video-s3-lts-saucy 
xserver-xorg-video-savage-lts-saucy
  xserver-xorg-video-siliconmotion-lts-saucy xserver-xorg-video-sis-lts-saucy
  xserver-xorg-video-sisusb-lts-saucy xserver-xorg-video-tdfx-lts-saucy
  xserver-xorg-video-trident-lts-saucy xserver-xorg-video-vesa-lts-saucy
  xserver-xorg-video-vmware-lts-saucy
The following NEW packages will be installed:
  freeglut3-dev libgl1-mesa-dev libgl1-mesa-glx libgl1-mesa-glx:i386 
libglapi-mesa libglapi-mesa:i386
  libglu1-mesa-dev libx11-xcb-dev libxcb-glx0-dev libxdamage-dev libxext-dev 
libxfixes-dev libxxf86vm-dev
  x11proto-damage-dev x11proto-dri2-dev x11proto-fixes-dev x11proto-gl-dev 
x11proto-xext-dev
  x11proto-xf86vidmode-dev xserver-xorg xserver-xorg-core 
xserver-xorg-input-evdev
0 upgraded, 22 newly installed, 47 to remove and 0 not upgraded.
Need to get 3,158 kB of archives.
After this operation, 42.4 MB disk space will be freed.
Do you want to continue [Y/n]?

I am sure that I need a lot of packages that would be removed (e.g. xorg
and ubuntu-desktop).


My release: 
$ lsb_release -rd
Description:Ubuntu 12.04.4 LTS
Release:12.04

My system specifitactions:
Architecture: x86-64
GPU: Nvidia (GTX 670m)
Graphics driver version: 331.20

$ apt-cache policy freeglut3-dev 
freeglut3-dev:
  Installed: (none)
  Candidate: 2.6.0-1ubuntu3
  Version table:
 2.6.0-1ubuntu3 0
500 http://at.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 
Packages
 2.6.0-1ubuntu2 0
500 http://at.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

** Affects: freeglut (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/1287168

Title:
   installing freeglut3-dev would remove lots of GUI related packages

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

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


[Bug 730779] [NEW] package libnunit2.4-cil 2.4.7 dfsg-5 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

I installed 10.4

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libnunit2.4-cil 2.4.7+dfsg-5
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:42:55 2011
ErrorMessage:
 ErrorMessage: Kein Paket namens »libnunit2.4-cil« ist installiert, kann nicht 
konfigurieren
PackageArchitecture: all
SourcePackage: nunit
Title: package libnunit2.4-cil 2.4.7+dfsg-5 failed to install/upgrade:

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package libnunit2.4-cil 2.4.7 dfsg-5 failed to install/upgrade:

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

[Bug 730779] Re: package libnunit2.4-cil 2.4.7 dfsg-5 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730779

Title:
  package libnunit2.4-cil 2.4.7 dfsg-5 failed to install/upgrade:

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


[Bug 730784] [NEW] package libgnome-vfs2.0-cil 2.24.1-6ubuntu1 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. Perhaps this hint helps you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libgnome-vfs2.0-cil 2.24.1-6ubuntu1
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:41:38 2011
ErrorMessage:
 ErrorMessage: Paket libgnome-vfs2.0-cil ist schon installiert und konfiguriert
PackageArchitecture: all
SourcePackage: gnome-sharp2
Title: package libgnome-vfs2.0-cil 2.24.1-6ubuntu1 failed to install/upgrade:

** Affects: ubuntu
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package libgnome-vfs2.0-cil 2.24.1-6ubuntu1 failed to install/upgrade:

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


[Bug 730784] Re: package libgnome-vfs2.0-cil 2.24.1-6ubuntu1 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730784

Title:
  package libgnome-vfs2.0-cil 2.24.1-6ubuntu1 failed to install/upgrade:

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


[Bug 730796] [NEW] package libmono-addins0.2-cil 0.4-6 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. Perhaps this hint helps you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libmono-addins0.2-cil 0.4-6
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:41:48 2011
ErrorMessage:
 ErrorMessage: Paket libmono-addins0.2-cil ist schon installiert und 
konfiguriert
PackageArchitecture: all
SourcePackage: mono-addins
Title: package libmono-addins0.2-cil 0.4-6 failed to install/upgrade:

** Affects: mono-addins (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package libmono-addins0.2-cil 0.4-6 failed to install/upgrade:

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


[Bug 730796] Re: package libmono-addins0.2-cil 0.4-6 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730796

Title:
  package libmono-addins0.2-cil 0.4-6 failed to install/upgrade:

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


[Bug 730795] [NEW] package gvfs-bin 1.6.1-0ubuntu1build1 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

Binary package hint: gvfs

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. Perhaps this hint helps you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: gvfs-bin 1.6.1-0ubuntu1build1
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:42:55 2011
ErrorMessage:
 ErrorMessage: Kein Paket namens »gvfs-bin« ist installiert, kann nicht 
konfigurieren
SourcePackage: gvfs
Title: package gvfs-bin 1.6.1-0ubuntu1build1 failed to install/upgrade:

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


** Tags: apport-package i386 lucid

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

Title:
  package gvfs-bin 1.6.1-0ubuntu1build1 failed to install/upgrade:

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

[Bug 730795] Re: package gvfs-bin 1.6.1-0ubuntu1build1 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730795

Title:
  package gvfs-bin 1.6.1-0ubuntu1build1 failed to install/upgrade:

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


[Bug 730794] [NEW] package evolution-couchdb (not installed) failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

Binary package hint: evolution-couchdb

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. Perhaps this hint helps you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: evolution-couchdb (not installed)
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:40:36 2011
ErrorMessage:
 ErrorMessage: Kein Paket namens »evolution-couchdb« ist installiert, kann 
nicht konfigurieren
SourcePackage: evolution-couchdb
Title: package evolution-couchdb (not installed) failed to install/upgrade:

** Affects: evolution-couchdb (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package evolution-couchdb (not installed) failed to install/upgrade:

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

[Bug 730794] Re: package evolution-couchdb (not installed) failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730794

Title:
  package evolution-couchdb (not installed) failed to install/upgrade:

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


[Bug 730791] [NEW] package libcouchdb-glib-1.0-2 (not installed) failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. Perhaps this hint helps you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libcouchdb-glib-1.0-2 (not installed)
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:40:26 2011
ErrorMessage:
 ErrorMessage: Kein Paket namens »libcouchdb-glib-1.0-2« ist installiert, kann 
nicht konfigurieren
SourcePackage: couchdb-glib
Title: package libcouchdb-glib-1.0-2 (not installed) failed to install/upgrade:

** Affects: couchdb-glib (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package libcouchdb-glib-1.0-2 (not installed) failed to
  install/upgrade:

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

[Bug 730791] Re: package libcouchdb-glib-1.0-2 (not installed) failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730791

Title:
  package libcouchdb-glib-1.0-2 (not installed) failed to
  install/upgrade:

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


[Bug 730789] [NEW] package librecode0 3.6-17 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

Binary package hint: recode

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. Perhaps this hint helps you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: librecode0 3.6-17
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:43:36 2011
ErrorMessage:
 ErrorMessage: Paket librecode0 ist schon installiert und konfiguriert
SourcePackage: recode
Title: package librecode0 3.6-17 failed to install/upgrade:

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


** Tags: apport-package i386 lucid

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

Title:
  package librecode0 3.6-17 failed to install/upgrade:

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


[Bug 730789] Re: package librecode0 3.6-17 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730789

Title:
  package librecode0 3.6-17 failed to install/upgrade:

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


[Bug 730787] [NEW] package libglib2.0-cil 2.12.9-4 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

Binary package hint: gtk-sharp2

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. Perhaps this hint helps you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: libglib2.0-cil 2.12.9-4
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:40:56 2011
ErrorMessage:
 ErrorMessage: Paket libglib2.0-cil ist schon installiert und konfiguriert
SourcePackage: gtk-sharp2
Title: package libglib2.0-cil 2.12.9-4 failed to install/upgrade:

** Affects: gtk-sharp2 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package libglib2.0-cil 2.12.9-4 failed to install/upgrade:

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


[Bug 730787] Re: package libglib2.0-cil 2.12.9-4 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730787

Title:
  package libglib2.0-cil 2.12.9-4 failed to install/upgrade:

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


[Bug 730800] [NEW] package freeglut3 2.6.0-0ubuntu2 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. The system asked me to send this message. Perhaps this hint helps
you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: freeglut3 2.6.0-0ubuntu2
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:43:48 2011
ErrorMessage:
 ErrorMessage: Paket freeglut3 ist schon installiert und konfiguriert
SourcePackage: freeglut
Title: package freeglut3 2.6.0-0ubuntu2 failed to install/upgrade:

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


** Tags: apport-package i386 lucid

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

Title:
  package freeglut3 2.6.0-0ubuntu2 failed to install/upgrade:

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


[Bug 730799] [NEW] package fortunes-min 1:1.99.1-3.1ubuntu4 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
Public bug reported:

Binary package hint: fortune-mod

I installed 10.4. Sorry I am not an expert and am not sure, if it is a
bug. The system asked me to send this message. Perhaps this hint helps
you.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: fortunes-min 1:1.99.1-3.1ubuntu4
ProcVersionSignature: Ubuntu 2.6.32-29.58-generic 2.6.32.28+drm33.13
Uname: Linux 2.6.32-29-generic i686
Architecture: i386
Date: Mon Mar  7 17:43:42 2011
ErrorMessage:
 ErrorMessage: Paket fortunes-min ist schon installiert und konfiguriert
PackageArchitecture: all
SourcePackage: fortune-mod
Title: package fortunes-min 1:1.99.1-3.1ubuntu4 failed to install/upgrade:

** Affects: fortune-mod (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-package i386 lucid

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

Title:
  package fortunes-min 1:1.99.1-3.1ubuntu4 failed to install/upgrade:

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


[Bug 730799] Re: package fortunes-min 1:1.99.1-3.1ubuntu4 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730799

Title:
  package fortunes-min 1:1.99.1-3.1ubuntu4 failed to install/upgrade:

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


[Bug 730800] Re: package freeglut3 2.6.0-0ubuntu2 failed to install/upgrade:

2011-03-07 Thread Kajetan Löffler
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/730800

Title:
  package freeglut3 2.6.0-0ubuntu2 failed to install/upgrade:

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


[Bug 594702] [NEW] bottom 1/3 of mouse cursor flickers in and out of existance

2010-06-15 Thread Kajetan
Public bug reported:

Binary package hint: xorg

When moving mouse around the screen the bottom 1/3 of mouse cursor
flickers in and out of existence.  The PC is a Dell Dimension 4400.
Lspci reports the graphics card as:

VGA compatible controller: ATI Technologies Inc Rage 128 Pro Ultra TF

I have tried different refresh rates and resolutions but nothing I tried
so far helps.

I can provide Dell Service Tag is that is useful.

This also happens in Lucid Lynx.  I was hoping it would get fixed in
Maverick Meerkat but no luck so far.

Best regards, 
Kajetan.

ProblemType: Bug
DistroRelease: Ubuntu 10.10
Package: xorg 1:7.5+6ubuntu1
ProcVersionSignature: Ubuntu 2.6.35-2.3-generic 2.6.35-rc2
Uname: Linux 2.6.35-2-generic i686
Architecture: i386
CurrentDmesg:
 [   29.640044] eth0: no IPv6 routers present
 [  303.284045] end_request: I/O error, dev fd0, sector 0
Date: Tue Jun 15 13:17:10 2010
DkmsStatus: Error: [Errno 2] No such file or directory
InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Alpha i386 (20100602.2)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
 Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: Dell Computer Corporation DIM4400
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.35-2-generic 
root=UUID=25eea90f-2ed9-4c6a-aff9-f4bd2c0ceddb ro quiet splash
ProcEnviron:
 LANG=en_CA.utf8
 SHELL=/bin/bash
SourcePackage: xorg
dmi.bios.date: 03/14/2002
dmi.bios.vendor: Intel Corp.
dmi.bios.version: A05
dmi.board.name: D845PT
dmi.board.vendor: Intel Corporation
dmi.board.version: AAA67834-304
dmi.chassis.type: 6
dmi.chassis.vendor: Dell Computer Corporation
dmi.modalias: 
dmi:bvnIntelCorp.:bvrA05:bd03/14/2002:svnDellComputerCorporation:pnDIM4400:pvr:rvnIntelCorporation:rnD845PT:rvrAAA67834-304:cvnDellComputerCorporation:ct6:cvr:
dmi.product.name: DIM4400
dmi.sys.vendor: Dell Computer Corporation
glxinfo: Error: [Errno 2] No such file or directory
system:
 distro: Ubuntu
 codename:   maverick
 architecture:   i686
 kernel: 2.6.35-2-generic

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


** Tags: apport-bug i386 maverick

-- 
bottom 1/3 of mouse cursor flickers in and out of existance
https://bugs.launchpad.net/bugs/594702
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 594702] Re: bottom 1/3 of mouse cursor flickers in and out of existance

2010-06-15 Thread Kajetan

** Attachment added: BootDmesg.txt
   http://launchpadlibrarian.net/50384765/BootDmesg.txt

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

** Attachment added: GdmLog.txt
   http://launchpadlibrarian.net/50384767/GdmLog.txt

** Attachment added: GdmLog1.txt
   http://launchpadlibrarian.net/50384768/GdmLog1.txt

** Attachment added: GdmLog2.txt
   http://launchpadlibrarian.net/50384769/GdmLog2.txt

** Attachment added: Lspci.txt
   http://launchpadlibrarian.net/50384770/Lspci.txt

** Attachment added: PciDisplay.txt
   http://launchpadlibrarian.net/50384771/PciDisplay.txt

** Attachment added: ProcCpuinfo.txt
   http://launchpadlibrarian.net/50384772/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   http://launchpadlibrarian.net/50384773/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   http://launchpadlibrarian.net/50384774/ProcModules.txt

** Attachment added: RelatedPackageVersions.txt
   http://launchpadlibrarian.net/50384775/RelatedPackageVersions.txt

** Attachment added: UdevDb.txt
   http://launchpadlibrarian.net/50384776/UdevDb.txt

** Attachment added: UdevLog.txt
   http://launchpadlibrarian.net/50384777/UdevLog.txt

** Attachment added: XorgLog.txt
   http://launchpadlibrarian.net/50384778/XorgLog.txt

** Attachment added: XorgLogOld.txt
   http://launchpadlibrarian.net/50384779/XorgLogOld.txt

** Attachment added: Xrandr.txt
   http://launchpadlibrarian.net/50384780/Xrandr.txt

** Attachment added: monitors.xml.txt
   http://launchpadlibrarian.net/50384781/monitors.xml.txt

** Attachment added: setxkbmap.txt
   http://launchpadlibrarian.net/50384782/setxkbmap.txt

** Attachment added: xdpyinfo.txt
   http://launchpadlibrarian.net/50384783/xdpyinfo.txt

** Attachment added: xkbcomp.txt
   http://launchpadlibrarian.net/50384784/xkbcomp.txt

-- 
bottom 1/3 of mouse cursor flickers in and out of existance
https://bugs.launchpad.net/bugs/594702
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 150642] Re: Full screen preview of screen saver broken

2008-05-06 Thread Kajetan
Results from Hardy Heron are not encouraging.  Here's a screen shot I
just took.  BTW, I didn't install Hardy, I just ran it live off the CD.
Thinboy00, can you try Hardly live and post your screen shot?

** Attachment added: Screenshot.png
   http://launchpadlibrarian.net/14265505/Screenshot.png

-- 
Full screen preview of screen saver broken
https://bugs.launchpad.net/bugs/150642
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 150642] Re: Full screen preview of screen saver broken

2008-04-03 Thread Kajetan
I'm having the same problem on my Latitude D610.  Here's a screen shot
of Planetary Gears.  What a mess!

The issue seems to be hardware related as the same preview renders fine
on my nVidia video card based desktop .  Inside my laptop Device Manager
reports Mobile 915GM/GMS/910GML Express Graphics Controller as my
video subsystem.

** Attachment added: Screenshot.png
   http://launchpadlibrarian.net/13104592/Screenshot.png

-- 
Full screen preview of screen saver broken
https://bugs.launchpad.net/bugs/150642
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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