[Bug 1031882] Re: precise-quantal upgrade fails, with a UnicodeDecodeError

2013-04-04 Thread molostoff
I have got the same issue in Ubuntu 12.04.2 LTS.

Also I can not understand why This bug was fixed in the package ubuntu-
release-upgrader - 1:0.184

---
ubuntu-release-upgrader (1:0.184) *quantal*; urgency=low

while it hits precise? how I can upgrade from my 12.04.2 for now?

 why not to supply fix for precise?

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

Title:
  precise-quantal upgrade fails, with a UnicodeDecodeError

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

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


[Bug 985202] Re: libx11 causes kwin to crash on login (over NX protocol)

2013-01-07 Thread molostoff
BTW, got this today

r300: DRM version: 2.24.0, Name: ATI RV515, ID: 0x7210, GB: 1, Z: 1
r300: GART size: 509 MB, VRAM size: 128 MB
r300: AA compression RAM: YES, Z compression RAM: NO, HiZ RAM: NO
r300: DRM version: 2.24.0, Name: ATI RV515, ID: 0x7210, GB: 1, Z: 1
r300: GART size: 509 MB, VRAM size: 128 MB
r300: AA compression RAM: YES, Z compression RAM: NO, HiZ RAM: NO
OpenGL vendor string:   X.Org R300 Project
OpenGL renderer string: Gallium 0.4 on ATI RV515
OpenGL version string:  2.1 Mesa 9.1-devel (git-afec10d 
precise-oibaf-ppa)
OpenGL shading language version string: 1.20
Driver: R300G
GPU class:  R500
OpenGL version: 2.1
GLSL version:   1.20
Mesa version:   9.1
X server version:   1.11.3
Linux kernel version:   3.7
Direct rendering:   yes
Requires strict binding:yes
GLSL shaders:   limited
Texture NPOT support:   limited
kwin(5070): Shaders are not supported
r300_emit.c:104:r300_emit_dsa_state: Assertion `cs_count == 0' failed.

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

Title:
  libx11 causes kwin to crash on login (over NX protocol)

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

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


[Bug 1090768] Re: grub-pc.config prevents replacing with new config file contents

2013-01-07 Thread molostoff
 The standard rules for debconf are that changes in the filesystem are
more important than those in the debconf database

Yes and this is monitored via ucf tools, as shown in sample config
scripts (preinstall and postinstall).

Thus, if I have changed /etc/default/grub , then ucf will see my changes
and would prevent them from being overwritten by automated
updates/upgrades (creating grub.ucf-dist file, or providing 3-way merge
or any other way it can offer).

If I somehow decided to overwrite my /etc/default/grub changes I have to
direct ucf to forget about monitoring  (via ucfr tool - just removing
package config file from internal ucf list) , and then dpkg-reconfigure
will successfully overwrite my changes using already preseeded
parameters from debconf database.

I assume this way is legal, while voluntary unconditional update of
debconf database is not, especially with those parameters which I whould
like to recover. A typical situation is when I have changed one line in
/etc/default/grub and got errorneous boot process, which I want to
recover.

 With your code in grub-pc.config any ucf related things are just
disconnected from being partify in this configuration process, and with
your code I can recover only that errorneous modified version, since
that errorneous parameter is already propagated into debconf database,
and this looks like a nonsense action.

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

Title:
  grub-pc.config prevents replacing with new config file contents

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

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


[Bug 1090768] Re: grub-pc.config prevents replacing with new config file contents

2013-01-07 Thread molostoff
partify = take a part

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

Title:
  grub-pc.config prevents replacing with new config file contents

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

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


[Bug 1090768] [NEW] grub-pc.config prevents replacing with new config file contents

2012-12-15 Thread molostoff
Public bug reported:

A behavior of grub-pc.config does not allow to reach replacing config
file with new version, as shown below in a session listing:

# echo grub-pc grub2/linux_cmdline string  acpi=force elevator=deadline | 
debconf-set-selections
# dpkg-reconfigure -f noninteractive grub-pc
Replacing config file /etc/default/grub with new version
Installation finished. No error reported.
Generating grub.cfg ...
...

The problematic code introduced in 
http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/precise/grub2/precise/revision/31/debian/grub-pc.config
 (lines 24-38)
(where it overwrites preseeded values in debconf database with call to db_set):

if test -e /etc/default/grub ; then 


  . /etc/default/grub   
  

  db_set grub2/linux_cmdline $GRUB_CMDLINE_LINUX  


   db_set grub2/linux_cmdline_default $GRUB_CMDLINE_LINUX_DEFAULT 

 

   case grub-pc in  

 
   grub-pc) 

   
  if [ ${GRUB_TIMEOUT} !=  ]; then  


db_set grub-pc/timeout $GRUB_TIMEOUT  


  fi


  if [ ${GRUB_HIDDEN_TIMEOUT} !=  ]; then   


db_set grub-pc/hidden_timeout true  


  elif egrep -q '^#?[[:space:]]*GRUB_HIDDEN_TIMEOUT=' /etc/default/grub; 
then
   
db_set grub-pc/hidden_timeout false 


  fi


;;  


  esac  


fi

Commenting it out makes the above example in listing to work.

I dont understand the purpose to update debconf preseed values with those from 
config file.
 (assuming db has these already calibrated before adding into db with 
'interactive' backend)

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: grub-pc 1.99-21ubuntu3.7
ProcVersionSignature: Ubuntu 3.2.0-35.55-generic 3.2.34
Uname: Linux 3.2.0-35-generic x86_64
ApportVersion: 2.0.1-0ubuntu17
Architecture: amd64
Date: Sat Dec 15 21:04:37 2012
MarkForUpload: True
ProcEnviron:
 LANGUAGE=ru_RU
 TERM=xterm
 PATH=(custom, user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
SourcePackage: grub2
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug package-from-proposed precise third-party-packages

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

Title:
  grub-pc.config prevents replacing with new config file contents

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

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


[Bug 1063923] [NEW] nslcd config and debconf

2012-10-08 Thread molostoff
Public bug reported:

Here is a problem with setting up an external sasl auth parameter in
/etc/nslcd.conf with debconf and dpkg-reconfigure (see short session log
below).

Usually I use sasl_mech external configured in nslcd.conf and all is
fine, except ongoing ubuntu/debian updates, every time a package is
updated a debconf reconfigures it to keep configuration settings
correct in a way a developer/maintainer of that package should know -
it always remove external with auto, and thus fails to connect to
slapd, since in my slapd config only external is allowed (it is a
requirement).

I was unable to find a place to report a bug in ubuntu repos (nslcd
belongs to universe, and not a part of ubuntu), and if some can point
out a good link, it wold be very helpful to report bug more
officially.

The main problem is that I can use external sasl mech, but it is
unconditionally overwriten every update to the auto, which makes nslcd
disconnected from slapd, and require handy intervention every time
(sorry, tired) to manually check /etc/nslcd.conf, and remove auto with
external. :)

Here is a sequence of commands to show the effect of external mech
setting up. Please, take into account that setting /etc/nslcd.conf
manually with vi or emacs has the same result - after update (e.g.
debconf noninteractive reconfiguring) it always becomes auto instead
of required external. Please Help!

# echo nslcd   nslcd/ldap-sasl-mechselect  external | debconf-set-
selections

# debconf-show nslcd
* nslcd/ldap-bindpw: (password omitted)
* nslcd/ldap-sasl-realm:
* nslcd/ldap-starttls: false
  nslcd/ldap-sasl-krb5-ccname: /var/run/nslcd/nslcd.tkt
* nslcd/ldap-auth-type: SASL
  nslcd/ldap-reqcert:
* nslcd/ldap-uris: ldapi:///
* nslcd/ldap-sasl-secprops:
  nslcd/ldap-binddn:
* nslcd/ldap-sasl-authcid:
* nslcd/ldap-sasl-mech: external
* nslcd/ldap-base: dc=local
* nslcd/ldap-sasl-authzid:

# dpkg-reconfigure -f noninteractive nslcd
 * Stopping LDAP connection daemon nslcd
   
[ OK ] 
 * Starting LDAP connection daemon nslcd
   
[ OK ] 

# debconf-show nslcd
* nslcd/ldap-bindpw: (password omitted)
* nslcd/ldap-sasl-realm:
* nslcd/ldap-starttls: false
  nslcd/ldap-sasl-krb5-ccname: /var/run/nslcd/nslcd.tkt
* nslcd/ldap-auth-type: SASL
  nslcd/ldap-reqcert:
* nslcd/ldap-uris: ldapi:///
* nslcd/ldap-sasl-secprops:
  nslcd/ldap-binddn:
* nslcd/ldap-sasl-authcid:
* nslcd/ldap-sasl-mech: auto
* nslcd/ldap-base: dc=local
* nslcd/ldap-sasl-authzid:

# cat /etc/nslcd.conf 
uid 0
gid 0
ldap_version 3
sasl_mech auto
uri ldapi:///
rootpwmoddn cn=admin,dc=local
pam_authz_search 
((objectClass=posixAccount)(uid=$username)(|(host=$hostname)(host=$fqdn)(host=\\*)))
base dc=local

** Affects: nss-pam-ldapd (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/1063923

Title:
  nslcd config and debconf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nss-pam-ldapd/+bug/1063923/+subscriptions

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


[Bug 1053368] Re: grub-pc.config failed to retrieve and apply debconf database config

2012-10-08 Thread molostoff
The subject is typically located in grub2 sources
(http://bazaar.launchpad.net/~ubuntu-core-
dev/ubuntu/quantal/grub2/quantal) (in debian/config.in), and in
/var/lib/dpkg/info/grub-pc.config while installed.

The purpose of this file I think is to provide scripted actions to reconfigure 
installed package, being invoked (for example) within dpkg-reconfigure 
operation:
 
dpkg-reconfigure -f noninteractive grub-pc
 
The script does unconditional update of debconf-selections database, used as 
source for reconfiguration items to update. E.g. if I setup debconf-selections 
against grub2/linux_cmdline with adding new stuff, the installed and existing 
/etc/default/grub will stay unchanged as a result after dpkg-reconfigure, even 
more my administratively customized debconf-selections will be overwritten by 
this script to be the same as in /etc/default/grub.
 
I use debconf-selections database as a source of parameters to imperatively 
initiate of updating/upgrading existing /etc/default/grub, but it is 
impossible, moreover it makes debconf-selections database dirty and thus - 
useless, since these db_set updates always come intact with /etc/default/grub 
hand changes after reconfiguring. So I am unable to understand the purpose of 
this unconditional update.
 
From other hand, all things become clear and working if I comment the code 
piece:
 
# if test -e /etc/default/grub ; then
# . /etc/default/grub
 
# db_set grub2/linux_cmdline $GRUB_CMDLINE_LINUX
# db_set grub2/linux_cmdline_default $GRUB_CMDLINE_LINUX_DEFAULT
 
# case grub-pc in
# grub-pc)
# if [ ${GRUB_TIMEOUT} !=  ]; then
# db_set grub-pc/timeout $GRUB_TIMEOUT
# fi
# if [ ${GRUB_HIDDEN_TIMEOUT} !=  ]; then
# db_set grub-pc/hidden_timeout true
# elif egrep -q '^#?[[:space:]]*GRUB_HIDDEN_TIMEOUT=' /etc/default/grub; then
# db_set grub-pc/hidden_timeout false
# fi
# ;;
# esac
# fi
 
Please, tell me some words about what is the correct way with this script to 
use dpkg-reconfigure effectively! Any suggestions would be very helpful, thanks!

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

Title:
  grub-pc.config failed to retrieve and apply debconf database config

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

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


[Bug 1063923] Re: nslcd config and debconf

2012-10-08 Thread molostoff
Thanks for so fast reply! Many thanks to the fix! Awaiting to test it!

BTW, where I can get more info on supported ways with using debconf-set-
selections and using dpkg-reconfigure?

It seems that my config does exactly the above - updates debconf db and
reconfigures package via dpkg, what's wrong with it?

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

Title:
  nslcd config and debconf

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nss-pam-ldapd/+bug/1063923/+subscriptions

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


[Bug 1053368] [NEW] grub-pc.config failed to retrieve and apply debconf database config

2012-09-20 Thread molostoff
Public bug reported:

debconf stored parameters in  configdb are ignored by /var/lib/dpkg/info
/grub-pc.config at 'dpkg-reconfigure -f noninteractive grub-pc'

Instead of apply configdb parameters (that are stored there before) the
script in /var/lib/dpkg/info/grub-pc.config unconditionally updates them
with parameters extracted from /etc/default/grub

The intended behaviour in this case I suppose to extract parameters from
configdb or any other source and set them to their defaults or any
desired value, to be used in  /etc/default/grub , but the script does
exactly the opposite: overwrites source data. Then, debconf uses
configdb to apply these new old parameters again, and as a result I
have configdb wiped with values from /etc/default/grub, and
/etc/default/grub itself stays unchanged.

So the consequence this behaviour has two penalties: original
configuration data (a source) wiped out, actual grub config (target)
stays unchanged.

I have placed 'exit 0' at the beginning of this script and all things
became right -  /etc/default/grub updated, debconf database holds
intended data.

** Affects: grub2 (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/1053368

Title:
  grub-pc.config failed to retrieve and apply debconf database config

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

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


[Bug 1035942] [NEW] setting up debconf ldap driver

2012-08-12 Thread molostoff
Public bug reported:

setting ldap driver by uncommenting ldap configuration variables issued
in

Attempt to access disallowed key 'keybykey' in a restricted hash at
/usr/share/perl5/Debconf/DbDriver.pm line 35, DEBCONF_CONFIG chunk 7

also any other settings provided in comments report the same, it seems
that they are not hashed, and I am unable to configure ldap remotedb, as
it stated in doc.

Please provide some point for help...

** Affects: debconf (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/1035942

Title:
  setting up debconf ldap driver

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

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


[Bug 1035942] Re: setting up debconf ldap driver

2012-08-12 Thread molostoff
Also I have found some code meaningless (at least unclear):

--- a/LDAP.pm
+++ b/LDAP.pm
@@ -117,8 +117,7 @@ sub shutdown
}

foreach my $field (keys %{$data{fields}}) {
-   next if ($data{fields}-{$field} eq '' 
-!($field eq 'value'));
+   next if ($data{fields}-{$field} eq '');

I dont know the purpose, but without this check all works fine to me.

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

Title:
  setting up debconf ldap driver

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

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


[Bug 1011470] [NEW] isc-dhcp-server upstart job incomplete

2012-06-11 Thread molostoff
Public bug reported:

As with upgrade from oneiric to precise I have discovered that there is
new upstart job for isc-dhcp-server which is a minimal carbon copy of
sysv init.d script, and missing major system deps from other services.

Testing it shows that upstart job for isc-dhcp-server indeed is
incomplete, for example any lxc container starts before isc-dhcp-server,
and fails to complete startup because can not get assigned address (I
mean config with lxc-net disabled and br0 configured).

Being configured to read configuration via ldap service (isc-dhcp-
server-ldap) it starts before slapd and exits without awaiting to start
slapd. With a bunch of dependencies between nscd, nslcd, slapd, named,
autofs-ldap, lxc  - isc-dhcp-server upstart script looks like incomplete
and incorrect, since does not reflect its dependency on any valuable
system event or condition, to which real dependants refer.

Since writing an upstart job script needs careful and complex testing on 
compatibility with other system services, its better to 
 revert this upstart job to sysv script back, atleast for testing and/or 
establishing its dependencies.

I have tried to figure out this upstart dependency on my configuration
but was unsuccessful, because isc-dhcp-server upstart job needs that
dependency expressed in upstart jobs from other services, whose init
scripts are still sysv, and depends on sysv services. So a correct
rewrite indeed means rewrite all the services starting into upstart, not
only isc-dhcp-server.

So, please, revert isc-dhcp-server back to sysv, or provide correct
startup code.

** Affects: isc-dhcp (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/1011470

Title:
  isc-dhcp-server upstart job incomplete

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

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


[Bug 1009836] [NEW] keymap acer-aspire_5720 has missing button

2012-06-06 Thread molostoff
Public bug reported:

file: /lib/udev/keymaps/acer-aspire_5720

Aspire of this model  has e-Key (red triangular button with 'e' mark on
it), but udev keymap for this model is missing  scancode for it. Please
add to the keymap file above

0xf4 prog3  # e-key

** Affects: udev (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/1009836

Title:
  keymap acer-aspire_5720 has missing button

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

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


[Bug 957303] [NEW] TMOUT hardly exiting regardless of user input activity

2012-03-16 Thread molostoff
Public bug reported:

When a TMOUT variable is set (in my case = 300), command line input
activity in readline does not affect timer, and bash is continuing to
decrease time counter, and when timer expires just terminates while I
type a command. It is very frustrating! More over - it is very
inconvenient to use TMOUT in interactive input.

From man page: In an interactive shell, the value is interpreted as the
number  of  seconds  to wait for input after issuing the primary prompt.
Bash terminates after waiting for that number of seconds if input does
not arrive.

I suppose that intended behavior is to reset timer to initial value when
an input activity is detected (e.g. user started typing command, e.g.
providing input), because TMOUT refers to an input, and not a complete
command, or whatever else.

** Affects: bash (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/957303

Title:
  TMOUT hardly exiting regardless of user input activity

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

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


[Bug 896429] [NEW] error installing any plugins in eclipse

2011-11-25 Thread molostoff
Public bug reported:

Any possible variant of installed eclipse from ubuntu repo reports:

An error occurred while installing the items
session context was:(profile=PlatformProfile, 
phase=org.eclipse.equinox.internal.p2.engine.phases.Install, operand=null -- 
[R]org.apache.jasper 5.5.26, 
action=org.eclipse.equinox.internal.p2.touchpoint.eclipse.actions.InstallBundleAction).
The artifact file for osgi.bundle,org.apache.jasper,5.5.26 was not found.

** Affects: eclipse (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/896429

Title:
  error installing any plugins in eclipse

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

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


[Bug 896429] Re: error installing any plugins in eclipse

2011-11-25 Thread molostoff
Additional info:

eclipse 3.7.0-0ubuntu1
Ubuntu 11.10

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

Title:
  error installing any plugins in eclipse

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

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


[Bug 896429] Re: error installing any plugins in eclipse

2011-11-25 Thread molostoff
According to http://ubuntuforums.org/showthread.php?t=1869884 :

sudo eclipse

and then ( as root ) install needed plugins - works fine, but this is
not safe for the installation, i suppose

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

Title:
  error installing any plugins in eclipse

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

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


[Bug 888893] [NEW] error running update-intel-microcode

2011-11-10 Thread molostoff
Public bug reported:

Traceback (most recent call last):
  File /usr/sbin/update-intel-microcode, line 26, in module
newest = sorted(results, key=lambda x: x['version'])[-1]
IndexError: list index out of range

** Affects: intel-microcode (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/93

Title:
  error running  update-intel-microcode

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

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


[Bug 780492] Re: Boot failure with root on /dev/md* (raid)

2011-09-22 Thread molostoff
This behaviour *is simple to reproduce* on Ubuntu LVM2 layout install:

As an example I have Ubunty natty with LVM2. Suppose vgs reports 20%
free in system volume group.

lvcreate -n test -L '15%' sysvolgroup # create new empty volume
...
pvcreate /dev/sysvolgroup/test # attach that volume as device
...
# all things go fine here, except until reboot, that when system boots, udev 
reports

udevd[PID] worker [PID] unexpectedly returned with status 0x0100

udev.log-priority=debug kernel parameter shows that the device at which
udevd timeouts -  [ /dev/dm-XX ] to which a link /dev/sysvolgroup/test
points, in this sample timeouts within scripts/local-premount at rule:

85-lvm2.rules:  RUN+=watershed sh -c '/sbin/lvm vgscan; /sbin/lvm
vgchange -a y'

after timeout all go es well, again - until next boot.

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

Title:
  Boot failure with root on /dev/md* (raid)

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-08-24 Thread molostoff
I have found that scatter/gather NIC features on server can affect the
behavor described above - just disabled them on server:

# my primary iface is eth1.
# here below is a stanza in a server host interfaces config
# that requires ethtool be installed
# the same as ethtool -K eth1 sg on
auto eth1   
 
iface eth1 inet manual  
 
   offload-sg   off 

I am not sure that this can fix a problem or simply hide, please test it
on your servers and respond. But surely, fix does not affect client
side, and excuse hard kernel oop reaction to error in packets from
server connections.

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-08-24 Thread molostoff
should be:  ethtool -K eth1 sg off - in cli mode

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 822143] [NEW] incorrect status icons

2011-08-06 Thread molostoff
Public bug reported:

main wicd-kde window displays connection status icons in a networks list
(1st iconified column) whose image does not relate to real connection
state, but strangely inverted - connected network is shown with
disconnected icon, while all others (disconnected networks) are shown
as connected.

** Affects: wicd-kde (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/822143

Title:
  incorrect status icons

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-07-31 Thread molostoff
At 2.6.38-11-server #48 still oops before every reboot (cant umount /
due too this issue)

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-06-24 Thread molostoff
@Jens
A /etc/auto.net file is standard (came from ubuntu package)

** Attachment added: /etc/auto.net
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/769927/+attachment/2180496/+files/auto.net

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-06-24 Thread molostoff
@Jens
/etc/default/nfs-common

Only option I have changed in this file is a line with

NEED_IDMAPD=yes

** Attachment added: /etc/default/nfs-common
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/769927/+attachment/2180497/+files/nfs-common

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-06-24 Thread molostoff
@Jens

1) A server host config file /etc/default/nfs-common is the same as on
client

2) Server side mount point (in server /etc/fstab) which is shared via 
/etc/exports is lvm2 volume with ext4:
/dev/myhost/downloads   /var/lib/transmission-daemon   
autodefaults,noatime 0 2

(tune2fs -l /dev/myhost/downloads: Default mount options:
journal_data_writeback)


3) A server host config file /etc/default/nfs-kernel-server attached here.



** Attachment added: /etc/default/nfs-kernel-server
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/769927/+attachment/2180515/+files/nfs-kernel-server.txt

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-06-22 Thread molostoff
Both client and server are ubuntu/natty with all regular and security
updates installed.

autofs config on client (distro comments removed):
##
/net/etc/auto.net
+auto.master
##

nfs-kernel-server on server /etc/exports 
##
/var/lib/transmission-daemon/downloads  
*(ro,all_squash,anonuid=65534,anongid=65534,no_subtree_check)
##

So, as for me I see nothing special here... If only that autofs (in my
case) try to flush cache of read only volume, while it goes (or gone) to
umount??

Client is a wifi connected notebook, server is a directly wired to ZTE-W300 
router with static addresses for all of them.
Is there additional extra info needed?

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 769927] Re: Kernel Oops : Dentry still in use (1) [unmount of nfs4 0:1d]

2011-06-15 Thread molostoff
I see regularly this bug happen on my natty without nfs heavy load. In
my case autofs mounter tries to umount nfs share by timeout (usually 300
secs by default) and then this kernel stack dump printed. System becomes
unusable and unable to reboot, only hard reset can help.

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

Title:
  Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]

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

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


[Bug 795905] [NEW] cgroup-bin init scripts has errors at upstart

2011-06-11 Thread molostoff
Public bug reported:

in /etc :

diff --git a/cgconfig.conf b/cgconfig.conf
index 6211f46..24dd9fd 100644
--- a/cgconfig.conf
+++ b/cgconfig.conf
@@ -44,7 +44,7 @@
 #
 
 mount {
-   cpu = /sys/fs//cgroup/cpu;
+   cpu = /sys/fs/cgroup/cpu;
cpuacct = /sys/fs/cgroup/cpuacct;
devices = /sys/fs/cgroup/devices;
memory = /sys/fs/cgroup/memory;
diff --git a/init/cgconfig.conf b/init/cgconfig.conf
index 8509b29..6cec12f 100644
--- a/init/cgconfig.conf
+++ b/init/cgconfig.conf
@@ -16,7 +16,7 @@ pre-start script
 
mount -t tmpfs cgroups /sys/fs/cgroup
/usr/sbin/cgconfigparser -l $CGCONFIG
-   if [ $CREATE_DEFAULT == yes ]; then
+   if [ $CREATE_DEFAULT = yes ]; then
/usr/sbin/create_default_cgroups.sh
fi
 end script

** Affects: libcgroup (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/795905

Title:
  cgroup-bin init scripts has errors at upstart

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

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


[Bug 795371] [NEW] unable to use libgcal0 in akonadi

2011-06-09 Thread molostoff
Public bug reported:

Binary package hint: libgcal0

libgcal-dev unable to help getting more usable stack trace, but the
available one (appearing in akonadi add data source dialog) seems to
show strdup.

Various configurations were tested, with rebuilding from sources too,
but error 'segmentation fault' appears always at strdup called from
atom_extract_contact issue.

Thread 1 (Thread 0x7f0879d007a0 (LWP 12737)):
[KCrash Handler]
#6  0x7f0875a185d1 in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#7  0x7f0875a182e6 in strdup () from /lib/x86_64-linux-gnu/libc.so.6
#8  0x7f08781b8273 in ?? () from /usr/lib/libgcal.so.0
#9  0x7f08781b981e in atom_extract_contact () from /usr/lib/libgcal.so.0
#10 0x7f08781c0326 in extract_all_contacts () from /usr/lib/libgcal.so.0
#11 0x7f08781c42c5 in gcal_get_all_contacts () from /usr/lib/libgcal.so.0
#12 0x7f08781c17ae in gcal_get_contacts () from /usr/lib/libgcal.so.0
#13 0x00419e98 in _start ()

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


** Tags: akonadi gcal googledata

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

Title:
  unable to use libgcal0 in akonadi

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

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


[Bug 791616] [NEW] kcm_ssl module wont show user certs

2011-06-01 Thread molostoff
Public bug reported:

Binary package hint: kdelibs5-plugins

Systemsettings SSL config plugin does not show user added ssl
certificates.

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


** Tags: certificate config ssl systemsettings

** Summary changed:

- kdelibs5-plugins kcm_ssl module
+ kcm_ssl module wont show user certs

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

Title:
  kcm_ssl module wont show user certs

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


[Bug 781792] Re: kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

2011-05-19 Thread molostoff
I suspected automount service on my machine.

Here is my kernel crash/report message:

14185.881413] [ cut here ]
[14185.881480] kernel BUG at /build/buildd/linux-2.6.38/fs/dcache.c:947!
[14185.881544] invalid opcode:  [#1] SMP
[14185.881600] last sysfs file: /sys/devices/virtual/hwmon/hwmon0/temp1_input
[14185.881673] CPU 0
[14185.881700] Modules linked in: nfs lockd fscache nfs_acl auth_rpcgss sunrpc 
ip6table_filter ip6_tables parport_pc autofs
4 dm_crypt ppdev cryptd aes_x86_64 aes_generic snd_hda_codec_realtek 
snd_hda_intel snd_hda_codec snd_hwdep snd_pcm snd_seq_
midi snd_rawmidi snd_seq_midi_event snd_seq rfcomm snd_timer sco bnep 
snd_seq_device l2cap kvm_intel kvm ipt_MASQUERADE ipt
able_nat nf_nat nf_conntrack_ipv4 nf_defrag_ipv4 xt_state nf_conntrack 
ipt_REJECT xt_CHECKSUM iptable_mangle xt_tcpudp ipta
ble_filter ip_tables x_tables bridge stp coretemp uvcvideo r852 sm_common nand 
arc4 snd ir_lirc_codec lirc_dev iwl3945 iwlc
ore ir_sony_decoder nand_ids rc_rc6_mce ir_jvc_decoder mac80211 ir_rc6_decoder 
psmouse nand_ecc ir_rc5_decoder acer_wmi spa
rse_keymap videodev ene_ir lp soundcore microcode joydev btusb bluetooth 
v4l2_compat_ioctl32 mtd serio_raw cfg80211 snd_pag
e_alloc ir_nec_decoder rc_core parport usb_storage uas usbhid hid radeon 
sdhci_pci ttm firewire_ohci drm_kms_helper drm ahc
i video sdhci firewire_core crc_itu_t i2c_algo_bit libahci tg3
[14185.883329]
[14185.883353] Pid: 8313, comm: automount Not tainted 2.6.38-9-server 
#43-Ubuntu  /eMachine
[14185.883473] RIP: 0010:[81179ba5]  [81179ba5] 
shrink_dcache_for_umount_subtree+0x285/0x290
[14185.883585] RSP: 0018:880060c75de8  EFLAGS: 00010296
[14185.883641] RAX: 006c RBX: 88005fb04a1c RCX: 00d4
[14185.883708] RDX:  RSI: 0086 RDI: 0246
[14185.883777] RBP: 880060c75e28 R08: 0033 R09: 000131f0
[14185.883844] R10:  R11: 0001 R12: 88005fb04a1c
[14185.883910] R13: 88005fb049c0 R14: 88005fb04a60 R15: 7f6aafd2e160
[14185.883978] FS:  7f6aae00b700() GS:8800bf40() 
knlGS:
[14185.884056] CS:  0010 DS:  ES:  CR0: 80050033
[14185.884112] CR2: 7f863902b000 CR3: 00011b7bd000 CR4: 26e0
[14185.884181] DR0:  DR1:  DR2: 
[14185.884249] DR3:  DR6: 0ff0 DR7: 0400
[14185.884318] Process automount (pid: 8313, threadinfo 880060c74000, task 
88008793c4a0)
[14185.884396] Stack:
[14185.884422]  8800613f8258 81177566  
8800613f8000
[14185.884516]  88005fb04a1c 88005fb049c0 7f6aafd2f0b0 
7f6aafd2e160
[14185.884608]  880060c75e58 8117c4e1 880060c75e48 
8800613f8000
[14185.890038] Call Trace:
[14185.891126]  [81177566] ? pollwake+0x56/0x60
[14185.891126]  [8117c4e1] shrink_dcache_for_umount+0x51/0x90
[14185.891126]  [8116704c] generic_shutdown_super+0x2c/0x100
[14185.891126]  [811671b6] kill_anon_super+0x16/0x60
[14185.891126]  [81167227] kill_litter_super+0x27/0x30

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

Title:
  kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

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


[Bug 781792] Re: kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

2011-05-19 Thread molostoff
$ uname -a
Linux aspire 2.6.38-9-server #43-Ubuntu SMP Thu Apr 28 15:40:34 UTC 2011 x86_64 
x86_64 x86_64 GNU/Linux

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

Title:
  kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

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


[Bug 742084] Re: kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)

2011-05-19 Thread molostoff
Is there (https://bugs.launchpad.net/ubuntu/+source/linux/+bug/781792)
the same thing?

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

Title:
  kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)

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


[Bug 781792] Re: kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

2011-05-19 Thread molostoff
*** This bug is a duplicate of bug 769927 ***
https://bugs.launchpad.net/bugs/769927

** This bug has been marked a duplicate of bug 742084
   kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)
 * You can subscribe to bug 742084 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/742084/+subscribe

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

Title:
  kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

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


[Bug 782615] Re: Kernel panic when shutdown

2011-05-19 Thread molostoff
*** This bug is a duplicate of bug 769927 ***
https://bugs.launchpad.net/bugs/769927

** This bug has been marked a duplicate of bug 742084
   kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)
 * You can subscribe to bug 742084 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/742084/+subscribe

** This bug is no longer a duplicate of bug 742084
   kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)
** This bug has been marked a duplicate of bug 769927
   Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]
 * You can subscribe to bug 769927 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/769927/+subscribe

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

Title:
  Kernel panic when shutdown

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


[Bug 781792] Re: kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

2011-05-19 Thread molostoff
*** This bug is a duplicate of bug 769927 ***
https://bugs.launchpad.net/bugs/769927

** This bug is no longer a duplicate of bug 742084
   kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)
** This bug has been marked a duplicate of bug 769927
   Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]
 * You can subscribe to bug 769927 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/769927/+subscribe

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

Title:
  kernel crash in /build/buildd/linux-2.6.38/fs/dcache.c:947

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


[Bug 742084] Re: kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)

2011-05-19 Thread molostoff
*** This bug is a duplicate of bug 769927 ***
https://bugs.launchpad.net/bugs/769927

** This bug has been marked a duplicate of bug 769927
   Kernel Oops : Dentry  still in use (1) [unmount of nfs4 0:1d]
 * You can subscribe to bug 769927 by following this link: 
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/769927/+subscribe

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

Title:
  kernel BUG on network mounts (GVFS/SSH and AutoFS/NFS)

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


[Bug 520386] Re: libvirt-bin hypervisor does not support virConnectNumOfInterfaces / unable to create domain with virt-manager using network bridge

2011-05-15 Thread molostoff
+1, this affects me as well too

-- 
You received this bug notification because you are a member of Ubuntu
Server Team, which is subscribed to libvirt in Ubuntu.
https://bugs.launchpad.net/bugs/520386

Title:
  libvirt-bin hypervisor does not support virConnectNumOfInterfaces /
  unable to create domain with virt-manager using network bridge

-- 
Ubuntu-server-bugs mailing list
Ubuntu-server-bugs@lists.ubuntu.com
Modify settings or unsubscribe at: 
https://lists.ubuntu.com/mailman/listinfo/ubuntu-server-bugs


[Bug 520386] Re: libvirt-bin hypervisor does not support virConnectNumOfInterfaces / unable to create domain with virt-manager using network bridge

2011-05-15 Thread molostoff
+1, this affects me as well too

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

Title:
  libvirt-bin hypervisor does not support virConnectNumOfInterfaces /
  unable to create domain with virt-manager using network bridge

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


[Bug 446845] Re: X server restart KDE session while OpenGL KDE desktop effects is set on.

2011-04-29 Thread molostoff
natty works fine after 'do-release-upgrade' for me, except blur effect:
enabling it autodisables effects by KDE at all.

It is just annoying thing, that can be reverted by manually adjust
kwinrc settings, so it is no more a bug for me.

** Changed in: mesa (Ubuntu)
   Status: Incomplete = Fix Released

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

Title:
  X server restart KDE session while OpenGL KDE desktop effects is set
  on.

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


[Bug 618450] Re: plymouthd does not quit on starting kdm

2010-08-22 Thread molostoff
Yes, it is /etc/init/plymouth-stop.conf, I suppose they will fix this
file later anyway.

-- 
plymouthd does not quit on starting kdm
https://bugs.launchpad.net/bugs/618450
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 618450] Re: plymouthd does not quit on starting kdm

2010-08-22 Thread molostoff
indeed, not all the file, but kdm - 0kdm (disabling kde match in case
construct)

-- 
plymouthd does not quit on starting kdm
https://bugs.launchpad.net/bugs/618450
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 618450] Re: plymouthd does not quit on starting kdm

2010-08-16 Thread molostoff
Yep, should it redirected to kubuntu-ppa, according to
http://www.kubuntu.org/news/kde-sc-45, or I have to repost bug again
there?

I have temporarily fixed it:

pre-start script
case $JOB in
gdm|0kdm|ubiquity|oem-config)
exit 0
;;
*)  
   
exec /bin/plymouth quit
;;
esac
end script

-- 
plymouthd does not quit on starting kdm
https://bugs.launchpad.net/bugs/618450
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 618450] [NEW] plymouthd does not quit on starting kdm

2010-08-15 Thread molostoff
Public bug reported:

Binary package hint: plymouth

Just after login into KDE sc4.5 I see plymouthd --mode=boot still
running and eating 'wakeups' (in terms of powertop) about 20% cpu. Since
I do not know a way to disable it I need manual kill -9 action to stop
it.

According to /etc/init/plymouth-stop.conf plymouthd should quit on
starting kdm, but it won't.

ProblemType: Bug
DistroRelease: Ubuntu 10.04
Package: plymouth 0.8.2-2ubuntu2
ProcVersionSignature: Ubuntu 2.6.32-24.39-preempt 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-preempt x86_64
Architecture: amd64
Date: Mon Aug 16 04:44:29 2010
DefaultPlymouth: /lib/plymouth/themes/kubuntu-logo/kubuntu-logo.plymouth
InstallationMedia: Kubuntu 10.04 LTS Lucid Lynx - Release amd64 (20100427)
ProcCmdLine: BOOT_IMAGE=/vmlinuz-2.6.32-24-preempt 
root=/dev/mapper/hostname-root ro noacpi quiet splash radeon.modeset=1 
video=LVDS-1:e elevator=deadline clocksource=hpet rootflags=data=writeback
ProcEnviron:
 LANGUAGE=
 PATH=(custom, no user)
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
ProcFB: 0 radeondrmfb
SourcePackage: plymouth
TextPlymouth: /lib/plymouth/themes/ubuntu-text/ubuntu-text.plymouth
dmi.bios.date: 11/10/2008
dmi.bios.vendor: Acer
dmi.bios.version: V1.45
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: eMachine
dmi.board.vendor: Acer
dmi.board.version: V1.45
dmi.chassis.type: 1
dmi.chassis.vendor: Acer
dmi.chassis.version: V1.45
dmi.modalias: 
dmi:bvnAcer:bvrV1.45:bd11/10/2008:svn:pn:pvrV1.45:rvnAcer:rneMachine:rvrV1.45:cvnAcer:ct1:cvrV1.45:
dmi.product.version: V1.45

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


** Tags: amd64 apport-bug lucid

-- 
plymouthd does not quit on starting kdm
https://bugs.launchpad.net/bugs/618450
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 618450] Re: plymouthd does not quit on starting kdm

2010-08-15 Thread molostoff

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/618450/+attachment/1492626/+files/BootDmesg.txt

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/618450/+attachment/1492627/+files/CurrentDmesg.txt

** Attachment added: Dependencies.txt
   
https://bugs.launchpad.net/bugs/618450/+attachment/1492628/+files/Dependencies.txt

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/618450/+attachment/1492629/+files/Lspci.txt

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/618450/+attachment/1492630/+files/Lsusb.txt

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/618450/+attachment/1492631/+files/ProcCpuinfo.txt

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/618450/+attachment/1492632/+files/ProcInterrupts.txt

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/618450/+attachment/1492633/+files/ProcModules.txt

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/618450/+attachment/1492634/+files/UdevDb.txt

** Attachment added: UdevLog.txt
   https://bugs.launchpad.net/bugs/618450/+attachment/1492635/+files/UdevLog.txt

-- 
plymouthd does not quit on starting kdm
https://bugs.launchpad.net/bugs/618450
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 581941] Re: statd does not start automatically when needed nor can be forced to start on boot

2010-06-22 Thread molostoff
It seems to me that it happens with my desktop too. I have 2 ubuntu
servers 10.04 and one desktop 10.04. And statd problem exists only on
desktop itself, servers go fine.

As a simple comparison I see the difference in network interfaces:
servers has a static interface config, while desktop has network-manager
config, thus network interfaces on desktop are unconfigured until
desktop login and there is nowhere to do `sm-notify` nfs cliens about
reeboot. So sm-notify respawns in awaiting them to be ready for action,
but killed because respawning to fast. This is only a supposition...

-- 
statd does not start automatically when needed nor can be forced to start on 
boot
https://bugs.launchpad.net/bugs/581941
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 581941] Re: statd does not start automatically when needed nor can be forced to start on boot

2010-06-22 Thread molostoff
I have tryed this as a temporary fix:

-start on (started portmap or mounting TYPE=nfs)
+start on (started portmap and net-device-up IFACE!=lo)

and it works - after desktop logon I can see shares that are in rw-mode.
But I think that statd should start before autofs (which I have using).

-- 
statd does not start automatically when needed nor can be forced to start on 
boot
https://bugs.launchpad.net/bugs/581941
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 461755] [NEW] ktorrent starts in several instances

2009-10-27 Thread molostoff
Public bug reported:

Binary package hint: ktorrent

Scenario is the following:

1) Ktorrent is autostarted at logon
2) folder for ktorrent downloads is not mounted (i usually use handy-mounted 
archive volume for downloads)
3) Ktorrent try to restart and continue downloads those were not downloaded 
completely 
4) Ktorrent (being found that download directory does not exist, not mounted) 
displays a dialog asking what to do with that download
5) I see no icon in system tray and as a mistake run ktorrent from kick-off 
menu launcher, and its starts asking the same.
6) I mount my archive and click on ktorrent dialog
7) Then I see two ktorrent arrows in system tray wondering about what they will 
do there together?

Yep, I think that a test for one instance running looks like mandatory,
as for example I might kill down my kwin session (and will not see
system tray) and still answer ktorrent dialogs, starting several
ktorrents

Please, unparallelize them!
Thanks

ProblemType: Bug
Architecture: amd64
Date: Tue Oct 27 11:50:48 2009
DistroRelease: Ubuntu 9.10
InstallationMedia: Kubuntu 9.10 Karmic Koala - Release Candidate amd64 
(20091020.2)
Package: ktorrent 3.2.4+dfsg.1-1ubuntu1
ProcEnviron:
 LANGUAGE=
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: ktorrent
Uname: Linux 2.6.31-14-generic x86_64

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


** Tags: amd64 apport-bug

-- 
ktorrent starts in several instances
https://bugs.launchpad.net/bugs/461755
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to ktorrent in ubuntu.

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


[Bug 461755] Re: ktorrent starts in several instances

2009-10-27 Thread molostoff

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

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

-- 
ktorrent starts in several instances
https://bugs.launchpad.net/bugs/461755
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to ktorrent in ubuntu.

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


[Bug 458241] Re: WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 suspend_test_finish+0x7c/0x80()

2009-10-22 Thread molostoff
At becoming resume (successful) from an autosuspended state I have got
this stuff too. Shift key pressed to wakeup.

-- 
WARNING: at /build/buildd/linux-2.6.31/kernel/power/suspend_test.c:52 
suspend_test_finish+0x7c/0x80()
https://bugs.launchpad.net/bugs/458241
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 458780] [NEW] sorting in numeric columns is incorrect

2009-10-22 Thread molostoff
Public bug reported:

Binary package hint: ktorrent

Columns in main window table widget are sortable and in a numeric one
(for ex. a Download speed col) sorts values in incorrect order. Empty
values are not smallest, most fastest speed becomes smallest after
resorting (pressing column title).

This behaviour affects not only ktorrent, but all applications using
this widget.

ProblemType: Bug
Architecture: amd64
Date: Fri Oct 23 09:17:46 2009
DistroRelease: Ubuntu 9.10
ExecutablePath: /usr/bin/ktorrent
InstallationMedia: Kubuntu 9.10 Karmic Koala - Release Candidate amd64 
(20091020.2)
Package: ktorrent 3.2.4+dfsg.1-1ubuntu1
ProcEnviron:
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-14.48-generic
SourcePackage: ktorrent
Uname: Linux 2.6.31-14-generic x86_64

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


** Tags: amd64 apport-bug

-- 
sorting in numeric columns is incorrect
https://bugs.launchpad.net/bugs/458780
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to ktorrent in ubuntu.

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


[Bug 458780] Re: sorting in numeric columns is incorrect

2009-10-22 Thread molostoff

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

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

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

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

-- 
sorting in numeric columns is incorrect
https://bugs.launchpad.net/bugs/458780
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 432360] Re: sreadahead should support separate /usr, /var etc.

2009-10-21 Thread molostoff
Similarly, the same as camper365

/etc/init/sreadahead.conf:
#start on starting mountall
start on filesystem

-- 
sreadahead should support separate /usr, /var etc.
https://bugs.launchpad.net/bugs/432360
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 265072] Re: kbluetooth4 crashed with SIGSEGV

2009-10-16 Thread molostoff
after login - affects me too

-- 
kbluetooth4 crashed with SIGSEGV
https://bugs.launchpad.net/bugs/265072
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 450038] [NEW] amarok interface (GUI) speed decreased

2009-10-12 Thread molostoff
Public bug reported:

Binary package hint: amarok

By an unknown reason new updates to amarok decreased GUI speed and
responsiveness - moving/resizing left or right sidebars can not be done
in a manner they was before. Controls of these sidebars become drawn
several times, freezes interface and looks as unmovable.

ProblemType: Bug
Architecture: amd64
Date: Tue Oct 13 06:45:42 2009
DistroRelease: Ubuntu 9.10
ExecutablePath: /usr/bin/amarok
InstallationMedia: Kubuntu 9.10 Karmic Koala - Alpha amd64 (20091008)
Package: amarok 2:2.2.0-0ubuntu2
ProcEnviron:
 LANG=ru_RU.UTF-8
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 2.6.31-13.44-generic
SourcePackage: amarok
Uname: Linux 2.6.31-13-generic x86_64
XsessionErrors:
 (chromium-browser:2029): Gdk-WARNING **: XID collision, trouble ahead
 (chromium-browser:2054): Gdk-WARNING **: XID collision, trouble ahead
 (chromium-browser:2054): Gdk-WARNING **: XID collision, trouble ahead
 (chromium-browser:2054): Gdk-WARNING **: XID collision, trouble ahead
 (chromium-browser:2134): Gdk-WARNING **: XID collision, trouble ahead

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


** Tags: amd64 apport-bug

-- 
amarok interface (GUI) speed decreased
https://bugs.launchpad.net/bugs/450038
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 450038] Re: amarok interface (GUI) speed decreased

2009-10-12 Thread molostoff

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

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

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

-- 
amarok interface (GUI) speed decreased
https://bugs.launchpad.net/bugs/450038
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to amarok in ubuntu.

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


[Bug 446845] Re: X server restart KDE session while OpenGL KDE desktop effects is set on.

2009-10-10 Thread molostoff
Is it the same as in
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/446578

-- 
X server restart KDE session while OpenGL KDE desktop effects is set on.
https://bugs.launchpad.net/bugs/446845
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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