[Bug 381408] [NEW] Calculator's license info is missing in the UI

2009-05-28 Thread raguanu
Public bug reported:

Binary package hint: gcalctool

When I open the license information in the calculator, the dialog shows
blank.

This is observed in the default installation of Ubuntu Jaunty Jackalope
9.04

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/gcalctool
NonfreeKernelModules: nvidia
Package: gcalctool 5.26.0-0ubuntu1
ProcEnviron:
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: gcalctool
Uname: Linux 2.6.28-11-generic i686

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


** Tags: apport-bug i386

-- 
Calculator's license info is missing in the UI
https://bugs.launchpad.net/bugs/381408
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 381408] Re: Calculator's license info is missing in the UI

2009-05-28 Thread raguanu

** Attachment added: "calculator_license_missing.png"
   http://launchpadlibrarian.net/27246647/calculator_license_missing.png

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/27246648/Dependencies.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/27246649/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/27246650/ProcStatus.txt

-- 
Calculator's license info is missing in the UI
https://bugs.launchpad.net/bugs/381408
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 381530] Re: Screen flickers in Inkscape's full screen mode

2009-05-29 Thread raguanu
*** This bug is a duplicate of bug 153204 ***
https://bugs.launchpad.net/bugs/153204

This is an issue with compiz, when it tries to show tooltip in full
screen mode. It is not inkscape issue. Please see
https://bugs.launchpad.net/bugs/153204 for details.

So my statement was incorrect that I didn't see this problem in other
applications. I think I only checked on buttons which don't have tool
tip (e.g. leave full screen)

By the way sorry for not giving much details. When I used launch pad I
assumed that ubuntu linux is understood. It is 32 bit. Ubuntu Jaunty
Jackalope 9.04

Regards,
Ragu

** This bug has been marked a duplicate of bug 153204
   [MASTER] Applications are flickering/flashing in full screen mode

-- 
Screen flickers in Inkscape's full screen mode
https://bugs.launchpad.net/bugs/381530
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu (via bug 153204).

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


[Bug 208260] Re: Too many commas in gcalctool

2008-05-28 Thread raguanu
camel9,

This was my first patch here. So please don't take my word as
authoritative information. Meaning that this may not be the best way to
do it. Just one way. :-)

As pointed out by gdi2k, this problem had already been fixed by some
other patch, which also fixes additional issues, just before I submitted
the patch for this specific problem. But the fix is yet to be available
in ubuntu repositories. So simple way to get the update for now, would
be to download latest gcalctool from gnome website and install.

But if you just want to know how source patching works, try this:

1. Download the source code with the following command. This will get you 
version 5.22.1 as per this writing: "sudo apt-get source gcalctool"
2. Extract source code from the tar archive to some folder e.g. /tmp
3. Download the patch file and use the patch command to apply the patch to your 
source code e.g.: patch --input=/tmp/thousand_separator_fix_raguanu.patch
4. When asked provide path to display.c and the file will be patched/updated. 
e.g. /tmp/gcalctool-5.22.1/gcalctool/display.c
5. After this is done you need to compile the source code. I suggest you to use 
IDEs (Anjuta) which will make the process easy.

I realized that I didn't prepare the patch file well in order to
facilitate easy applying. I will take this note next time.

Hope this helps,
Ragu

-- 
Too many commas in gcalctool
https://bugs.launchpad.net/bugs/208260
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 128068] Re: [needs-packaging] Xjadeo

2008-04-24 Thread raguanu
+1 for xjadeo.

"xjadeo is a simple video player that is synchronized to jack
transport."

It appears to be the only video player sync-able with jack. It means,
one can use xjadeo to preview a video while working on the audio track
for it in Ardour, having both ardour and xjadeo in sync.

Here's an excellent article in linux journal about this.
http://www.linuxjournal.com/node/1004080

-- 
[needs-packaging] Xjadeo
https://bugs.launchpad.net/bugs/128068
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 208260] Re: Too many commas in gcalctool

2008-04-11 Thread raguanu
The issue was with the localize_number() function. It assumed that the
string to format does not contain ,+*,etc. So it gave incorrect result
when the expression already includes thousand separators. Moreover, the
logic was not working well when there were non-digit characters in the
expression e.g. (,),+,%, etc.

Minor update to the localize_number() function in gcalctool/display.c,
provided in the attached patch. Basically we want to identify 3
contiguous digits, and we need to add the separator only if the next
char is a number. If a non-digit char occurs, I reset the digit counter.

I tested this patch in all calculator modes satisfactorily. Things like
3,333,333,336+36,985 are working now.

I would appreciate if someone reviews this to see if it is acceptable.

** Attachment added: "This is the patch for gcalctool/display.c"
   http://launchpadlibrarian.net/13369122/display.c

-- 
Too many commas in gcalctool
https://bugs.launchpad.net/bugs/208260
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 208260] Re: Too many commas in gcalctool

2008-04-11 Thread raguanu
The issue was with the localize_number() function. It assumed that the
string to format does not contain ,+*,etc. So it gave incorrect result
when the expression already includes thousand separators. Moreover, the
logic was not working well when there were non-digit characters in the
expression e.g. (,),+,%, etc.

Minor update to the localize_number() function in gcalctool/display.c,
provided in the attached patch. Basically we want to identify 3
contiguous digits, and we need to add the separator only if the next
char is a number. If a non-digit char occurs, I reset the digit counter.

I tested this patch in all calculator modes satisfactorily. Things like
3,333,333,336+36,985 are working now.

I would appreciate if someone reviews this to see if it is acceptable.

** Attachment added: "This is the patch for gcalctool/display.c"
   http://launchpadlibrarian.net/13369125/thousand_separator_fix_raguanu.patch

** Attachment removed: "This is the patch for gcalctool/display.c"

   http://launchpadlibrarian.net/13369122/display.c

-- 
Too many commas in gcalctool
https://bugs.launchpad.net/bugs/208260
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 208260] Re: Too many commas in gcalctool

2008-04-12 Thread raguanu
Chris,

 - Yes. It works for numbers with decimal point.
 - As you said, I see that the duplicate item under gnome-bugs #524746 is fixed 
around the same time I submitted the patch, as a part of all other 'thousand 
separator' problem. So I think this patch would not be necessary.

-- 
Too many commas in gcalctool
https://bugs.launchpad.net/bugs/208260
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 406667] Re: Bashee does not follow symbolic links in library folder

2009-10-08 Thread raguanu
I confirm the problem. Interestingly if the files are directly under the
sym link folder, banshee imports these files okay (including flac). But
sym links are not working if they are one level down.

sym-link-to-folder > music-file.flac --> banshee imports these files
regular-folder > sym-link-to-folder > music-file.flac ---> banshee 
doesn't import anything

This means banshee understands symbolic links. But there seems to be a
bug in specific scenario.

-- 
Bashee does not follow symbolic links in library folder
https://bugs.launchpad.net/bugs/406667
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 478010] [NEW] Could not empty trash when disk is full

2009-11-07 Thread raguanu
Public bug reported:

Binary package hint: nautilus

My hard disk was full. I tried to free some space by emptying trash
through nautilus. I got a progress bar which didn't show any progress
and disappeared. No files were deleted. I tried it a few times like a
robot (just trying to make the bug report more interesting), I got the
same result.

Emptying the trash with the trash icon near the bottom right panel
showed more promising behavior. The progress bar indeed looked to
deleting files. But the result it same. Nothing got cleaned.

Finally I used commandline to delete the trash.

--

I had transmission running at that time, which complained of disk being
full. I had scribus editor with a small ruby program which complained
about the failure while saving the file.

Please let me know in case you need additional information.

ProblemType: Bug
Architecture: i386
DistroRelease: Ubuntu 9.04
ExecutablePath: /usr/bin/nautilus
MediaBuild: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091027)
Package: nautilus 1:2.26.2-0ubuntu2
ProcEnviron:
 LANG=en_IN.UTF-8
 SHELL=/bin/bash
SourcePackage: nautilus
Uname: Linux 2.6.28-16-generic i686

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


** Tags: apport-bug cleanup gui-only-problem hard-disk i386 jaunty laptop 
presario2100 trash

-- 
Could not empty trash when disk is full
https://bugs.launchpad.net/bugs/478010
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 478010] Re: Could not empty trash when disk is full

2009-11-07 Thread raguanu

** Attachment added: "Dependencies.txt"
   http://launchpadlibrarian.net/35343829/Dependencies.txt

** Attachment added: "ProcMaps.txt"
   http://launchpadlibrarian.net/35343830/ProcMaps.txt

** Attachment added: "ProcStatus.txt"
   http://launchpadlibrarian.net/35343831/ProcStatus.txt

-- 
Could not empty trash when disk is full
https://bugs.launchpad.net/bugs/478010
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 478010] Re: Could not empty trash when disk is full

2009-11-07 Thread raguanu
Work around: rm -rf ~/.local/share/Trash/files/*

-- 
Could not empty trash when disk is full
https://bugs.launchpad.net/bugs/478010
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 478010] Re: Could not empty trash when disk is full

2009-11-13 Thread raguanu
Hello Pedro Villavicencio, Yes. I have experienced it with Ubuntu
Karmic. It was up-to-date at that time. I have about 20% free space now.
I don't see any issue with emptying trash now. Not sure if I have this
problem now if the disk is almost full. I will keep an eye on this.

-- 
Could not empty trash when disk is full
https://bugs.launchpad.net/bugs/478010
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 478010] Re: Could not empty trash when disk is full

2009-11-13 Thread raguanu
Oops, The info I just posted is wrong. I have ubuntu both on my laptop
and desktop. Laptop has Jaunty. Desktop has Karmic. So I got confused.
Sorry about that.

I have only seen this problem on Jaunty (laptop). I haven't seen this
issue on Karmic yet. I am yet to run out of space. On my laptop, when I
move to Karmic, which will happen soon, I will check if this problem
exists. I run of space quite often.

-- 
Could not empty trash when disk is full
https://bugs.launchpad.net/bugs/478010
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 882125] Re: nsIProcess doesn't work for some executables

2012-05-06 Thread raguanu
The suggested work around doesn't work for me. (Ubuntu 12.04 Firefox
12.0).

While doing the last step in the work around, that is, sudo
/etc/init.d/apparmor restart I noticed the following

 * Reloading AppArmor profiles   
Skipping profile in /etc/apparmor.d/disable: usr.bin.firefox  
Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd  
 [ OK ] 
 

Does it mean that the update didn't affect the required files?

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

Title:
  nsIProcess doesn't work for some executables

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

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


[Bug 1335835] Re: Sometime, Beforce 5 seconds that unity lock screen appeared, user sessions screen was visbled

2015-11-28 Thread raguanu
I often experience this problem with 15.04 and now with 15.10 too.

When I open the lid of the laptop, it wakes up from suspend, and it
should show me the (un)lock screen -- according to my settings. But it
shows my desktop with all  open windows for a moment before showing lock
screen.

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

Title:
  Sometime, Beforce 5 seconds that unity lock screen appeared, user
  sessions screen was visbled

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

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


[Bug 40682] Re: My scanner, a Canon CanoScan LIDE 20, makes grinding noise

2014-01-27 Thread raguanu
I have the same problem, now in Ubuntu 13.10, with my CanoScan LIDE 100

In previous versions of ubuntu (say 12.10 or before), the scanner used
to work reasonably well with "Simple Scan' but would jam in xsane. Now
in 13.10 it gets stuck in the middle of the scan and the header won't
return to the starting position. Makes strange noises.

Booting the system in 'Windows' would reset the scanner head to starting
position. It works fantastic in Windows and never gives a problem. But
if I try to scan anything in ubuntu again, the scanner is bound to get
stuck.

** Also affects: sane-frontends (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  My scanner, a Canon CanoScan LIDE 20, makes grinding noise

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

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


[Bug 1058732] [NEW] After selecting "show position of pointer when control key is pressed" option, zoom (control+scroll) on applications does not work

2012-09-29 Thread raguanu
Public bug reported:

I have chosen "show position of pointer when control key is pressed"
option from Mouse and Touchpad settings. The said functionality is
working fine. Nice effect is shown under the mouse cursor if control key
is pressed (which my 2.5 yr old son enjoyed a lot).

Later I noticed that control scroll way of zooming in firefox doesn't
work. If I switch off the option, I found that the zoom works fine. I
also tested this with text editor (gedit). Same issue.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: gnome-control-center 1:3.4.2-0ubuntu0.4
ProcVersionSignature: Ubuntu 3.2.0-31.50-generic-pae 3.2.28
Uname: Linux 3.2.0-31-generic-pae i686
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu13
Architecture: i386
Date: Sat Sep 29 23:47:22 2012
ExecutablePath: /usr/bin/gnome-control-center
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 
(20120423.2)
SourcePackage: gnome-control-center
UpgradeStatus: No upgrade log present (probably fresh install)
usr_lib_gnome-control-center:
 activity-log-manager-control-center 0.9.4-0ubuntu3
 deja-dup22.0-0ubuntu2
 gnome-bluetooth 3.2.2-0ubuntu5
 indicator-datetime  0.3.94-0ubuntu2

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 precise running-unity

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

Title:
  After selecting "show position of pointer when control key is pressed"
  option, zoom (control+scroll) on applications does not work

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

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

[Bug 1058732] Re: After selecting "show position of pointer when control key is pressed" option, zoom (control+scroll) on applications does not work

2012-09-29 Thread raguanu
** Description changed:

  I have chosen "show position of pointer when control key is pressed"
  option from Mouse and Touchpad settings. The said functionality is
  working fine. Nice effect is shown under the mouse cursor if control key
- is press (which my 2.5 yr old son enjoyed a lot).
+ is pressed (which my 2.5 yr old son enjoyed a lot).
  
  Later I noticed that control scroll way of zooming in firefox doesn't
  work. If I switch off the option, I found that the zoom works fine. I
  also tested this with text editor (gedit). Same issue.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: gnome-control-center 1:3.4.2-0ubuntu0.4
  ProcVersionSignature: Ubuntu 3.2.0-31.50-generic-pae 3.2.28
  Uname: Linux 3.2.0-31-generic-pae i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu13
  Architecture: i386
  Date: Sat Sep 29 23:47:22 2012
  ExecutablePath: /usr/bin/gnome-control-center
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release i386 
(20120423.2)
  SourcePackage: gnome-control-center
  UpgradeStatus: No upgrade log present (probably fresh install)
  usr_lib_gnome-control-center:
-  activity-log-manager-control-center 0.9.4-0ubuntu3
-  deja-dup22.0-0ubuntu2
-  gnome-bluetooth 3.2.2-0ubuntu5
-  indicator-datetime  0.3.94-0ubuntu2
+  activity-log-manager-control-center 0.9.4-0ubuntu3
+  deja-dup22.0-0ubuntu2
+  gnome-bluetooth 3.2.2-0ubuntu5
+  indicator-datetime  0.3.94-0ubuntu2

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

Title:
  After selecting "show position of pointer when control key is pressed"
  option, zoom (control+scroll) on applications does not work

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

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

[Bug 875201] Re: wireless hardware switch does not work correctly. it is controlled by bluetooth manager.

2012-09-29 Thread raguanu
The following info is added to the bug description:

  UPDATE: I filed this bug report on 11.10. I am on 12.04 now. I
don't see this problem. Wireless hardware switch works fine.

** Description changed:

+ UPDATE: I filed this bug report on 11.10. I am on 12.04 now. I don't see
+ this problem. Wireless hardware switch works fine.
+ 
+ 
+ 
  Mine is HP-G42 laptop. It has a keyboard switch to enable/disable
  wireless adapter (F12 key if fn key is pressed together).
  
  When I boot my system, the wireless is turned on by default (also bluetooth). 
All work fine.
  If I switch off wireless by pressing the above key. It switches off both 
bluetooth and wireless. I was expecting only wireless to get switched off.
  Then I cannot switch on wireless by any means. I see if I enable bluetooth 
using an applet, the key's small LED turns blue which means it is on. Bluetooth 
is on. But it has no effect on wireless. I had to reboot to get wireless to 
work.
  
  I expect that the key only enables and disables wireless. I also expect
  that it has nothing to do with bluetooth. I don't have a hardware switch
  for bluetooth. So I will control is only with software (e.g. applet).
  
  There is another work flow which I think might help to understand the problem:
  I start the system. Bluetooth, wireless are on and working fine.
  Now the switch off bluetooth using the applet. Now I see that the LED of the 
key turns orange which means wireless is switched off. But wireless is working 
just fine without disconnection.
  
- In short, bluetooth definitely controls the key which it is not expected to. 
This key should only control wireless.
-  
+ In short, bluetooth definitely controls the key which it is not expected
+ to. This key should only control wireless.
+ 
  Please let me know if you need any additional information.
  
  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: linux-image-3.0.0-12-generic-pae 3.0.0-12.20
  ProcVersionSignature: Ubuntu 3.0.0-12.20-generic-pae 3.0.4
  Uname: Linux 3.0.0-12-generic-pae i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
  ApportVersion: 1.23-0ubuntu3
  Architecture: i386
  ArecordDevices:
-   List of CAPTURE Hardware Devices 
-  card 0: Intel [HDA Intel], device 0: ALC270 Analog [ALC270 Analog]
-Subdevices: 1/1
-Subdevice #0: subdevice #0
+   List of CAPTURE Hardware Devices 
+  card 0: Intel [HDA Intel], device 0: ALC270 Analog [ALC270 Analog]
+    Subdevices: 1/1
+    Subdevice #0: subdevice #0
  AudioDevicesInUse:
-  USERPID ACCESS COMMAND
-  /dev/snd/controlC0:  ragu   1892 F pulseaudio
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  ragu   1892 F pulseaudio
  CRDA: Error: [Errno 2] No such file or directory
  Card0.Amixer.info:
-  Card hw:0 'Intel'/'HDA Intel at 0xd440 irq 43'
-Mixer name : 'Intel IbexPeak HDMI'
-Components : 'HDA:10ec0270,103c1425,00100100 
HDA:80862804,80860101,0010'
-Controls  : 21
-Simple ctrls  : 12
+  Card hw:0 'Intel'/'HDA Intel at 0xd440 irq 43'
+    Mixer name : 'Intel IbexPeak HDMI'
+    Components : 'HDA:10ec0270,103c1425,00100100 
HDA:80862804,80860101,0010'
+    Controls  : 21
+    Simple ctrls  : 12
  Date: Sat Oct 15 23:30:51 2011
  EcryptfsInUse: Yes
  HibernationDevice: RESUME=UUID=bd660637-c898-4b4b-98bf-b830321e476c
  InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
  MachineType: Hewlett-Packard HP G42 Notebook PC
  ProcEnviron:
-  PATH=(custom, user)
-  LANG=en_IN
-  SHELL=/bin/bash
+  PATH=(custom, user)
+  LANG=en_IN
+  SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic-pae 
root=/dev/mapper/gungi-root ro quiet splash vt.handoff=7
  RelatedPackageVersions:
-  linux-restricted-modules-3.0.0-12-generic-pae N/A
-  linux-backports-modules-3.0.0-12-generic-pae  N/A
-  linux-firmware1.60
+  linux-restricted-modules-3.0.0-12-generic-pae N/A
+  linux-backports-modules-3.0.0-12-generic-pae  N/A
+  linux-firmware1.60
  SourcePackage: linux
  StagingDrivers: brcmutil mei brcmsmac
  UpgradeStatus: Upgraded to oneiric on 2011-10-15 (0 days ago)
  dmi.bios.date: 11/23/2010
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.32
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 1425
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 54.56
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.32:bd11/23/2010:svnHewlett-Packard:pnHPG42NotebookPC:pvr059813202710010010100:rvnHewlett-Packard:rn1425:rvr54.56:cvnHewlett-Packard:ct10:cvrN/A:
  dmi.product.name: HP G42 Notebook PC
  dmi.product.version: 059813202710010010100
  dmi.sys.vendor: Hewlett-Packard

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

[Bug 875201] [NEW] wireless hardware switch does not work correctly. it is controlled by bluetooth manager.

2011-10-15 Thread raguanu
Public bug reported:

Mine is HP-G42 laptop. It has a keyboard switch to enable/disable
wireless adapter (F12 key if fn key is pressed together).

When I boot my system, the wireless is turned on by default (also bluetooth). 
All work fine.
If I switch off wireless by pressing the above key. It switches off both 
bluetooth and wireless. I was expecting only wireless to get switched off.
Then I cannot switch on wireless by any means. I see if I enable bluetooth 
using an applet, the key's small LED turns blue which means it is on. Bluetooth 
is on. But it has no effect on wireless. I had to reboot to get wireless to 
work.

I expect that the key only enables and disables wireless. I also expect
that it has nothing to do with bluetooth. I don't have a hardware switch
for bluetooth. So I will control is only with software (e.g. applet).

There is another work flow which I think might help to understand the problem:
I start the system. Bluetooth, wireless are on and working fine.
Now the switch off bluetooth using the applet. Now I see that the LED of the 
key turns orange which means wireless is switched off. But wireless is working 
just fine without disconnection.

In short, bluetooth definitely controls the key which it is not expected to. 
This key should only control wireless.
 
Please let me know if you need any additional information.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: linux-image-3.0.0-12-generic-pae 3.0.0-12.20
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic-pae 3.0.4
Uname: Linux 3.0.0-12-generic-pae i686
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 1.23-0ubuntu3
Architecture: i386
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: Intel [HDA Intel], device 0: ALC270 Analog [ALC270 Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  ragu   1892 F pulseaudio
CRDA: Error: [Errno 2] No such file or directory
Card0.Amixer.info:
 Card hw:0 'Intel'/'HDA Intel at 0xd440 irq 43'
   Mixer name   : 'Intel IbexPeak HDMI'
   Components   : 'HDA:10ec0270,103c1425,00100100 
HDA:80862804,80860101,0010'
   Controls  : 21
   Simple ctrls  : 12
Date: Sat Oct 15 23:30:51 2011
EcryptfsInUse: Yes
HibernationDevice: RESUME=UUID=bd660637-c898-4b4b-98bf-b830321e476c
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
MachineType: Hewlett-Packard HP G42 Notebook PC
ProcEnviron:
 PATH=(custom, user)
 LANG=en_IN
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.0.0-12-generic-pae 
root=/dev/mapper/gungi-root ro quiet splash vt.handoff=7
RelatedPackageVersions:
 linux-restricted-modules-3.0.0-12-generic-pae N/A
 linux-backports-modules-3.0.0-12-generic-pae  N/A
 linux-firmware1.60
SourcePackage: linux
StagingDrivers: brcmutil mei brcmsmac
UpgradeStatus: Upgraded to oneiric on 2011-10-15 (0 days ago)
dmi.bios.date: 11/23/2010
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.32
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: 1425
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 54.56
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.32:bd11/23/2010:svnHewlett-Packard:pnHPG42NotebookPC:pvr059813202710010010100:rvnHewlett-Packard:rn1425:rvr54.56:cvnHewlett-Packard:ct10:cvrN/A:
dmi.product.name: HP G42 Notebook PC
dmi.product.version: 059813202710010010100
dmi.sys.vendor: Hewlett-Packard

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


** Tags: apport-bug i386 oneiric running-unity staging

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

Title:
  wireless hardware switch does not work correctly. it is controlled by
  bluetooth manager.

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

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


[Bug 875201] Re: wireless hardware switch does not work. it is controlled by bluetooth manager.

2011-10-15 Thread raguanu
** Summary changed:

- wireless hardware switch does not work. it is controlled by bluetooth manager.
+ wireless hardware switch does not work correctly. it is controlled by 
bluetooth manager.

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

Title:
  wireless hardware switch does not work correctly. it is controlled by
  bluetooth manager.

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

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


[Bug 875214] [NEW] could not select anything from dash using mouse if on a full screen application

2011-10-15 Thread raguanu
Public bug reported:

Open any application with full screen feature (F11) for example 
firefox/shotwell photo manager.
Press the super key which brings the dash.
Search for something (e.g. notes). search results are shown (tomboy notes). But 
we could not select any result using mouse. For that matter, anything on the 
dash, including the dash button.
This issue is not there is the dash is displayed on normal windows.
Even if there is a full screen application. If it is not an active window, dash 
behaves correctly.
Also there is no issue using keyboard.
If a new normal window comes up while the dash is on, immediately mouse is 
working. For example, when the dash is on a full screen application, press 
print screen which will bring the screen capture window behind dash. Now 
selection with mouse on dash is not a problem.

Please let me know if you need any further information.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: dash 0.5.5.1-7.4ubuntu1
ProcVersionSignature: Ubuntu 3.0.0-12.20-generic-pae 3.0.4
Uname: Linux 3.0.0-12-generic-pae i686
ApportVersion: 1.23-0ubuntu3
Architecture: i386
Date: Sat Oct 15 23:52:33 2011
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 10.10 "Maverick Meerkat" - Release i386 (20101007)
ProcEnviron:
 PATH=(custom, user)
 LANG=en_IN
 SHELL=/bin/bash
SourcePackage: dash
UpgradeStatus: Upgraded to oneiric on 2011-10-15 (0 days ago)

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


** Tags: apport-bug i386 oneiric running-unity

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

Title:
  could not select anything from dash using mouse if on a full screen
  application

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

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


[Bug 875214] Re: could not select anything from dash using mouse if on a full screen application

2011-10-15 Thread raguanu
** Attachment added: "dash on F11ed firefox"
   
https://bugs.launchpad.net/bugs/875214/+attachment/2548127/+files/Screenshot%20at%202011-10-15%2023%3A59%3A36.png

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

Title:
  could not select anything from dash using mouse if on a full screen
  application

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

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


[Bug 875214] Re: could not select anything from dash using mouse if on a full screen application

2011-10-15 Thread raguanu
I am not sure if I got the package correct

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

Title:
  could not select anything from dash using mouse if on a full screen
  application

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

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


[Bug 875214] Re: could not select anything from dash using mouse if on a full screen application

2011-10-15 Thread raguanu
changed the package to unity

** Package changed: dash (Ubuntu) => unity (Ubuntu)

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

Title:
  could not select anything from dash using mouse if on a full screen
  application

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

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


[Bug 875214] Re: could not select anything from dash using mouse if on a full screen application

2011-10-16 Thread raguanu
Yes. It is consistently reproducible.
I have already given detailed steps in the description. Let me add bullets to 
it :--)

1. Open any application with full screen feature (F11) for example 
firefox/shotwell photo manager.
2. Press the super key which brings the dash.
3. Search for something (e.g. notes). search results are shown (tomboy notes). 
But we could not select any result using mouse. For that matter, anything on 
the dash, including the dash button.

Please let me know if you need any further information.

** Changed in: unity (Ubuntu)
   Status: Incomplete => New

** Changed in: unity
   Status: Incomplete => New

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

Title:
  could not select anything from dash using mouse if on a full screen
  application

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

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


[Bug 875201] Re: wireless hardware switch does not work correctly. it is controlled by bluetooth manager.

2011-10-21 Thread raguanu
I tested with the below mainline build:

   linux-image-3.1.0-999-generic_3.1.0-999.201110210416_i386.deb
21-Oct-2011 08:33   35M

Same problem exists. There is no difference in the behavior.

** Tags removed: needs-upstream-testing

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

Title:
  wireless hardware switch does not work correctly. it is controlled by
  bluetooth manager.

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

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


[Bug 749775] Re: [gm45] Xorg freeze (except mouse pointer) after closing the lid

2011-04-30 Thread raguanu
I face this problem consistently. I have intel integrated GPU.

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

Title:
  [gm45] Xorg freeze (except mouse pointer) after closing the lid

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


[Bug 645862] Re: Import problem log incomplete

2010-10-31 Thread raguanu
(shotwell) '6314 duplicate photos were not imported'
I'd like to know what are those files, so I can erase them to clean up some 
space. Unfortunately, the filenames were not logged. Should be logged. +1

-- 
Import problem log incomplete
https://bugs.launchpad.net/bugs/645862
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