[Bug 1920629] [NEW] My touchpad is not working at all since installation, (external mouse is working peoperly).

2021-03-20 Thread Abhay Raj Gupta
Public bug reported:

My touchpad is not working.

ProblemType: Bug
DistroRelease: Ubuntu 20.04
Package: linux-image-5.8.0-45-generic 5.8.0-45.51~20.04.1+1
ProcVersionSignature: Ubuntu 5.8.0-45.51~20.04.1-generic 5.8.18
Uname: Linux 5.8.0-45-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.16
Architecture: amd64
CasperMD5CheckResult: skip
CurrentDesktop: ubuntu:GNOME
Date: Sat Mar 20 23:17:17 2021
InstallationDate: Installed on 2021-03-15 (4 days ago)
InstallationMedia: Ubuntu 20.04.1 LTS "Focal Fossa" - Release amd64 (20200731)
SourcePackage: linux-signed-hwe-5.8
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: linux-signed-hwe-5.8 (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug focal

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

Title:
  My touchpad is not working at all since installation,(external mouse
  is working peoperly).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.8/+bug/1920629/+subscriptions

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

[Bug 1863162] [NEW] Inconsistency detected by ld.so: dl-tls.c: 493: _dl_allocate_tls_init: Assertion `listp->slotinfo[cnt].gen <= GL(dl_tls_generation)' failed!

2020-02-13 Thread Abhay joshi
Public bug reported:

When using glibc as part of our NSX product, we are running into the
above mentioned glibc assert case sometimes.

Here's relevant revision information :

Ubuntu - 16.04
glibc version - 2.23.


This is a known issue with resolution identified as per thread link below :

 https://sourceware.org/ml/libc-alpha/2016-01/msg00480.htm and in
addition see Comment 9 in
https://sourceware.org/bugzilla/show_bug.cgi?id=19329.

We have applied this patch in our product and it seems to be working
fine.

Is there a way to upstream these changes and make those available in
standard glibc upstream?

Please let us know.

Here are the two patches:

PATCH1
=
diff --git a/elf/dl-open.c b/elf/dl-open.c
index 6f178b3..2b97605 100644
--- a/elf/dl-open.c
+++ b/elf/dl-open.c
@@ -524,9 +524,16 @@ dl_open_worker (void *a)
 }
 
   /* Bump the generation number if necessary.  */
-  if (any_tls && __builtin_expect (++GL(dl_tls_generation) == 0, 0))
-_dl_fatal_printf (N_("\
+  if (any_tls)
+{
+  size_t newgen = GL(dl_tls_generation) + 1;
+  if (__builtin_expect (newgen == 0, 0))
+   _dl_fatal_printf (N_("\
 TLS generation counter wrapped!  Please report this."));
+  /* Synchronize with the load acquire in _dl_allocate_tls_init.
+See the CONCURRENCY NOTES there in dl-tls.c.  */
+  atomic_store_release (&GL(dl_tls_generation), newgen);
+}
 
   /* We need a second pass for static tls data, because _dl_update_slotinfo
  must not be run while calls to _dl_add_to_slotinfo are still pending.  */
diff --git a/elf/dl-tls.c b/elf/dl-tls.c
index ed13fd9..7184a54 100644
--- a/elf/dl-tls.c
+++ b/elf/dl-tls.c
@@ -443,6 +443,48 @@ _dl_resize_dtv (dtv_t *dtv)
 }
 
 
+/* CONCURRENCY NOTES:
+
+   During dynamic TLS and DTV allocation and setup various objects may be
+   accessed concurrently:
+
+ GL(dl_tls_max_dtv_idx)
+ GL(dl_tls_generation)
+ listp->slotinfo[i].map
+ listp->slotinfo[i].gen
+ listp->next
+
+   where listp is a node in the GL(dl_tls_dtv_slotinfo_list) list.  The public
+   APIs that may access them are
+
+ Writers: dlopen, dlclose and dynamic linker start up code.
+ Readers only: pthread_create and __tls_get_addr (TLS access).
+
+   The writers hold the GL(dl_load_lock), but the readers don't, so atomics
+   should be used when accessing these globals.
+
+   dl_open_worker (called from dlopen) for each loaded module increases
+   GL(dl_tls_max_dtv_idx), sets the link_map of the module up, adds a new
+   slotinfo entry to GL(dl_tls_dtv_slotinfo_list) with the new link_map and
+   the next generation number GL(dl_tls_generation)+1.  Then it increases
+   GL(dl_tls_generation) which sinals that the new slotinfo entries are ready.
+   This last write is release mo so previous writes can be synchronized.
+
+   GL(dl_tls_max_dtv_idx) is always an upper bound of the modids of the ready
+   entries.  The slotinfo list might be shorter than that during dlopen.
+   Entries in the slotinfo list might have gen > GL(dl_tls_generation) and
+   map == NULL.
+
+   _dl_allocate_tls_init is called from pthread_create and it looks through
+   the slotinfo list to do the dynamic TLS and DTV setup for the new thread.
+   It first loads the current GL(dl_tls_generation) with acquire mo and only
+   considers modules up to that generation ignoring any later change to the
+   slotinfo list.
+
+   TODO: Entries might get changed and freed in dlclose without sync.
+   TODO: __tls_get_addr is not yet synchronized with dlopen and dlclose.
+*/
+
 void *
 internal_function
 _dl_allocate_tls_init (void *result)
@@ -455,9 +497,18 @@ _dl_allocate_tls_init (void *result)
   struct dtv_slotinfo_list *listp;
   size_t total = 0;
   size_t maxgen = 0;
-
-  /* Check if the current dtv is big enough.   */
-  if (dtv[-1].counter < GL(dl_tls_max_dtv_idx))
+  size_t gen_count;
+  size_t dtv_slots;
+
+  /* Synchronize with the release mo store in dl_open_worker, modules with
+ larger generation number are ignored.  */
+  gen_count = atomic_load_acquire (&GL(dl_tls_generation));
+  /* Check if the current dtv is big enough.  GL(dl_tls_max_dtv_idx) is
+ concurrently modified, but after the release mo store to
+ GL(dl_tls_generation) it always remains a modid upper bound for
+ previously loaded modules so relaxed access is enough.  */
+  dtv_slots = atomic_load_relaxed (&GL(dl_tls_max_dtv_idx));
+  if (dtv[-1].counter < dtv_slots)
 {
   /* Resize the dtv.  */
   dtv = _dl_resize_dtv (dtv);
@@ -480,18 +531,25 @@ _dl_allocate_tls_init (void *result)
  void *dest;
 
  /* Check for the total number of used slots.  */
- if (total + cnt > GL(dl_tls_max_dtv_idx))
+ if (total + cnt > dtv_slots)
break;
 
- map = listp->slotinfo[cnt].map;
+ /* Synchronize with the release mo store in _dl_add_to_slotinfo in
+dlopen, so the generation number read below is for a valid entry.

[Bug 1858794] Re: AddressSanitizer with LTO does not show file name and line number in backtrace

2020-01-08 Thread Abhay Sachan
** Description changed:

  Using ASan/UBSan with LTO leads to printing of only hex offsets in the
  stacktraces. The issue seems to be fixed in gcc-9 on Eoan, but it doesnt
  work with bionic gcc-8.
  
  There is a GCC bug for this, which was fixed an year ago, but it is not
- there in bionin gcc-8.
+ there in bionic gcc-8.
  
  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78063
  
  I have attached a simple test program to demonstrate the problem, which
  is compiled with following options:
  
  $ gcc -flto -g -fsanitize=address -o leak leak.c
- 
  
  With bionic, gcc-8 gives:
  
  Direct leak of 4 byte(s) in 1 object(s) allocated from:
  #0 0x7f35f6106f00 in __interceptor_malloc 
../../../../src/libsanitizer/asan/asan_malloc_linux.cc:86
  #1 0x56193a9fb7f6 in leak (/home/asachan/leak+0x7f6)
  #2 0x56193a9fb812 in main (/home/asachan/leak+0x812)
  #3 0x7f35f5c49b96 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x21b96)
  
  With Eoan, gcc-9 gives:
  
  Direct leak of 4 byte(s) in 1 object(s) allocated from:
  #0 0x7fb3baa7eae8 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10dae8)
  #1 0x55c775c2e16a in leak /home/asachan/kachra/leak.c:7
  #2 0x55c775c2e186 in main /home/asachan/kachra/leak.c:13
  #3 0x7fb3ba7a71e2 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x271e2)
  
  The fix seems to be in libbacktrace, which gets picked up in
  libsanitizer as well:
  
  https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=268663

** Description changed:

  Using ASan/UBSan with LTO leads to printing of only hex offsets in the
  stacktraces. The issue seems to be fixed in gcc-9 on Eoan, but it doesnt
  work with bionic gcc-8.
  
  There is a GCC bug for this, which was fixed an year ago, but it is not
  there in bionic gcc-8.
  
  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78063
  
  I have attached a simple test program to demonstrate the problem, which
  is compiled with following options:
  
  $ gcc -flto -g -fsanitize=address -o leak leak.c
  
  With bionic, gcc-8 gives:
  
  Direct leak of 4 byte(s) in 1 object(s) allocated from:
  #0 0x7f35f6106f00 in __interceptor_malloc 
../../../../src/libsanitizer/asan/asan_malloc_linux.cc:86
  #1 0x56193a9fb7f6 in leak (/home/asachan/leak+0x7f6)
  #2 0x56193a9fb812 in main (/home/asachan/leak+0x812)
  #3 0x7f35f5c49b96 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x21b96)
  
  With Eoan, gcc-9 gives:
  
  Direct leak of 4 byte(s) in 1 object(s) allocated from:
  #0 0x7fb3baa7eae8 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10dae8)
  #1 0x55c775c2e16a in leak /home/asachan/kachra/leak.c:7
  #2 0x55c775c2e186 in main /home/asachan/kachra/leak.c:13
  #3 0x7fb3ba7a71e2 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x271e2)
  
  The fix seems to be in libbacktrace, which gets picked up in
  libsanitizer as well:
  
  https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=268663
+ 
+ In case you are trying to reproduce this issue in Eoan with gcc-8, it wont be 
visible because libasan is same for gcc-8 and gcc-9, and libasan
+ for gcc-9 has the fix which works for gcc-8 as well.

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

Title:
  AddressSanitizer with LTO does not show file name and line number in
  backtrace

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

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

[Bug 1858794] Re: AddressSanitizer with LTO does not show file name and line number in backtrace

2020-01-08 Thread Abhay Sachan
** Description changed:

  Using ASan/UBSan with LTO leads to printing of only hex offsets in the
  stacktraces. The issue seems to be fixed in gcc-9 on Eoan, but it doesnt
  work with bionic gcc-8.
  
  There is a GCC bug for this, which was fixed an year ago, but it is not
  there in bionin gcc-8.
  
  https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78063
  
- I have attached a simple test program to demonstrate the problem:
+ I have attached a simple test program to demonstrate the problem, which
+ is compiled with following options:
+ 
+ $ gcc -flto -g -fsanitize=address -o leak leak.c
+ 
  
  With bionic, gcc-8 gives:
  
  Direct leak of 4 byte(s) in 1 object(s) allocated from:
- #0 0x7f35f6106f00 in __interceptor_malloc 
../../../../src/libsanitizer/asan/asan_malloc_linux.cc:86
- #1 0x56193a9fb7f6 in leak (/home/asachan/leak+0x7f6)
- #2 0x56193a9fb812 in main (/home/asachan/leak+0x812)
- #3 0x7f35f5c49b96 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x21b96)
+ #0 0x7f35f6106f00 in __interceptor_malloc 
../../../../src/libsanitizer/asan/asan_malloc_linux.cc:86
+ #1 0x56193a9fb7f6 in leak (/home/asachan/leak+0x7f6)
+ #2 0x56193a9fb812 in main (/home/asachan/leak+0x812)
+ #3 0x7f35f5c49b96 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x21b96)
  
  With Eoan, gcc-9 gives:
  
  Direct leak of 4 byte(s) in 1 object(s) allocated from:
- #0 0x7fb3baa7eae8 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10dae8)
- #1 0x55c775c2e16a in leak /home/asachan/kachra/leak.c:7
- #2 0x55c775c2e186 in main /home/asachan/kachra/leak.c:13
- #3 0x7fb3ba7a71e2 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x271e2)
+ #0 0x7fb3baa7eae8 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10dae8)
+ #1 0x55c775c2e16a in leak /home/asachan/kachra/leak.c:7
+ #2 0x55c775c2e186 in main /home/asachan/kachra/leak.c:13
+ #3 0x7fb3ba7a71e2 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x271e2)
  
  The fix seems to be in libbacktrace, which gets picked up in
  libsanitizer as well:
  
  https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=268663

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

Title:
  AddressSanitizer with LTO does not show file name and line number in
  backtrace

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

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

[Bug 1858794] Re: AddressSanitizer with LTO does not show file name and line number in backtrace

2020-01-08 Thread Abhay Sachan
Eoan gcc-v output:

 gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 9.2.1-9ubuntu2' 
--with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-9 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-libstdcxx-time=yes 
--with-default-libstdcxx-abi=new --enable-gnu-unique-object 
--disable-vtable-verify --enable-plugin --enable-default-pie --with-system-zlib 
--with-target-system-zlib=auto --enable-multiarch --disable-werror 
--with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 
--enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none,hsa 
--without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu 
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.2.1 20191008 (Ubuntu 9.2.1-9ubuntu2)

Bionic, gcc -v output:
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
8.3.0-6ubuntu1~18.04.1' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-8 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu 
--enable-libstdcxx-debug --enable-libstdcxx-time=yes 
--with-default-libstdcxx-abi=new --enable-gnu-unique-object 
--disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie 
--with-system-zlib --with-target-system-zlib --enable-objc-gc=auto 
--enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 
--with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic 
--enable-offload-targets=nvptx-none --without-cuda-driver 
--enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu 
--target=x86_64-linux-gnu
Thread model: posix
gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1~18.04.1)

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

Title:
  AddressSanitizer with LTO does not show file name and line number in
  backtrace

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

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

[Bug 1858794] [NEW] AddressSanitizer with LTO does not show file name and line number in backtrace

2020-01-08 Thread Abhay Sachan
Public bug reported:

Using ASan/UBSan with LTO leads to printing of only hex offsets in the
stacktraces. The issue seems to be fixed in gcc-9 on Eoan, but it doesnt
work with bionic gcc-8.

There is a GCC bug for this, which was fixed an year ago, but it is not
there in bionin gcc-8.

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78063

I have attached a simple test program to demonstrate the problem:

With bionic, gcc-8 gives:

Direct leak of 4 byte(s) in 1 object(s) allocated from:
#0 0x7f35f6106f00 in __interceptor_malloc 
../../../../src/libsanitizer/asan/asan_malloc_linux.cc:86
#1 0x56193a9fb7f6 in leak (/home/asachan/leak+0x7f6)
#2 0x56193a9fb812 in main (/home/asachan/leak+0x812)
#3 0x7f35f5c49b96 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x21b96)

With Eoan, gcc-9 gives:

Direct leak of 4 byte(s) in 1 object(s) allocated from:
#0 0x7fb3baa7eae8 in malloc (/lib/x86_64-linux-gnu/libasan.so.5+0x10dae8)
#1 0x55c775c2e16a in leak /home/asachan/kachra/leak.c:7
#2 0x55c775c2e186 in main /home/asachan/kachra/leak.c:13
#3 0x7fb3ba7a71e2 in __libc_start_main 
(/lib/x86_64-linux-gnu/libc.so.6+0x271e2)

The fix seems to be in libbacktrace, which gets picked up in
libsanitizer as well:

https://gcc.gnu.org/viewcvs/gcc?view=revision&revision=268663

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

** Attachment added: "Test program to reproduce the reported issue"
   https://bugs.launchpad.net/bugs/1858794/+attachment/5318566/+files/leak.c

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

Title:
  AddressSanitizer with LTO does not show file name and line number in
  backtrace

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

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

[Bug 1801566] [NEW] package install-info 6.1.0.dfsg.1-5 failed to install/upgrade: subprocess installed post-installation script returned error exit status 2

2018-11-03 Thread Abhay Koradiya
Public bug reported:

restarted my system.

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: install-info 6.1.0.dfsg.1-5
ProcVersionSignature: Ubuntu 4.4.0-135.161-generic 4.4.140
Uname: Linux 4.4.0-135-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.5
Architecture: amd64
Date: Sun Nov  4 00:34:15 2018
DuplicateSignature:
 package:install-info:6.1.0.dfsg.1-5
 Processing triggers for install-info (6.1.0.dfsg.1-5) ...
 /usr/sbin/update-info-dir: 3: export: JAVA_HOME.: bad variable name
 dpkg: error processing package install-info (--unpack):
  subprocess installed post-installation script returned error exit status 2
ErrorMessage: subprocess installed post-installation script returned error exit 
status 2
InstallationDate: Installed on 2017-02-09 (633 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.19
SourcePackage: texinfo
Title: package install-info 6.1.0.dfsg.1-5 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 2
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package xenial

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

Title:
  package install-info 6.1.0.dfsg.1-5 failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 2

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

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

[Bug 1708874] Re: Touchpad stops working after a few seconds

2018-09-15 Thread Abhay Bhattacharjee
the same thing happens with me wired mouse works in and but touchpad
is incompatible i am on lenovo ideapad 330

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

Title:
  Touchpad stops working after a few seconds

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

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

[Bug 1733557] Re: Login screen showing Authentication Failure Switch to greeter...

2018-05-13 Thread Abhay Mitra
Same issue on Ubuntu 16.04.4 LTS (single user login).

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

Title:
  Login screen showing Authentication Failure Switch to greeter...

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

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

[Bug 1732899] [NEW] package shim-signed 1.32~17.04.1+0.9+1474479173.6c180c6-1ubuntu1 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2017-11-17 Thread Abhay Kumar
Public bug reported:

while installation it also shows grub 2 error

ProblemType: Package
DistroRelease: Ubuntu 17.04
Package: shim-signed 1.32~17.04.1+0.9+1474479173.6c180c6-1ubuntu1
ProcVersionSignature: Ubuntu 4.10.0-38.42-generic 4.10.17
Uname: Linux 4.10.0-38-generic x86_64
.proc.sys.kernel.moksbstate_disabled: 0
ApportVersion: 2.20.4-0ubuntu4
AptOrdering:
 shim:amd64: Install
 shim-signed:amd64: Install
 NULL: ConfigurePending
Architecture: amd64
BootEFIContents:
 fw
 fwupx64.efi
Date: Fri Nov 17 17:29:21 2017
Df:
 Filesystem 1K-blocksUsed Available Use% Mounted on
 /dev/sda1  960379920 6891332 904634164   1% /
 /dev/sdb 1571328 1571328 0 100% /cdrom
 udev 4026324   0   4026324   0% /dev
 tmpfs 8085649768798796   2% /run
EFIBootMgr: Error: command ['efibootmgr', '-v'] failed with exit code 2: EFI 
variables are not supported on this system.
EFITables:
 Nov 17 17:31:28 abhay-Lenovo-G50-80 fwupd[1974]: disabling plugin because: 
failed to coldplug uefi: UEFI firmware updating not supported
 Nov 17 17:34:06 abhay-Lenovo-G50-80 update-notifier.desktop[2163]: diff: 
/boot/efi/EFI/ubuntu/shimx64.efi: No such file or directory
 Nov 17 17:34:06 abhay-Lenovo-G50-80 update-notifier.desktop[2163]: diff: 
/boot/efi/EFI/ubuntu/grubx64.efi: No such file or directory
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
RelatedPackageVersions:
 dpkg 1.18.10ubuntu2
 apt  1.4
SourcePackage: shim-signed
Title: package shim-signed 1.32~17.04.1+0.9+1474479173.6c180c6-1ubuntu1 failed 
to install/upgrade: subprocess installed post-installation script returned 
error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: shim-signed (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package zesty

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

Title:
  package shim-signed 1.32~17.04.1+0.9+1474479173.6c180c6-1ubuntu1
  failed to install/upgrade: subprocess installed post-installation
  script returned error exit status 1

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

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

[Bug 1719154] [NEW] [Vostro 14-3468, Realtek ALC3246, Speaker, Internal] No sound at all

2017-09-24 Thread abhay
Public bug reported:

no sound coming in laptop. not in internal speaker nor in external on
being connected

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: alsa-base 1.0.25+dfsg-0ubuntu5
ProcVersionSignature: Ubuntu 4.4.0-46.67-generic 4.4.24
Uname: Linux 4.4.0-46-generic x86_64
ApportVersion: 2.20.1-0ubuntu2
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  abhay  2008 F pulseaudio
CurrentDesktop: Unity
Date: Sun Sep 24 12:16:40 2017
DistributionChannelDescriptor:
 # This is a distribution channel descriptor
 # For more information see http://wiki.ubuntu.com/DistributionChannelDescriptor
 canonical-oem-somerville-xenial-amd64-20160624-2
InstallationDate: Installed on 2017-08-08 (46 days ago)
InstallationMedia: Ubuntu 16.04 "Xenial" - Build amd64 LIVE Binary 
20160624-10:47
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
Symptom_Card: Built-in Audio - HDA Intel PCH
Symptom_DevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  abhay  2008 F pulseaudio
Symptom_Jack: Speaker, Internal
Symptom_Type: No sound at all
Title: [Vostro 14-3468, Realtek ALC3246, Speaker, Internal] No sound at all
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/23/2017
dmi.bios.vendor: Dell Inc.
dmi.bios.version: 01.08.00
dmi.board.name: 0T1X3V
dmi.board.vendor: Dell Inc.
dmi.board.version: A00
dmi.chassis.type: 9
dmi.chassis.vendor: Dell Inc.
dmi.modalias: 
dmi:bvnDellInc.:bvr01.08.00:bd03/23/2017:svnDellInc.:pnVostro14-3468:pvr:rvnDellInc.:rn0T1X3V:rvrA00:cvnDellInc.:ct9:cvr:
dmi.product.name: Vostro 14-3468
dmi.sys.vendor: Dell Inc.

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

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

Title:
  [Vostro 14-3468, Realtek ALC3246, Speaker, Internal] No sound at all

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

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

[Bug 1715149] [NEW] Sometimes whole screen freezes out and sometimes only touchpad. Then at the end I have to reboo it. There is no other way of fixing this. I bought my new laptop just 2 months ago s

2017-09-05 Thread Abhay Agarwal
Public bug reported:

I am pretty sure this is a bug because when I used some system with
windows it was working fine. So, I think it is some kind of bug or may
be there is some c0mpatibility issue. While I was updating my system i
was getting following error:-

"W: Possible missing firmware /lib/firmware/i915/kbl_guc_ver9_14.bin for
module i915"

My ubuntu version is :-

Distributor ID: Ubuntu
Description:Ubuntu 16.04.3 LTS
Release:16.04
Codename:   xenial

Please help asap.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: linux-image-4.10.0-33-generic 4.10.0-33.37~16.04.1
ProcVersionSignature: Ubuntu 4.10.0-33.37~16.04.1-generic 4.10.17
Uname: Linux 4.10.0-33-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.10
Architecture: amd64
CurrentDesktop: Unity
Date: Tue Sep  5 18:27:33 2017
InstallationDate: Installed on 2017-07-24 (43 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
SourcePackage: linux-hwe
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

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

Title:
  Sometimes whole screen freezes out and sometimes only touchpad. Then
  at the end I have to reboo it. There is no other way of fixing this. I
  bought my new laptop just 2 months ago so its really freak me out.
  Please help me ASAP

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

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

[Bug 1702493] [NEW] package libvdpau1 (not installed) failed to install/upgrade: trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is different from other instances of package libvdpau1:amd64

2017-07-05 Thread Abhay
Public bug reported:

I dont know anything about the bug but cannot install any software from
the store

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: libvdpau1 (not installed)
ProcVersionSignature: Ubuntu 4.8.0-58.63~16.04.1-generic 4.8.17
Uname: Linux 4.8.0-58-generic x86_64
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.6
Architecture: amd64
BootLog:
 
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Wed Jul  5 19:57:11 2017
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DuplicateSignature:
 package:libvdpau1:(not installed)
 Unpacking libvdpau1:amd64 (1.1.1-3ubuntu1) ...
 dpkg: error processing archive 
/var/cache/apt/archives/libvdpau1_1.1.1-3ubuntu1_amd64.deb (--unpack):
  trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is different from 
other instances of package libvdpau1:amd64
ErrorMessage: trying to overwrite shared '/etc/vdpau_wrapper.cfg', which is 
different from other instances of package libvdpau1:amd64
GraphicsCard:
 Intel Corporation Broadwell-U Integrated Graphics [8086:1616] (rev 09) 
(prog-if 00 [VGA controller])
   Subsystem: Lenovo Broadwell-U Integrated Graphics [17aa:390b]
InstallationDate: Installed on 2017-07-03 (1 days ago)
InstallationMedia: Ubuntu 16.04.2 LTS "Xenial Xerus" - Release amd64 
(20170215.2)
MachineType: LENOVO 80E5
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.8.0-58-generic 
root=UUID=61cec50e-42cb-4052-8934-d3e5748260d2 ro quiet splash vt.handoff=7
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.20
SourcePackage: libvdpau
Title: package libvdpau1 (not installed) failed to install/upgrade: trying to 
overwrite shared '/etc/vdpau_wrapper.cfg', which is different from other 
instances of package libvdpau1:amd64
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/23/2015
dmi.bios.vendor: LENOVO
dmi.bios.version: B0CN93WW
dmi.board.asset.tag: NO Asset Tag
dmi.board.name: Lenovo G50-80
dmi.board.vendor: LENOVO
dmi.board.version: NO DPK
dmi.chassis.asset.tag: NO Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Lenovo G50-80
dmi.modalias: 
dmi:bvnLENOVO:bvrB0CN93WW:bd07/23/2015:svnLENOVO:pn80E5:pvrLenovoG50-80:rvnLENOVO:rnLenovoG50-80:rvrNODPK:cvnLENOVO:ct10:cvrLenovoG50-80:
dmi.product.name: 80E5
dmi.product.version: Lenovo G50-80
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.70-1~ubuntu16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 12.0.6-0ubuntu0.16.04.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 12.0.6-0ubuntu0.16.04.1
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Wed Jul  5 19:48:50 2017
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.18.4-1ubuntu6.1~16.04.1
xserver.video_driver: modeset

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


** Tags: amd64 apport-package compiz-0.9 need-duplicate-check package-conflict 
ubuntu xenial

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

Title:
  package libvdpau1 (not installed) failed to install/upgrade: trying to
  overwrite shared '/etc/vdpau_wrapper.cfg', which is different from
  other instances of package libvdpau1:amd64

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

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


[Bug 1701874] [NEW] package liblinear3:i386 2.1.0+dfsg-1 failed to install/upgrade: package liblinear3:i386 is already installed and configured

2017-07-02 Thread Abhay Gupta
Public bug reported:

This occurs when i update in software center

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: liblinear3:i386 2.1.0+dfsg-1
ProcVersionSignature: Ubuntu 4.4.0-81.104-generic 4.4.67
Uname: Linux 4.4.0-81-generic i686
ApportVersion: 2.20.1-0ubuntu2.6
AptdaemonVersion: 1.1.1+bzr982-0ubuntu14
Architecture: i386
CrashReports:
 640:1000:116:1866048:2017-06-30 10:26:26.858112959 +0530:2017-06-30 
10:28:06.865375713 
+0530:/var/crash/_usr_lib_i386-linux-gnu_hud_hud-service.1000.crash
 600:0:116:561655:2017-07-02 12:31:46.024606466 +0530:2017-07-02 
12:31:47.024606466 +0530:/var/crash/liblinear3:i386.0.crash
 600:0:116:561652:2017-07-02 12:31:45.436796109 +0530:2017-07-02 
12:31:43.984971376 +0530:/var/crash/libblas-common.0.crash
 640:1000:116:36226:2017-06-30 10:28:09.093375673 +0530:2017-06-30 
10:29:05.176906558 +0530:/var/crash/_usr_share_apport_apport-gtk.1000.crash
 600:0:116:561640:2017-07-02 12:31:46.152710299 +0530:2017-07-02 
12:31:45.436796109 +0530:/var/crash/libblas3.0.crash
Date: Sun Jul  2 12:31:46 2017
DuplicateSignature:
 package:liblinear3:i386:2.1.0+dfsg-1
 Processing triggers for mime-support (3.59ubuntu1) ...
 dpkg: error processing package libblas-common (--configure):
  package libblas-common is already installed and configured
ErrorMessage: package liblinear3:i386 is already installed and configured
InstallationDate: Installed on 2017-06-13 (18 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.2
 apt  1.2.20
SourcePackage: dpkg
Title: package liblinear3:i386 2.1.0+dfsg-1 failed to install/upgrade: package 
liblinear3:i386 is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: already-installed apport-package i386 need-duplicate-check xenial

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

Title:
  package liblinear3:i386 2.1.0+dfsg-1 failed to install/upgrade:
  package liblinear3:i386 is already installed and configured

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

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


[Bug 1643956] [NEW] wifi stops working after 2-3 minutes . Sometimes wifi speed slows down! It isn't internet problem as internet seems to work fine on other devices.

2016-11-22 Thread Abhay Shukla
Public bug reported:

My laptop is on dual boot with Windows 10 ( Ubuntu 16.04 + Windows 10 ).
On Ubuntu wifi gets connected to my home connection but the internet
doesnt work . The internet switches on and off and is really frustating
. Once off , it will resume after 2-3 minutes and this keeps happening .
Please resolve this as soon as possible . Thanks in advance .

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: ubuntu-release-upgrader-core 1:16.04.14
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CrashDB: ubuntu
CurrentDesktop: Unity
Date: Tue Nov 22 21:15:27 2016
InstallationDate: Installed on 2016-11-22 (0 days ago)
InstallationMedia: Ubuntu 16.04.1 LTS "Xenial Xerus" - Release amd64 (20160719)
PackageArchitecture: all
ProcEnviron:
 LANGUAGE=en_IN:en
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: ubuntu-release-upgrader
Symptom: dist-upgrade
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug dist-upgrade xenial

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

Title:
  wifi stops working after 2-3 minutes .  Sometimes wifi speed slows
  down! It isn't internet problem as internet seems to work fine on
  other devices.

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

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


[Bug 1609601] Re: i2c_hid: probe of i2c-ELAN0732:00 failed with error -61

2016-11-18 Thread Abhay
Hi Colin,
 were you able to get the touchscreen working ? 
I am also having the exact same laptop model.
with the latest available kernel 4.8.7 i don't see the gpio interrupt errors, 
but also i don't see anything touchscreen added to xinput as well. 
  Since I didnt find any resolution in your upstream bug as well, can you 
please let me know how you were able to fix it ?
  I am an ex-AMD vlsi engineer, so if needed I can try to connect with AMD 
software engineers as well.

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

Title:
  i2c_hid: probe of i2c-ELAN0732:00 failed with error -61

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

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


[Bug 1584185] [NEW] package brltty 5.3.1-2ubuntu2 failed to install/upgrade: trying to overwrite '/usr/lib/ubiquity/target-config', which is also in package ubuntu-drivers-common 1:0.4.17

2016-05-20 Thread Abhay Ananda Shukla
Public bug reported:

package brltty 5.3.1-2ubuntu2 failed to install/upgrade: trying to
overwrite '/usr/lib/ubiquity/target-config', which is also in package
ubuntu-drivers-common 1:0.4.17

ProblemType: Package
DistroRelease: Ubuntu 16.04
Package: brltty 5.3.1-2ubuntu2
ProcVersionSignature: Ubuntu 4.4.0-21.37-generic 4.4.6
Uname: Linux 4.4.0-21-generic i686
ApportVersion: 2.20.1-0ubuntu2
Architecture: i386
Date: Sat May 21 00:40:48 2016
DuplicateSignature:
 Unpacking brltty (5.3.1-2ubuntu2.1) over (5.3.1-2ubuntu2) ...
 dpkg: error processing archive 
/var/cache/apt/archives/brltty_5.3.1-2ubuntu2.1_i386.deb (--unpack):
  trying to overwrite '/usr/lib/ubiquity/target-config', which is also in 
package ubuntu-drivers-common 1:0.4.17
ErrorMessage: trying to overwrite '/usr/lib/ubiquity/target-config', which is 
also in package ubuntu-drivers-common 1:0.4.17
InstallationDate: Installed on 2016-05-19 (0 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release i386 (20160420.1)
RelatedPackageVersions:
 dpkg 1.18.4ubuntu1.1
 apt  1.2.10ubuntu1
SourcePackage: brltty
Title: package brltty 5.3.1-2ubuntu2 failed to install/upgrade: trying to 
overwrite '/usr/lib/ubiquity/target-config', which is also in package 
ubuntu-drivers-common 1:0.4.17
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-package i386 need-duplicate-check package-conflict xenial

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

Title:
  package brltty 5.3.1-2ubuntu2 failed to install/upgrade: trying to
  overwrite '/usr/lib/ubiquity/target-config', which is also in package
  ubuntu-drivers-common 1:0.4.17

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

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


[Bug 479632] Re: VPN connection fails after one hour^H^H^H^H security-association idle-time expiry

2015-10-01 Thread Abhay
In your 7 blog you have shared two patches for vpn connection
how can we use it??
I m new user of ubuntu

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

Title:
  VPN connection fails after one hour^H^H^H^H security-association idle-
  time  expiry

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

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


[Bug 479632] Re: VPN connection fails after one hour^H^H^H^H security-association idle-time expiry

2015-10-01 Thread Abhay
hi Arjan,

How this patched can we use in ubuntu 13.10??

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

Title:
  VPN connection fails after one hour^H^H^H^H security-association idle-
  time  expiry

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

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


[Bug 1384981] Re: system-settings transparent

2015-03-30 Thread Abhay
On fresh installation of Ubuntu 14.10, sound was getting played
simultaneously from the speakers and the headphones. I did "sudo apt-get
remove --purge alsa-base pulseaudio indicator-sound" and now no sound is
coming at all and also the "system settings" is having transparent
background.

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

Title:
  system-settings transparent

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

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


[Bug 1420182] [NEW] package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to install/upgrade: package linux-image-extra-3.13.0-45-generic is already installed and configured

2015-02-10 Thread Abhay
Public bug reported:

update failed

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: linux-image-extra-3.13.0-45-generic 3.13.0-45.74
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Uname: Linux 3.13.0-45-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.6
AptdaemonVersion: 1.1.1-1ubuntu5.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  abhay  2038 F pulseaudio
 /dev/snd/controlC0:  abhay  2038 F pulseaudio
Date: Tue Feb 10 00:59:40 2015
DuplicateSignature: 
package:linux-image-extra-3.13.0-45-generic:3.13.0-45.74:package 
linux-image-extra-3.13.0-45-generic is already installed and configured
ErrorMessage: package linux-image-extra-3.13.0-45-generic is already installed 
and configured
HibernationDevice: RESUME=UUID=c6d953f1-e963-4138-8a1d-3bca0f363b9f
InstallationDate: Installed on 2014-05-12 (274 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
MachineType: Dell Inc. Inspiron N4010
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic 
root=UUID=1af6d34b-6758-4f74-bfbd-f5fcee6d7f84 ro quiet splash acpi=force 
vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: dpkg
Title: package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to 
install/upgrade: package linux-image-extra-3.13.0-45-generic is already 
installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/31/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A13
dmi.board.name: 0WGN6P
dmi.board.vendor: Dell Inc.
dmi.board.version: A13
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A13
dmi.modalias: 
dmi:bvnDellInc.:bvrA13:bd03/31/2011:svnDellInc.:pnInspironN4010:pvrA13:rvnDellInc.:rn0WGN6P:rvrA13:cvnDellInc.:ct8:cvrA13:
dmi.product.name: Inspiron N4010
dmi.product.version: A13
dmi.sys.vendor: Dell Inc.

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


** Tags: already-installed amd64 apport-package trusty

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

Title:
  package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to
  install/upgrade: package linux-image-extra-3.13.0-45-generic is
  already installed and configured

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

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


[Bug 1420183] [NEW] package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to install/upgrade: package linux-image-extra-3.13.0-45-generic is already installed and configured

2015-02-10 Thread Abhay
*** This bug is a duplicate of bug 1420182 ***
https://bugs.launchpad.net/bugs/1420182

Public bug reported:

update failed

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: linux-image-extra-3.13.0-45-generic 3.13.0-45.74
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Uname: Linux 3.13.0-45-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.6
AptdaemonVersion: 1.1.1-1ubuntu5.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  abhay  2038 F pulseaudio
 /dev/snd/controlC0:  abhay  2038 F pulseaudio
Date: Tue Feb 10 00:59:40 2015
DuplicateSignature: 
package:linux-image-extra-3.13.0-45-generic:3.13.0-45.74:package 
linux-image-extra-3.13.0-45-generic is already installed and configured
ErrorMessage: package linux-image-extra-3.13.0-45-generic is already installed 
and configured
HibernationDevice: RESUME=UUID=c6d953f1-e963-4138-8a1d-3bca0f363b9f
InstallationDate: Installed on 2014-05-12 (274 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
MachineType: Dell Inc. Inspiron N4010
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic 
root=UUID=1af6d34b-6758-4f74-bfbd-f5fcee6d7f84 ro quiet splash acpi=force 
vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: dpkg
Title: package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to 
install/upgrade: package linux-image-extra-3.13.0-45-generic is already 
installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/31/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A13
dmi.board.name: 0WGN6P
dmi.board.vendor: Dell Inc.
dmi.board.version: A13
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A13
dmi.modalias: 
dmi:bvnDellInc.:bvrA13:bd03/31/2011:svnDellInc.:pnInspironN4010:pvrA13:rvnDellInc.:rn0WGN6P:rvrA13:cvnDellInc.:ct8:cvrA13:
dmi.product.name: Inspiron N4010
dmi.product.version: A13
dmi.sys.vendor: Dell Inc.

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


** Tags: already-installed amd64 apport-package trusty

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

Title:
  package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to
  install/upgrade: package linux-image-extra-3.13.0-45-generic is
  already installed and configured

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

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


[Bug 1420184] [NEW] package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to install/upgrade: package linux-image-extra-3.13.0-45-generic is already installed and configured

2015-02-10 Thread Abhay
Public bug reported:

update failed

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: linux-image-extra-3.13.0-45-generic 3.13.0-45.74
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Uname: Linux 3.13.0-45-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.6
AptdaemonVersion: 1.1.1-1ubuntu5.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  abhay  2038 F pulseaudio
 /dev/snd/controlC0:  abhay  2038 F pulseaudio
Date: Tue Feb 10 00:59:40 2015
DuplicateSignature: 
package:linux-image-extra-3.13.0-45-generic:3.13.0-45.74:package 
linux-image-extra-3.13.0-45-generic is already installed and configured
ErrorMessage: package linux-image-extra-3.13.0-45-generic is already installed 
and configured
HibernationDevice: RESUME=UUID=c6d953f1-e963-4138-8a1d-3bca0f363b9f
InstallationDate: Installed on 2014-05-12 (274 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
MachineType: Dell Inc. Inspiron N4010
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic 
root=UUID=1af6d34b-6758-4f74-bfbd-f5fcee6d7f84 ro quiet splash acpi=force 
vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: dpkg
Title: package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to 
install/upgrade: package linux-image-extra-3.13.0-45-generic is already 
installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/31/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A13
dmi.board.name: 0WGN6P
dmi.board.vendor: Dell Inc.
dmi.board.version: A13
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A13
dmi.modalias: 
dmi:bvnDellInc.:bvrA13:bd03/31/2011:svnDellInc.:pnInspironN4010:pvrA13:rvnDellInc.:rn0WGN6P:rvrA13:cvnDellInc.:ct8:cvrA13:
dmi.product.name: Inspiron N4010
dmi.product.version: A13
dmi.sys.vendor: Dell Inc.

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


** Tags: already-installed amd64 apport-package need-duplicate-check trusty

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

Title:
  package linux-image-extra-3.13.0-45-generic 3.13.0-45.74 failed to
  install/upgrade: package linux-image-extra-3.13.0-45-generic is
  already installed and configured

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

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


[Bug 1420160] [NEW] package linux-image-generic 3.13.0.45.52 failed to install/upgrade: package linux-image-generic is already installed and configured

2015-02-10 Thread Abhay
Public bug reported:

update failed

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: linux-image-generic 3.13.0.45.52
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Uname: Linux 3.13.0-45-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.6
AptdaemonVersion: 1.1.1-1ubuntu5.1
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC1:  abhay  2038 F pulseaudio
 /dev/snd/controlC0:  abhay  2038 F pulseaudio
Date: Tue Feb 10 00:59:40 2015
DuplicateSignature: package:linux-image-generic:3.13.0.45.52:package 
linux-image-generic is already installed and configured
ErrorMessage: package linux-image-generic is already installed and configured
HibernationDevice: RESUME=UUID=c6d953f1-e963-4138-8a1d-3bca0f363b9f
InstallationDate: Installed on 2014-05-12 (274 days ago)
InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
MachineType: Dell Inc. Inspiron N4010
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-45-generic 
root=UUID=1af6d34b-6758-4f74-bfbd-f5fcee6d7f84 ro quiet splash acpi=force 
vt.handoff=7
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions: grub-pc 2.02~beta2-9ubuntu1
RfKill:
 0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
SourcePackage: linux-meta
Title: package linux-image-generic 3.13.0.45.52 failed to install/upgrade: 
package linux-image-generic is already installed and configured
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 03/31/2011
dmi.bios.vendor: Dell Inc.
dmi.bios.version: A13
dmi.board.name: 0WGN6P
dmi.board.vendor: Dell Inc.
dmi.board.version: A13
dmi.chassis.type: 8
dmi.chassis.vendor: Dell Inc.
dmi.chassis.version: A13
dmi.modalias: 
dmi:bvnDellInc.:bvrA13:bd03/31/2011:svnDellInc.:pnInspironN4010:pvrA13:rvnDellInc.:rn0WGN6P:rvrA13:cvnDellInc.:ct8:cvrA13:
dmi.product.name: Inspiron N4010
dmi.product.version: A13
dmi.sys.vendor: Dell Inc.

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


** Tags: already-installed amd64 apport-package trusty

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

Title:
  package linux-image-generic 3.13.0.45.52 failed to install/upgrade:
  package linux-image-generic is already installed and configured

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

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


[Bug 1414686] [NEW] ackage rsyslog 7.4.4-1ubuntu2.5 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2015-01-26 Thread Abhay Prakash Tiwari
Public bug reported:

started creating problem after last install closed abruptly

ProblemType: Package
DistroRelease: Ubuntu 14.04
Package: rsyslog 7.4.4-1ubuntu2.5
ProcVersionSignature: Ubuntu 3.13.0-45.74-generic 3.13.11-ckt13
Uname: Linux 3.13.0-45-generic x86_64
ApportVersion: 2.14.1-0ubuntu3.6
Architecture: amd64
Date: Mon Jan 26 19:43:36 2015
DpkgHistoryLog:
 Start-Date: 2015-01-26  19:43:20
 Commandline: apt-get install alien
 Install: rpm2cpio:amd64 (4.11.1-3ubuntu0.1, automatic), rpm-common:amd64 
(4.11.1-3ubuntu0.1, automatic), rpm:amd64 (4.11.1-3ubuntu0.1, automatic), 
librpm3:amd64 (4.11.1-3ubuntu0.1, automatic), debugedit:amd64 
(4.11.1-3ubuntu0.1, automatic), librpmsign1:amd64 (4.11.1-3ubuntu0.1, 
automatic), alien:amd64 (8.90), librpmbuild3:amd64 (4.11.1-3ubuntu0.1, 
automatic), librpmio3:amd64 (4.11.1-3ubuntu0.1, automatic)
DuplicateSignature: package:rsyslog:7.4.4-1ubuntu2.5:subprocess installed 
post-installation script returned error exit status 1
ErrorMessage: subprocess installed post-installation script returned error exit 
status 1
SourcePackage: rsyslog
Title: package rsyslog 7.4.4-1ubuntu2.5 failed to install/upgrade: subprocess 
installed post-installation script returned error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package package-from-proposed trusty

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

Title:
  ackage rsyslog 7.4.4-1ubuntu2.5 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

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

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


[Bug 1396025] [NEW] virtualbox-dkms 4.1.12-dfsg-2ubuntu0.6: virtualbox kernel module failed to build

2014-11-25 Thread Abhay
Public bug reported:

Occured while updating.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: virtualbox-dkms 4.1.12-dfsg-2ubuntu0.6
ProcVersionSignature: Ubuntu 3.13.0-39.66~precise1-generic 3.13.11.8
Uname: Linux 3.13.0-39-generic i686
ApportVersion: 2.0.1-0ubuntu17.8
Architecture: i386
DKMSKernelVersion: 3.13.0-40-generic
Date: Tue Nov 25 14:16:23 2014
InstallationMedia: Ubuntu 12.04.5 LTS "Precise Pangolin" - Release i386 
(20140807.1)
MarkForUpload: True
PackageArchitecture: all
PackageVersion: 4.1.12-dfsg-2ubuntu0.6
SourcePackage: virtualbox
Title: virtualbox-dkms 4.1.12-dfsg-2ubuntu0.6: virtualbox kernel module failed 
to build
UpgradeStatus: No upgrade log present (probably fresh install)
VirtualBox.ModInfo:

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


** Tags: apport-package i386 precise

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

Title:
  virtualbox-dkms 4.1.12-dfsg-2ubuntu0.6: virtualbox kernel module
  failed to build

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

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


[Bug 1309554] [NEW] cant upgrade from 13.10 to 14.04

2014-04-18 Thread ABHAY AGARWAL
Public bug reported:


An unresolvable problem occurred while calculating the upgrade.

 This can be caused by:
 * Upgrading to a pre-release version of Ubuntu
 * Running the current pre-release version of Ubuntu
 * Unofficial software packages not provided by Ubuntu

If none of this applies, then please report this bug using the command
'ubuntu-bug ubuntu-release-upgrader-core' in a terminal

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: ubuntu-release-upgrader-core 1:0.205.5
ProcVersionSignature: Ubuntu 3.11.0-19.33-generic 3.11.10.5
Uname: Linux 3.11.0-19-generic x86_64
ApportVersion: 2.12.5-0ubuntu2.2
Architecture: amd64
CrashDB: ubuntu
Date: Fri Apr 18 19:29:03 2014
InstallationDate: Installed on 2014-01-23 (84 days ago)
InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 (20131016.1)
MarkForUpload: True
PackageArchitecture: all
SourcePackage: ubuntu-release-upgrader
UpgradeStatus: Upgraded to saucy on 2014-04-18 (0 days ago)
VarLogDistupgradeTermlog:

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


** Tags: amd64 apport-bug dist-upgrade saucy 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/1309554

Title:
  cant upgrade from 13.10 to 14.04

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

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


[Bug 990740] Re: upgrading from lucid to precise fails

2012-08-30 Thread Abhay Rana
I face the same thing when upgrading. I did a do-release-upgrade
followed by a dist-upgrade.

nemo@emerald:~$ sudo apt-get install -o APT::Immediate-Configure=false 
--reinstall python-minimal
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  libasound2: Breaks: libasound2-plugins (< 1.0.24) but 1.0.22-0ubuntu6 is to 
be installed
  libglib2.0-0: Breaks: gnome-control-center (< 1:3) but 1:2.30.1-0ubuntu2 is 
to be installed
  libpango1.0-0: Breaks: plymouth (< 0.8.2-2ubuntu19) but 0.8.2-2ubuntu2.2 is 
to be installed
  ppp: Breaks: network-manager (<= 0.8.0.999-1) but 0.8-0ubuntu3.3 is to be 
installed
   Breaks: network-manager-pptp (<= 0.8.0.999-1) but 0.8-0ubuntu3 is to be 
installed
E: Broken packages

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

Title:
  upgrading from lucid to precise fails

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

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


[Bug 1031369] [NEW] installer crashed at the end when removing packages

2012-07-31 Thread Abhay Vaidya
Public bug reported:

installer crashed at the end when removing packages

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: ubiquity 2.10.16
ProcVersionSignature: Ubuntu 3.2.0-23.36-generic-pae 3.2.14
Uname: Linux 3.2.0-23-generic-pae i686
ApportVersion: 2.0.1-0ubuntu5
Architecture: i386
CasperVersion: 1.315
Date: Tue Jul 31 19:51:58 2012
InstallCmdLine: file=/cdrom/preseed/ubuntu.seed boot=casper 
initrd=/casper/initrd.lz quiet splash -- maybe-ubiquity
LiveMediaBuild: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 (20120423)
ProcEnviron:
 LANGUAGE=en_IN
 TERM=linux
 PATH=(custom, no user)
 LANG=en_IN
SourcePackage: ubiquity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 precise ubiquity-2.10.16

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

Title:
  installer crashed at the end when removing packages

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

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


[Bug 1031369] Re: installer crashed at the end when removing packages

2012-07-31 Thread Abhay Vaidya
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1031369

Title:
  installer crashed at the end when removing packages

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

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


[Bug 929889] Re: adhoc not working even after connecting

2012-02-18 Thread Abhay Rana
** Description changed:

  I have created a wifi adhoc using network-manager, which has "Shared to
  other computers". The ipv6 setting is set to ignore.
  
  I've tried deleting and creating such an adhoc multiple times. The adhoc
  is created fine, and is broadcasted as well. I can connect to it via my
  iPad as well. Unfortunately, the network connectivity is not established
  (IP is assigned to iPad, but neither machine can ping each other)
- 
- Also, even though I can ping my own computer over its wifi IP
- (10.42.0.1), the apache server does not respond over requests to the
- wifi address (which may be a different issue).
  
  The connected iPad (which gets an IP address assigned) is not able to
  access any network at all.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: network-manager 0.9.2.0+git201201101813.0b30200-0ubuntu2
  ProcVersionSignature: Ubuntu 3.2.0-14.23-generic 3.2.3
  Uname: Linux 3.2.0-14-generic i686
  NonfreeKernelModules: wl
  ApportVersion: 1.91-0ubuntu1
  Architecture: i386
  CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 
not found.
  Date: Fri Feb 10 04:09:02 2012
  IfupdownConfig:
-  auto lo
-  iface lo inet loopback
+  auto lo
+  iface lo inet loopback
  IpRoute:
-  default via 172.17.0.1 dev eth0  proto static 
-  10.42.0.0/24 dev eth1  proto kernel  scope link  src 10.42.0.1  metric 2 
-  169.254.0.0/16 dev eth0  scope link  metric 1000 
-  172.17.0.0/20 dev eth0  proto kernel  scope link  src 172.17.8.222  metric 1
+  default via 172.17.0.1 dev eth0  proto static
+  10.42.0.0/24 dev eth1  proto kernel  scope link  src 10.42.0.1  metric 2
+  169.254.0.0/16 dev eth0  scope link  metric 1000
+  172.17.0.0/20 dev eth0  proto kernel  scope link  src 172.17.8.222  metric 1
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to precise on 2012-02-01 (8 days ago)
  http_proxy: http://192.168.208.210:808/
  nmcli-dev:
-  DEVICE TYPE  STATE DBUS-PATH 
 
-  eth1   802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/0  
-  eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1  
-  78:CA:04:B7:9E:35 bluetooth disconnected  
/org/freedesktop/NetworkManager/Devices/2
+  DEVICE TYPE  STATE DBUS-PATH
+  eth1   802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/0
+  eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1
+  78:CA:04:B7:9E:35 bluetooth disconnected  
/org/freedesktop/NetworkManager/Devices/2
  nmcli-nm:
-  RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
-  running 0.9.3.0connected   enabled   enabled 
enabledenabled disabled
+  RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN
+  running 0.9.3.0connected   enabled   enabled 
enabledenabled disabled
  no_proxy: 
localhost,127.0.0.0/8,*.local,*.sdslabs.co.in,192.168.208.0/8,192.168.208.0/32y

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

Title:
  adhoc not working even after connecting

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

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

[Bug 929889] [NEW] adhoc not working even after connecting

2012-02-09 Thread Abhay Rana
Public bug reported:

I have created a wifi adhoc using network-manager, which has "Shared to
other computers". The ipv6 setting is set to ignore.

I've tried deleting and creating such an adhoc multiple times. The adhoc
is created fine, and is broadcasted as well. I can connect to it via my
iPad as well. Unfortunately, the network connectivity is not established
(IP is assigned to iPad, but neither machine can ping each other)

Also, even though I can ping my own computer over its wifi IP
(10.42.0.1), the apache server does not respond over requests to the
wifi address (which may be a different issue).

The connected iPad (which gets an IP address assigned) is not able to
access any network at all.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: network-manager 0.9.2.0+git201201101813.0b30200-0ubuntu2
ProcVersionSignature: Ubuntu 3.2.0-14.23-generic 3.2.3
Uname: Linux 3.2.0-14-generic i686
NonfreeKernelModules: wl
ApportVersion: 1.91-0ubuntu1
Architecture: i386
CRDA: Error: command ['iw', 'reg', 'get'] failed with exit code 1: nl80211 not 
found.
Date: Fri Feb 10 04:09:02 2012
IfupdownConfig:
 auto lo
 iface lo inet loopback
IpRoute:
 default via 172.17.0.1 dev eth0  proto static 
 10.42.0.0/24 dev eth1  proto kernel  scope link  src 10.42.0.1  metric 2 
 169.254.0.0/16 dev eth0  scope link  metric 1000 
 172.17.0.0/20 dev eth0  proto kernel  scope link  src 172.17.8.222  metric 1
SourcePackage: network-manager
UpgradeStatus: Upgraded to precise on 2012-02-01 (8 days ago)
http_proxy: http://192.168.208.210:808/
nmcli-dev:
 DEVICE TYPE  STATE DBUS-PATH   
   
 eth1   802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/0  
 eth0   802-3-ethernetconnected 
/org/freedesktop/NetworkManager/Devices/1  
 78:CA:04:B7:9E:35 bluetooth disconnected  
/org/freedesktop/NetworkManager/Devices/2
nmcli-nm:
 RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   WIFI  
 WWAN-HARDWARE   WWAN  
 running 0.9.3.0connected   enabled   enabled 
enabledenabled disabled
no_proxy: 
localhost,127.0.0.0/8,*.local,*.sdslabs.co.in,192.168.208.0/8,192.168.208.0/32y

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


** Tags: apport-bug i386 precise

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

Title:
  adhoc not working even after connecting

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

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


[Bug 929889] Re: adhoc not working even after connecting

2012-02-09 Thread Abhay Rana
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929889

Title:
  adhoc not working even after connecting

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

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


[Bug 858252] Re: chromium doesn't see system proxy config

2011-10-17 Thread Abhay Rana
I'm running Chromium 15.0.865.0 (Developer Build 98568 Linux) Ubuntu
11.10 and it reacts perfectly well to the gnome 3 proxy settings.

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

Title:
  chromium doesn't see system proxy config

To manage notifications about this bug go to:
https://bugs.launchpad.net/chromium-browser/+bug/858252/+subscriptions

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


[Bug 873428] Re: UbuntuHashes needs Oneiric hashes

2011-10-16 Thread Abhay Rana
It has been 3 days since the release, why hasn't this been updated by
now?

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

Title:
  UbuntuHashes needs Oneiric hashes

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

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


[Bug 874653] [NEW] ISO hash for 11.10 missing in Ubuntu Help wiki

2011-10-14 Thread Abhay Rana
Public bug reported:

The page https://help.ubuntu.com/community/UbuntuHashes is missing
hashes for the latest Ubuntu Release (11.10)

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

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

Title:
  ISO hash for 11.10 missing in Ubuntu Help wiki

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

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


[Bug 862743] Re: Desktop drawn with offset

2011-09-30 Thread Abhay Jayant Kadam
I, too, get 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/862743

Title:
  Desktop drawn with offset

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

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


[Bug 795519] Re: Add back system-wide network proxy settings

2011-09-07 Thread Abhay Jayant Kadam
@juliansuarezlopera,
the same thing is happening with me. don't we have any way to enter the 
system-wide proxy settings  (including firefox and chrome) ?

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

Title:
  Add back system-wide network proxy settings

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

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


[Bug 473974] Re: vim.tiny crashed with SIGSEGV in buffered_vfprintf()

2010-09-13 Thread Abhay Goyal
Till now its not showing up. Actually when i updated ubuntu 10.04 to
10.10 it showed only unix page there was no gui interface. then i had
put the ubnutu cd and the software started to update by itself.till
now it looks fine but can u tell me where was the problem

-- 
vim.tiny crashed with SIGSEGV in buffered_vfprintf()
https://bugs.launchpad.net/bugs/473974
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 630595] Re: package phpmyadmin 4:3.3.2-1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

2010-09-04 Thread Abhay Kumar Singh

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/630595/+attachment/1544807/+files/Dependencies.txt

** Attachment added: "Df.txt"
   https://bugs.launchpad.net/bugs/630595/+attachment/1544808/+files/Df.txt

** Attachment added: "Dmesg.txt"
   https://bugs.launchpad.net/bugs/630595/+attachment/1544809/+files/Dmesg.txt

** Attachment added: "DpkgTerminalLog.gz"
   
https://bugs.launchpad.net/bugs/630595/+attachment/1544810/+files/DpkgTerminalLog.gz

-- 
package phpmyadmin 4:3.3.2-1 failed to install/upgrade: subprocess installed 
pre-removal script returned error exit status 1
https://bugs.launchpad.net/bugs/630595
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 630595] [NEW] package phpmyadmin 4:3.3.2-1 failed to install/upgrade: subprocess installed pre-removal script returned error exit status 1

2010-09-04 Thread Abhay Kumar Singh
Public bug reported:

Binary package hint: phpmyadmin

I've installed phpmyadmin on my ubuntu server, i had wanted to remove it
but it fails to remove. please suggest me.

ProblemType: Package
DistroRelease: Ubuntu 10.04
Package: phpmyadmin 4:3.3.2-1
ProcVersionSignature: Ubuntu 2.6.32-24.39-generic 2.6.32.15+drm33.5
Uname: Linux 2.6.32-24-generic i686
AptOrdering: phpmyadmin: Remove
Architecture: i386
Date: Sun Sep  5 07:55:21 2010
ErrorMessage: subprocess installed pre-removal script returned error exit 
status 1
InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release i386 (20100429)
PackageArchitecture: all
SourcePackage: phpmyadmin
Title: package phpmyadmin 4:3.3.2-1 failed to install/upgrade: subprocess 
installed pre-removal script returned error exit status 1

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


** Tags: apport-package i386 lucid

-- 
package phpmyadmin 4:3.3.2-1 failed to install/upgrade: subprocess installed 
pre-removal script returned error exit status 1
https://bugs.launchpad.net/bugs/630595
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 401302] [NEW] how to install 'python-launchpadlib'

2009-07-19 Thread abhay
Public bug reported:

Binary package hint: python-launchpadlib

step by step tions
guide me 
to do necessary 
actions

ProblemType: Bug
Architecture: i386
Dependencies:
 
DistroRelease: Ubuntu 9.04
NonfreeKernelModules: wl
Package: python-launchpadlib None [modified: 
/var/lib/dpkg/info/python-launchpadlib.list]
PackageArchitecture: all
ProcEnviron:
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: python-launchpadlib
Uname: Linux 2.6.28-13-generic i686
UnreportableReason: This is not a genuine Ubuntu package

** Affects: python-launchpadlib (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386

-- 
how to install 'python-launchpadlib'
https://bugs.launchpad.net/bugs/401302
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 400148] [NEW] My HP dv5 laptop internal speaker is not woking in ubuntu

2009-07-16 Thread abhay
Public bug reported:

I'm hearing sound from my headphone jack but no sound from my laptop speaker in 
Ubuntu.
I have followed the instruction given in the site and given these commands
but still I'm unable to hear any sound from my speaker.
I have given these command and their resut as appeared in terminal as:

ab...@abhay:~$ sudo aptitude install hwinfo
E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily 
unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another 
process using it?
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Initializing package states... Done
E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily 
unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another 
process using it?
ab...@abhay:~$ hwinfo --sound
The program 'hwinfo' is currently not installed.  You can install it by typing:
sudo apt-get install hwinfo
bash: hwinfo: command not found
ab...@abhay:~$ sudo apt-get install hwinfo
E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily 
unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/), is another 
process using it?
ab...@abhay:~$ aplay -l
 List of PLAYBACK Hardware Devices 
card 0: Intel [HDA Intel], device 0: STAC92xx Analog [STAC92xx Analog]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
card 0: Intel [HDA Intel], device 1: STAC92xx Digital [STAC92xx Digital]
  Subdevices: 1/1
  Subdevice #0: subdevice #0
ab...@abhay:~$ cat /dev/sndstat
Sound Driver:3.8.1a-980706 (ALSA v1.0.18rc3 emulation code)
Kernel: Linux abhay 2.6.28-13-generic #45-Ubuntu SMP Tue Jun 30 19:49:51 UTC 
2009 i686
Config options: 0

Installed drivers: 
Type 10: ALSA emulation

Card config: 
HDA Intel at 0xdc70 irq 22

Audio devices:
0: STAC92xx Analog (DUPLEX)

Synth devices: NOT ENABLED IN CONFIG

Midi devices: NOT ENABLED IN CONFIG

Timers:
31: system timer

Mixers:
0: IDT 92HD71B7X
ab...@abhay:~$ lspci -nn
00:00.0 Host bridge [0600]: Intel Corporation Mobile 4 Series Chipset Memory 
Controller Hub [8086:2a40] (rev 07)
00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 4 Series 
Chipset Integrated Graphics Controller [8086:2a42] (rev 07)
00:02.1 Display controller [0380]: Intel Corporation Mobile 4 Series Chipset 
Integrated Graphics Controller [8086:2a43] (rev 07)
00:1a.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #4 [8086:2937] (rev 03)
00:1a.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #5 [8086:2938] (rev 03)
00:1a.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #2 [8086:293c] (rev 03)
00:1b.0 Audio device [0403]: Intel Corporation 82801I (ICH9 Family) HD Audio 
Controller [8086:293e] (rev 03)
00:1c.0 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 1 [8086:2940] (rev 03)
00:1c.1 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 2 [8086:2942] (rev 03)
00:1c.2 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 3 [8086:2944] (rev 03)
00:1c.3 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 4 [8086:2946] (rev 03)
00:1c.4 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 5 [8086:2948] (rev 03)
00:1c.5 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express 
Port 6 [8086:294a] (rev 03)
00:1d.0 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #1 [8086:2934] (rev 03)
00:1d.1 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #2 [8086:2935] (rev 03)
00:1d.2 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #3 [8086:2936] (rev 03)
00:1d.3 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI 
Controller #6 [8086:2939] (rev 03)
00:1d.7 USB Controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI 
Controller #1 [8086:293a] (rev 03)
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge 
[8086:2448] (rev 93)
00:1f.0 ISA bridge [0601]: Intel Corporation ICH9M LPC Interface Controller 
[8086:2919] (rev 03)
00:1f.2 SATA controller [0106]: Intel Corporation ICH9M/M-E SATA AHCI 
Controller [8086:2929] (rev 03)
00:1f.3 SMBus [0c05]: Intel Corporation 82801I (ICH9 Family) SMBus Controller 
[8086:2930] (rev 03)
00:1f.6 Signal processing controller [1180]: Intel Corporation 82801I (ICH9 
Family) Thermal Subsystem [8086:2932] (rev 03)
02:00.0 Network controller [0280]: Broadcom Corporation BCM4312 802.11b/g 
[14e4:4315] (rev 01)
03:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 02)
ab...@abhay:~$ lsmod | grep snd
snd_hda_intel 434100  3 
snd_pcm_oss46336  0 
snd_mixer_oss  

[Bug 131733] Webcam with SN9C20X chipset not working

2007-08-10 Thread Abhay
 2.06
  iManufacturer   3 Linux 2.6.20-16-generic uhci_hcd
  iProduct2 UHCI Host Controller
  iSerial 1 :00:10.0
  bNumConfigurations  1
  Configuration Descriptor:
bLength 9
bDescriptorType 2
wTotalLength   25
bNumInterfaces  1
bConfigurationValue 1
iConfiguration  0 
bmAttributes 0xe0
  Self Powered
  Remote Wakeup
MaxPower0mA
Interface Descriptor:
  bLength 9
  bDescriptorType 4
  bInterfaceNumber0
  bAlternateSetting   0
  bNumEndpoints   1
  bInterfaceClass 9 Hub
  bInterfaceSubClass  0 Unused
  bInterfaceProtocol  0 Full speed hub
  iInterface  0 
  Endpoint Descriptor:
bLength 7
bDescriptorType 5
bEndpointAddress 0x81  EP 1 IN
bmAttributes3
  Transfer TypeInterrupt
  Synch Type   None
  Usage Type   Data
wMaxPacketSize 0x0002  1x 2 bytes
bInterval 255
Hub Descriptor:
  bLength   9
  bDescriptorType  41
  nNbrPorts 2
  wHubCharacteristic 0x000a
No power switching (usb 1.0)
Per-port overcurrent protection
  bPwrOn2PwrGood1 * 2 milli seconds
  bHubContrCurrent  0 milli Ampere
  DeviceRemovable0x00
  PortPwrCtrlMask0xff
 Hub Port Status:
   Port 1: .0100 power
   Port 2: .0100 power
Device Status: 0x0003
  Self Powered
  Remote Wakeup Enabled

------

Please help me with this.

Regards,
Abhay

** Affects: Ubuntu
 Importance: Undecided
 Status: New

-- 
Webcam with SN9C20X chipset not working
https://bugs.launchpad.net/bugs/131733
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


[Bug 131733] Re: Webcam with SN9C20X chipset not working

2007-08-10 Thread Abhay

** Attachment added: "lsusb -v"
   http://launchpadlibrarian.net/8778424/lsusb

-- 
Webcam with SN9C20X chipset not working
https://bugs.launchpad.net/bugs/131733
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