[Bug 1814886] [NEW] log is filled with warnings, causing graph generation to fail

2019-02-06 Thread joosteto
Public bug reported:

battery-graph shows empty graphs.

Cause: the battery-log on my system looks like this:

No power supply found
1549454931 94.23 1 2019/02/06 13:08:51 -
No power supply found
1549454991 94.57 1 2019/02/06 13:09:51 -

This is because the power adapter in /sys/class/power_supply is called
slightly different from what battery-stat-collector excpects:

$ ls /sys/class/power_supply
AC0  BAT0

And the relevant section from /usr/sbin/battery-stats-collector :
if [ -f /sys/class/power_supply/AC/online ]; then
aconline=$(cat /sys/class/power_supply/AC/online)
elif [ -f /sys/class/power_supply/ACAD/online ]; then
aconline=$(cat /sys/class/power_supply/ACAD/online)
elif [ -f /sys/class/power_supply/ADP1/online ]; then
aconline=$(cat /sys/class/power_supply/ADP1/online)
else
echo "No power supply found"
fi

Just removing the else and echo statements at least makes the 'No power
supply found' warning messages to go away from the log, and battery-
graph works again.

Another fix would be to add AC0 to the tested directories, for example
by replacing all of the tests above by:

for d in /sys/class/power_supply/{AC,AD}*/online; do
  if test -f $d; then
 aconline=$(cat $d)
 break;
  fi;
done

See also:
https://github.com/petterreinholdtsen/battery-stats/issues/23

Thanks,

ProblemType: Bug
DistroRelease: Ubuntu 18.10
Package: battery-stats 0.5.6-1 [modified: usr/sbin/battery-stats-collector]
ProcVersionSignature: Ubuntu 4.18.0-13.14-generic 4.18.17
Uname: Linux 4.18.0-13-generic x86_64
ApportVersion: 2.20.10-0ubuntu13.1
Architecture: amd64
CurrentDesktop: i3
Date: Wed Feb  6 13:07:41 2019
InstallationDate: Installed on 2019-01-16 (20 days ago)
InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 (20181017.3)
SourcePackage: battery-stats
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: battery-stats (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug cosmic

** Description changed:

  battery-graph shows empty graphs.
  
  Cause: the battery-log on my system looks like this:
  
  No power supply found
  1549454931 94.23 1 2019/02/06 13:08:51 -
  No power supply found
  1549454991 94.57 1 2019/02/06 13:09:51 -
  
  This is because the power adapter in /sys/class/power_supply is called
  slightly different from what battery-stat-collector excpects:
  
  $ ls /sys/class/power_supply
  AC0  BAT0
  
  And the relevant section from /usr/sbin/battery-stats-collector :
- if [ -f /sys/class/power_supply/AC/online ]; then
- aconline=$(cat /sys/class/power_supply/AC/online)
- elif [ -f /sys/class/power_supply/ACAD/online ]; then
- aconline=$(cat /sys/class/power_supply/ACAD/online)
- elif [ -f /sys/class/power_supply/ADP1/online ]; then
- aconline=$(cat /sys/class/power_supply/ADP1/online)
- else
- echo "No power supply found"
- fi
+ if [ -f /sys/class/power_supply/AC/online ]; then
+ aconline=$(cat /sys/class/power_supply/AC/online)
+ elif [ -f /sys/class/power_supply/ACAD/online ]; then
+ aconline=$(cat /sys/class/power_supply/ACAD/online)
+ elif [ -f /sys/class/power_supply/ADP1/online ]; then
+ aconline=$(cat /sys/class/power_supply/ADP1/online)
+ else
+ echo "No power supply found"
+ fi
  
  Just removing the else and echo statements at least makes the 'No power
  supply found' warning messages to go away from the log, and battery-
  graph works again.
  
  Another fix would be to add AC0 to the tested directories, for example
  by replacing all of the tests above by:
  
- for d in /sys/class/power_supply/{AC,AD}*/online; do 
-   if test -f $d; then
-  aconline=$(cat $d)
-  echo $d; 
-  break; 
-   fi; 
- done 
+ for d in /sys/class/power_supply/{AC,AD}*/online; do
+   if test -f $d; then
+  aconline=$(cat $d)
+  break;
+   fi;
+ done
  
  See also:
  https://github.com/petterreinholdtsen/battery-stats/issues/23
  
  Thanks,
  
  ProblemType: Bug
  DistroRelease: Ubuntu 18.10
  Package: battery-stats 0.5.6-1 [modified: usr/sbin/battery-stats-collector]
  ProcVersionSignature: Ubuntu 4.18.0-13.14-generic 4.18.17
  Uname: Linux 4.18.0-13-generic x86_64
  ApportVersion: 2.20.10-0ubuntu13.1
  Architecture: amd64
  CurrentDesktop: i3
  Date: Wed Feb  6 13:07:41 2019
  InstallationDate: Installed on 2019-01-16 (20 days ago)
  InstallationMedia: Ubuntu 18.10 "Cosmic Cuttlefish" - Release amd64 
(20181017.3)
  SourcePackage: battery-stats
  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/1814886

Title:
  log is filled with warnings, causing graph generation to fail

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

-- 

[Bug 1811816] Re: Ubiquity crashed during Ubuntu install

2019-01-15 Thread joosteto
Thanks!
Yes, looks like the USB stick is probably corrupt.
Running:
  cmp ubuntu-18.10-desktop-amd64.iso /dev/sdc
Gives a different byte at about 117M.
Don't have a different USB-stick handy at the moment, so will try later.
For now, I guess this report can be changed to 'invalid'.
(Or it may be turned into a wishlist to generate a somewhat more helpful error 
message in cases like these...)

Thanks again,

** Changed in: ubiquity (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  Ubiquity crashed during Ubuntu install

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

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

[Bug 1811816] [NEW] Ubiquity crashed during Ubuntu install

2019-01-15 Thread joosteto
Public bug reported:

Just after I specified the partition division, and Ubuntu started to
resize the windows partition (ssd) this error came

ProblemType: Bug
DistroRelease: Ubuntu 18.04
Package: ubiquity 18.04.14.6
ProcVersionSignature: Ubuntu 4.15.0-29.31-generic 4.15.18
Uname: Linux 4.15.0-29-generic x86_64
ApportVersion: 2.20.9-0ubuntu7.2
Architecture: amd64
CasperVersion: 1.394
CurrentDesktop: ubuntu:GNOME
Date: Tue Jan 15 13:21:45 2019
InstallCmdLine: BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed 
boot=casper only-ubiquity quiet splash ---
LiveMediaBuild: Ubuntu 18.04.1 LTS "Bionic Beaver" - Release amd64 (20180725)
ProcEnviron:
 LANGUAGE=en_US.UTF-8
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 LC_NUMERIC=C.UTF-8
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug bionic ubiquity-18.04.14.6 ubuntu

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

Title:
  Ubiquity crashed during Ubuntu install

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

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

[Bug 1731928] Re: Evince hangs giving "Failed to Reload: Timeout was reached"

2017-12-28 Thread joosteto
I just saw this bug too.

Do we both happen to have linux kernel 4.14.0 installed? Mine is 
custom-compiled,
and I believe 4.14.0 isn't part of ubuntu 17.10 yet, right?

DistroRelease: Ubuntu 17.10

uname -a
Linux abelo 4.14.0-custom #1 SMP Wed Nov 15 19:50:07 CET 2017 x86_64 x86_64 
x86_64 GNU/Linux

dpkg -l evince
[...]
ii  evince 3.26.0-1   amd64  Document 
(PostScript, PDF) viewer

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

Title:
  Evince hangs giving "Failed to Reload: Timeout was reached"

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

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

[Bug 1215733] Re: cups config files cannot deal with symlinks and/or other filesystems

2014-07-27 Thread joosteto
Many thanks to Peter Teuben, and for finding that the cause of the 'permission 
denied' actually is the symlink from /usr/share to /home.
I can say the symlink also causes cups to fail in Ubuntu 14.04 (Trusty Tahr)

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

Title:
  cups config files cannot deal with symlinks and/or other filesystems

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

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


Re: [Bug 282342] Re: endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU

2013-06-13 Thread joosteto
No, I haven't seen it in a long time
On Jun 12, 2013 9:21 PM, Phillip Susi ps...@ubuntu.com wrote:

 8.10 has reached end of life.  Do you still have this problem on 12.04
 or later?


 ** Changed in: acpid (Ubuntu)
Status: New = Incomplete

 --
 You received this bug notification because you are subscribed to the bug
 report.
 https://bugs.launchpad.net/bugs/282342

 Title:
   endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU

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


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

Title:
  endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU

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

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


[Bug 930436] Re: mission-control-5 crashed with signal 5 in g_object_newv()

2013-04-07 Thread joosteto
Why was this bug marked as 'invalid'?
Ubuntu reported it every time I booted/logged in to 12.10; and again when I 
booted/logged in to 13.04 beta.
It is the reason i finnaly did

aptitude remove telepathy-mission-control-5


** Changed in: telepathy-mission-control-5 (Ubuntu)
   Status: Invalid = Confirmed

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

Title:
  mission-control-5 crashed with signal 5 in g_object_newv()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-mission-control-5/+bug/930436/+subscriptions

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


[Bug 930436] Re: mission-control-5 crashed with signal 5 in g_object_newv()

2013-04-06 Thread joosteto
Just upgraded to 13.04, beta, and the first message I see after logging
in is this error.

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

Title:
  mission-control-5 crashed with signal 5 in g_object_newv()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-mission-control-5/+bug/930436/+subscriptions

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


[Bug 1071909] Re: package mysql-server-5.5 5.5.28-0ubuntu0.12.04.2 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2012-11-10 Thread joosteto
Maybe I run into this bug too. For me the install hangs, and returns an error 
message when I press ^C.
The logfile /var/log/upstart/mysql.log you mention has an access time of the 
10'th of november, so apparently mysql doesn't log anything there.
While the upgrade (first aptitute upgrade, now dpkg --configure -a) runs 
(hangs), I see this in ps ax | grep mysql:

20724 pts/2S+ 0:00 /usr/bin/perl -w /usr/share/debconf/frontend 
/var/lib/dpkg/info/mysql-server-5.5.postinst configure 5.5.27-0ubuntu2
20734 pts/2S+ 0:00 /bin/bash -e 
/var/lib/dpkg/info/mysql-server-5.5.postinst configure 5.5.27-0ubuntu2
20898 pts/2S+ 0:00 /bin/sh /usr/sbin/invoke-rc.d mysql start
20914 pts/2S+ 0:00 /bin/sh -e /etc/init.d/mysql start
20925 pts/2S+ 0:00 start mysql
22241 ?Ssl0:00 /usr/sbin/mysqld
22269 pts/3S+ 0:00 grep --color=auto mysql

Pressing ^C and running the invoke-rc.d script, I get:

# /bin/sh /usr/sbin/invoke-rc.d mysql start
Rather than invoking init scripts through /etc/init.d, use the service(8)
utility, e.g. service mysql start

Since the script you are attempting to invoke has been converted to an
Upstart job, you may also use the start(8) utility, e.g. start mysql

This is the output I get from running dpkg --configure -a:

# dpkg --configure -a
Setting up mysql-server-5.5 (5.5.28-0ubuntu0.12.10.1) ...
mysql stop/waiting
^Cdpkg: error processing mysql-server-5.5 (--configure):
 subprocess installed post-installation script was interrupted
dpkg: dependency problems prevent configuration of mysql-server:
 mysql-server depends on mysql-server-5.5; however:
  Package mysql-server-5.5 is not configured yet.

dpkg: error processing mysql-server (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 mysql-server-5.5
 mysql-server

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

Title:
  package mysql-server-5.5 5.5.28-0ubuntu0.12.04.2 failed to
  install/upgrade: il sottoprocesso vecchio script di post-installation
  ha restituito lo stato di errore 1

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

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


[Bug 1071909] Re: package mysql-server-5.5 5.5.28-0ubuntu0.12.04.2 failed to install/upgrade: il sottoprocesso vecchio script di post-installation ha restituito lo stato di errore 1

2012-11-10 Thread joosteto
Oh, and about the files in /var/log/mysql you asked about.

While I'm running dpkg --configure -a (and don't stop it):

/var/log/mysql/error.log:
[lot's of lines, gets continuously longer]:
121110 17:48:56  InnoDB: Starting shutdown...
121110 17:48:57  InnoDB: Shutdown completed; log sequence number 2347290
121110 17:48:57 [Note] 
121110 17:48:58 [Note] Plugin 'FEDERATED' is disabled.
121110 17:48:58 InnoDB: The InnoDB memory heap is disabled
121110 17:48:58 InnoDB: Mutexes and rw_locks use GCC atomic builtins
121110 17:48:58 InnoDB: Compressed tables use zlib 1.2.7
121110 17:48:58 InnoDB: Using Linux native AIO
121110 17:48:58 InnoDB: Initializing buffer pool, size = 128.0M
121110 17:48:58 InnoDB: Completed initialization of buffer pool
121110 17:48:58 InnoDB: highest supported file format is Barracuda.
121110 17:48:59  InnoDB: Waiting for the background threads to start
121110 17:49:00 InnoDB: 1.1.8 started; log sequence number 2347290
121110 17:49:00 [ERROR] Aborting

121110 17:49:00  InnoDB: Starting shutdown...
121110 17:49:01  InnoDB: Shutdown completed; log sequence number 2347290
121110 17:49:01 [Note] 
121110 17:49:01 [Note] Plugin 'FEDERATED' is disabled.
121110 17:49:01 InnoDB: The InnoDB memory heap is disabled
121110 17:49:01 InnoDB: Mutexes and rw_locks use GCC atomic builtins
121110 17:49:01 InnoDB: Compressed tables use zlib 1.2.7
121110 17:49:01 InnoDB: Using Linux native AIO
121110 17:49:01 InnoDB: Initializing buffer pool, size = 128.0M
121110 17:49:02 InnoDB: Completed initialization of buffer pool
121110 17:49:02 InnoDB: highest supported file format is Barracuda.
121110 17:49:02  InnoDB: Waiting for the background threads to start

and the file /var/log/upstart/mysql.log contains lots of lines:
121110 17:58:09 [ERROR] Can't find messagefile '/usr/share/mysql/errmsg.sys'
^G/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket 
'/var/run/mysqld/mysqld.sock' (2)'
Check that mysqld is running and that the socket: '/var/run/mysqld/mysqld.sock' 
exists!
^G/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket 
'/var/run/mysqld/mysqld.sock' (2)'
Check that mysqld is running and that the socket: '/var/run/mysqld/mysqld.sock' 
exists!
^G/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket 
'/var/run/mysqld/mysqld.sock' (2)'
Check that mysqld is running and that the socket: '/var/run/mysqld/mysqld.sock' 
exists!
^G/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket 
'/var/run/mysqld/mysqld.sock' (2)'
Check that mysqld is running and that the socket: '/var/run/mysqld/mysqld.sock' 
exists!
121110 17:58:12 [ERROR] Can't find messagefile '/usr/share/mysql/errmsg.sys'

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

Title:
  package mysql-server-5.5 5.5.28-0ubuntu0.12.04.2 failed to
  install/upgrade: il sottoprocesso vecchio script di post-installation
  ha restituito lo stato di errore 1

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

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


[Bug 930436] Re: mission-control-5 crashed with signal 5 in g_object_newv()

2012-09-30 Thread joosteto
Just installed 12.10, beta 2, and I'm getting this error.

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

Title:
  mission-control-5 crashed with signal 5 in g_object_newv()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/telepathy-mission-control-5/+bug/930436/+subscriptions

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


[Bug 360748] Re: GNOME keyboard layout options are not applied on login

2011-05-19 Thread joosteto
I have upgraded to Natty Narwhal, and the Keyboard layouts still works 
incorrectly.
I'll describe this below:


I have both USA and USA Alternative International layouts available (the 
latter against my desire).
I just removed the USA Alternative International layout, logged out, and 
logged in again.

Now the USA Alternative International layout is available again and active: 
when I type this message,
typing U will show Ü. However, the keyboard layout switcher incorrectly shows 
USA (the keyboard I want to use).
I have to click the keyboard layout switcher tool, select USA, and now I can 
just type U to start writing USA.

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

Title:
  GNOME keyboard layout options are not applied on login

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

[Bug 360748] Re: GNOME keyboard layout options are not applied on login

2011-05-19 Thread joosteto
** Attachment added: As one commenter was interested in my XKBLAYOUT in 
/etc/default/console-setup, here's the whole file.
   
https://bugs.launchpad.net/ubuntu/+source/gnome-settings-daemon/+bug/360748/+attachment/2135631/+files/console-setup

** Changed in: gnome-settings-daemon
   Status: Incomplete = New

** Changed in: gnome-settings-daemon (Ubuntu)
   Status: Incomplete = New

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

Title:
  GNOME keyboard layout options are not applied on login

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


[Bug 360748] Re: GNOME keyboard layout options are not applied on login

2010-04-30 Thread joosteto
I'm not the original poster, but I too noticed that each when I remove
alternative international keyboard from the keyboard layouts, the
keyboard reapears on my next reboot.

In the /etc/default/console-setup file (attached) I notice that alt-intl
is specified as XKBVARIANT, so that may be the cause of the problem.

Somehow I would expect my gnome keyboard layout preferences to take
precedence over this /etc/default/console-setup file, though

** Attachment added: /etc/default/console-setup (orignial)
   http://launchpadlibrarian.net/46708360/console-setup

-- 
GNOME keyboard layout options are not applied on login
https://bugs.launchpad.net/bugs/360748
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 360748] Re: GNOME keyboard layout options are not applied on login

2010-04-30 Thread joosteto
I just uncommented the 
  #XKBVARIANT=alt-intl
line in /etc/default/console-setup, and logged out and back in and the USA 
Alternative international (former us_intl) keyboard is again present in my 
keyboard layouts (though fortunately not the default keyboard)

-- 
GNOME keyboard layout options are not applied on login
https://bugs.launchpad.net/bugs/360748
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 445385] Re: Installer hangs at 80% on Configuring apt

2010-03-11 Thread joosteto
This bug still is reproducible even with the 10.04 lucid's alpha 3 iso I just 
downloaded from 
http://cdimage.ubuntu.com/releases/lucid/alpha-3/lucid-netbook-i386.iso

The only change is now that it hangs at 79% (was 80%).

Full text:
Configuring apt, Retrieving file 15 of 28.

When running dpkg -l ubiquity (from VC1), I see the ubiquity version is 2.1.27.
top shows ubiquity has 162 Megabytes of VIRT memory (55 RES), and Xorg and 
ubiquity are the only programs using CPU.

/sbin/ifconfig eth0
shows that the MTU is set at 1500; with scp I tried to copy a 10MByte file, and 
that works OK (and fast).

I did this while installing ubuntu netboox remix inside a Virtual box (Version 
3.1.4), that runs on a WinXP machine.This way I also reproduced the 9.10 80% 
configuring apt hanging (4 times in a row the 9.10 install hangs; the 10.04 
I've only tried once).
The network settings from VirtualBox were all set at default (NAT, etc).

-- 
Installer hangs at 80% on Configuring apt
https://bugs.launchpad.net/bugs/445385
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 445385] Re: Installer hangs at 80% on Configuring apt

2010-03-11 Thread joosteto
An update to my previous problem report:

The problem most likely is the transparent http proxy  at my work that
blocks some files (but not all).

When doing a lucid install with the network disconnected everything was OK. But 
then running
  aptitude update
caused aptitude to get about 12 files, and then stopping while trying to get 
the 13th file.
Configuring my own proxy made the problem go away.

-- 
Installer hangs at 80% on Configuring apt
https://bugs.launchpad.net/bugs/445385
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


Re: [Bug 279798] Re: [intrepid] cannot suspend with module rtl8187 loaded

2010-03-05 Thread joosteto
I and others have confirmed that this bug is fixed now; I've been suspending
my laptop several times a day since the release of 9.10, and never had a
problem.
Is there anything we can/should do now?

On 6 March 2010 01:48, Bug Watch Updater
bugwa...@bugs.launchpad.netwrote:

 ** Changed in: linux
   Status: Confirmed = Incomplete

 --
 [intrepid] cannot suspend with module rtl8187 loaded
 https://bugs.launchpad.net/bugs/279798
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
[intrepid] cannot suspend with module rtl8187 loaded
https://bugs.launchpad.net/bugs/279798
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 451669] [NEW] crashed on clicking 'connect', and denying access to my keyring

2009-10-14 Thread joosteto
Public bug reported:

Binary package hint: ubuntuone-client

what do I need to type here?

ProblemType: Bug
.home.joostje..config.ubuntuone.ubuntuone.client.conf:
 [ubuntuone]
 connected = True
 connect = 0
 show_applet = 1
Architecture: i386
Date: Wed Oct 14 23:40:25 2009
DistroRelease: Ubuntu 9.10
Package: ubuntuone-client 1.0.1-0ubuntu1
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-13.43-generic
SourcePackage: ubuntuone-client
Uname: Linux 2.6.31-13-generic i686

** Affects: ubuntuone-client (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
crashed on clicking 'connect', and denying access to my keyring
https://bugs.launchpad.net/bugs/451669
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 451669] Re: crashed on clicking 'connect', and denying access to my keyring

2009-10-14 Thread joosteto

** Attachment added: .home.joostje..cache.ubuntuone.log.oauth.login.log.txt
   
http://launchpadlibrarian.net/33680598/.home.joostje..cache.ubuntuone.log.oauth.login.log.txt

** Attachment added: 
.home.joostje..cache.ubuntuone.log.syncdaemon.exceptions.log.txt
   
http://launchpadlibrarian.net/33680599/.home.joostje..cache.ubuntuone.log.syncdaemon.exceptions.log.txt

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

** Attachment added: UbuntuoneClientPackages.txt
   http://launchpadlibrarian.net/33680601/UbuntuoneClientPackages.txt

** Attachment added: XsessionErrors.txt
   http://launchpadlibrarian.net/33680602/XsessionErrors.txt

-- 
crashed on clicking 'connect', and denying access to my keyring
https://bugs.launchpad.net/bugs/451669
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 282342] Re: endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU

2008-10-19 Thread joosteto
Oh, and I notice that when I do:

# /etc/init.d/acpid stop
# cat /proc/acpi/event
hotkey ATKD 005f 3545
^C
# /etc/init.d/acpid  start

that then acpid doesn't eat all CPU time any more. The cat-ing of
/proc/acpi/event is necessary, if I don't do it then acpid uses up all
CPU again when I restart it.

The 'hotkey ATKD 005f' seems to be related to a wireless switch. My
labtop does have one, but the problem appears both when this switch is
'on' and 'off'.

-- 
endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU
https://bugs.launchpad.net/bugs/282342
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 278764] Re: [intrepid] No output in ipython because because of wrong default backend

2008-10-17 Thread joosteto
Thanks!
Yes, with the new package installed (with working backend) pylab/matplotlib 
again works the way I expect it to.

-- 
[intrepid] No output in ipython because because of wrong default backend
https://bugs.launchpad.net/bugs/278764
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 239314] Re: segfault and failure to find codec for some .mpg's

2008-10-17 Thread joosteto
I haven't seen this bug for a long time now (nor do I see it in intrepid
beta I'm running now). I think it can be closed.

-- 
segfault and failure to find codec for some .mpg's
https://bugs.launchpad.net/bugs/239314
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


Re: [Bug 283939] Re: compiz.real crashed with SIGSEGV

2008-10-16 Thread joosteto
*** This bug is a duplicate of bug 277906 ***
https://bugs.launchpad.net/bugs/277906

2008/10/16 Apport retracing service [EMAIL PROTECTED]

 *** This bug is a duplicate of bug 277906 ***
https://bugs.launchpad.net/bugs/277906


That may well be, but Sorry, you don't have permission to access this
page. when I try to view the page you mention (and logging in with my
launchpad account).

-- 
compiz.real crashed with SIGSEGV
https://bugs.launchpad.net/bugs/283939
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 278764] Re: [intrepid] No output in ipython because because of wrong default backend

2008-10-12 Thread joosteto
I just tried the patch by Mike Droettboom.

It indeed does show a warning if I run python in the 'normal python
console.

But if I run a file like the one below, I don't get any output nor a warning.
matplotlib in this way does seem to be broken if the default install doens't 
produce output for any of the simple examples in the tutorials. An indication 
what to fix would be less bad, but I feel that the default install should 'just 
work'.

#!/usr/bin/python
import pylab
pylab.plot(range(10), [i*i for i in range(10)])
pylab.show()

-- 
[intrepid] No output in ipython because because of wrong default backend
https://bugs.launchpad.net/bugs/278764
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 282342] [NEW] endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU

2008-10-12 Thread joosteto
Public bug reported:

Binary package hint: acpid

I just installed intrepid on my Toshiba Satellite L40-17O.

The first thing I notice is that CPU usage is continuesly 100%. It turns
out to be acpid that is spawning processes.

Attached is a 'strace -f -p $PID' output.

Details about the labtop are given here:
https://wiki.ubuntu.com/LaptopTestingTeam/ToshibaSatelliteL40-17O

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 8.10
Package: acpid 1.0.6-9ubuntu4
ProcEnviron:
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/opt/MAPPER/bin
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: acpid
Uname: Linux 2.6.27-7-generic i686

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


** Tags: apport-bug

-- 
endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU
https://bugs.launchpad.net/bugs/282342
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 282342] Re: endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU

2008-10-12 Thread joosteto

** Attachment added: strace -f -p $PID
   http://launchpadlibrarian.net/18468157/acpid-strace

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

-- 
endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU
https://bugs.launchpad.net/bugs/282342
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 282342] Re: endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU

2008-10-12 Thread joosteto

** Attachment added: contents of my /var/log/kern.log of my last reboot
   http://launchpadlibrarian.net/18468165/kern.log

-- 
endlessly executes /etc/acpi/asus-wireless-2.sh , eating all CPU
https://bugs.launchpad.net/bugs/282342
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 238371] Re: [Regression] kernel fails to recognise agpgart, ACPI, touchpad, etc

2008-06-17 Thread joosteto
linux-image-2.6.24-19 works again!

** Changed in: linux (Ubuntu)
   Status: New = Fix Released

-- 
[Regression] kernel fails to recognise agpgart, ACPI, touchpad, etc
https://bugs.launchpad.net/bugs/238371
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


Re: [Bug 239314] Re: segfault and failure to find codec for some .mpg's

2008-06-13 Thread joosteto
2008/6/13 Sebastien Bacher [EMAIL PROTECTED]:
 the informations you attached are about totem-xine, could you open a
 different bug about totem-gstreamer

Only if I can be at least somewhat sure isn't going to be closed
immediately after I file it.


 where did you get instruction saying to attach crash informations not
 using apport?

The point is, that no-where was I informed to use apport. I'm sure
somewhere it's mentioned, but certainly not on the pages I came along
while submitting the bug. And I did read several pages and help
screens.

http://www.ubuntu.com/community/ReportProblem
the screens from https://launchpad.net/ubuntu/+filebug#form-start
https://wiki.ubuntu.com/DebuggingProcedures

Those are the pages I can find about reporting bugs. apport can not
be found anywhere.
Not knowing I was supposed to use apport, I tried to be as helpful as
possible, appended the core dump along with gdb backtraces and the
lot.


 the reason why submitters are asked to use apport

It would be better to ask them to do that during the submittion
proces, not after.

 that's
 because it does the automatic debug retracing so users don't have to
 install debug variants,

But I already did that.

 and this way the crash is registered in the
 database for automatic duplication

If users report bugs without including requested information, I can
understand that this enoys the developers and that they sometimes
quickly close bugs. But you ou don't request apport reports to the
users before they file a bug (or while they read how to file a bug).

-- 
segfault and failure to find codec for some .mpg's
https://bugs.launchpad.net/bugs/239314
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


Re: [Bug 239314] Re: segfault and failure to find codec for some .mpg's

2008-06-12 Thread joosteto
I think I've spend at least an hour doing excactly what ubuntu asked
me to do. I started the application, from the help menu item I clicked
report a problem, just as ubuntu asked me to do, attached a core
dump, installed a whole bunch of programs to make the core dump usable
etc.

Nowhere along the whole path was I informed that my work would be
vain, and that the bugreport would be closed inmediately after filing,
throwing away everything I did.

I'm not going further with this bug-report.


2008/6/12 Pedro Villavicencio [EMAIL PROTECTED]:
 Thank you for taking the time to report this bug and helping to make
 Ubuntu better. However, your crash report is either missing or
 challenging to deal with as a .crash file. Please follow these
 instuctions to have apport report a new bug about your crash that can be
 dealt with by the automatic retracer.

 If you are running the Ubuntu Stable Release you might need to enable
 apport in /etc/default/apport and restart.

 If you are using Ubuntu with the Gnome desktop environment - launch
 nautilus and navigate to your /var/crash directory and double click on
 the crash report you wish to submit.

 I'm closing this bug report since the process outlined above will
 automatically open a new bug report which can then dealt with more
 efficiently. Thanks in advance for your cooperation and understanding.

 ** Changed in: totem (Ubuntu)
   Status: New = Invalid

 --
 segfault and failure to find codec for some .mpg's
 https://bugs.launchpad.net/bugs/239314
 You received this bug notification because you are a direct subscriber
 of the bug.


-- 
segfault and failure to find codec for some .mpg's
https://bugs.launchpad.net/bugs/239314
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 239314] [NEW] segfault and failure to find codec for some .mpg's

2008-06-11 Thread joosteto
Public bug reported:

Binary package hint: totem

Packages: totem-xine and totem-gstreamer
Ubuntu 8.04
System: 32 bit intel (mobile celeron) 

Some mpg's don't play in totem-xine and totem-gstreamer on my system, while 
gmplayer does play the same files properly.
totem-* will start asking to search for a codec, try, and then report it didn't 
find the right codec.

Sometimes totem-* will crash (segfault). Attached is the core dump from
totem-xine.

Strange thing is, gmplayer and the 'file' command report the same codecs
and everything for mpg files that do play, and those that don't. (output
of gmplayer below)

$ file plays-OK.mpg 
plays-OK.mpg: MPEG sequence, v2, program multiplex
$ file DOESNT-play.mpg 
DOESNT-play.mpg: MPEG sequence, v2, program multiplex


Here are stack traces from the core dump:
*
Reading symbols from /usr/lib/xine/plugins/1.20/xineplug_decode_qt.so...Reading 
symbols from 
/usr/lib/debug/usr/lib/xine/plugins/1.20/xineplug_decode_qt.so...done.
done.
Loaded symbols for /usr/lib/xine/plugins/1.20/xineplug_decode_qt.so
Reading symbols from 
/usr/lib/xine/plugins/1.20/xineplug_decode_w32dll.so...Reading symbols from 
/usr/lib/debug/usr/lib/xine/plugins/1.20/xineplug_decode_w32dll.so...done.
done.
Loaded symbols for /usr/lib/xine/plugins/1.20/xineplug_decode_w32dll.so
Core was generated by `./totem muziko.mpg'.
Program terminated with signal 11, Segmentation fault.
[New process 20148]
[New process 20151]
[New process 20149]
#0  0xb7bfc9b2 in xine_get_param (stream=0x83ba9b0, param=16777221) at 
xine_interface.c:654
654 xine_interface.c: No such file or directory.
in xine_interface.c
(gdb) thread 1
[Switching to thread 1 (process 20148)]#0  0xb7bfc9b2 in xine_get_param 
(stream=0x83ba9b0, param=16777221) at xine_interface.c:654
654 in xine_interface.c
(gdb) backtrace
#0  0xb7bfc9b2 in xine_get_param (stream=0x83ba9b0, param=16777221) at 
xine_interface.c:654
#1  0x080795e2 in bacon_video_widget_get_video_property (bvw=0x8100220, 
type=BVW_VIDEO_BRIGHTNESS)
at 
/home/joostje/debian/totem-2.22.1/src/backend/bacon-video-widget-xine.c:3770
#2  0x080674c9 in totem_setup_preferences (totem=0x80e3008) at 
/home/joostje/debian/totem-2.22.1/src/totem-preferences.c:656
#3  0x08064549 in main (argc=Cannot access memory at address 0x0
) at /home/joostje/debian/totem-2.22.1/src/totem.c:3221
(gdb) thread 2
[Switching to thread 2 (process 20151)]#0  0xb7f25410 in __kernel_vsyscall ()
(gdb) backtrace
#0  0xb7f25410 in __kernel_vsyscall ()
#1  0xb724daa5 in pthread_cond_wait@@GLIBC_2.3.2 () from 
/lib/tls/i686/cmov/libpthread.so.0
#2  0xb7bf5cc4 in xine_event_wait (queue=0x83d2740) at events.c:56
#3  0xb7bf5d58 in listener_loop (queue_gen=0x83d2740) at events.c:214
#4  0xb72494fb in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
#5  0xb71cbe5e in clone () from /lib/tls/i686/cmov/libc.so.6
(gdb) thread 3
[Switching to thread 3 (process 20149)]#0  0xb7f25410 in __kernel_vsyscall ()
(gdb) backtrace
#0  0xb7f25410 in __kernel_vsyscall ()
#1  0xb724ddd2 in pthread_cond_timedwait@@GLIBC_2.3.2 () from 
/lib/tls/i686/cmov/libpthread.so.0
#2  0xb7be1bbb in metronom_sync_loop (this=0x83b1368) at metronom.c:871
#3  0xb72494fb in start_thread () from /lib/tls/i686/cmov/libpthread.so.0
#4  0xb71cbe5e in clone () from /lib/tls/i686/cmov/libc.so.6

(gdb) thread 1
[Switching to thread 1 (process 20148)]#0  0xb7bfc9b2 in xine_get_param 
(stream=0x83ba9b0, param=16777221) at xine_interface.c:654
654 in xine_interface.c
(gdb) l
649 in xine_interface.c
(gdb) up
#1  0x080795e2 in bacon_video_widget_get_video_property (bvw=0x8100220, 
type=BVW_VIDEO_BRIGHTNESS)
at 
/home/joostje/debian/totem-2.22.1/src/backend/bacon-video-widget-xine.c:3770
3770return xine_get_param (bvw-priv-stream, video_props[type]);
(gdb) l
3765{
3766g_return_val_if_fail (bvw != NULL, 65535 / 2);
3767g_return_val_if_fail (BACON_IS_VIDEO_WIDGET (bvw), 65535 / 2);
3768g_return_val_if_fail (bvw-priv-xine != NULL, 65535 / 2);
3769
3770return xine_get_param (bvw-priv-stream, video_props[type]);
3771}
3772
3773void
3774bacon_video_widget_set_video_property (BaconVideoWidget *bvw,
(gdb) p *(bvw-priv-stream)
$3 = {xine = 0x8382400, metronom = 0x83bb5a0, input_plugin = 0x0, 
content_detection_method = 0, video_out = 0x0, video_fifo = 0x83bb6f0, 
  audio_out = 0x0, audio_fifo = 0x83bba18, osd_renderer = 0x0, master = 
0x83ba9b0, slave = 0x0, spu_decoder_plugin = 0x0, video_driver = 0x0, 
  audio_channel_auto = -1, spu_decoder_streamtype = -1, spu_channel_user = -1, 
spu_channel_auto = -1, spu_channel_letterbox = -1, spu_channel = -1}
(gdb) p video_props
$4 = {16777221, 16777220, 16777219, 16777218}
(gdb) p type
$5 = BVW_VIDEO_BRIGHTNESS
(gdb) p (int) type
$6 = 0


*
$ mplayer plays-OK.mpg 
MPlayer 1.0rc2-4.2.3 (C) 2000-2007 MPlayer Team
CPU: 

[Bug 239314] Re: segfault and failure to find codec for some .mpg's

2008-06-11 Thread joosteto

** Attachment added: core dump of totem-xine
   http://launchpadlibrarian.net/15221158/core.20148.bz2

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

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

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

-- 
segfault and failure to find codec for some .mpg's
https://bugs.launchpad.net/bugs/239314
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 238371] [NEW] [Regression] kernel fails to recognise agpgart, ACPI, touchpad, etc

2008-06-08 Thread joosteto
Public bug reported:

Binary package hint: linux-image-2.6.24-18-generic


Ubuntu release: 8.04
Main problem: touchpad not found (no mouse), graphics card not found (goes back 
to vesa), no ACPI working.

On my (new) Toshiba satellite L40-17O:

linux-image-2.6.24-16 (from the live CD and installed) worked fine.
linux-image-2.6.24-17 and 2.6.24-18 don't work: graphical card (965GM) not 
recognised (loads vesa), touchpad not found (so no mouse), none of the ACPI 
lines appear in the kernel messages log.


To compare, below is the (good) 2.6.24-16 /var/log/messages and the (bad) 
2.6.24-18 text.


Full story:
linux-image-2.6.24-16 (from the live CD) worked fine, also when installed.
June 5th I upgraded to linux-image-2.6.24-18, and everything still worked fine.

However, today (june 8th), while listening to rhythmbox and setting the
time zone one hour back, the system became non-responsive (rhythmbox
kept on playing, could move mouse, but couldn't do antyhing, alt-ctrl-F1
didn't react, etc).

Rebooted several times into 2.6.24-18 (it worked before, I thought it
couldn't be the problem), tried to remove batteries etc, but nothing
worked. Then tried live CD, that did work. Now I've tried going back and
fourth between 2.6.24-16, 17, 18, and -16 consistently is the only one
that sees my hardware properly.


/var/log/messages for 2.6.24-18 (bad, 2.6.24-17 is very smilar):
***
[...]
Jun  8 16:47:19 abelo kernel: [   22.733273] Attempting manual resume
Jun  8 16:47:19 abelo kernel: [   22.785866] kjournald starting.  Commit 
interval 5 seconds
Jun  8 16:47:19 abelo kernel: [   22.785877] EXT3-fs: mounted filesystem with 
ordered data mode.
Jun  8 16:47:19 abelo kernel: [   22.878578] ata4.00: configured for UDMA/33
Jun  8 16:47:19 abelo kernel: [   22.888436] scsi 3:0:0:0: CD-ROM
PIONEER  DVD-RW  DVR-K17A 3.52 PQ: 0 ANSI: 5
Jun  8 16:47:19 abelo kernel: [   22.888504] scsi 3:0:0:0: Attached scsi 
generic sg1 type 5
Jun  8 16:47:19 abelo kernel: [   32.119765] Adding 4803392k swap on /dev/sda5. 
 Priority:-1 extents:1 across:4803392k
Jun  8 16:47:19 abelo kernel: [   32.542399] EXT3 FS on sda1, internal journal
Jun  8 16:47:20 abelo kernel: [   35.060236] audit(1212936440.602:2): type=1503 
operation=inode_permission requested_mask=a:: denied_mask=a:: 
name=/dev/tty pid=4649 profile=/usr/sbin/cupsd namespace=default
Jun  8 16:47:21 abelo dhcdbd: Started up.
Jun  8 16:47:21 abelo kernel: [   36.380647] eth0: link up, 100Mbps, 
full-duplex, lpa 0x45E1
Jun  8 16:47:33 abelo exiting on signal 15
(/var/log/messages stops here)


/var/log/messages for 2.6.24-16 (good):
***
[... initial lines identical to -18...]
Jun  8 16:48:26 abelo kernel: [   20.969162] Attempting manual resume
Jun  8 16:48:26 abelo kernel: [   21.020857] kjournald starting.  Commit 
interval 5 seconds
Jun  8 16:48:26 abelo kernel: [   21.020867] EXT3-fs: mounted filesystem with 
ordered data mode.
Jun  8 16:48:26 abelo kernel: [   21.156131] ata4.00: configured for UDMA/33
Jun  8 16:48:26 abelo kernel: [   21.165982] scsi 3:0:0:0: CD-ROM
PIONEER  DVD-RW  DVR-K17A 3.52 PQ: 0 ANSI: 5
Jun  8 16:48:26 abelo kernel: [   21.166048] scsi 3:0:0:0: Attached scsi 
generic sg1 type 5
Jun  8 16:48:26 abelo kernel: [   28.100452] Linux agpgart interface v0.102
Jun  8 16:48:26 abelo kernel: [   28.156411] agpgart: Detected an Intel 965GM 
Chipset.
Jun  8 16:48:26 abelo kernel: [   28.156676] agpgart: Detected 7676K stolen 
memory.
Jun  8 16:48:26 abelo kernel: [   28.225284] agpgart: AGP aperture is 256M @ 
0xd000
Jun  8 16:48:26 abelo kernel: [   28.411889] pci_hotplug: PCI Hot Plug PCI Core 
version: 0.5
Jun  8 16:48:26 abelo kernel: [   28.452382] shpchp: Standard Hot Plug PCI 
Controller Driver version: 0.4
Jun  8 16:48:26 abelo kernel: [   28.587707] input: Power Button (FF) as 
/devices/virtual/input/input2
Jun  8 16:48:26 abelo kernel: [   28.599538] ACPI: Power Button (FF) [PWRF]
Jun  8 16:48:26 abelo kernel: [   28.599679] input: Power Button (CM) as 
/devices/virtual/input/input3
Jun  8 16:48:26 abelo kernel: [   28.615496] ACPI: Power Button (CM) [PWRB]
Jun  8 16:48:26 abelo kernel: [   28.615601] input: Sleep Button (CM) as 
/devices/virtual/input/input4
Jun  8 16:48:26 abelo kernel: [   28.627480] ACPI: Sleep Button (CM) [SLPB]
Jun  8 16:48:26 abelo kernel: [   28.627563] input: Lid Switch as 
/devices/virtual/input/input5
Jun  8 16:48:26 abelo kernel: [   28.628585] ACPI: Lid Switch [LID]
Jun  8 16:48:26 abelo kernel: [   28.732511] asus-laptop: Asus Laptop Support 
version 0.42
Jun  8 16:48:26 abelo kernel: [   28.732812] asus-laptop:   T20 model detected
Jun  8 16:48:26 abelo kernel: [   28.734162] Registered led device: asus:mail
Jun  8 16:48:26 abelo kernel: [   29.490254] ACPI: AC Adapter [AC0] (on-line)
Jun  8 16:48:26 abelo kernel: [   29.778988] input: Video Bus as 

[Bug 238371] Re: [Regression] kernel fails to recognise agpgart, ACPI, touchpad, etc

2008-06-08 Thread joosteto

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

-- 
[Regression] kernel fails to recognise agpgart, ACPI, touchpad, etc
https://bugs.launchpad.net/bugs/238371
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 174495] eclipse pydev navigator window fails

2007-12-06 Thread joosteto
Public bug reported:

Binary package hint: eclipse-pydev

After creating a python project in eclipse, the navigator window failed
to show, and gave the following error:

Unable to create view: Plug-in org.eclipse.ui.ide was unable to
instantiate class org.eclipse.ui.views.navigator.ResourceNavigator.

After running aptitude install jython-gcj eclipse-pydev-gcj, the
problem went away.

The aptitude install run above installed the following packages:
  eclipse-platform-gcj eclipse-pydev-gcj eclipse-rcp-gcj jython-gcj   
libswt3.2-gtk-gcj

I now cannot reproduce the problem however: removing libswt3.2-gtk-gcj
causes aptitude to remove all of eclipse-pydev, so it appears something
strange is happening with the dependancies.

I only yesterday ran synaptic package manager to install the latest
updates, and at least synaptic didn't report any problems.

Ubuntu version: gutsy.
$ dpkg -l eclipse\*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-f/Unpacked/Failed-cfg/Half-inst/t-aWait/T-pend
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  eclipse3.2.2-3ubuntu3 Extensible Tool Platform and Java IDE
ii  eclipse-cdt3.1.2-1C/C++ Development Tools for Eclipse
un  eclipse-ecjnone (no description available)
un  eclipse-ecj-gc none (no description available)
un  eclipse-gcjnone (no description available)
ii  eclipse-jdt3.2.2-3ubuntu3 Java Development Tools plug-ins for Eclipse
un  eclipse-jdt-co none (no description available)
un  eclipse-jdt-gc none (no description available)
ii  eclipse-pde3.2.2-3ubuntu3 Plug-in Development Environment to develop E
un  eclipse-pde-co none (no description available)
un  eclipse-pde-gc none (no description available)
ii  eclipse-platfo 3.2.2-3ubuntu3 Eclipse platform without plug-ins to develop
un  eclipse-platfo none (no description available)
ii  eclipse-platfo 3.2.2-3ubuntu3 Eclipse platform without plug-ins to develop
ii  eclipse-pydev  1.2.5-2Python development plug-in for Eclipse
ii  eclipse-pydev- 1.2.5-2Python development plug-in for Eclipse (GCJ 
ii  eclipse-rcp3.2.2-3ubuntu3 Eclipse rich client platform
un  eclipse-rcp-co none (no description available)
ii  eclipse-rcp-gc 3.2.2-3ubuntu3 Eclipse rich client platform (GCJ version)
ii  eclipse-sdk3.2.2-3ubuntu3 Extensible Tool Platform and Java IDE
ii  eclipse-source 3.2.2-3ubuntu3 Eclipse source code plug-ins

** Affects: eclipse-pydev (Ubuntu)
 Importance: Undecided
 Status: New

-- 
eclipse  pydev navigator window fails
https://bugs.launchpad.net/bugs/174495
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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