[Desktop-packages] [Bug 1770742] Re: Cannot find -lGL

2020-02-16 Thread efa
worked:
/usr/lib/x86_64-linux-gnu$ sudo ln -s libGL.so.1.0.0 libGL.so

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libglvnd in Ubuntu.
https://bugs.launchpad.net/bugs/1770742

Title:
  Cannot find -lGL

Status in libglvnd package in Ubuntu:
  Invalid

Bug description:
  I was trying to compile a OpenGL program, but it fails to compile. I
  suppose the package this bug is in is really libglvnd-dev, but I could
  not find that in Launchpad.

  Anyway, the linking error is:
  /usr/bin/x86_64-linux-gnu-ld: cannot find -lGL
  collect2: error: ld returned 1 exit status

  This seems to be because the symlink libGL.so is missing. If I go to 
/usr/lib/x86_64-linux-gnu and type:
sudo ln -s libGL.so.1 libGL.so
  then compiling works.

  Here is a (nonsensical) test program:
  #include 

  int main(int argc, char *argv[])
  {
  glEnable(GL_DEPTH_TEST);

  return 0;
  }

  which I compile with:
gcc testgl.c -lGL

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: libgl1 1.0.0-2ubuntu2
  ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
  Uname: Linux 4.15.0-20-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Fri May 11 15:48:17 2018
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2018-04-29 (12 days ago)
  InstallationMedia: Kubuntu 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
  SourcePackage: libglvnd
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1770742] Re: Cannot find -lGL

2020-02-16 Thread efa
/usr/lib/x86_64-linux-gnu$ sudo ln -s libEGL.so.1.0.0 libEGL.so
/usr/lib/x86_64-linux-gnu$ sudo ln -s libGLESv1_CM.so.1.0.0 libGLESv1_CM.so
/usr/lib/x86_64-linux-gnu$ sudo ln -s libGLESv2.so.2.0.0 libGLESv2.so

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libglvnd in Ubuntu.
https://bugs.launchpad.net/bugs/1770742

Title:
  Cannot find -lGL

Status in libglvnd package in Ubuntu:
  Invalid

Bug description:
  I was trying to compile a OpenGL program, but it fails to compile. I
  suppose the package this bug is in is really libglvnd-dev, but I could
  not find that in Launchpad.

  Anyway, the linking error is:
  /usr/bin/x86_64-linux-gnu-ld: cannot find -lGL
  collect2: error: ld returned 1 exit status

  This seems to be because the symlink libGL.so is missing. If I go to 
/usr/lib/x86_64-linux-gnu and type:
sudo ln -s libGL.so.1 libGL.so
  then compiling works.

  Here is a (nonsensical) test program:
  #include 

  int main(int argc, char *argv[])
  {
  glEnable(GL_DEPTH_TEST);

  return 0;
  }

  which I compile with:
gcc testgl.c -lGL

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: libgl1 1.0.0-2ubuntu2
  ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
  Uname: Linux 4.15.0-20-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Fri May 11 15:48:17 2018
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2018-04-29 (12 days ago)
  InstallationMedia: Kubuntu 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
  SourcePackage: libglvnd
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1770742] Re: Cannot find -lGL

2020-02-16 Thread efa
hit the trouble today. No proprietary Nvidia driver in use, only X.Org
Nouveau

I had package 'libglvnd-dev' installed, but still miss the files/link:
/usr/lib/x86_64-linux-gnu/libEGL.so
/usr/lib/x86_64-linux-gnu/libGL.so
/usr/lib/x86_64-linux-gnu/libGLESv1_CM.so
/usr/lib/x86_64-linux-gnu/libGLESv2.so
while are present the other present in the package:
/usr/lib/x86_64-linux-gnu/libGLX.so
/usr/lib/x86_64-linux-gnu/libGLdispatch.so
/usr/lib/x86_64-linux-gnu/libOpenGL.so

sudo apt install --reinstall libglvnd-dev
do not solved the trouble

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libglvnd in Ubuntu.
https://bugs.launchpad.net/bugs/1770742

Title:
  Cannot find -lGL

Status in libglvnd package in Ubuntu:
  Invalid

Bug description:
  I was trying to compile a OpenGL program, but it fails to compile. I
  suppose the package this bug is in is really libglvnd-dev, but I could
  not find that in Launchpad.

  Anyway, the linking error is:
  /usr/bin/x86_64-linux-gnu-ld: cannot find -lGL
  collect2: error: ld returned 1 exit status

  This seems to be because the symlink libGL.so is missing. If I go to 
/usr/lib/x86_64-linux-gnu and type:
sudo ln -s libGL.so.1 libGL.so
  then compiling works.

  Here is a (nonsensical) test program:
  #include 

  int main(int argc, char *argv[])
  {
  glEnable(GL_DEPTH_TEST);

  return 0;
  }

  which I compile with:
gcc testgl.c -lGL

  ProblemType: Bug
  DistroRelease: Ubuntu 18.04
  Package: libgl1 1.0.0-2ubuntu2
  ProcVersionSignature: Ubuntu 4.15.0-20.21-generic 4.15.17
  Uname: Linux 4.15.0-20-generic x86_64
  ApportVersion: 2.20.9-0ubuntu7
  Architecture: amd64
  CurrentDesktop: KDE
  Date: Fri May 11 15:48:17 2018
  EcryptfsInUse: Yes
  InstallationDate: Installed on 2018-04-29 (12 days ago)
  InstallationMedia: Kubuntu 18.04 LTS "Bionic Beaver" - Release amd64 
(20180426)
  SourcePackage: libglvnd
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 294972] Re: xorg high cpu usage, system sluggishness

2018-05-17 Thread efa
** Changed in: xorg-server (Ubuntu)
   Status: Expired => Confirmed

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/294972

Title:
  xorg high cpu usage, system sluggishness

Status in xorg-server package in Ubuntu:
  Confirmed

Bug description:
  Sometimes Xorg is shown in htop, top, ps, etc. as having a higher than
  expected CPU load.  Perhaps 100%, 50%, 10-20%...  Higher than the 1-5%
  that you normally expect.

  Sometimes this is accompanied by general system sluggishness,
  sometimes the fan runs at full tilt.

  This is not a single specific bug but rather is a generic symptom that
  can be caused by a wide variety of different underlying problems.
  This bug report is left open just as a placeholder and point for
  general discussion about this class of issue.

  In general, MOST of the time the issue is NOT X, but rather a client
  program that is just out of control making X calls.  X is a server and
  just responds to client requests as best it can.  If a client app is
  going nuts, like making a really expensive X call every few seconds,
  you'll see the high CPU indicated against X, even though the problem
  is really the client application's poorly optimized algorithm.

  A troubleshooting guide for this class of problem is available here:

 https://wiki.ubuntu.com/X/Troubleshooting/HighCPU

  Usually by starting or killing various programs, daemons, services,
  and so on you can narrow in on what is causing the load.

  Remember, your high CPU is probably NOT caused by X, so figure out
  which application is driving X, and file a new bug against THAT
  package.


  [Original Report]
  After the recent upgrade to 8.10 via update-manager -d, my whole system is 
quite laggy.

  Xorg now sits at the top of the cpu usage list constantly using 10 -
  20%, whereas under hardy it would sit at 1-2%.

  Opening programs can be at times quite slow, for instance, gedit can
  take 10+ seconds to open and load a txt file.

  Xorg.0.log seems normal enough till the end where I'll get several
  lines like this:

  AUDIT: Fri Nov  7 10:05:47 2008: 6071 X: client 4 rejected from local
  host ( uid=0 gid=0 pid=6545 )

  System:
  Linux WORKSHOP 2.6.27-7-generic #1 SMP Tue Nov 4 19:33:20 UTC 2008 i686 
GNU/Linux
  P4 3.4Ghz,
  1 Gb RAM,
  Nvidia 8400gs with the 177 driver

  I'm not sure what other info is required, I'm sure someone will let me
  know...

  others possibly having the same issues:

  http://ubuntuforums.org/showthread.php?t=966629
  http://ubuntuforums.org/showthread.php?t=967839
  http://ubuntuforums.org/showthread.php?t=970714
  http://ubuntuforums.org/showthread.php?t=965897

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 294972] Re: xorg high cpu usage, system sluggishness

2018-05-17 Thread efa
after last updates, resuming suspension, Xorg use 100% of one CPU core.

Ubuntu 16.04.4
Kernel: 4.4.0-124-generic

xorg
version: 1:7.7+13ubuntu3
ver: X11R7.7+13ubuntu3 X.Org X Server 1.18.4

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xorg-server in Ubuntu.
https://bugs.launchpad.net/bugs/294972

Title:
  xorg high cpu usage, system sluggishness

Status in xorg-server package in Ubuntu:
  Expired

Bug description:
  Sometimes Xorg is shown in htop, top, ps, etc. as having a higher than
  expected CPU load.  Perhaps 100%, 50%, 10-20%...  Higher than the 1-5%
  that you normally expect.

  Sometimes this is accompanied by general system sluggishness,
  sometimes the fan runs at full tilt.

  This is not a single specific bug but rather is a generic symptom that
  can be caused by a wide variety of different underlying problems.
  This bug report is left open just as a placeholder and point for
  general discussion about this class of issue.

  In general, MOST of the time the issue is NOT X, but rather a client
  program that is just out of control making X calls.  X is a server and
  just responds to client requests as best it can.  If a client app is
  going nuts, like making a really expensive X call every few seconds,
  you'll see the high CPU indicated against X, even though the problem
  is really the client application's poorly optimized algorithm.

  A troubleshooting guide for this class of problem is available here:

 https://wiki.ubuntu.com/X/Troubleshooting/HighCPU

  Usually by starting or killing various programs, daemons, services,
  and so on you can narrow in on what is causing the load.

  Remember, your high CPU is probably NOT caused by X, so figure out
  which application is driving X, and file a new bug against THAT
  package.


  [Original Report]
  After the recent upgrade to 8.10 via update-manager -d, my whole system is 
quite laggy.

  Xorg now sits at the top of the cpu usage list constantly using 10 -
  20%, whereas under hardy it would sit at 1-2%.

  Opening programs can be at times quite slow, for instance, gedit can
  take 10+ seconds to open and load a txt file.

  Xorg.0.log seems normal enough till the end where I'll get several
  lines like this:

  AUDIT: Fri Nov  7 10:05:47 2008: 6071 X: client 4 rejected from local
  host ( uid=0 gid=0 pid=6545 )

  System:
  Linux WORKSHOP 2.6.27-7-generic #1 SMP Tue Nov 4 19:33:20 UTC 2008 i686 
GNU/Linux
  P4 3.4Ghz,
  1 Gb RAM,
  Nvidia 8400gs with the 177 driver

  I'm not sure what other info is required, I'm sure someone will let me
  know...

  others possibly having the same issues:

  http://ubuntuforums.org/showthread.php?t=966629
  http://ubuntuforums.org/showthread.php?t=967839
  http://ubuntuforums.org/showthread.php?t=970714
  http://ubuntuforums.org/showthread.php?t=965897

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 210081] Re: evince will not launch external applications

2016-05-28 Thread efa
as the bug was opened in 2008, fix was available with upstream evince
2.24 but in ubuntu evince 3.10.3 still is present, here the solution
found out of launchpad:

sudo ln -s /etc/apparmor.d/usr.bin.evince /etc/apparmor.d/disable/usr.bin.evince
sudo service apparmor restart

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/210081

Title:
  evince will not launch external applications

Status in Evince:
  Fix Released
Status in evince package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: evince

  In gutsy, evince used to be able to launch external helper
  applications. In a fully updated hardy, it doesn't seem to do this, at
  least with the attached example.

  Steps to reproduce:
  1) Download test.tar.gz attachment, unpack in a directory, cd to it.
  2) Load test.pdf in gutsy's evince. A movie player will launch if you 
   click on the image on the last page, assuming your system can 
   play MOV files.
  3) Load test.pdf in hardy's evince. Even though the tooltip says that
  evince intends to launch the movie player, it doesn't. However, 
  the movie can be played just fine using a properly configure totem.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1409291] Re: missing toolbar

2016-04-02 Thread efa
using Ubuntu, when a problem occur, the crash reporting carry to launchpad for 
reporting.
All bug or RFE  I reported are marked as need upstream, or Ubuntu will not ...
Ubunto distribute packages made by others.
So why report to Ubuntu? And why use Ubuntu instead of directly upstream 
packages if no support or advantage here?
Switching to Debian

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1409291

Title:
  missing toolbar

Status in evince package in Ubuntu:
  Invalid

Bug description:
  missing tools, missing menù item: View->toolbar, Edit->toolbar

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: evince 3.10.3-0ubuntu10.1
  ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
  Uname: Linux 3.13.0-43-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sat Jan 10 16:36:54 2015
  InstallationDate: Installed on 2011-12-24 (1112 days ago)
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: evince
  UpgradeStatus: Upgraded to trusty on 2014-12-23 (18 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1409291] Re: missing toolbar

2015-10-26 Thread efa
this is a valid RFE

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1409291

Title:
  missing toolbar

Status in evince package in Ubuntu:
  Invalid

Bug description:
  missing tools, missing menù item: View->toolbar, Edit->toolbar

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: evince 3.10.3-0ubuntu10.1
  ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
  Uname: Linux 3.13.0-43-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sat Jan 10 16:36:54 2015
  InstallationDate: Installed on 2011-12-24 (1112 days ago)
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: evince
  UpgradeStatus: Upgraded to trusty on 2014-12-23 (18 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1314804] Re: resume from suspend never re-switch on video

2015-10-05 Thread efa
if you needed two separate reports, you had to ask for it immediately after the 
opening of the report, not now.
If you prefer, you can continue ignoring bug report for 1 year and a half, than 
change the subject of report and close them as invalid. The OS remain buggy.
I will not open a new and duplicate bug of this (where you changed the meaning) 
about hibernate and resume.

Reported as blocking for bug#1
https://bugs.launchpad.net/ubuntu/+bug/1

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1314804

Title:
  resume from suspend never re-switch on video

Status in xserver-xorg-video-nouveau package in Ubuntu:
  Invalid

Bug description:
  After suspend, a resume with power on switch, switch on the PC (beep
  at power on, hdd led blink on activity, ...) but the LCD monitor
  remain off.

  WORKAROUND: Use the proprietary driver.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xserver-xorg-video-nouveau 1:0.0.16+git20111201+b5534a1-1build3
  ProcVersionSignature: Ubuntu 3.8.0-39.57~precise1-generic 3.8.13.20
  Uname: Linux 3.8.0-39-generic i686
  .tmp.unity.support.test.0:

  ApportVersion: 2.0.1-0ubuntu17.6
  Architecture: i386
  CheckboxSubmission: bff6ca128abafd5e9f4c5484e1181d23
  CheckboxSystem: b8f3ec504801f13fc208edb5c785b099
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,workarounds,scale,expo,ezoom,dbus,scale,expo]
  CompositorRunning: None
  Date: Wed Apr 30 22:53:38 2014
  DistUpgraded: Fresh install
  DistroCodename: precise
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes,
  GraphicsCard:
   NVIDIA Corporation C79 [GeForce G102M] [10de:0873] (rev b1) (prog-if 00 [VGA 
controller])
     Subsystem: ASUSTeK Computer Inc. GeForce G102M [1043:19b4]
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  Lsusb:
   Bus 001 Device 003: ID 04f2:b071 Chicony Electronics Co., Ltd 2.0M UVC 
Webcam / CNF7129
   Bus 002 Device 002: ID 046d:c00c Logitech, Inc. Optical Wheel Mouse
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: ASUSTeK Computer Inc. K50IN
  MarkForUpload: True
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.8.0-39-generic 
root=UUID=ac823f48-7711-460f-92af-8c9b2acd2aa5 ro 
crashkernel=384M-2G:64M,2G-:128M reboot=pci
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/05/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 223
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: K50IN
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr223:bd07/05/2011:svnASUSTeKComputerInc.:pnK50IN:pvr1.0:rvnASUSTeKComputerInc.:rnK50IN:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr:
  dmi.product.name: K50IN
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.
  version.compiz: compiz 1:0.9.7.12-0ubuntu3
  version.libdrm2: libdrm2 2.4.46-1ubuntu0.0.0.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.4-0ubuntu0.7
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.4-0ubuntu0.7
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10.14
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1.2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4.4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1314804/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1314804] Re: resume from suspend never re-switch on video

2015-10-04 Thread efa
OK, as suspend now work, consider this bug for hibernate only, so it
keep original report date and all text logs reported here up.

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1314804

Title:
  resume from suspend never re-switch on video

Status in xserver-xorg-video-nouveau package in Ubuntu:
  Invalid

Bug description:
  After suspend, a resume with power on switch, switch on the PC (beep
  at power on, hdd led blink on activity, ...) but the LCD monitor
  remain off.

  WORKAROUND: Use the proprietary driver.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xserver-xorg-video-nouveau 1:0.0.16+git20111201+b5534a1-1build3
  ProcVersionSignature: Ubuntu 3.8.0-39.57~precise1-generic 3.8.13.20
  Uname: Linux 3.8.0-39-generic i686
  .tmp.unity.support.test.0:

  ApportVersion: 2.0.1-0ubuntu17.6
  Architecture: i386
  CheckboxSubmission: bff6ca128abafd5e9f4c5484e1181d23
  CheckboxSystem: b8f3ec504801f13fc208edb5c785b099
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,workarounds,scale,expo,ezoom,dbus,scale,expo]
  CompositorRunning: None
  Date: Wed Apr 30 22:53:38 2014
  DistUpgraded: Fresh install
  DistroCodename: precise
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes,
  GraphicsCard:
   NVIDIA Corporation C79 [GeForce G102M] [10de:0873] (rev b1) (prog-if 00 [VGA 
controller])
     Subsystem: ASUSTeK Computer Inc. GeForce G102M [1043:19b4]
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  Lsusb:
   Bus 001 Device 003: ID 04f2:b071 Chicony Electronics Co., Ltd 2.0M UVC 
Webcam / CNF7129
   Bus 002 Device 002: ID 046d:c00c Logitech, Inc. Optical Wheel Mouse
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: ASUSTeK Computer Inc. K50IN
  MarkForUpload: True
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.8.0-39-generic 
root=UUID=ac823f48-7711-460f-92af-8c9b2acd2aa5 ro 
crashkernel=384M-2G:64M,2G-:128M reboot=pci
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/05/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 223
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: K50IN
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr223:bd07/05/2011:svnASUSTeKComputerInc.:pnK50IN:pvr1.0:rvnASUSTeKComputerInc.:rnK50IN:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr:
  dmi.product.name: K50IN
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.
  version.compiz: compiz 1:0.9.7.12-0ubuntu3
  version.libdrm2: libdrm2 2.4.46-1ubuntu0.0.0.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.4-0ubuntu0.7
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.4-0ubuntu0.7
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10.14
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1.2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4.4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1314804/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1314804] Re: resume from suspend never re-switch on video

2015-10-04 Thread efa
currently running 14.04 LTS, suspend and resume work as expected.
Why did you removed resume from Hibernate in summary?

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1314804

Title:
  resume from suspend never re-switch on video

Status in xserver-xorg-video-nouveau package in Ubuntu:
  Incomplete

Bug description:
  After suspend, a resume with power on switch, switch on the PC (beep
  at power on, hdd led blink on activity, ...) but the LCD monitor
  remain off.

  WORKAROUND: Use the proprietary driver.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xserver-xorg-video-nouveau 1:0.0.16+git20111201+b5534a1-1build3
  ProcVersionSignature: Ubuntu 3.8.0-39.57~precise1-generic 3.8.13.20
  Uname: Linux 3.8.0-39-generic i686
  .tmp.unity.support.test.0:

  ApportVersion: 2.0.1-0ubuntu17.6
  Architecture: i386
  CheckboxSubmission: bff6ca128abafd5e9f4c5484e1181d23
  CheckboxSystem: b8f3ec504801f13fc208edb5c785b099
  CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,workarounds,scale,expo,ezoom,dbus,scale,expo]
  CompositorRunning: None
  Date: Wed Apr 30 22:53:38 2014
  DistUpgraded: Fresh install
  DistroCodename: precise
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes,
  GraphicsCard:
   NVIDIA Corporation C79 [GeForce G102M] [10de:0873] (rev b1) (prog-if 00 [VGA 
controller])
     Subsystem: ASUSTeK Computer Inc. GeForce G102M [1043:19b4]
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  Lsusb:
   Bus 001 Device 003: ID 04f2:b071 Chicony Electronics Co., Ltd 2.0M UVC 
Webcam / CNF7129
   Bus 002 Device 002: ID 046d:c00c Logitech, Inc. Optical Wheel Mouse
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  MachineType: ASUSTeK Computer Inc. K50IN
  MarkForUpload: True
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.8.0-39-generic 
root=UUID=ac823f48-7711-460f-92af-8c9b2acd2aa5 ro 
crashkernel=384M-2G:64M,2G-:128M reboot=pci
  SourcePackage: xserver-xorg-video-nouveau
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 07/05/2011
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 223
  dmi.board.asset.tag: ATN12345678901234567
  dmi.board.name: K50IN
  dmi.board.vendor: ASUSTeK Computer Inc.
  dmi.board.version: 1.0
  dmi.chassis.type: 10
  dmi.chassis.vendor: ASUSTeK Computer Inc.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr223:bd07/05/2011:svnASUSTeKComputerInc.:pnK50IN:pvr1.0:rvnASUSTeKComputerInc.:rnK50IN:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr:
  dmi.product.name: K50IN
  dmi.product.version: 1.0
  dmi.sys.vendor: ASUSTeK Computer Inc.
  version.compiz: compiz 1:0.9.7.12-0ubuntu3
  version.libdrm2: libdrm2 2.4.46-1ubuntu0.0.0.1
  version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.4-0ubuntu0.7
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.4-0ubuntu0.7
  version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10.14
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1.2
  version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
  version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4.4
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build3

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-nouveau/+bug/1314804/+subscriptions

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 988251] Re: Nautilus cut, copy, paste, move and rename options are greyed out and stop working

2015-07-09 Thread efa
killall ibus-daemon
is a workaround

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to nautilus in Ubuntu.
https://bugs.launchpad.net/bugs/988251

Title:
  Nautilus cut, copy, paste, move and rename options are greyed out and
  stop working

Status in nautilus package in Ubuntu:
  Confirmed

Bug description:
  The problem appears while using the mouse trying to copy or cut /
  paste links, folders or files from one location to another. After the
  mouse-right-click drop-down menu selection of 'copy' or 'cut' the
  second stage - right-click 'paste' (to the desired location) - is
  greyed out and the selected files won't move/copy. Key combinations
  CTRL-X, CTRL-C, CTRL-V don't work either.

  However dragging and dropping with the mouse allways works perfectly.
  Also using SHIFT + drag with the mouse works correctly.

  The files are on the local network on a nfs v3-server (Ubuntu 10.04).
  Permissions are correct and chmod is 755 (as it has always been). This
  problem came with the Ubuntu 11.10 workstation and has never occurred
  before. The workstation was upgraded from 10.10 to 11.10 by CD,
  formatting / (ext4) and leaving Home unformatted (ext4). I am using
  Unity-2D.

  ProblemType: Bug
  DistroRelease: Ubuntu 11.10
  Package: nautilus 1:3.2.1-0ubuntu4.2
  ProcVersionSignature: Ubuntu 3.0.0-17.30-generic 3.0.22
  Uname: Linux 3.0.0-17-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 1.23-0ubuntu4
  Architecture: amd64
  Date: Wed Apr 25 12:49:11 2012
  ExecutablePath: /usr/bin/nautilus
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release amd64 (20111012)
  ProcEnviron:
   LANGUAGE=en
   PATH=(custom, no user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: nautilus
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1409291] Re: missing toolbar

2015-01-10 Thread efa
other users asked for:
https://mail.gnome.org/archives/evince-list/2014-October/msg7.html

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1409291

Title:
  missing toolbar

Status in evince package in Ubuntu:
  New

Bug description:
  missing tools, missing menù item: View->toolbar, Edit->toolbar

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: evince 3.10.3-0ubuntu10.1
  ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
  Uname: Linux 3.13.0-43-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sat Jan 10 16:36:54 2015
  InstallationDate: Installed on 2011-12-24 (1112 days ago)
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: evince
  UpgradeStatus: Upgraded to trusty on 2014-12-23 (18 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1409291] Re: missing toolbar

2015-01-10 Thread efa
evince version 3.10.3

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1409291

Title:
  missing toolbar

Status in evince package in Ubuntu:
  New

Bug description:
  missing tools, missing menù item: View->toolbar, Edit->toolbar

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: evince 3.10.3-0ubuntu10.1
  ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
  Uname: Linux 3.13.0-43-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sat Jan 10 16:36:54 2015
  InstallationDate: Installed on 2011-12-24 (1112 days ago)
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: evince
  UpgradeStatus: Upgraded to trusty on 2014-12-23 (18 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1409291] [NEW] missing toolbar

2015-01-10 Thread efa
Public bug reported:

missing tools, missing menù item: View->toolbar, Edit->toolbar

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: evince 3.10.3-0ubuntu10.1
ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
Uname: Linux 3.13.0-43-generic i686
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.6
Architecture: i386
CurrentDesktop: Unity
Date: Sat Jan 10 16:36:54 2015
InstallationDate: Installed on 2011-12-24 (1112 days ago)
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
SourcePackage: evince
UpgradeStatus: Upgraded to trusty on 2014-12-23 (18 days ago)

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


** Tags: apparmor apport-bug i386 trusty

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to evince in Ubuntu.
https://bugs.launchpad.net/bugs/1409291

Title:
  missing toolbar

Status in evince package in Ubuntu:
  New

Bug description:
  missing tools, missing menù item: View->toolbar, Edit->toolbar

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: evince 3.10.3-0ubuntu10.1
  ProcVersionSignature: Ubuntu 3.13.0-43.72-generic 3.13.11.11
  Uname: Linux 3.13.0-43-generic i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.14.1-0ubuntu3.6
  Architecture: i386
  CurrentDesktop: Unity
  Date: Sat Jan 10 16:36:54 2015
  InstallationDate: Installed on 2011-12-24 (1112 days ago)
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: evince
  UpgradeStatus: Upgraded to trusty on 2014-12-23 (18 days ago)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1314804] [NEW] resume from hybernate and suspend never re-switch on video

2014-04-30 Thread efa
Public bug reported:

after both hybernate or suspend, a resume with power on switch, switch on the 
PC (beep at power on, hdd led blink on activity, ...) but the LCD monitor 
remain off.
Using the proprietary driver both work.

Description:Ubuntu 12.04.4 LTS
Release:12.04

xserver-xorg-video-nouveau:
  Installato: 1:0.0.16+git20111201+b5534a1-1build3
  Candidato:  1:0.0.16+git20111201+b5534a1-1build3
  Tabella versione:
 *** 1:0.0.16+git20111201+b5534a1-1build3 0
500 http://it.archive.ubuntu.com/ubuntu/ precise-updates/main i386 
Packages
100 /var/lib/dpkg/status
 1:0.0.16+git20111201+b5534a1-1build2 0
500 http://it.archive.ubuntu.com/ubuntu/ precise/main i386 Packages

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: xserver-xorg-video-nouveau 1:0.0.16+git20111201+b5534a1-1build3
ProcVersionSignature: Ubuntu 3.8.0-39.57~precise1-generic 3.8.13.20
Uname: Linux 3.8.0-39-generic i686
.tmp.unity.support.test.0:
 
ApportVersion: 2.0.1-0ubuntu17.6
Architecture: i386
CheckboxSubmission: bff6ca128abafd5e9f4c5484e1181d23
CheckboxSystem: b8f3ec504801f13fc208edb5c785b099
CompizPlugins: 
[core,composite,opengl,compiztoolbox,decor,vpswitch,snap,mousepoll,resize,place,move,wall,grid,regex,imgpng,session,gnomecompat,animation,fade,workarounds,scale,expo,ezoom,dbus,scale,expo]
CompositorRunning: None
Date: Wed Apr 30 22:53:38 2014
DistUpgraded: Fresh install
DistroCodename: precise
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes,
GraphicsCard:
 NVIDIA Corporation C79 [GeForce G102M] [10de:0873] (rev b1) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. GeForce G102M [1043:19b4]
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
Lsusb:
 Bus 001 Device 003: ID 04f2:b071 Chicony Electronics Co., Ltd 2.0M UVC Webcam 
/ CNF7129
 Bus 002 Device 002: ID 046d:c00c Logitech, Inc. Optical Wheel Mouse
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
MachineType: ASUSTeK Computer Inc. K50IN
MarkForUpload: True
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.8.0-39-generic 
root=UUID=ac823f48-7711-460f-92af-8c9b2acd2aa5 ro 
crashkernel=384M-2G:64M,2G-:128M reboot=pci
SourcePackage: xserver-xorg-video-nouveau
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/05/2011
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 223
dmi.board.asset.tag: ATN12345678901234567
dmi.board.name: K50IN
dmi.board.vendor: ASUSTeK Computer Inc.
dmi.board.version: 1.0
dmi.chassis.type: 10
dmi.chassis.vendor: ASUSTeK Computer Inc.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr223:bd07/05/2011:svnASUSTeKComputerInc.:pnK50IN:pvr1.0:rvnASUSTeKComputerInc.:rnK50IN:rvr1.0:cvnASUSTeKComputerInc.:ct10:cvr:
dmi.product.name: K50IN
dmi.product.version: 1.0
dmi.sys.vendor: ASUSTeK Computer Inc.
version.compiz: compiz 1:0.9.7.12-0ubuntu3
version.libdrm2: libdrm2 2.4.46-1ubuntu0.0.0.1
version.libgl1-mesa-dri: libgl1-mesa-dri 8.0.4-0ubuntu0.7
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 8.0.4-0ubuntu0.7
version.xserver-xorg-core: xserver-xorg-core 2:1.11.4-0ubuntu10.14
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.0-0ubuntu1.2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 
1:6.14.99~git20111219.aacbd629-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.17.0-1ubuntu4.4
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 
1:0.0.16+git20111201+b5534a1-1build3

** Affects: xserver-xorg-video-nouveau (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug i386 precise ubuntu

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to xserver-xorg-video-nouveau in Ubuntu.
https://bugs.launchpad.net/bugs/1314804

Title:
  resume from hybernate and suspend never re-switch on video

Status in “xserver-xorg-video-nouveau” package in Ubuntu:
  New

Bug description:
  after both hybernate or suspend, a resume with power on switch, switch on the 
PC (beep at power on, hdd led blink on activity, ...) but the LCD monitor 
remain off.
  Using the proprietary driver both work.

  Description:  Ubuntu 12.04.4 LTS
  Release:  12.04

  xserver-xorg-video-nouveau:
Installato: 1:0.0.16+git20111201+b5534a1-1build3
Candidato:  1:0.0.16+git20111201+b5534a1-1build3
Tabella versione:
   *** 1:0.0.16+git20111201+b5534a1-1build3 0
  500 http://it.archive.ubuntu.com/ubuntu/ precise-updates/main i386 
Packages
  100 /var/lib/dpkg/status
   1:0.0.16+git20111201+b5534a1-1build2 0
  500 http://it.archive.ubuntu.com/ubuntu/ precise/main i386 Packages

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: xserver-xorg-video-nouveau 1:0.0.16+git20111201+b5534a1-1build3
  ProcVersionSignature: Ubuntu 3.8.0-39.57~precise1-generic 3.8.13.20
  Uname: Linux 3.8.0-39-ge

[Desktop-packages] [Bug 1205062] [NEW] no communication with Epson D88 when a ink cartdridge is empty

2013-07-25 Thread efa
Public bug reported:

printer Epson Stylus D88
when an ink cartdridge is empty, no communication with printer is possible.
Device /dev/usb/lp0 disappear, so no printing is possible, 
and even worse, is not possible to know which ink cartridge is empty.

For example in that situation:
sudo escputil -i -r /dev/usb/lp0
fail

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: cups 1.6.2-1ubuntu5
ProcVersionSignature: Ubuntu 3.8.0-26.38-generic 3.8.13.2
Uname: Linux 3.8.0-26-generic i686
ApportVersion: 2.9.2-0ubuntu8.1
Architecture: i386
Date: Thu Jul 25 21:30:38 2013
InstallationDate: Installed on 2013-01-23 (182 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2)
Lpstat: device for Stylus-D88: 
usb://EPSON/Stylus%20D88?serial=HU33Y0605261532110
MachineType: System manufacturer System Product Name
MarkForUpload: True
Papersize: a4
PpdFiles: Stylus-D88: Epson Stylus D88 - CUPS+Gutenprint v5.2.9
ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.8.0-26-generic 
root=UUID=942f6695-dbdd-4fb0-8043-3fa3de754610 ro quiet splash vt.handoff=7
SourcePackage: cups
UpgradeStatus: Upgraded to raring on 2013-07-03 (22 days ago)
dmi.bios.date: 08/10/2012
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0610
dmi.board.asset.tag: To be filled by O.E.M.
dmi.board.name: P8H61-M LE R2.0
dmi.board.vendor: ASUSTeK COMPUTER INC.
dmi.board.version: Rev x.0x
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0610:bd08/10/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP8H61-MLER2.0:rvrRevx.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer

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


** Tags: apport-bug i386 raring

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to cups in Ubuntu.
https://bugs.launchpad.net/bugs/1205062

Title:
  no communication with Epson D88 when a ink cartdridge is empty

Status in “cups” package in Ubuntu:
  New

Bug description:
  printer Epson Stylus D88
  when an ink cartdridge is empty, no communication with printer is possible.
  Device /dev/usb/lp0 disappear, so no printing is possible, 
  and even worse, is not possible to know which ink cartridge is empty.

  For example in that situation:
  sudo escputil -i -r /dev/usb/lp0
  fail

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: cups 1.6.2-1ubuntu5
  ProcVersionSignature: Ubuntu 3.8.0-26.38-generic 3.8.13.2
  Uname: Linux 3.8.0-26-generic i686
  ApportVersion: 2.9.2-0ubuntu8.1
  Architecture: i386
  Date: Thu Jul 25 21:30:38 2013
  InstallationDate: Installed on 2013-01-23 (182 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release i386 (20121017.2)
  Lpstat: device for Stylus-D88: 
usb://EPSON/Stylus%20D88?serial=HU33Y0605261532110
  MachineType: System manufacturer System Product Name
  MarkForUpload: True
  Papersize: a4
  PpdFiles: Stylus-D88: Epson Stylus D88 - CUPS+Gutenprint v5.2.9
  ProcKernelCmdLine: BOOT_IMAGE=/vmlinuz-3.8.0-26-generic 
root=UUID=942f6695-dbdd-4fb0-8043-3fa3de754610 ro quiet splash vt.handoff=7
  SourcePackage: cups
  UpgradeStatus: Upgraded to raring on 2013-07-03 (22 days ago)
  dmi.bios.date: 08/10/2012
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: 0610
  dmi.board.asset.tag: To be filled by O.E.M.
  dmi.board.name: P8H61-M LE R2.0
  dmi.board.vendor: ASUSTeK COMPUTER INC.
  dmi.board.version: Rev x.0x
  dmi.chassis.asset.tag: Asset-1234567890
  dmi.chassis.type: 3
  dmi.chassis.vendor: Chassis Manufacture
  dmi.chassis.version: Chassis Version
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0610:bd08/10/2012:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKCOMPUTERINC.:rnP8H61-MLER2.0:rvrRevx.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
  dmi.product.name: System Product Name
  dmi.product.version: System Version
  dmi.sys.vendor: System manufacturer

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 240895] Re: OpenOffice.org Calc does not have enough columns

2013-05-17 Thread efa
see Libreoffice 1024 column limit:
https://bugs.freedesktop.org/show_bug.cgi?id=50916

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to libreoffice in Ubuntu.
https://bugs.launchpad.net/bugs/240895

Title:
  OpenOffice.org Calc does not have enough columns

Status in The OpenOffice.org Suite:
  Confirmed
Status in “libreoffice” package in Ubuntu:
  Invalid
Status in “openoffice.org” package in Ubuntu:
  Won't Fix

Bug description:
  Binary package hint: openoffice.org

  I opened the attached Excel 1997-2003 spreadsheet that has a lot of
  columns (one for every day of the year, plus a few more).  However
  OpenOffice.org Calc will only display the columns up until "IV".  That
  means that the last 3 months of the year are not visible.

  Please fix this.

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1036875] [NEW] gedit never fill the recent file list in Open icon in tool bar

2012-08-14 Thread efa
Public bug reported:

gedit never fill the recent file list in Open icon in tool bar
Clicking the down arrow at the right of Open icon, the drop down list always 
say:
"Nessun elemento trovato"
that is something about:
"No element found"

The Recent list in open dialog is correct.

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: gedit 3.4.1-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-29.46-generic-pae 3.2.24
Uname: Linux 3.2.0-29-generic-pae i686
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu12
Architecture: i386
CheckboxSubmission: bff6ca128abafd5e9f4c5484e1181d23
CheckboxSystem: b8f3ec504801f13fc208edb5c785b099
Date: Tue Aug 14 23:53:24 2012
InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
SourcePackage: gedit
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: apport-bug i386 precise

-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gedit in Ubuntu.
https://bugs.launchpad.net/bugs/1036875

Title:
  gedit never fill the recent file list in Open icon in tool bar

Status in “gedit” package in Ubuntu:
  New

Bug description:
  gedit never fill the recent file list in Open icon in tool bar
  Clicking the down arrow at the right of Open icon, the drop down list always 
say:
  "Nessun elemento trovato"
  that is something about:
  "No element found"

  The Recent list in open dialog is correct.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: gedit 3.4.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-29.46-generic-pae 3.2.24
  Uname: Linux 3.2.0-29-generic-pae i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu12
  Architecture: i386
  CheckboxSubmission: bff6ca128abafd5e9f4c5484e1181d23
  CheckboxSystem: b8f3ec504801f13fc208edb5c785b099
  Date: Tue Aug 14 23:53:24 2012
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: gedit
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp


[Desktop-packages] [Bug 1036875] Re: gedit never fill the recent file list in Open icon in tool bar

2012-08-14 Thread efa
-- 
You received this bug notification because you are a member of Desktop
Packages, which is subscribed to gedit in Ubuntu.
https://bugs.launchpad.net/bugs/1036875

Title:
  gedit never fill the recent file list in Open icon in tool bar

Status in “gedit” package in Ubuntu:
  New

Bug description:
  gedit never fill the recent file list in Open icon in tool bar
  Clicking the down arrow at the right of Open icon, the drop down list always 
say:
  "Nessun elemento trovato"
  that is something about:
  "No element found"

  The Recent list in open dialog is correct.

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: gedit 3.4.1-0ubuntu1
  ProcVersionSignature: Ubuntu 3.2.0-29.46-generic-pae 3.2.24
  Uname: Linux 3.2.0-29-generic-pae i686
  NonfreeKernelModules: nvidia
  ApportVersion: 2.0.1-0ubuntu12
  Architecture: i386
  CheckboxSubmission: bff6ca128abafd5e9f4c5484e1181d23
  CheckboxSystem: b8f3ec504801f13fc208edb5c785b099
  Date: Tue Aug 14 23:53:24 2012
  InstallationMedia: Ubuntu 11.10 "Oneiric Ocelot" - Release i386 (20111012)
  SourcePackage: gedit
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~desktop-packages
Post to : desktop-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~desktop-packages
More help   : https://help.launchpad.net/ListHelp