[Bug 1914636] Re: package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2021-02-18 Thread Yuan Song
Looks like there is some environment handling issue during the
migration.  I found a way to clean up the issue.


1. dpkg -l |grep mysql
2. purge all mysql packages.
3. rm -rf /etc/mysql  rm -rf /var/lib/mysql*
4. apt-get install mysql-server.  this will work.

Looks like it is the /var/lib/mysql-files directory that caused the
hang.  It only contained some temporary files that had the following
sql.

USE mysql;
INSTALL PLUGIN auth_socket SONAME 'auth_socket.so';
ALTER USER 'root'@'localhost' IDENTIFIED WITH 'auth_socket';
SHUTDOWN;

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

Title:
  package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

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

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

[Bug 1914636] Re: package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2021-02-18 Thread Yuan Song
Here are the steps to recreate the issue.

1.  Use the following tutorial to install mysql 5.7 on ubuntu 20.04. Insert 
some data into the database.
   https://techexpert.tips/mysql/installing-mysql-5-7-ubuntu-20-04/

2.  Uninstall mysql-client,  mysql-community-server, and mysql-server. 
apt-get remove  mysql-community-server mysql-community-client mysql-server 
mysql-common mysql-client
3.  remove /etc/apt/preferences.d/mysql
4.  install the default verson of mysql-server.
apt-get install mysql-server

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

Title:
  package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

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

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

[Bug 1914636] Re: package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2021-02-18 Thread Yuan Song
I stopped mysql server with "systemctl stop mysql" and tried to start it
with " systemctl start mysql".  Same thing happened.  systemctl hanged
even though mysql server came up.  I can connect to mysql server with no
issue.

** Changed in: mysql-8.0 (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

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

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

[Bug 1914636] Re: package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2021-02-17 Thread Yuan Song
Looks like it is an issue of /etc/init.d/mysql.   I did not see any
error except /etc/init.d/mysql hanged.  mysql server runs ok.  I
compared mysql 5.7 version of /etc/init.d/mysql and the mysql 8 version
of /etc/init.d/mysql.  Those two files are identical.  Should that
script be updated?

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

Title:
  package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

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

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

[Bug 1914636] Re: package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2021-02-17 Thread Yuan Song
/etc/init.d/mysql start does not return even though msyql server runs
fine.  I can run mysql to connect to the db server.

021-02-17T20:58:31.388560Z 0 [System] [MY-010116] [Server] /usr/sbin/mysqld 
(mysqld 8.0.23-0ubuntu0.20.04.1) starting as process 362367
2021-02-17T20:58:31.415192Z 1 [System] [MY-013576] [InnoDB] InnoDB 
initialization has started.
2021-02-17T20:58:32.025870Z 1 [System] [MY-013577] [InnoDB] InnoDB 
initialization has ended.
2021-02-17T20:58:32.101689Z 0 [ERROR] [MY-011300] [Server] Plugin mysqlx 
reported: 'Setup of socket: '/var/run/mysqld/mysqlx.sock' failed, can't create 
lock file /var/run/mysqld/mysqlx.sock.lock'
2021-02-17T20:58:32.102024Z 0 [System] [MY-011323] [Server] X Plugin ready for 
connections. Bind-address: '::' port: 33060
2021-02-17T20:58:32.226743Z 0 [Warning] [MY-010068] [Server] CA certificate 
ca.pem is self signed.
2021-02-17T20:58:32.226960Z 0 [System] [MY-013602] [Server] Channel mysql_main 
configured to support TLS. Encrypted connections are now supported for this 
channel.
2021-02-17T20:58:32.242717Z 0 [System] [MY-010931] [Server] /usr/sbin/mysqld: 
ready for connections. Version: '8.0.23-0ubuntu0.20.04.1'  socket: 
'/var/run/mysqld/mysqld.sock'  port: 3306  (Ubuntu).

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

Title:
  package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

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

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

[Bug 1914636] Re: package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2021-02-17 Thread Yuan Song
** Changed in: mysql-8.0 (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  package mysql-server-8.0 8.0.23-0ubuntu0.20.04.1 failed to
  install/upgrade: installed mysql-server-8.0 package post-installation
  script subprocess returned error exit status 1

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

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

Re: [Bug 1452525] Re: chromium displays random patterns

2018-07-30 Thread Yuan Song via ubuntu-bugs
You can close this report. I have not seen this issue for a long time.

Sent from Yahoo Mail on Android 
 
  On Thu, Jul 19, 2018 at 3:10 PM, Paul White<1452...@bugs.launchpad.net> 
wrote:   Thank you for taking the time to report this bug and helping to make
Ubuntu better. We are sorry that we do not always have the capacity to
look at all reported bugs in a timely manner. You reported this bug some
time ago and there have been many changes in Ubuntu since that time.
Your problem may have been fixed with some of the updates.

It would help us a lot if you could test on a currently supported Ubuntu
version. When you test it and it is still an issue, kindly upload the
updated logs by running only once in a terminal:

apport-collect 1452525

and add any additional information that you think relevant.
Alternatively, please confirm that this is no longer a problem and that
we can close the report. If we do not hear from you the bug report will
close itself in approximately two months time.

Thank you again for helping make Ubuntu better.

Paul White
[Ubuntu Bug Squad]

** Changed in: chromium-browser (Ubuntu)
      Status: New => Incomplete

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

Title:
  chromium displays random patterns

Status in chromium-browser package in Ubuntu:
  Incomplete

Bug description:
  Since recent ubuntu updates,  chromium started showing random
  patterns instead of readable web pages.  See the attached image.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: chromium-browser 41.0.2272.76-0ubuntu0.14.04.1.1076
  ProcVersionSignature: Ubuntu 3.13.0-52.85-generic 3.13.11-ckt18
  Uname: Linux 3.13.0-52-generic x86_64
  NonfreeKernelModules: fglrx
  ApportVersion: 2.14.1-0ubuntu3.10
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed May  6 20:51:29 2015
  Desktop-Session:
  'ubuntu'
  '/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg'
  '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/'
  DetectedPlugins:
  
  Env:
  'None'
  '/usr/lib32'
  InstallationDate: Installed on 2013-04-02 (765 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  Load-Avg-1min: 0.72
  Load-Processes-Running-Percent:  0.1%
  MachineType: Gigabyte Technology Co., Ltd. GA-890FXA-UD5
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-52-generic 
root=UUID=f630d0df-facb-47b4-b39a-be87a1252e93 ro quiet splash 
crashkernel=384M-:128M crashkernel=384M-:128M crashkernel=384M-:128M 
vt.handoff=7
  SourcePackage: chromium-browser
  UpgradeStatus: Upgraded to trusty on 2014-04-19 (382 days ago)
  dmi.bios.date: 11/24/2010
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F6
  dmi.board.name: GA-890FXA-UD5
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF6:bd11/24/2010:svnGigabyteTechnologyCo.,Ltd.:pnGA-890FXA-UD5:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-890FXA-UD5:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: GA-890FXA-UD5
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.
  gconf-keys: /desktop/gnome/applications/browser/exec = 
b'/usr/bin/chromium-browser\n'/desktop/gnome/url-handlers/https/command = 
b'/usr/bin/chromium-browser %s\n'/desktop/gnome/url-handlers/https/enabled = 
b'true\n'/desktop/gnome/url-handlers/http/command = b'/usr/bin/chromium-browser 
%s\n'/desktop/gnome/url-handlers/http/enabled = 
b'true\n'/desktop/gnome/session/required_components/windowmanager = 
b''/apps/metacity/general/compositing_manager = 
b''/desktop/gnome/interface/icon_theme = 
b'gnome\n'/desktop/gnome/interface/gtk_theme = b'Clearlooks\n'
  modified.conffile..etc.default.chromium.browser: [deleted]

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

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

Title:
  chromium displays random patterns

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

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

[Bug 1639403] Re: xwindows freezes

2016-11-05 Thread Yuan Song
** Changed in: xorg (Ubuntu)
   Status: New => Invalid

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

Title:
  xwindows freezes

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

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


[Bug 1639403] [NEW] xwindows freezes

2016-11-04 Thread Yuan Song
Public bug reported:

I have a java program that can freeze xwindows during initialization.
It takes very long time for the program to finish initialization.
During the initialization phase, my desktop does not respond.  Xorg uses
100% cpu.  Everything becomes ok after I kill my java program.  The
version of java I am using is oracle jdk 1.8.0_112 .

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-36.55-generic 4.4.16
Uname: Linux 4.4.16 x86_64
NonfreeKernelModules: nvidia_uvm nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  340.96  Sun Nov  8 22:33:28 
PST 2015
 GCC version:  gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2)
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
BootLog: /dev/sda5: clean, 791821/14131200 files, 31394551/56509440 blocks
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Fri Nov  4 23:30:55 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 bbswitch, 0.8, 4.4.0-34-generic, x86_64: installed
 bbswitch, 0.8, 4.4.0-36-generic, x86_64: installed
 bbswitch, 0.8, 4.4.16, x86_64: installed
 megaraid_sas, 06.810.09.00-rc1, 4.4.16, x86_64: built
 nvidia-340, 340.96, 4.4.16, x86_64: installed
EcryptfsInUse: Yes
ExtraDebuggingInterest: Yes
GraphicsCard:
 NVIDIA Corporation GT218 [GeForce 210] [10de:0a65] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. GT218 [GeForce 210] [1043:848e]
InstallationDate: Installed on 2016-05-11 (178 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.16 
root=UUID=1e3cfb77-cf43-4ab5-8797-b2c6be8c0805 ro quiet splash
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/05/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P2.20
dmi.board.name: H170M Pro4
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.20:bd07/05/2016:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH170MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.
version.compiz: compiz 1:0.9.12.2+16.04.20160823-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.2
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2.2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2.2
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Wed Nov  2 04:30:23 2016
xserver.configfile: default
xserver.errors: open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.18.3-1ubuntu2.3

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


** Tags: amd64 apport-bug 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/1639403

Title:
  xwindows freezes

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

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


[Bug 1627401] Re: duplicity hanged the system during restoring

2016-09-24 Thread Yuan Song
looks like duplicity somehow consumed all memory.

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

Title:
  duplicity hanged the system during restoring

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

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


[Bug 1627401] [NEW] duplicity hanged the system during restoring

2016-09-24 Thread Yuan Song
Public bug reported:

duplicity hanged the whole system when I tried to restore a file from my
root directory backup.  I could not switch to tty by ctrl-alt f1 .
Attached is a log I collected with debug flag turned on.  The kernel log
looks normal.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: duplicity 0.7.06-2ubuntu2
ProcVersionSignature: Ubuntu 4.4.0-36.55-generic 4.4.16
Uname: Linux 4.4.16 x86_64
NonfreeKernelModules: nvidia_uvm nvidia
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Sep 24 19:17:05 2016
EcryptfsInUse: Yes
InstallationDate: Installed on 2016-05-11 (136 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
SourcePackage: duplicity
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-bug xenial

** Attachment added: "log"
   https://bugs.launchpad.net/bugs/1627401/+attachment/4748157/+files/log

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

Title:
  duplicity hanged the system during restoring

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

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


Re: [Bug 1611191] Re: Xorg freeze

2016-09-17 Thread Yuan Song
Thanks for looking into this issue.
I updated bios.  I upgraded the bios.  It became better.   But problem still 
exists. It does not happen frequently. It can recovery by itself after a couple 
of minutes   I doubt it is related to bios.    It became better because I 
changed the java heap size.  It is easy to reproduce when I have chrome running 
at the same time.  gui freezes when the java program starts.  After the program 
starts, the gui response is not fast.  The version of Java I am using is 
jdk1.8.0_102.   If I run the same java program on 64 bits windows 7 on the same 
machine with the same heap size setting, it runs a lot faster.

sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date

P2.2007/05/2016
 

On Wednesday, August 31, 2016 11:20 PM, Christopher M. Penalver 
<christopher.m.penal...@gmail.com> wrote:
 

 Yuan Song, thank you for reporting this and helping make Ubuntu better.

As per http://www.asrock.com/mb/Intel/H170M%20Pro4/?cat=Download=BIOS
an update to your computer's buggy, insecure, and outdated BIOS is
available (2.20). When you update to this following
https://help.ubuntu.com/community/BIOSUpdate how does this improve the
situation?

For more on BIOS updates and linux, please see
https://help.ubuntu.com/community/ReportingBugs#Bug_reporting_etiquette
.

Please note your current BIOS is already in the Bug Description, so
posting this on the old BIOS would not be helpful.

Also, you don't have to create a new report.

Once the BIOS is updated, if the problem is still reproducible:
1) Please provide the output of the following terminal command (not perform an 
apport-collect):
sudo dmidecode -s bios-version && sudo dmidecode -s bios-release-date
2) Please make a comment specifically advising on how this improves the 
situation.
3) Please mark this report Status New.

If it's not reproducible, please mark this as Invalid.

Thank you for your help.

** Tags added: bios-outdated-2.20

** Changed in: xorg (Ubuntu)
  Importance: Undecided => Low

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

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

Title:
  Xorg freeze

Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  X froze after I launched a GUI application with oracle java 8

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: xorg 1:7.7+13ubuntu3
  ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
  Uname: Linux 4.4.0-31-generic x86_64
  NonfreeKernelModules: nvidia_uvm nvidia
  .proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
  NVRM version: NVIDIA UNIX x86_64 Kernel Module  340.96  Sun Nov  8 22:33:28 
PST 2015
  GCC version:  gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.1)
  .tmp.unity_support_test.0:
  
  ApportVersion: 2.20.1-0ubuntu2.1
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Mon Aug  8 22:30:44 2016
  DistUpgraded: Fresh install
  DistroCodename: xenial
  DistroVariant: ubuntu
  EcryptfsInUse: Yes
  ExtraDebuggingInterest: Yes
  GraphicsCard:
  NVIDIA Corporation GT218 [GeForce 210] [10de:0a65] (rev a2) (prog-if 00 [VGA 
controller])
    Subsystem: ASUSTeK Computer Inc. GT218 [GeForce 210] [1043:848e]
  InstallationDate: Installed on 2016-05-11 (90 days ago)
  InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 
(20160420.1)
  Lsusb:
  Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
  Bus 001 Device 019: ID 125f:1036 A-DATA Technology Co., Ltd. 
  Bus 001 Device 017: ID 046d:c52b Logitech, Inc. Unifying Receiver
  Bus 001 Device 028: ID 154b:0041 PNY 
  Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
  MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-31-generic 
root=UUID=1e3cfb77-cf43-4ab5-8797-b2c6be8c0805 ro quiet splash
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 01/20/2016
  dmi.bios.vendor: American Megatrends Inc.
  dmi.bios.version: P1.90
  dmi.board.name: H170M Pro4
  dmi.board.vendor: ASRock
  dmi.chassis.asset.tag: To Be Filled By O.E.M.
  dmi.chassis.type: 3
  dmi.chassis.vendor: To Be Filled By O.E.M.
  dmi.chassis.version: To Be Filled By O.E.M.
  dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.90:bd01/20/2016:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH170MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
  dmi.product.name: To Be Filled By O.E

[Bug 1621733] Re: windows shows random pattern around edges.

2016-09-08 Thread Yuan Song
the problem disappeared after i did logout/login

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

Title:
  windows shows random pattern around edges.

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

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


[Bug 1621733] [NEW] windows shows random pattern around edges.

2016-09-08 Thread Yuan Song
Public bug reported:

See the attached image.  This happens after suspend/resume.  I put about
a minute delay in suspend hook.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-36.55-generic 4.4.16
Uname: Linux 4.4.16 x86_64
NonfreeKernelModules: nvidia_uvm nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  340.96  Sun Nov  8 22:33:28 
PST 2015
 GCC version:  gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.2)
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Thu Sep  8 23:35:39 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus:
 bbswitch, 0.8, 4.4.0-34-generic, x86_64: installed
 bbswitch, 0.8, 4.4.0-36-generic, x86_64: installed
 bbswitch, 0.8, 4.4.16, x86_64: installed
 megaraid_sas, 06.810.09.00-rc1, 4.4.16, x86_64: built
 nvidia-340, 340.96, 4.4.16, x86_64: installed
EcryptfsInUse: Yes
ExtraDebuggingInterest: Yes
GraphicsCard:
 NVIDIA Corporation GT218 [GeForce 210] [10de:0a65] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. GT218 [GeForce 210] [1043:848e]
InstallationDate: Installed on 2016-05-11 (121 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.16 
root=UUID=1e3cfb77-cf43-4ab5-8797-b2c6be8c0805 ro quiet splash
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 07/05/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P2.20
dmi.board.name: H170M Pro4
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP2.20:bd07/05/2016:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH170MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.
version.compiz: compiz 1:0.9.12.2+16.04.20160526-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.2
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2.2
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2.2
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Thu Sep  8 22:38:28 2016
xserver.configfile: default
xserver.errors: open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.18.3-1ubuntu2.3

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


** Tags: amd64 apport-bug compiz-0.9 ubuntu xenial

** Attachment added: "screenshot.jpg"
   
https://bugs.launchpad.net/bugs/1621733/+attachment/4737256/+files/screenshot.jpg

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

Title:
  windows shows random pattern around edges.

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-09-05 Thread Yuan Song
I was wrong.  The timestamp in the printk output is not quite accurate.
Looks like timestamp is added asynchronously.

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

Title:
  ethernet card can not resume

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-09-05 Thread Yuan Song
looks like it is related to scheduler timer.  I got a different issue
with another device. After spending some time debugging the driver, I
found the timeout was not scheduled correctly.  Even though the timeout
value was set to 3 minutes, timeout happened within 100ms

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

Title:
  ethernet card can not resume

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

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


[Bug 1611191] Re: Xorg freeze

2016-09-05 Thread Yuan Song
after the bios is updated, it is not reproducible anymore.

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

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

Title:
  Xorg freeze

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

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


[Bug 1433320] Re: systemd-journald, udev, logind crashed with SIGABRT -- get killed by 1 min watchdog timeout on longer kernel lockups

2016-09-04 Thread Yuan Song
I got this bug pretty frequently on my 16.04 desktop(4.4.0-36-generic
#55)


Program received signal SIGABRT, Aborted.
0x7f8b6afa160a in timerfd_settime () at 
../sysdeps/unix/syscall-template.S:84
#0  0x7f8b6afa160a in timerfd_settime () at 
../sysdeps/unix/syscall-template.S:84
#1  0x55d36e6c416e in ?? ()
#2  0x55d36e69f4ea in ?? ()
#3  0x7f8b6aeba830 in __libc_start_main (main=0x55d36e69e540, argc=1, 
argv=0x7fffecd24e58, init=, fini=, 
rtld_fini=, stack_end=0x7fffecd24e48)
at ../csu/libc-start.c:291
#4  0x55d36e69f8c9 in ?? ()
A debugging session is active.

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

Title:
  systemd-journald, udev, logind crashed with SIGABRT -- get killed by 1
  min watchdog timeout on longer kernel lockups

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-08-21 Thread Yuan Song
After using 16.04 for several months,  I found the same problem can also
happen in 16.04.   It just happens much less frequently.  Do not see any
pattern when it can happen.

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

Title:
  ethernet card can not resume

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

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


[Bug 1611191] Re: Xorg freeze

2016-08-08 Thread Yuan Song
after I kill the application,  X can come alive after some time. I have
google chrome running at the same time.

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

Title:
  Xorg freeze

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

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


[Bug 1611191] [NEW] Xorg freeze

2016-08-08 Thread Yuan Song
Public bug reported:

X froze after I launched a GUI application with oracle java 8

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: xorg 1:7.7+13ubuntu3
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
NonfreeKernelModules: nvidia_uvm nvidia
.proc.driver.nvidia.gpus..01.00.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/:01:00.0'
.proc.driver.nvidia.registry: Binary: ""
.proc.driver.nvidia.version:
 NVRM version: NVIDIA UNIX x86_64 Kernel Module  340.96  Sun Nov  8 22:33:28 
PST 2015
 GCC version:  gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.1)
.tmp.unity_support_test.0:
 
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Mon Aug  8 22:30:44 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
EcryptfsInUse: Yes
ExtraDebuggingInterest: Yes
GraphicsCard:
 NVIDIA Corporation GT218 [GeForce 210] [10de:0a65] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. GT218 [GeForce 210] [1043:848e]
InstallationDate: Installed on 2016-05-11 (90 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Release amd64 (20160420.1)
Lsusb:
 Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
 Bus 001 Device 019: ID 125f:1036 A-DATA Technology Co., Ltd. 
 Bus 001 Device 017: ID 046d:c52b Logitech, Inc. Unifying Receiver
 Bus 001 Device 028: ID 154b:0041 PNY 
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-31-generic 
root=UUID=1e3cfb77-cf43-4ab5-8797-b2c6be8c0805 ro quiet splash
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/20/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P1.90
dmi.board.name: H170M Pro4
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.90:bd01/20/2016:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH170MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.
version.compiz: compiz 1:0.9.12.2+16.04.20160526-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1ubuntu0.16.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.2.0-1ubuntu2.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.2.0-1ubuntu2.1
version.nvidia-graphics-drivers: nvidia-graphics-drivers-* N/A
version.xserver-xorg-core: xserver-xorg-core 2:1.18.3-1ubuntu2.3
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.10.1-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.7.0-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160325-1ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1build2
xserver.bootTime: Sun Aug  7 10:48:30 2016
xserver.configfile: default
xserver.errors: open /dev/fb0: No such file or directory
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 
xserver.version: 2:1.18.3-1ubuntu2.3

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


** Tags: amd64 apport-bug compiz-0.9 false-gpu-hang freeze 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/1611191

Title:
  Xorg freeze

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

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


[Bug 1611191] Re: Xorg freeze

2016-08-08 Thread Yuan Song
I can type.   The mouse can still move.  But I can not move any window
or activate any window.  I have to use tab to switch between windows.

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

Title:
  Xorg freeze

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

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


[Bug 1562219] Re: xinit will not work as non-root.

2016-07-22 Thread Yuan Song
I found a simple solution for this issue.   Start x server as root and
then start windows manager as regular user.

1.  sudo Xorg &
2.  export DISPLAY=:0.0
3.  bash .xinitrc

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

Title:
  xinit will not work as non-root.

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-02-27 Thread Yuan Song
the problem does not happen in 16.04

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

Title:
  ethernet card can not resume

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

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


[Bug 1550793] [NEW] unity freezes after resume

2016-02-27 Thread Yuan Song
Public bug reported:

I am using 16.04 on a asrock h170M Pro4 motherboard with nvidia GeForce
210 video card.   After resume,   unity does not respond to keyboard.
I can not type in password at the prompt.   Mouse works.  I can also
switch to command line by typing ctrl-alt-f1.  If I switch to nvidia
proprietary driver 340.96, the problem disappears.

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: unity 7.4.0+16.04.20160223.1-0ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-8.23-generic 4.4.2
Uname: Linux 4.4.0-8-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.20-0ubuntu3
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
CurrentDesktop: Unity
Date: Sat Feb 27 15:00:53 2016
DistUpgraded: Fresh install
DistroCodename: xenial
DistroVariant: ubuntu
DkmsStatus: bbswitch, 0.8, 4.4.0-8-generic, x86_64: installed
GraphicsCard:
 NVIDIA Corporation GT218 [GeForce 210] [10de:0a65] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. GT218 [GeForce 210] [1043:852d]
InstallationDate: Installed on 2016-02-27 (0 days ago)
InstallationMedia: Ubuntu 16.04 LTS "Xenial Xerus" - Alpha amd64 (20160227)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-4.4.0-8-generic 
root=UUID=8d721ea9-89a4-4b63-851a-dc76fe6b5170 ro quiet splash vt.handoff=7
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 01/20/2016
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P1.90
dmi.board.name: H170M Pro4
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.90:bd01/20/2016:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH170MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.
version.compiz: compiz 1:0.9.12.2+16.04.20160209-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.67-1
version.libgl1-mesa-dri: libgl1-mesa-dri 11.1.2-1ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 11.1.2-1ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.17.3-2ubuntu4
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.9.2-1ubuntu1
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.6.1-1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 
2:2.99.917+git20160218-1ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.12-1
xserver.bootTime: Sat Feb 27 14:59:24 2016
xserver.configfile: default
xserver.errors:
 systemd-logind: failed to get session: PID 1454 does not belong to any known 
session
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.17.3-2ubuntu4
xserver.video_driver: nouveau

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


** Tags: amd64 apport-bug compiz-0.9 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/1550793

Title:
  unity freezes after resume

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

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


[Bug 1550793] Re: unity freezes after resume

2016-02-27 Thread Yuan Song
the problem disappears after I switch from nvidia 340.96 back to xorg
driver.

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

Title:
  unity freezes after resume

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

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


[Bug 1547897] [NEW] kernel 4.2.0-27 does not boot on h170 board

2016-02-20 Thread Yuan Song
Public bug reported:

I upgraded the kernel from 3.13.0-77 to 4.2.0-27.  But kernel 4.2.0-27
does not boot on h170 board.  The mother board I am using is ASRock H170
Pro4 .   The boot process just stops after a few seconds.   The
installation dvd does not boot either.  I can not get to the
installation gui.  The kernel just prints acpi errors continuously.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-4.2.0-27-generic 4.2.0-27.32~14.04.1
ProcVersionSignature: Ubuntu 3.13.0-77.121-generic 3.13.11-ckt32
Uname: Linux 3.13.0-77-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CurrentDesktop: Unity
Date: Sat Feb 20 09:32:28 2016
InstallationDate: Installed on 2013-04-02 (1054 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
SourcePackage: linux-lts-wily
UpgradeStatus: Upgraded to trusty on 2016-02-19 (1 days ago)

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


** Tags: amd64 apport-bug trusty

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

Title:
  kernel 4.2.0-27 does not boot on h170 board

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-01-30 Thread Yuan Song
4.5-rc1 makes no difference.  But, as I said,   15.10 works fine.   May
not be pure kernel issue.

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  ethernet card can not resume

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

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


[Bug 1536862] [NEW] init script hangs during boot

2016-01-21 Thread Yuan Song
Public bug reported:

I am using ubuntu 14.04.   I upgraded kernel from 3.13.0-76 to
3.19.0-47.  But I can not boot the machine after the upgrade.  I can
still boot into 3.13.0-76.   The init script somehow just hangs.  The
machine is still alive.  I can still see output from screen if I press
power button.I thought it was because of graphics card driver.   I
booted into rescue mode and updated the nvidia driver.  But still failed
to boot.   I can make it work if I  boot into rescue mode, do a fsck,
and resume normal boot.  The machine can come up normally.  But normal
boot does not work.The graphics card I have is NVIDIA Corporation
GT218 [GeForce 210].   Attached is the dmesg log.   There are two stack
dumps in the log.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: sysv-rc 2.88dsf-41ubuntu6.2
ProcVersionSignature: Ubuntu 3.13.0-76.120-generic 3.13.11-ckt30
Uname: Linux 3.13.0-76-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CurrentDesktop: Unity
Date: Thu Jan 21 19:21:15 2016
InstallationDate: Installed on 2013-04-02 (1025 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
PackageArchitecture: all
SourcePackage: sysvinit
UpgradeStatus: Upgraded to trusty on 2014-04-19 (642 days ago)

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


** Tags: amd64 apport-bug trusty

** Attachment added: "dmesg.2"
   https://bugs.launchpad.net/bugs/1536862/+attachment/4554419/+files/dmesg.2

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

Title:
  init script hangs during boot

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-01-21 Thread Yuan Song
kernel-bug-exists-upstream

** Changed in: linux (Ubuntu)
   Status: Incomplete => Confirmed

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

Title:
  ethernet card can not resume

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-01-21 Thread Yuan Song
kernel-bug-exists-upstream

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

Title:
  ethernet card can not resume

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

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


[Bug 1535521] [NEW] kernel stack trace

2016-01-18 Thread Yuan Song
Public bug reported:

When I booted into 3.19.0.43 from Ubuntu 14.04.3 .   The kernel stopped
during boot.  I checked dmesg. There was a stack trace.  The motherboard
I used is a ASRock H170M Pro4  Bios p1.8.  The following is the stack
trace.

 [8.484935] [drm] Replacing VGA console driver
[8.489503] Console: switching to colour dummy device 80x25
[8.492850] usbcore: registered new interface driver btusb
[8.503446] audit: type=1400 audit(1453175142.377:2): apparmor="STATUS" 
operation="profile_load" profile="unconfined" 
name="/usr/lib/cups/backend/cups-pdf" pid=600 comm="apparmor_parser"
[8.503654] audit: type=1400 audit(1453175142.377:3): apparmor="STATUS" 
operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=600 
comm="apparmor_parser"
[8.504798] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[8.504800] [drm] Driver supports precise vblank timestamp query.
[8.506398] BUG: unable to handle kernel NULL pointer dereference at 
0060
[8.506403] IP: [] ddi_get_encoder_port+0x5/0x70 [i915_bpo]
[8.506428] PGD 274ff3067 PUD 274494067 PMD 0
[8.506430] Oops:  [#1] SMP
[8.506432] Modules linked in: snd_seq(+) snd_seq_device snd_timer snd btusb 
soundcore i915_bpo(+) intel_ips drm_kms_helper drm i2c_algo_bit shpchp 
8250_fintek wmi video i2c_hid mac_hid acpi_pad parport_pc ppdev coretemp 
hwmon_vid rfcomm lp parport bnep bluetooth nfsd auth_rpcgss nfs_acl nfs 
binfmt_misc lockd grace sunrpc fscache hid_generic hid_logitech_dj usbhid hid 
raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor 
megaraid_sas psmouse e1000e ptp ahci pps_core libahci raid6_pq raid1 raid0 
multipath linear dm_mirror dm_region_hash dm_log
[8.506457] CPU: 0 PID: 634 Comm: systemd-udevd Not tainted 
3.19.0-43-generic #49~14.04.1-Ubuntu
[8.506459] Hardware name: To Be Filled By O.E.M. To Be Filled By 
O.E.M./H170M Pro4, BIOS P1.80 11/10/2015
[8.506461] task: 880275f6f5c0 ti: 8802751c8000 task.ti: 
8802751c8000
[8.506463] RIP: 0010:[]  [] 
ddi_get_encoder_port+0x5/0x70 [i915_bpo]
[8.506482] RSP: 0018:8802751cb750  EFLAGS: 00010286
[8.506483] RAX:  RBX: 88007180 RCX: 8802755c1800
[8.506484] RDX: 8802751cb7a4 RSI: 8802751cb7b0 RDI: fff8
[8.506485] RBP: 8802751cb7e8 R08: 8802751c8000 R09: 0246
[8.506487] R10: 0004 R11: 0005 R12: 8802755c1800
[8.506488] R13: c0760770 R14: fffee35b R15: 0001
[8.506489] FS:  7f4aa208d880() GS:880280c0() 
knlGS:
[8.506491] CS:  0010 DS:  ES:  CR0: 80050033
[8.506492] CR2: 0060 CR3: 000274ff2000 CR4: 003407f0
[8.506493] DR0:  DR1:  DR2: 
[8.506494] DR3:  DR6: fffe0ff0 DR7: 0400
[8.506495] Stack:
[8.506496]  c0706fe1 880280d8e4c0  
027a
[8.506499]  817b677c 0246 8802755c1b60 
8802755c1800
[8.506501]  fff8  88007180 

[8.506503] Call Trace:
[8.506522]  [] ? intel_prepare_ddi+0x71/0x390 [i915_bpo]
[8.506527]  [] ? schedule_hrtimeout_range_clock+0xac/0x160
[8.506541]  [] skl_set_power_well+0x421/0xae0 [i915_bpo]
[8.506555]  [] skl_power_well_enable+0x13/0x20 [i915_bpo]
[8.506568]  [] intel_display_power_get+0xa6/0x100 
[i915_bpo]
[8.506578]  [] intel_display_set_init_power+0x45/0x50 
[i915_bpo]
[8.506587]  [] intel_power_domains_init_hw+0x204/0x340 
[i915_bpo]
[8.506606]  [] i915_driver_load+0x7d4/0xeb0 [i915_bpo]
[8.506608]  [] ? cleanup_uevent_env+0x10/0x10
[8.506610]  [] ? kobject_uevent_env+0x178/0x690
[8.506614]  [] ? devtmpfs_create_node+0x100/0x130
[8.506616]  [] ? get_device+0x17/0x30
[8.506618]  [] ? klist_class_dev_get+0x15/0x20
[8.506620]  [] ? klist_node_init+0x38/0x50
[8.506622]  [] ? klist_add_tail+0x46/0x50
[8.506624]  [] ? device_add+0x289/0x650
[8.506632]  [] drm_dev_register+0xb5/0x110 [drm]
[8.506638]  [] drm_get_pci_dev+0x8f/0x200 [drm]
[8.506649]  [] i915_pci_probe+0x3b/0x60 [i915_bpo]
[8.506653]  [] local_pci_probe+0x45/0xa0
[8.506655]  [] ? pci_match_device+0xe5/0x110
[8.506657]  [] pci_device_probe+0xd9/0x130
[8.506660]  [] driver_probe_device+0x155/0x400
[8.506662]  [] __driver_attach+0x9b/0xa0
[8.506664]  [] ? __device_attach+0x40/0x40
[8.50]  [] bus_for_each_dev+0x63/0xa0
[8.506669]  [] driver_attach+0x1e/0x20
[8.506671]  [] bus_add_driver+0x180/0x240
[8.506673]  [] driver_register+0x64/0xf0
[8.506675]  [] __pci_register_driver+0x4c/0x50
[8.506682]  [] drm_pci_init+0xfa/0x130 [drm]
[8.506684]  [] ? 0xc078c000
[8.506695]  [] i915_init+0xa0/0xa8 

[Bug 1534985] Re: ethernet card can not resume

2016-01-17 Thread Yuan Song
I also tried kernel 4.2 and 3.19 in ubuntu 14.04.  The same problem
happened.   It is pretty strange.   It works in Ubuntu 15.10

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

Title:
  ethernet card can not resume

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

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


[Bug 1534985] Re: ethernet card can not resume

2016-01-16 Thread Yuan Song
** Attachment added: "pciinfo"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1534985/+attachment/4551193/+files/pciinfo

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

Title:
  ethernet card can not resume

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

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


[Bug 1534985] [NEW] ethernet card can not resume

2016-01-16 Thread Yuan Song
Public bug reported:

I have two network cards on my desktop.  Both failed to resume from S3.
Both cards are intel cards.  The driver I am using is e1000e-3.2.4.2  .
I did some driver debug and found the watchdog event in the driver was
not triggered.  The watchdog event is used to check if the card is
ready.  I also tried Ubuntu 15.10 on the same machine.   The cards can
wake up from S3 under linux kernel 4.2 .  Here is the configuration I
have on my machine

Motherboard  ASRock H170 Pro4  Bios p1.8
CPU:  Intel(R) Core(TM) i5-6500 CPU @ 3.20GHz
Memory : G.Skill Ripjaws V Series 8G DDR4
Ethernet cards:  Intel PRO/1000 PT  and Intel® Ethernet Connection I219-V 
(built-in)
Ubuntu 14.04
Kernel :  3.13.0-74-generic
driver:  e1000e-3.2.4.2

00:1f.6 Ethernet controller: Intel Corporation Device 15b8 (rev 31)
Subsystem: ASRock Incorporation Device 15b8
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: e1000e


03:00.0 Ethernet controller: Intel Corporation 82572EI Gigabit Ethernet 
Controller (Copper) (rev 06)
Subsystem: Intel Corporation PRO/1000 PT Server Adapter
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx+
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- SERR- 
Kernel driver in use: e1000e

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: linux-image-3.13.0-74-generic 3.13.0-74.118 [modified: 
lib/modules/3.13.0-74-generic/kernel/drivers/net/ethernet/intel/e1000e/e1000e.ko]
ProcVersionSignature: Ubuntu 3.13.0-74.118-generic 3.13.11-ckt30
Uname: Linux 3.13.0-74-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC2:  yuan   3396 F pulseaudio
 /dev/snd/controlC1:  yuan   3396 F pulseaudio
 /dev/snd/controlC0:  yuan   3396 F pulseaudio
CurrentDesktop: Unity
Date: Sat Jan 16 13:51:21 2016
HibernationDevice: RESUME=UUID=f8281216-c26a-4a26-9279-ed9fa58388c8
InstallationDate: Installed on 2013-04-02 (1019 days ago)
InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
MachineType: To Be Filled By O.E.M. To Be Filled By O.E.M.
ProcFB:
 
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-74-generic 
root=UUID=f630d0df-facb-47b4-b39a-be87a1252e93 ro crashkernel=384M-:128M 
crashkernel=384M-:128M crashkernel=384M-:128M crashkernel=384M-:128M 
crashkernel=384M-:128M crashkernel=384M-:128M crashkernel=384M-:128M 
crashkernel=384M-:128M crashkernel=384M-:128M nomdmonddf nomdmonisw 
crashkernel=384M-:128M
RelatedPackageVersions:
 linux-restricted-modules-3.13.0-74-generic N/A
 linux-backports-modules-3.13.0-74-generic  N/A
 linux-firmware 1.127.19
RfKill:
 0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
SourcePackage: linux
UpgradeStatus: Upgraded to trusty on 2014-04-19 (637 days ago)
dmi.bios.date: 11/10/2015
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: P1.80
dmi.board.name: H170M Pro4
dmi.board.vendor: ASRock
dmi.chassis.asset.tag: To Be Filled By O.E.M.
dmi.chassis.type: 3
dmi.chassis.vendor: To Be Filled By O.E.M.
dmi.chassis.version: To Be Filled By O.E.M.
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvrP1.80:bd11/10/2015:svnToBeFilledByO.E.M.:pnToBeFilledByO.E.M.:pvrToBeFilledByO.E.M.:rvnASRock:rnH170MPro4:rvr:cvnToBeFilledByO.E.M.:ct3:cvrToBeFilledByO.E.M.:
dmi.product.name: To Be Filled By O.E.M.
dmi.product.version: To Be Filled By O.E.M.
dmi.sys.vendor: To Be Filled By O.E.M.

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


** Tags: amd64 apport-bug trusty

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

Title:
  ethernet card can not resume

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

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

[Bug 1509585] [NEW] system hang

2015-10-23 Thread Yuan Song
Public bug reported:

I used google chrome to play the following video
https://youtu.be/pkAxZ8IhGEcembedded on web site
http://www.wenxuecity.com/news/2015/10/23/4655677.html

The system just hanged.  I had to reboot.  It happened very time I
played the video in chrome.  I can play that video in firefox with no
problem.

I found combiz and chrome crash dumps at /var/crashI can not use
apport to decode chrome dump.  I attached chrome crash dump in case
somebody can decode.  The following is the stack trace for combiz crash

#0  0x7f8b922f1c13 in g_logv () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#1  0x7f8b922f1d72 in g_log () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#2  0x7f8b7653a70c in ?? () from /usr/lib/x86_64-linux-gnu/libbamf3.so.2
No symbol table info available.
#3  0x7f8b91122e3b in g_type_create_instance () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#4  0x7f8b91107355 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#5  0x7f8b9110910d in g_object_newv () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#6  0x7f8b911098bc in g_object_new () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#7  0x7f8b7653a922 in bamf_matcher_get_default () from 
/usr/lib/x86_64-linux-gnu/libbamf3.so.2
No symbol table info available.
#8  0x7f8b7920f2c9 in unity::bamf::Manager::Manager() () from 
/usr/lib/compiz/libunityshell.so
No symbol table info available.
#9  0x7f8b7920ab6e in unity::create_application_manager() () from 
/usr/lib/compiz/libunityshell.so
No symbol table info available.
#10 0x7f8b7916fb64 in unity::ApplicationManager::Default() () from 
/usr/lib/compiz/libunityshell.so
No symbol table info available.
#11 0x7f8b7909e203 in 
unity::launcher::Controller::Impl::CreateFavoriteIcon(std::string const&, bool) 
() from /usr/lib/compiz/libunityshell.so
No symbol table info available.
#12 0x7f8b7909fe52 in unity::launcher::Controller::Impl::SetupIcons() () 
from /usr/lib/compiz/libunityshell.so
No symbol table info available.
#13 0x7f8b790a0a49 in 
unity::launcher::Controller::Impl::Impl(unity::launcher::Controller*, 
std::shared_ptr const&, 
std::shared_ptr const&) () from 
/usr/lib/compiz/libunityshell.so
No symbol table info available.
#14 0x7f8b790a1a90 in 
unity::launcher::Controller::Controller(std::shared_ptr 
const&, std::shared_ptr const&) () from 
/usr/lib/compiz/libunityshell.so
No symbol table info available.
#15 0x7f8b78fd472d in unity::UnityScreen::initLauncher() () from 
/usr/lib/compiz/libunityshell.so
No symbol table info available.
#16 0x7f8b78fd640d in unity::UnityScreen::initUnity(nux::NThread*, void*) 
() from /usr/lib/compiz/libunityshell.so
No symbol table info available.
#17 0x7f8b7787b234 in nux::WindowThread::Run(void*) () from 
/usr/lib/x86_64-linux-gnu/libnux-4.0.so.0
No symbol table info available.
#18 0x7f8b78fd79e3 in unity::UnityScreen::UnityScreen(CompScreen*) () from 
/usr/lib/compiz/libunityshell.so
No symbol table info available.
#19 0x7f8b78fb7aa0 in PluginClassHandler::get(CompScreen*) () from /usr/lib/compiz/libunityshell.so
No symbol table info available.
#20 0x7f8b78fe516c in 
CompPlugin::VTableForScreenAndWindow::initScreen(CompScreen*) () from /usr/lib/compiz/libunityshell.so
No symbol table info available.
#21 0x7f8b942fd862 in CompManager::initPlugin(CompPlugin*) () from 
/usr/lib/libcompiz_core.so.ABI-20140123
No symbol table info available.
#22 0x7f8b942fe390 in CompPlugin::push(CompPlugin*) () from 
/usr/lib/libcompiz_core.so.ABI-20140123
No symbol table info available.
#23 0x7f8b942d1648 in 
compiz::private_screen::PluginManager::updatePlugins(CompScreen*, 
std::vector const&) () 
from /usr/lib/libcompiz_core.so.ABI-20140123
No symbol table info available.
#24 0x7f8b942d19f2 in PrivateScreen::processEvents() () from 
/usr/lib/libcompiz_core.so.ABI-20140123
No symbol table info available.
#25 0x7f8b94305437 in CompEventSource::callback() () from 
/usr/lib/libcompiz_core.so.ABI-20140123
#0  0x7f8b922f1c13 in g_logv () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#1  0x7f8b922f1d72 in g_log () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#2  0x7f8b7653a70c in ?? () from /usr/lib/x86_64-linux-gnu/libbamf3.so.2
No symbol table info available.
#3  0x7f8b91122e3b in g_type_create_instance () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#4  0x7f8b91107355 in ?? () from 
/usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0
No symbol table info available.
#5  0x7f8b9110910d in g_object_newv () from 

[Bug 1452525] [NEW] chromium displays random patterns

2015-05-06 Thread Yuan Song
Public bug reported:

Since recent ubuntu updates,   chromium started showing random patterns
instead of readable web pages.  See the attached image.

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: chromium-browser 41.0.2272.76-0ubuntu0.14.04.1.1076
ProcVersionSignature: Ubuntu 3.13.0-52.85-generic 3.13.11-ckt18
Uname: Linux 3.13.0-52-generic x86_64
NonfreeKernelModules: fglrx
ApportVersion: 2.14.1-0ubuntu3.10
Architecture: amd64
CurrentDesktop: Unity
Date: Wed May  6 20:51:29 2015
Desktop-Session:
 'ubuntu'
 '/etc/xdg/xdg-ubuntu:/usr/share/upstart/xdg:/etc/xdg'
 '/usr/share/ubuntu:/usr/share/gnome:/usr/local/share/:/usr/share/'
DetectedPlugins:
 
Env:
 'None'
 '/usr/lib32'
InstallationDate: Installed on 2013-04-02 (765 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
Load-Avg-1min: 0.72
Load-Processes-Running-Percent:   0.1%
MachineType: Gigabyte Technology Co., Ltd. GA-890FXA-UD5
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-52-generic 
root=UUID=f630d0df-facb-47b4-b39a-be87a1252e93 ro quiet splash 
crashkernel=384M-:128M crashkernel=384M-:128M crashkernel=384M-:128M 
vt.handoff=7
SourcePackage: chromium-browser
UpgradeStatus: Upgraded to trusty on 2014-04-19 (382 days ago)
dmi.bios.date: 11/24/2010
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: F6
dmi.board.name: GA-890FXA-UD5
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF6:bd11/24/2010:svnGigabyteTechnologyCo.,Ltd.:pnGA-890FXA-UD5:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-890FXA-UD5:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: GA-890FXA-UD5
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
gconf-keys: /desktop/gnome/applications/browser/exec = 
b'/usr/bin/chromium-browser\n'/desktop/gnome/url-handlers/https/command = 
b'/usr/bin/chromium-browser %s\n'/desktop/gnome/url-handlers/https/enabled = 
b'true\n'/desktop/gnome/url-handlers/http/command = b'/usr/bin/chromium-browser 
%s\n'/desktop/gnome/url-handlers/http/enabled = 
b'true\n'/desktop/gnome/session/required_components/windowmanager = 
b''/apps/metacity/general/compositing_manager = 
b''/desktop/gnome/interface/icon_theme = 
b'gnome\n'/desktop/gnome/interface/gtk_theme = b'Clearlooks\n'
modified.conffile..etc.default.chromium.browser: [deleted]

** Affects: chromium-browser (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

** Attachment added: chrome.jpg
   https://bugs.launchpad.net/bugs/1452525/+attachment/4392611/+files/chrome.jpg

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

Title:
  chromium displays random patterns

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

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


[Bug 1452528] [NEW] firefox is unresponsive

2015-05-06 Thread Yuan Song
Public bug reported:

firefox became very unresponsive after recent ubuntu updates.  I almost got A 
script on this page may be busy, or it may have stopped responding. You can 
stop the script now, open the script in the debugger, or let the script 
continue.
 message for every web site I visited.   Here is example line 
http://www.cnn.com/2015/04/24/world/hubble-successor-webb/index.html

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: firefox 37.0.2+build1-0ubuntu0.14.04.1
ProcVersionSignature: Ubuntu 3.13.0-52.85-generic 3.13.11-ckt18
Uname: Linux 3.13.0-52-generic x86_64
NonfreeKernelModules: fglrx
AddonCompatCheckDisabled: False
ApportVersion: 2.14.1-0ubuntu3.10
Architecture: amd64
AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC1', '/dev/snd/hwC1D0', '/dev/snd/pcmC1D3p', 
'/dev/snd/controlC0', '/dev/snd/hwC0D0', '/dev/snd/pcmC0D0c', 
'/dev/snd/pcmC0D0p', '/dev/snd/pcmC0D1c', '/dev/snd/pcmC0D1p', 
'/dev/snd/pcmC0D2c', '/dev/snd/seq', '/dev/snd/timer'] failed with exit code 1:
BuildID: 20150417180217
Channel: Unavailable
CurrentDesktop: Unity
Date: Wed May  6 21:12:06 2015
Extensions: extensions.sqlite corrupt or missing
ForcedLayersAccel: False
IfupdownConfig:
 # interfaces(5) file used by ifup(8) and ifdown(8)
 auto lo
 iface lo inet loopback
IncompatibleExtensions: Unavailable (corrupt or non-existant compatibility.ini 
or extensions.sqlite)
InstallationDate: Installed on 2013-04-02 (765 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
IpRoute:
 default via 192.168.1.1 dev eth1  proto static 
 172.16.238.0/24 dev vmnet8  proto kernel  scope link  src 172.16.238.1 
 192.168.1.0/24 dev eth1  proto kernel  scope link  src 192.168.1.101  metric 1 
 192.168.192.0/24 dev vmnet1  proto kernel  scope link  src 192.168.192.1
Locales: extensions.sqlite corrupt or missing
MostRecentCrashID: bp-8ad6a280-da64-4d4e-8803-e77fe2150504
PrefSources: prefs.js
Profiles: Profile0 (Default) - LastVersion=37.0.2/20150417180217 (In use)
PulseList: Error: command ['pacmd', 'list'] failed with exit code 1: No 
PulseAudio daemon running, or not running as session daemon.
RelatedPackageVersions:
 totem-mozilla 3.10.1-1ubuntu4
 rhythmbox-mozilla 3.0.2-0ubuntu2
RfKill:
 3: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
RunningIncompatibleAddons: False
SourcePackage: firefox
Themes: extensions.sqlite corrupt or missing
UpgradeStatus: Upgraded to trusty on 2014-04-19 (382 days ago)
dmi.bios.date: 11/24/2010
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: F6
dmi.board.name: GA-890FXA-UD5
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF6:bd11/24/2010:svnGigabyteTechnologyCo.,Ltd.:pnGA-890FXA-UD5:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-890FXA-UD5:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: GA-890FXA-UD5
dmi.sys.vendor: Gigabyte Technology Co., Ltd.

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


** Tags: amd64 apport-bug trusty

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

Title:
  firefox is unresponsive

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

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


[Bug 1214906] [NEW] logitch M570 mouse stopped working in 13.04

2013-08-21 Thread Yuan Song
Public bug reported:

The logitech M570 wireless mouse used to work.  But recently it became
much less sensitive.  I changed battery several time and it did not
help.   Wired mouse works fine.

If I click on a window title bar, sometimes the window gets maximized.
If I drag on a line of text to select, I may get a word selected.  If I
drag a window around,  the window may stop moving even though the mouse
pointer still moves.  The mouse pointer moves without any issue.  But
the gui does not respond to the mouse action correctly.


Attached is a syslog of the logitech M570 receiver.


Aug 21 00:59:54 saturn kernel: [ 2849.606566] usb 7-2: new full-speed USB 
device number 8 using ohci_hcd
Aug 21 00:59:54 saturn kernel: [ 2849.779163] usb 7-2: New USB device found, 
idVendor=046d, idProduct=c52b
Aug 21 00:59:54 saturn kernel: [ 2849.779175] usb 7-2: New USB device strings: 
Mfr=1, Product=2, SerialNumber=0
Aug 21 00:59:54 saturn kernel: [ 2849.779182] usb 7-2: Product: USB Receiver
Aug 21 00:59:54 saturn kernel: [ 2849.779188] usb 7-2: Manufacturer: Logitech
Aug 21 00:59:54 saturn kernel: [ 2849.801466] logitech-djreceiver 
0003:046D:C52B.001B: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB 
Receiver] on usb-:00:16.0-2/input2
Aug 21 00:59:54 saturn mtp-probe: checking bus 7, device 8: 
/sys/devices/pci:00/:00:16.0/usb7/7-2
Aug 21 00:59:54 saturn mtp-probe: bus: 7, device: 8 was not an MTP device
Aug 21 00:59:54 saturn kernel: [ 2849.806777] input: Logitech Unifying Device. 
Wireless PID:1028 as 
/devices/pci:00/:00:16.0/usb7/7-2/7-2:1.2/0003:046D:C52B.001B/input/input23
Aug 21 00:59:54 saturn kernel: [ 2849.807096] logitech-djdevice 
0003:046D:C52B.001C: input,hidraw2: USB HID v1.11 Mouse [Logitech Unifying 
Device. Wireless PID:1028] on usb-:00:16.0-2:1

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: xorg 1:7.7+1ubuntu4
ProcVersionSignature: Ubuntu 3.8.0-29.42-generic 3.8.13.5
Uname: Linux 3.8.0-29-generic x86_64
NonfreeKernelModules: fglrx
.tmp.unity.support.test.0:
 
ApportVersion: 2.9.2-0ubuntu8.3
Architecture: amd64
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 Aug 21 08:33:59 2013
DistUpgraded: 2013-06-23 14:25:17,675 DEBUG enabling apt cron job
DistroCodename: raring
DistroVariant: ubuntu
DkmsStatus: fglrx-updates, 9.012, 3.8.0-29-generic, x86_64: installed
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Advanced Micro Devices [AMD] nee ATI Redwood LE [Radeon HD 5550] [1002:68da] 
(prog-if 00 [VGA controller])
   Subsystem: Hightech Information System Ltd. Device [1787:200d]
InstallationDate: Installed on 2013-04-02 (141 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MachineType: Gigabyte Technology Co., Ltd. GA-890FXA-UD5
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-29-generic 
root=UUID=f630d0df-facb-47b4-b39a-be87a1252e93 ro 
crashkernel=384M-2G:64M,2G-:128M quiet splash vt.handoff=7
SourcePackage: xorg
Symptom: display
UpgradeStatus: Upgraded to raring on 2013-06-23 (58 days ago)
dmi.bios.date: 11/24/2010
dmi.bios.vendor: Award Software International, Inc.
dmi.bios.version: F6
dmi.board.name: GA-890FXA-UD5
dmi.board.vendor: Gigabyte Technology Co., Ltd.
dmi.chassis.type: 3
dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF6:bd11/24/2010:svnGigabyteTechnologyCo.,Ltd.:pnGA-890FXA-UD5:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnGA-890FXA-UD5:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
dmi.product.name: GA-890FXA-UD5
dmi.sys.vendor: Gigabyte Technology Co., Ltd.
version.compiz: compiz 1:0.9.9~daily13.06.19~13.04-0ubuntu1
version.fglrx-installer: fglrx-installer N/A
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.43-0ubuntu1.1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.1.3-0ubuntu0.3
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.1.3-0ubuntu0.3
version.xserver-xorg-core: xserver-xorg-core 2:1.13.3-0ubuntu6
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2b2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.1.0-0ubuntu2
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.21.6-0ubuntu4.1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.7-0ubuntu1
xserver.bootTime: Wed Aug 21 00:12:24 2013
xserver.configfile: /etc/X11/xorg.conf
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.13.3-0ubuntu6
xserver.video_driver: fglrx

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


** Tags: amd64 apport-bug compiz-0.9 raring ubuntu

-- 
You received this bug 

[Bug 1195394] [NEW] redirect program output into a log file does not seem to work properly when there is sleep in the program

2013-06-27 Thread Yuan Song
Public bug reported:

Redirect does not seem to work properly when program uses a sleep.   I
used the following test program.  It works well if I do not redirect the
output   If I redirect the output to a file, I won't see anything in the
file.  tail -f does not show me anything.  I can do redirect if I remove
the sleep.  I am using  64bits 13.04 with 3.8.0-25-generic #37 kernel.
bash version is version 4.2.45(1).

#include stdio.h
#include sys/time.h
#include time.h

int main()
{
 struct timeval tv;
 struct tm* ltm;

 while(1)
{
 sleep(1);
 gettimeofday(tv, NULL);
 ltm = localtime(tv.tv_sec);

   printf(%s\n, asctime(ltm));
}
}

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: bash 4.2-5ubuntu3
ProcVersionSignature: Ubuntu 3.8.0-25.37-generic 3.8.13
Uname: Linux 3.8.0-25-generic x86_64
ApportVersion: 2.9.2-0ubuntu8.1
Architecture: amd64
Date: Thu Jun 27 11:59:39 2013
InstallationDate: Installed on 2013-04-02 (86 days ago)
InstallationMedia: Ubuntu 12.10 Quantal Quetzal - Release amd64 (20121017.5)
MarkForUpload: True
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: bash
UpgradeStatus: Upgraded to raring on 2013-06-23 (3 days ago)

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


** Tags: amd64 apport-bug raring

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

Title:
  redirect program output into a log file does not seem to work properly
  when there is sleep in the program

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

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