[Bug 1414887] Re: dns query from localnetwork ignored

2015-01-30 Thread Tong Sun
** Summary changed:

- dns query from localnetwork are blocked
+ dns query from localnetwork ignored

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

Title:
  dns query from localnetwork ignored

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

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


[Bug 1414887] Re: dns query from localnetwork ignored

2015-01-30 Thread Tong Sun
Ah, thanks Thomas. You lead me to the right direction.

As Simon Kelley, the author of dnsmasq said in the new dnsmasq manpag,
`local-service` is intended to be set as a default on installation, to
allow unconfigured installations to be useful...  it will have no
effect, but for otherwise-unconfigured installations, it stops dnsmasq
from being vulnerable to DNS-reflection attacks, I'm changing this bug
report to bear the purpose to have dnsmasq better configured out of box
for Ubuntu (14.10+).

- First, as suggested by the author of dnsmasq, the  `local-service`
should be in the default configuration. However, Ubuntu 14.10 doesn't
have that:

% cat /etc/dnsmasq.conf /etc/dnsmasq.d/network-manager | sed '/^$/d; /^#/d'
bind-interfaces

- Second, unlike its previous version, Ubuntu 14.10 now starts dnsmasq
in a very restricted way. Here is what I found out how dnsmasq is
started in Ubuntu 14.10:

 /usr/sbin/dnsmasq --no-resolv --keep-in-foreground --no-hosts --bind-
interfaces --pid-file=/run/sendsigs.omit.d/network-manager.dnsmasq.pid
--listen-address=127.0.1.1 --conf-
file=/var/run/NetworkManager/dnsmasq.conf --cache-size=0 --proxy-dnssec
--enable-dbus=org.freedesktop.NetworkManager.dnsmasq --conf-
dir=/etc/NetworkManager/dnsmasq.d

I.e., that ` --listen-address=127.0.1.1` will willfully ignore any dns
queries from localnetwork. This is the exact reason causing the symptom
that I reported.

I believe this setting should not be there, because

1. for people that need the setting, it is very easy to put it into a conf file 
under /etc/dnsmasq.d/; 
2. however, it will make it very very difficult for people who don't need it to 
get rid of it unless altering the package installation.
3. Ubuntu should really ship the default setting of `local-service` instead of 
`listen-address`, because it is a safer default and not invasive in the 
meantime.  it will have no effect but for an otherwise-unconfigured 
installation. 

Please consider.

Meanwhile, is there any better way to get rid of  that ` --listen-
address=127.0.1.1`? The least that I want is to altering the package
installation.

Thanks


** Changed in: dnsmasq (Ubuntu)
   Status: Incomplete = New

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

Title:
  dns query from localnetwork ignored

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

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


[Bug 1414887] Re: dns query from localnetwork ignored

2015-01-30 Thread Tong Sun
Ah, thanks Thomas. You lead me to the right direction.

As Simon Kelley, the author of dnsmasq said in the new dnsmasq manpag,
`local-service` is intended to be set as a default on installation, to
allow unconfigured installations to be useful...  it will have no
effect, but for otherwise-unconfigured installations, it stops dnsmasq
from being vulnerable to DNS-reflection attacks, I'm changing this bug
report to bear the purpose to have dnsmasq better configured out of box
for Ubuntu (14.10+).

- First, as suggested by the author of dnsmasq, the  `local-service`
should be in the default configuration. However, Ubuntu 14.10 doesn't
have that:

% cat /etc/dnsmasq.conf /etc/dnsmasq.d/network-manager | sed '/^$/d; /^#/d'
bind-interfaces

- Second, unlike its previous version, Ubuntu 14.10 now starts dnsmasq
in a very restricted way. Here is what I found out how dnsmasq is
started in Ubuntu 14.10:

 /usr/sbin/dnsmasq --no-resolv --keep-in-foreground --no-hosts --bind-
interfaces --pid-file=/run/sendsigs.omit.d/network-manager.dnsmasq.pid
--listen-address=127.0.1.1 --conf-
file=/var/run/NetworkManager/dnsmasq.conf --cache-size=0 --proxy-dnssec
--enable-dbus=org.freedesktop.NetworkManager.dnsmasq --conf-
dir=/etc/NetworkManager/dnsmasq.d

I.e., that ` --listen-address=127.0.1.1` will willfully ignore any dns
queries from localnetwork. This is the exact reason causing the symptom
that I reported.

I believe this setting should not be there, because

1. for people that need the setting, it is very easy to put it into a conf file 
under /etc/dnsmasq.d/; 
2. however, it will make it very very difficult for people who don't need it to 
get rid of it unless altering the package installation.
3. Ubuntu should really ship the default setting of `local-service` instead of 
`listen-address`, because it is a safer default and not invasive in the 
meantime.  it will have no effect but for an otherwise-unconfigured 
installation. 

Please consider.

Meanwhile, is there any better way to get rid of  that ` --listen-
address=127.0.1.1`? The least that I want is to altering the package
installation.

Thanks


** Changed in: dnsmasq (Ubuntu)
   Status: Incomplete = New

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

Title:
  dns query from localnetwork ignored

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

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


[Bug 1414887] [NEW] dns query from localnetwork are blocked

2015-01-26 Thread Tong Sun
Public bug reported:

Hi,

I followed the following to config dnsmasq as DHCP and DNS server
http://sfxpt.wordpress.com/2013/11/30/dnsmasq-installation-
configuration-5/

It works well till Ubuntu 13.10. However, with Ubuntu 14.10, the dns
query from localnetwork will always timeout. The configurations are
exactly the same, What could be the problem?

From within localnetwork:

~~~
$ dig google.ca

;  DiG 9.9.5-4.3-Ubuntu  google.ca
;; global options: +cmd
;; connection timed out; no servers could be reached

dig @192.168.2.100 maroon

;  DiG 9.9.5-4.3-Ubuntu  @192.168.2.100 maroon
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
~~~

On the DNS sever itself:

~~~
$ dig google.ca @127.0.0.1
...
;; ANSWER SECTION:
google.ca.  299 IN  A   173.194.43.111
...
;; Query time: 50 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)

$ dig @192.168.2.100 maroon
...
;; ANSWER SECTION:
maroon. 0   IN  A   192.168.2.100

;; Query time: 1 msec
;; SERVER: 192.168.2.100#53(192.168.2.100)
...
~~~

This is the debug output from dnsmasq log:

~~~
Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.119
Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.120
*** DEBUG 2015-01-01 13:26:21-05:00 DEBUG ***
Jan  1 13:27:42 maroon dnsmasq[2833]: query[A] maroon from 192.168.2.100
Jan  1 13:27:42 maroon dnsmasq[2833]: /etc/dnsmasq.hosts maroon is
192.168.2.100
*** DEBUG 2015-01-01 13:28:19-05:00 DEBUG ***
~~~

All other dns queries from localnetwork did not generate any log entries.
So, because the local dns query work, I think something is blocking the dnsmasq
 from sending the dns query results back to localnetwork. What could it
be?

I didn't limit the dnsmasq listen address:

~~~
$ grep listen-address /etc/dnsmasq.conf /etc/dnsmasq.d/*
/etc/dnsmasq.conf:#listen-address=
~~~

My /etc/hosts.deny and hosts.allow files are untouched either, and I can
ping my DNS server, and ssh into its IP address as well. So I think the
blocking is only at the DNS level since other access are just fine. It is
not because of iptables rules either:

$ sudo iptables-save | wc
  0   0   0

I've installed dnsmasq on two different machines, one being freshly
installed today, and both of them are showing exactly the  same symptom.
Again, it only happens to Ubuntu 14.10. It was working well till Ubuntu
13.10 before.

I've run out of all the possibilities.
What could be the problem?

Thanks

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 14.10
Release:14.10
Codename:   utopic

$ apt-cache policy dnsmasq
dnsmasq:
  Installed: 2.71-1
  Candidate: 2.71-1
  Version table:
 *** 2.71-1 0
500 http://us.archive.ubuntu.com/ubuntu/ utopic/universe amd64 Packages
100 /var/lib/dpkg/status

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

** Description changed:

  Hi,
  
- I following the following to config dnsmasq as DHCP and DNS server
+ I followed the following to config dnsmasq as DHCP and DNS server
  http://sfxpt.wordpress.com/2013/11/30/dnsmasq-installation-
  configuration-5/
  
- It works well till Ubuntu 13.10. However, with Ubuntu 14.10, the dns 
- query from localnetwork will always timeout. The configurations are 
- exactly the same, What could be the problem? 
+ It works well till Ubuntu 13.10. However, with Ubuntu 14.10, the dns
+ query from localnetwork will always timeout. The configurations are
+ exactly the same, What could be the problem?
  
  From within localnetwork:
  
  ~~~
  $ dig google.ca
  
  ;  DiG 9.9.5-4.3-Ubuntu  google.ca
  ;; global options: +cmd
  ;; connection timed out; no servers could be reached
  
  dig @192.168.2.100 maroon
  
  ;  DiG 9.9.5-4.3-Ubuntu  @192.168.2.100 maroon
  ; (1 server found)
  ;; global options: +cmd
  ;; connection timed out; no servers could be reached
  ~~~
  
  On the DNS sever itself:
  
  ~~~
  $ dig google.ca @127.0.0.1
  ...
  ;; ANSWER SECTION:
  google.ca.  299 IN  A   173.194.43.111
  ...
  ;; Query time: 50 msec
  ;; SERVER: 127.0.0.1#53(127.0.0.1)
  
  $ dig @192.168.2.100 maroon
  ...
  ;; ANSWER SECTION:
  maroon. 0   IN  A   192.168.2.100
  
  ;; Query time: 1 msec
  ;; SERVER: 192.168.2.100#53(192.168.2.100)
  ...
  ~~~
  
  This is the debug output from dnsmasq log:
  
  ~~~
  Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.119
  Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.120
- *** DEBUG 2015-01-01 13:26:21-05:00 DEBUG *** 
+ *** DEBUG 2015-01-01 13:26:21-05:00 DEBUG ***
  Jan  1 13:27:42 maroon dnsmasq[2833]: query[A] maroon from 192.168.2.100
- Jan  1 13:27:42 maroon dnsmasq[2833]: /etc/dnsmasq.hosts maroon is 
+ Jan  1 13:27:42 maroon dnsmasq[2833]: /etc/dnsmasq.hosts maroon is
  192.168.2.100
- *** DEBUG 2015-01-01 13:28:19-05:00 DEBUG *** 

[Bug 1414887] [NEW] dns query from localnetwork are blocked

2015-01-26 Thread Tong Sun
Public bug reported:

Hi,

I followed the following to config dnsmasq as DHCP and DNS server
http://sfxpt.wordpress.com/2013/11/30/dnsmasq-installation-
configuration-5/

It works well till Ubuntu 13.10. However, with Ubuntu 14.10, the dns
query from localnetwork will always timeout. The configurations are
exactly the same, What could be the problem?

From within localnetwork:

~~~
$ dig google.ca

;  DiG 9.9.5-4.3-Ubuntu  google.ca
;; global options: +cmd
;; connection timed out; no servers could be reached

dig @192.168.2.100 maroon

;  DiG 9.9.5-4.3-Ubuntu  @192.168.2.100 maroon
; (1 server found)
;; global options: +cmd
;; connection timed out; no servers could be reached
~~~

On the DNS sever itself:

~~~
$ dig google.ca @127.0.0.1
...
;; ANSWER SECTION:
google.ca.  299 IN  A   173.194.43.111
...
;; Query time: 50 msec
;; SERVER: 127.0.0.1#53(127.0.0.1)

$ dig @192.168.2.100 maroon
...
;; ANSWER SECTION:
maroon. 0   IN  A   192.168.2.100

;; Query time: 1 msec
;; SERVER: 192.168.2.100#53(192.168.2.100)
...
~~~

This is the debug output from dnsmasq log:

~~~
Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.119
Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.120
*** DEBUG 2015-01-01 13:26:21-05:00 DEBUG ***
Jan  1 13:27:42 maroon dnsmasq[2833]: query[A] maroon from 192.168.2.100
Jan  1 13:27:42 maroon dnsmasq[2833]: /etc/dnsmasq.hosts maroon is
192.168.2.100
*** DEBUG 2015-01-01 13:28:19-05:00 DEBUG ***
~~~

All other dns queries from localnetwork did not generate any log entries.
So, because the local dns query work, I think something is blocking the dnsmasq
 from sending the dns query results back to localnetwork. What could it
be?

I didn't limit the dnsmasq listen address:

~~~
$ grep listen-address /etc/dnsmasq.conf /etc/dnsmasq.d/*
/etc/dnsmasq.conf:#listen-address=
~~~

My /etc/hosts.deny and hosts.allow files are untouched either, and I can
ping my DNS server, and ssh into its IP address as well. So I think the
blocking is only at the DNS level since other access are just fine. It is
not because of iptables rules either:

$ sudo iptables-save | wc
  0   0   0

I've installed dnsmasq on two different machines, one being freshly
installed today, and both of them are showing exactly the  same symptom.
Again, it only happens to Ubuntu 14.10. It was working well till Ubuntu
13.10 before.

I've run out of all the possibilities.
What could be the problem?

Thanks

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 14.10
Release:14.10
Codename:   utopic

$ apt-cache policy dnsmasq
dnsmasq:
  Installed: 2.71-1
  Candidate: 2.71-1
  Version table:
 *** 2.71-1 0
500 http://us.archive.ubuntu.com/ubuntu/ utopic/universe amd64 Packages
100 /var/lib/dpkg/status

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

** Description changed:

  Hi,
  
- I following the following to config dnsmasq as DHCP and DNS server
+ I followed the following to config dnsmasq as DHCP and DNS server
  http://sfxpt.wordpress.com/2013/11/30/dnsmasq-installation-
  configuration-5/
  
- It works well till Ubuntu 13.10. However, with Ubuntu 14.10, the dns 
- query from localnetwork will always timeout. The configurations are 
- exactly the same, What could be the problem? 
+ It works well till Ubuntu 13.10. However, with Ubuntu 14.10, the dns
+ query from localnetwork will always timeout. The configurations are
+ exactly the same, What could be the problem?
  
  From within localnetwork:
  
  ~~~
  $ dig google.ca
  
  ;  DiG 9.9.5-4.3-Ubuntu  google.ca
  ;; global options: +cmd
  ;; connection timed out; no servers could be reached
  
  dig @192.168.2.100 maroon
  
  ;  DiG 9.9.5-4.3-Ubuntu  @192.168.2.100 maroon
  ; (1 server found)
  ;; global options: +cmd
  ;; connection timed out; no servers could be reached
  ~~~
  
  On the DNS sever itself:
  
  ~~~
  $ dig google.ca @127.0.0.1
  ...
  ;; ANSWER SECTION:
  google.ca.  299 IN  A   173.194.43.111
  ...
  ;; Query time: 50 msec
  ;; SERVER: 127.0.0.1#53(127.0.0.1)
  
  $ dig @192.168.2.100 maroon
  ...
  ;; ANSWER SECTION:
  maroon. 0   IN  A   192.168.2.100
  
  ;; Query time: 1 msec
  ;; SERVER: 192.168.2.100#53(192.168.2.100)
  ...
  ~~~
  
  This is the debug output from dnsmasq log:
  
  ~~~
  Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.119
  Jan  1 13:26:10 maroon dnsmasq[2833]: reply google.ca is 173.194.43.120
- *** DEBUG 2015-01-01 13:26:21-05:00 DEBUG *** 
+ *** DEBUG 2015-01-01 13:26:21-05:00 DEBUG ***
  Jan  1 13:27:42 maroon dnsmasq[2833]: query[A] maroon from 192.168.2.100
- Jan  1 13:27:42 maroon dnsmasq[2833]: /etc/dnsmasq.hosts maroon is 
+ Jan  1 13:27:42 maroon dnsmasq[2833]: /etc/dnsmasq.hosts maroon is
  192.168.2.100
- *** DEBUG 2015-01-01 13:28:19-05:00 DEBUG *** 

[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2015-01-26 Thread Tong Sun
 My Acer Aspire AS5536 laptop is now able to suspend/resume, after
having the BIOS update.

I saw it working with my own eyes but now it is NOT working any more...
long story short, after lots of trials and errors, I've now pin pointed
when it will not work and when it will --

I found that the suspend/resume will not work, with exactly the
previously reported symptom, when the HDMI cable is plugged in to my
laptop, that's enough for it not working. Whether I've logged into my
Xfce desktop, whether my Ubuntu 14.10 Utopic has recognized such HDMI
event, etc, etc, they won't matter. As long as the HDMI cable is plugged
in to my laptop, even it is just a freshly booted system without me
being logged into my X, the suspend/resume will not work.  I wll get the
repeating errors of `sda1` soft reset failure, and HD light is on
forever. This is under the latest kernal.

However, if my  Ubuntu 14.10 Utopic is booted without the HDMI cable,
the suspend/resume will work just fine.

Hope this has dramatically marrowed down the scope of the problem.

$ sudo dmidecode -s bios-version  sudo dmidecode -s bios-release-date
V1.11  
10/22/2009

$ uname -a
Linux salmon 3.16.0-29-generic #39-Ubuntu SMP Mon Dec 15 22:27:29 UTC 2014 
x86_64 x86_64 x86_64 GNU/Linux

$ lsb_release -a 
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 14.10
Release:14.10
Codename:   utopic


** Changed in: linux (Ubuntu)
   Status: Invalid = New

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1412002] [NEW] can't start moc in Ubuntu 14.10

2015-01-17 Thread Tong Sun
Public bug reported:

The moc fails to start in Ubuntu 14.10:

$ moc
moc: could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/moc': No such file or 
directory

DistroRelease: Ubuntu 14.10
NonfreeKernelModules: nvidia
Package: moc 1:2.5.0~beta2-1build2
PackageArchitecture: amd64
ProcEnviron:
 LANGUAGE=
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=set
 LANG=C
 SHELL=/bin/bash
ProcVersionSignature: Ubuntu 3.16.0-25.33-generic 3.16.7
SourcePackage: moc
Tags:  utopic
Uname: Linux 3.16.0-25-generic x86_64
UpgradeStatus: No upgrade log present (probably fresh install)

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

** Attachment added: apport.moc.ojf6n993.apport
   
https://bugs.launchpad.net/bugs/1412002/+attachment/4300584/+files/apport.moc.ojf6n993.apport

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

Title:
  can't start moc in Ubuntu 14.10

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

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


[Bug 1412002] Re: can't start moc in Ubuntu 14.10

2015-01-17 Thread Tong Sun
Ahh... Thanks!

** Changed in: moc (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/1412002

Title:
  can't start moc in Ubuntu 14.10

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

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


[Bug 1408522] [NEW] Chromium-browser keeps opening maximized

2015-01-07 Thread Tong Sun
Public bug reported:

This is similar to bug#1307041, but the re-sizing is on both height and
width. I.e., I like running the browser in a non-maximized window, where
the height is not  maximized, and nor is the width. However, whenever I
close the browser and re-open it, 99% of time it will open maximized.
Same with when I open another window with Ctrl-N.

Reported upstream at
https://code.google.com/p/chromium/issues/detail?id=445590, and the
following is the details.

What the reply is, the problem is fixed in version 39.0.2171.95+.
So please provide upgraded chromium-browser.

Thanks

Bug report details:


UserAgent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like 
Gecko) Ubuntu Chromium/39.0.2171.65 Chrome/39.0.2171.65 Safari/537.36

Steps to reproduce the problem:
1. Close all windows and tab and re-size the last window to proper size.
2. Close Chrome (chromium-browser to be exactly).
3. Start Chrome again

What is the expected behavior?
Started Chrome window retain the proper size, as set previously. 

What went wrong?
Started Chrome window occupying the whole screen. 

Did this work before? Yes Ubuntu 13.10

Chrome version: 39.0.2171.65  Channel: n/a
OS Version: Ubuntu 14.10
Flash Version: 

$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu 14.10
Release:14.10
Codename:   utopic

$ apt-cache policy chromium-browser
chromium-browser:
  Installed: 39.0.2171.65-0ubuntu0.14.10.1.1106
  Candidate: 39.0.2171.65-0ubuntu0.14.10.1.1106
  Version table:
 *** 39.0.2171.65-0ubuntu0.14.10.1.1106 0
500 http://security.ubuntu.com/ubuntu/ utopic-security/universe amd64 
Packages
Dec 30, 2014

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

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

Title:
  Chromium-browser keeps opening maximized

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

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


[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-12-27 Thread Tong Sun
Hi Christopher,

Thank you very much for the detailed instruction on how to fix the
problem. My Acer Aspire AS5536 laptop is now able to suspend/resume,
after having the BIOS update.

Sorry for responding late, updating BIOS is something that I never done
before. Now I'm very happy.

Thanks again, closing the issue now...

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

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1372557] Re: Ubuntu Utopic Net Installation Broken

2014-12-27 Thread Tong Sun
Although it *is* a transitory issue, it is quite a solid and valid
issue. see the failure screenshot on http://imagebin.ca/v/1bKjMCi8cTTf.

Correct the status.

** Changed in: linux (Ubuntu)
   Status: Invalid = Fix Released

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

Title:
  Ubuntu Utopic Net Installation Broken

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

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


[Bug 1372557] Re: Ubuntu Utopic Net Installation Broken

2014-12-27 Thread Tong Sun
sorry for my ignorance.

** Changed in: linux (Ubuntu)
   Status: Fix Released = Invalid

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

Title:
  Ubuntu Utopic Net Installation Broken

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

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


[Bug 1395343] BootDmesg.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: BootDmesg.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274878/+files/BootDmesg.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] CRDA.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: CRDA.txt
   https://bugs.launchpad.net/bugs/1395343/+attachment/4274879/+files/CRDA.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] IwConfig.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: IwConfig.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274881/+files/IwConfig.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] ProcCpuinfo.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: ProcCpuinfo.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274884/+files/ProcCpuinfo.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] ProcEnviron.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: ProcEnviron.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274885/+files/ProcEnviron.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] UdevDb.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: UdevDb.txt
   https://bugs.launchpad.net/bugs/1395343/+attachment/4274890/+files/UdevDb.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] ProcModules.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: ProcModules.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274887/+files/ProcModules.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] RfKill.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: RfKill.txt
   https://bugs.launchpad.net/bugs/1395343/+attachment/4274889/+files/RfKill.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] CurrentDmesg.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: CurrentDmesg.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274880/+files/CurrentDmesg.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] ProcInterrupts.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: ProcInterrupts.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274886/+files/ProcInterrupts.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Lspci.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: Lspci.txt
   https://bugs.launchpad.net/bugs/1395343/+attachment/4274882/+files/Lspci.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Lsusb.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: Lsusb.txt
   https://bugs.launchpad.net/bugs/1395343/+attachment/4274883/+files/Lsusb.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-12-05 Thread Tong Sun
apport information

** Tags added: apport-collected utopic

** Description changed:

  The Ubuntu 14.10 Utopic suspend/resume is not working for my Laptop. I
  first tried with the Live CD, on failing that, and thinking that suspend
  might need some disk to write to for the suspend info, I did a HD
  installation. But still, suspend/resume is still not working.
  
  On second attempt (after HD installation), I switched to console and
  close my Laptop lid. It suspended well, as it has always been. On
  resume, I see the repeating errors of `sda1` soft reset failure (or
  something like that). Minutes later, I start to see all kinds of disk
  related errors, disk sector writing error, ext4 journal error, etc.
  
  I thus think the reason of `resume` not working is that the HD is not
  waken up.
  
  This is Acer Aspire AS5536, with XUbuntu 14.10 Utopic.
  
  Any more info that I can provide?
  
  Thanks
+ --- 
+ ApportVersion: 2.14.7-0ubuntu8
+ Architecture: amd64
+ AudioDevicesInUse:
+  USERPID ACCESS COMMAND
+  /dev/snd/controlC0:  tong   2395 F pulseaudio
+  /dev/snd/controlC1:  tong   2395 F pulseaudio
+ CurrentDesktop: XFCE
+ DistroRelease: Ubuntu 14.10
+ MachineType: Acer Aspire 5536
+ Package: linux (not installed)
+ ProcFB: 0 radeondrmfb
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-23-generic 
initrd=/boot/initrd.img-3.16.0-23-generic 
root=UUID=439ff0f7-d3d2-462e-8068-c70327555171 ro
+ ProcVersionSignature: Ubuntu 3.16.0-23.31-generic 3.16.4
+ RelatedPackageVersions:
+  linux-restricted-modules-3.16.0-23-generic N/A
+  linux-backports-modules-3.16.0-23-generic  N/A
+  linux-firmware 1.138
+ Tags:  utopic utopic
+ Uname: Linux 3.16.0-23-generic x86_64
+ UnreportableReason: The report belongs to a package that is not installed.
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm arch audio cdrom crew dialout dip disk fax floppy games guest 
mail news plugdev sudo tape tty users uucp video voice www-data
+ _MarkForUpload: True
+ dmi.bios.date: 02/27/2009
+ dmi.bios.vendor: Phoenix Technologies LTD
+ dmi.bios.version: V1.03
+ dmi.board.name: JV50PU
+ dmi.board.vendor: Acer
+ dmi.board.version: Rev
+ dmi.chassis.type: 10
+ dmi.chassis.vendor: Acer
+ dmi.chassis.version: N/A
+ dmi.modalias: 
dmi:bvnPhoenixTechnologiesLTD:bvrV1.03:bd02/27/2009:svnAcer:pnAspire5536:pvr0100:rvnAcer:rnJV50PU:rvrRev:cvnAcer:ct10:cvrN/A:
+ dmi.product.name: Aspire 5536
+ dmi.product.version: 0100
+ dmi.sys.vendor: Acer

** Attachment added: AlsaInfo.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274877/+files/AlsaInfo.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] UdevLog.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: UdevLog.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274891/+files/UdevLog.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] PulseList.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: PulseList.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274888/+files/PulseList.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] WifiSyslog.txt

2014-12-05 Thread Tong Sun
apport information

** Attachment added: WifiSyslog.txt
   
https://bugs.launchpad.net/bugs/1395343/+attachment/4274892/+files/WifiSyslog.txt

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-12-05 Thread Tong Sun
Hi prost,

Despite what Christopher said, I myself believe that we are experiencing
the very same issue, as myself also have Ubuntu 14.04 installed side by
side on this laptop and that resumes without any problems. To me, the
problem is the new Ubuntu 14.10, not some specific HW.

However, we do need to follow the rules or instructions, so please do
mention this bug report in your newly opened one, and link back to it
here.

@Christopher, the apport-collect report has just been uploaded.

Thanks


** 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/1395343

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-11-23 Thread Tong Sun
This is a rarely used computer. I'm sure it is not disk errors, as it
never gave any problem before, but failed to wake up the HD instead,
each and every time that I tried. I got disk errors on other machines
before, so I know what it means. I.e., if it is disk errors, the the
error sequence reported above will be entirely different.

No I can't use apport-collect, as it's function is to automatically
generate crash reports for debugging. However my machine/SW does not
crash, but freeze up entirely.

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-11-23 Thread Tong Sun
This is a rarely used computer. I'm sure it is not disk errors, as it
never gave any problem before, but failed to wake up the HD instead,
each and every time that I tried. I got disk errors on other machines
before, so I know what it means. I.e., if it is disk errors, the the
error sequence reported above will be entirely different.

No I can't use apport-collect, as it's function is to automatically
generate crash reports for debugging. However my machine/SW does not
crash, but freeze up entirely.

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] [NEW] Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-11-22 Thread Tong Sun
Public bug reported:

The Ubuntu 14.10 Utopic suspend/resume is not working for my Laptop. I
first tried with the Live CD, on failing that, and thinking that suspend
might need some disk to write to for the suspend info, I did a HD
installation. But still, suspend/resume is still not working.

On second attempt (after HD installation), I switched to console and
close my Laptop lid. It suspended well, as it has always been. On
resume, I see the repeating errors of `sda1` soft reset failure (or
something like that). Minutes later, I start to see all kinds of disk
related errors, disk sector writing error, ext4 journal error, etc.

I thus think the reason of `resume` not working is that the HD is not
waken up.

This is Acer Aspire AS5536, with XUbuntu 14.10 Utopic.

Any more info that I can provide?

Thanks

** Affects: pm-utils (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-11-22 Thread Tong Sun
Is there any workaround at the moment?

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] Re: Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-11-22 Thread Tong Sun
Is there any workaround at the moment?

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1395343] [NEW] Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

2014-11-22 Thread Tong Sun
Public bug reported:

The Ubuntu 14.10 Utopic suspend/resume is not working for my Laptop. I
first tried with the Live CD, on failing that, and thinking that suspend
might need some disk to write to for the suspend info, I did a HD
installation. But still, suspend/resume is still not working.

On second attempt (after HD installation), I switched to console and
close my Laptop lid. It suspended well, as it has always been. On
resume, I see the repeating errors of `sda1` soft reset failure (or
something like that). Minutes later, I start to see all kinds of disk
related errors, disk sector writing error, ext4 journal error, etc.

I thus think the reason of `resume` not working is that the HD is not
waken up.

This is Acer Aspire AS5536, with XUbuntu 14.10 Utopic.

Any more info that I can provide?

Thanks

** Affects: pm-utils (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Ubuntu 14.10 Utopic suspend/resume not working for my Laptop

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

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


[Bug 1394400] Re: netboot stopped at “Creating ext3 file system for /”

2014-11-19 Thread Tong Sun
I don't know which package to choose, but searching for bugs for netboot, most 
are reported on the package of linux. 
Please correct me if I'm wrong. 

** Description changed:

  I always use the method from https://sfxpt.wordpress.com/2013/06/09/get-
  the-debianubuntu-ready-and-customized-the-way-you-like-in-10-minutes/ to
  do automatic Ubuntu net installation. It works all the way from 2012-04
  to 2014-04, but not 2014-10 -- the netboot stopped at “Creating ext3
  file system for /” and did not go any further.
  
  My net install environment is Virtualbox. For  2014-10, I tried three
  times, and the last time is right after a fresh PC reboot, with nothing
  else running.
  
  Once again, the automatic net install method is from
  https://sfxpt.wordpress.com/2013/06/09/get-the-debianubuntu-ready-and-
  customized-the-way-you-like-in-10-minutes/, it's always been the same.
  Here is the disk related part:
  
- 
- 
--
+ 
-
  #
  # Disk Partitioning/Boot loader
  #
  
  d-i partman-auto/purge_lvm_from_device  boolean true
  
  # Using the default partitioning scheme and wiping any existing
  partitions.
  
  d-i partman-auto/disk   string /dev/sda
  d-i partman-auto/method string regular
  # - regular: use the usual partition types for your architecture
  # - lvm: use LVM to partition the disk
  # - crypto:  use LVM within an encrypted partition
  d-i partman-auto/choose_recipe select atomic
  # - atomic: all files in one partition
  # - home:   separate /home partition
  # - multi:  separate /home, /usr, /var, and /tmp partitions
  d-i partman/default_filesystem  string ext3
  
  # This makes partman automatically partition without confirmation.
  d-i partman/choose_partitionselect finish
  d-i partman/confirm_write_new_label boolean true
  d-i partman/confirm_nooverwrite boolean true
  d-i partman/confirm boolean true
  
  ## how partitions are mounted
  # The default is to mount by UUID, but you can also choose traditional to
  # use traditional device names, or label to try filesystem labels before
  # falling back to UUIDs.
  d-i partman/mount_style select  traditional
- 
--
+ 
-
  
  Please investigate.
  
  Thanks

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

Title:
  netboot stopped at “Creating ext3 file system for /”

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

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

[Bug 1394400] [NEW] netboot stopped at “Creating ext3 file system for /”

2014-11-19 Thread Tong Sun
Public bug reported:

I always use the method from https://sfxpt.wordpress.com/2013/06/09/get-
the-debianubuntu-ready-and-customized-the-way-you-like-in-10-minutes/ to
do automatic Ubuntu net installation. It works all the way from 2012-04
to 2014-04, but not 2014-10 -- the netboot stopped at “Creating ext3
file system for /” and did not go any further.

My net install environment is Virtualbox. For  2014-10, I tried three
times, and the last time is right after a fresh PC reboot, with nothing
else running.

Once again, the automatic net install method is from
https://sfxpt.wordpress.com/2013/06/09/get-the-debianubuntu-ready-and-
customized-the-way-you-like-in-10-minutes/, it's always been the same.
Here is the disk related part:

-
#
# Disk Partitioning/Boot loader
#

d-i partman-auto/purge_lvm_from_device  boolean true

# Using the default partitioning scheme and wiping any existing
partitions.

d-i partman-auto/disk   string /dev/sda
d-i partman-auto/method string regular
# - regular: use the usual partition types for your architecture
# - lvm: use LVM to partition the disk
# - crypto:  use LVM within an encrypted partition
d-i partman-auto/choose_recipe select atomic
# - atomic: all files in one partition
# - home:   separate /home partition
# - multi:  separate /home, /usr, /var, and /tmp partitions
d-i partman/default_filesystem  string ext3

# This makes partman automatically partition without confirmation.
d-i partman/choose_partitionselect finish
d-i partman/confirm_write_new_label boolean true
d-i partman/confirm_nooverwrite boolean true
d-i partman/confirm boolean true

## how partitions are mounted
# The default is to mount by UUID, but you can also choose traditional to
# use traditional device names, or label to try filesystem labels before
# falling back to UUIDs.
d-i partman/mount_style select  traditional
-

Please investigate.

Thanks

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

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

Title:
  netboot stopped at “Creating ext3 file system for /”

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

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

[Bug 1394400] Re: netboot stopped at “Creating ext3 file system for /”

2014-11-19 Thread Tong Sun
Due to the nature of the issue encountered, which is during net install,
I am unable to run the 'apport-collect' command, changing the bug status
to 'Confirmed'.

** 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/1394400

Title:
  netboot stopped at “Creating ext3 file system for /”

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

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

[Bug 1393271] [NEW] ibus can't select past the first five choices

2014-11-16 Thread Tong Sun
Public bug reported:

The ibus can't select past the first five choices. after turning to
second page or more, pressing 1~5 will not get that corresponding
character/word, but something entirely unrelated instead.

13.10下的ibus-googlepinyin就已经不能输入前五个选项以外的字词了--即,凡是要翻页的,翻页以后就不能正常选字、词了。13
.10下的ibus-table-wubi也有同样的问题。

All ibus related packages installed in my Ubuntu 13.10, problem shows up
as early as:

 gir1.2-ibus-1.0_1.5.3-6ubuntu2.1
 ibus_1.5.3-6ubuntu2.1
 ibus-googlepinyin_0.1.2-2
 ibus-pinyin_1.4.0-2ubuntu2
 ibus-pinyin-db-open-phrase_1.4.0-2ubuntu2
 ibus-table_1.5.0.is.1.5.0-0ubuntu1
 ibus-table-wubi_1.4.0.20121008-1
 libibus-1.0-5:amd64_1.5.3-6ubuntu2
 libusb-0.1-4:amd64_2:0.1.12-23.2ubuntu1
 libusb-1.0-0:amd64_2:1.0.16-3
 libusbmuxd2_1.0.8-1ubuntu1
 libustr-1.0-1:amd64_1.0.4-3ubuntu1
 python-ibus_1.5.3-6ubuntu2.1

$ lsb_release -rd
Description:Ubuntu 13.10
Release:13.10

$ uname -rm 
3.11.0-26-generic x86_64

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

** Affects: ibus-googlepinyin (Ubuntu)
 Importance: Undecided
 Status: New

** Affects: ibus-table-wubi (Ubuntu)
 Importance: Undecided
 Status: New

** Also affects: ibus-googlepinyin (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: ibus-table-wubi (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  ibus can't select past the first five choices

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

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

[Bug 1220426] Re: [nvidia-prime]Freeze while using touchpad

2014-10-02 Thread Sun Shiranui
Experiencing the same issue on elementary OS Luna. I'm using an Asus
N550JK with a nvidia 850m and nvidia-319 drivers.

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

Title:
  [nvidia-prime]Freeze while using touchpad

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/nvidia-graphics-drivers-319/+bug/1220426/+subscriptions

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


Re: [Bug 1372557] Re: Ubuntu Utopic Net Installation Broken

2014-09-23 Thread Tong Sun
On Tue, Sep 23, 2014 at 9:53 AM, Tim Gardner tim.gard...@canonical.com
wrote:

 can you retry the network installation ?  You may have caught
 the archive in an indeterminate state

That seems to be so. Retrying the network installation works today.

 (though that should not be
 possible). I've just updated a Utopic server to 3.16.0-17 with header
 packages installed. All of the dependencies look correct.

That indeterminate state seems to have been caused by the out of sync
of linux-generic in repo and network installation iso. Today when I
first run it, the problem was more prominent -- see the failure
screenshot on http://imagebin.ca/v/1bKjMCi8cTTf.

Re-downloading the network installation iso and redo the installation,
everything works now.

Thank you Tim for testing it out.

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

Title:
  Ubuntu Utopic Net Installation Broken

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

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


[Bug 1372557] [NEW] Ubuntu Utopic Net Installation Broken

2014-09-22 Thread Tong Sun
Public bug reported:

Hi,

My Ubuntu Utopic Net Installation failed in the middle because the
linux-generic installation failure.  Is it a known issue?

screenshot posted at http://imagebin.ca/v/1bEECBkFkbnp

Will re-visit after the issue is fixed.

Thanks

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Ubuntu Utopic Net Installation Broken

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

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


[Bug 1372557] Re: Ubuntu Utopic Net Installation Broken

2014-09-22 Thread Tong Sun
** Package changed: ubuntu = linux-meta (Ubuntu)

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

Title:
  Ubuntu Utopic Net Installation Broken

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

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


[Bug 1372557] Re: Ubuntu Utopic Net Installation Broken

2014-09-22 Thread Tong Sun
Though the required logs is missing, there *IS* a screenshot of the log
posted at http://imagebin.ca/v/1bEECBkFkbnp

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

Title:
  Ubuntu Utopic Net Installation Broken

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

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


[Bug 1372557] Re: Ubuntu Utopic Net Installation Broken

2014-09-22 Thread Tong Sun
Hi Brad, my Ubuntu Utopic net installation failed in the middle of the
installation process, and due to the fact that linux-generic
installation failed, I can't even boot into the installed system.

So I am unable to run the above command, and will change the bug status
to 'Confirmed' instead.

** 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/1372557

Title:
  Ubuntu Utopic Net Installation Broken

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

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


[Bug 1357019] [NEW] openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2: openvswitch kernel module failed to build

2014-08-14 Thread Ching Sun
Public bug reported:

I tried to do regular software updates, openvswitch was always failed to
update.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2
ProcVersionSignature: Ubuntu 3.13.0-33.58~precise1-generic 3.13.11.4
Uname: Linux 3.13.0-33-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.6
Architecture: amd64
DKMSKernelVersion: 3.13.0-34-generic
Date: Thu Aug 14 11:12:47 2014
InstallationMedia: Ubuntu-Server 12.04.4 LTS Precise Pangolin - Release amd64 
(20140204)
MarkForUpload: True
PackageArchitecture: all
PackageVersion: 1.4.6-0ubuntu1.12.04.2
SourcePackage: openvswitch
Title: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2: openvswitch kernel 
module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package need-duplicate-check precise

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

Title:
  openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2: openvswitch kernel
  module failed to build

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

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


[Bug 1357019] [NEW] openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2: openvswitch kernel module failed to build

2014-08-14 Thread Ching Sun
Public bug reported:

I tried to do regular software updates, openvswitch was always failed to
update.

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2
ProcVersionSignature: Ubuntu 3.13.0-33.58~precise1-generic 3.13.11.4
Uname: Linux 3.13.0-33-generic x86_64
ApportVersion: 2.0.1-0ubuntu17.6
Architecture: amd64
DKMSKernelVersion: 3.13.0-34-generic
Date: Thu Aug 14 11:12:47 2014
InstallationMedia: Ubuntu-Server 12.04.4 LTS Precise Pangolin - Release amd64 
(20140204)
MarkForUpload: True
PackageArchitecture: all
PackageVersion: 1.4.6-0ubuntu1.12.04.2
SourcePackage: openvswitch
Title: openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2: openvswitch kernel 
module failed to build
UpgradeStatus: No upgrade log present (probably fresh install)

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


** Tags: amd64 apport-package need-duplicate-check precise

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

Title:
  openvswitch-datapath-dkms 1.4.6-0ubuntu1.12.04.2: openvswitch kernel
  module failed to build

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

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


[Bug 1316035] Re: matrox g200eR2 is unclaimed in 14.04

2014-07-09 Thread Dante Sun
Same problem with DELL PowerEdge R420 with Ubuntu 14.04

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

Title:
  matrox g200eR2 is unclaimed in 14.04

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

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


[Bug 1312586] Re: Default 14.04 server installation fails with error 'busybox-intramfs cannot be installed'

2014-07-03 Thread Dante Sun
Same problem using USB key install server 14.04

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

Title:
  Default 14.04 server installation fails with error 'busybox-intramfs
  cannot be installed'

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

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


[Bug 1312586] Re: Default 14.04 server installation fails with error 'busybox-intramfs cannot be installed'

2014-07-03 Thread Dante Sun
I only see this issue when installing from USB key.  Confirmed that
installing from a CD-ROM has no issues.Also installing 14.04 server
AMD64 into a KVM VM doesn't have issue too.

 I am using DELL PowerEdge R420 server.

** Changed in: debian-installer (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/1312586

Title:
  Default 14.04 server installation fails with error 'busybox-intramfs
  cannot be installed'

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

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


[Bug 1068884] Re: ddclient can't be used in quantal: needs missing libdigest-sha1-perl

2014-06-22 Thread Tong Sun
As wimpunk has fixed the problem long time ago, 
https://bugs.launchpad.net/ubuntu/+source/ddclient/+bug/1068884/comments/4
can we have the new release please? 

@wimpunk, is your revision 152 change now in the official release?
Please do if not, because it works.

Thanks

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

Title:
  ddclient can't be used in quantal: needs missing libdigest-sha1-perl

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

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


[Bug 1308125] Re: ERROR:browser_main_loop.cc(240)] Gdk: gdk_window_set_user_time called on non-toplevel

2014-05-20 Thread Tong Sun
Thank you Javier for reporting and digging into it.

It should affect everybody but strangely not much people are complaining
about it here. I tried the  workaround you pointed out, it only works in
the environment that is not expecting ibus inputs. I.e., launching
cromium-browser from xterm that does not accept ibus input would work,
yet launching cromium-browser from rxvt that does takes ibus inputs
would fail, and eventually freeze the whole system.

Although the new google Aura graphics stack is a good thing, I do agree
that  it's too early  for Canonical to enable Aura in Chromium 34 in
Ubuntu 14.04, because even the official Google Chrome 34 is released
with Aura disabled.

Instead of going 35 (or better? 36), I've concluded that *for me*, the
*safest* way is to uninstalled chromium for 14.04 and download chrome
from google -- https://www.google.com/chrome/browser/?platform=linux

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

Title:
  ERROR:browser_main_loop.cc(240)] Gdk: gdk_window_set_user_time called
  on non-toplevel

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

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


[Bug 1310665] [NEW] extlinux-update from extlinux package not working properly

2014-04-21 Thread Tong Sun
Public bug reported:

[Converted to a bug report from
https://answers.launchpad.net/ubuntu/+question/247368]

This looks like a bug to me but want to confirm if I'm doing anything
wrong.

After running extlinux-update, the /boot/extlinux/extlinux.conf file
look like this:

-
## /boot/extlinux/extlinux.conf
##
## IMPORTANT WARNING
##
## The configuration of this file is generated automatically.
## Do not edit this file manually, use: extlinux-update


default l0
prompt 1
timeout 50

include themes/debian/theme.cfg
-

I.e., all my editing would be gone and the machine is not bootable.

This is the extlinux from latest Ubuntu Trusty:

% apt-cache policy extlinux
extlinux:
Installed: 3:4.05+dfsg-6+deb8u1
Candidate: 3:4.05+dfsg-6+deb8u1
Version table:
*** 3:4.05+dfsg-6+deb8u1 0
500 http://us.archive.ubuntu.com/ubuntu/ trusty/universe amd64 Packages
100 /var/lib/dpkg/status

Have I missed anything?

Thanks

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

** Package changed: ubuntu = syslinux (Ubuntu)

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

Title:
  extlinux-update from extlinux package not working properly

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

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


[Bug 1310665] Re: extlinux-update from extlinux package not working properly

2014-04-21 Thread Tong Sun
Do not edit /boot/extlinux/extlinux.conf file.
Edit /boot/extlinux/linux.cfg instead if machine is not bootable.

** Changed in: syslinux (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/1310665

Title:
  extlinux-update from extlinux package not working properly

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

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


[Bug 1263561] [NEW] osspd doesn't work within Ubuntu 13.10

2013-12-22 Thread Tong Sun
Public bug reported:

Hi,

As reported in 
http://askubuntu.com/questions/361711/osspd-aoss-padsp-dont-work-with-13-10
I found that osspd doesn't work with Ubuntu 13.10 Saucy. 

I'm sure it is Ubuntu 13.10's problem because I also have Ubuntu 13.04
on this very same machine, and it works fine. Here is my Ubuntu 13.04's
info:

$ uname -rsm
Linux 3.8.0-19-generic x86_64

$ cat /proc/version
Linux version 3.8.0-19-generic (buildd@allspice) (gcc version 4.7.3 
(Ubuntu/Linaro 4.7.3-1ubuntu1) ) #30-Ubuntu SMP Wed May 1 16:35:23 UTC 2013

And here is my Ubuntu 13.10's info:

$ uname -rsm
Linux 3.11.0-13-generic x86_64

$ cat /proc/version
Linux version 3.11.0-13-generic (buildd@roseapple) (gcc version 4.8.1 
(Ubuntu/Linaro 4.8.1-10ubuntu8) ) #20-Ubuntu SMP Wed Oct 23 07:38:26 UTC 2013

Here is how I tested:

$ ls -l /dev/dsp
crw-rw-rw- 1 root root 14, 3 2013-12-22 18:39 /dev/dsp

$ stat /dev/dsp
  File: '/dev/dsp'
  Size: 0   Blocks: 0  IO Block: 4096   character special 
file
Device: 5h/5d   Inode: 32073   Links: 1 Device type: e,3
Access: (0666/crw-rw-rw-)  Uid: (0/root)   Gid: (0/root)
Access: 2013-12-22 18:39:47.074165000 -0500
Modify: 2013-12-22 18:39:47.074165000 -0500
Change: 2013-12-22 18:39:47.074165000 -0500
 Birth: -

$ echo 0z0z  /dev/dsp 
bash: /dev/dsp: Input/output error

Restarting osspd won't work:

$ sudo service osspd restart 
 * Restarting OSS Proxy Daemon osspd [ OK ] 

Rebooting my machine won't work either.

My *PaulsAudio works fine*.

Didn't test padsp or aoss because I'm not sure if they work with my
Ubuntu 13.04, and it is already reported not working.

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

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

Title:
  osspd doesn't work within Ubuntu 13.10

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

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


[Bug 638498] Re: Contents files are not listed with checksums

2013-12-07 Thread Tong Sun
 can anybody give us an update on this bug?
+1!

I'm building Debian source packages from Perl modules with dh-make-perl,
which relies on apt-file for dependencies checking. However,

apt-file update says:

Ignoring source without Contents File:
  http://ppa.launchpad.net/suntong001/ppa/ubuntu/dists/saucy/Contents-amd64.gz

I.e., dh-make-perl dependencies checking for my Perl modules will
*always fail*, even I have the dependencies modules in my PPA.


** Changed in: launchpad
   Status: Triaged = Confirmed

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

Title:
  Contents files are not listed with checksums

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

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


[Bug 1184262] Re: [logind] stuck in PrepareForSleep, causing network and other services to not resume

2013-10-29 Thread Tong Sun
I'm using gnome-settings-daemon with my fluxbox as WM, and I have this
problem.

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

Title:
  [logind] stuck in PrepareForSleep, causing network and other services
  to not resume

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

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


[Bug 1072364] Re: HDMI stop working for Ubuntu 12.10

2013-10-28 Thread Tong Sun
Don't know if it works for Ubuntu 13.04, but the LUbuntu 13.10 that I
just tried works now.

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

Title:
  HDMI stop working for Ubuntu 12.10

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

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


[Bug 1184262] Re: [logind] stuck in PrepareForSleep, causing network and other services to not resume

2013-10-28 Thread Tong Sun
The pm-utils and its configuration is fine, and maybe so of the network-
manager.

I am able to further decouple the problem -- If I boot into text mode
console, I am able to do close the lid then open  wake it up many
many times without interruptting my wired  wireless network, while
under Xorg (with fluxbox as WM), if I close the lid then open  wake it
up, my wired  wireless network will be gone. If I close the lid a
second time, the machine won't even go to the suspend stage again.

Conclusion: I think the problem has something to do with Xorg.

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

Title:
  [logind] stuck in PrepareForSleep, causing network and other services
  to not resume

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

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


[Bug 1184262] Re: [logind] stuck in PrepareForSleep, causing network and other services to not resume

2013-10-27 Thread Tong Sun
Contrary to Alfredo Pacheco's announce, my Lubuntu 13.10 is a fresh
install from downloaded ISO, after reformatted the HDD partition, yet I
get the same problem: wired  wireless network was not available. That's
why I'm here.

The 1st solution in the thread, killing the NetworkManager process using
sudo killall NetworkManager works for me. I think executing: 'nmcli nm
sleep false' would work as well.

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

Title:
  [logind] stuck in PrepareForSleep, causing network and other services
  to not resume

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

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


[Bug 1184262] Re: [logind] stuck in PrepareForSleep, causing network and other services to not resume

2013-10-27 Thread Tong Sun
I remember reading the following but it took me more than 3 rounds of
careful reading to find it again. So, re-posting again:

Evan Huus (eapache) wrote:

 it's not even a NetworkManager bug - whatever is supposed to be
 sending that signal to nm isn't sending it (correctly...)
 
 I have noticed that in cases where this bug appears, other power
 management options also fail - trying to suspend again from the
 gear menu does nothing, I have to run pm-suspend from the
 cli. This indicates to me that some whole underlying subsystem is
 getting confused, and that other components may also need to be
 kicked - NetworkManager is just the most obvious one people
 notice right away.

I believe this is the most accurate description of the problem:

- it's not merely a NetworkManager bug
- the whole suspend/wake up mechanize is not working properly
- NetworkManager is just the most obvious one people notice right away

On my machine, Acer Aspire AS5536, if I close the lid then open  wake
it up, my wired  wireless network will be gone. If I close the lid a
second time, the machine won't even go to the suspend stage again.

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

Title:
  [logind] stuck in PrepareForSleep, causing network and other services
  to not resume

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

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


[Bug 1071029] Re: pbuilder-scripts needs man pages or docs

2013-10-23 Thread Tong Sun
I've exhausted my Internet search and have found two articles on how to
use pbuilder-scripts:

http://www.mattfischer.com/blog/?p=514
http://askubuntu.com/questions/53014/why-use-sbuild-over-pbuilder

They are very good. But the problem is that they are *wrong* at the same
time. E.g.,

http://www.mattfischer.com/blog/?p=514 says,

To avoid polluting the root folder, I generally lay the folders out
like this:

~/Projects/raring-i386/project/project-0.52

Then I just do this


cd ~/Projects/raring-i386/project/project-0.52
pbuild

It never works for me that way. Whenever I use pbuild, I will always
get:

$ pbuild
Could not determine project.  Please specify one with -p.

Also it doesn't show how to use the pget from the package to get the
source before building.

Moreover, when I tried the pget from the package, the result is not
consistent with above folder layout. E.g., when try to pget pbuilder-
scripts source, the folder layout I get is

~/Projects/saucy/pbuilder-scripts-19

instead of the recommended

~/Projects/saucy/pbuilder-scripts/pbuilder-scripts-19

Furthermore, http://askubuntu.com/questions/53014/why-use-sbuild-over-
pbuilder says,

# 'quantal-armhf' is the name of the chroot created earlier
# results in downloading package to: ~/Projects/quantal-armhf/casper/
pget quantal-armhf casper

and I found that wrong as well:

$ pget saucy pbuilder-scripts
Could not determine project.  Please specify one with -p.

The only I get it working is:

$ pget -p saucy pbuilder-scripts
I: Building the build Environment
I: extracting base tarball [/var/cache/pbuilder/saucy.tgz]
...

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

Title:
  pbuilder-scripts needs man pages or docs

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

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


[Bug 1243366] [NEW] pcreate from pbuilder-scripts unable to help building Debian packages on Ubuntu

2013-10-22 Thread Tong Sun
Public bug reported:

Hi,

If I want to build Debian packages on Ubuntu, I have to add Debian
distribution name, Debian mirror and key location to pbuilder command
line like this:

sudo pbuilder create --distribution squeeze --mirror
ftp://ftp.us.debian.org/debian/ --debootstrapopts --
keyring=/usr/share/keyrings/debian-archive-keyring.gpg

but given the limited options available in pcreate [1], pcreate seems
unable to cut it.

thanks

[1]
I see that pcreate has only a few limited options:

Usage: pcreate [-c COMPONENTS] [-e EXTRA PACKAGES] [-s SOURCES]
   -a ARCH -d DIST PROJECT

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  pcreate from pbuilder-scripts unable to help building Debian packages
  on Ubuntu

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

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


[Bug 1243366] Re: pcreate from pbuilder-scripts unable to help building Debian packages on Ubuntu

2013-10-22 Thread Tong Sun
** Package changed: ubuntu = pbuilder-scripts (Ubuntu)

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

Title:
  pcreate from pbuilder-scripts unable to help building Debian packages
  on Ubuntu

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

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


[Bug 1239325] [NEW] Installs fail in ubuntu12.04 for python3.2

2013-10-13 Thread Loïc AroundThe Sun
Public bug reported:

I am in ubuntu12.04 with python3.2
dateutil-2.1

** I install with easy_install3 python-dateutil **

Traceback (most recent call last):
  File /usr/bin/easy_install3, line 9, in module
load_entry_point('distribute==0.6.24dev-r0', 'console_scripts', 
'easy_install')()
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 1931, in main
with_ei_usage(lambda:
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 1912, in with_ei_usage
return f()
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 1935, in lambda
distclass=DistributionWithoutHelpCommands, **kw
  File /usr/lib/python3.2/distutils/core.py, line 148, in setup
dist.run_commands()
  File /usr/lib/python3.2/distutils/dist.py, line 917, in run_commands
self.run_command(cmd)
  File /usr/lib/python3.2/distutils/dist.py, line 936, in run_command
cmd_obj.run()
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 368, in run
self.easy_install(spec, not self.no_deps)
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 608, in easy_install
return self.install_item(spec, dist.location, tmpdir, deps)
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 638, in install_item
dists = self.install_eggs(spec, download, tmpdir)
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 828, in install_eggs
return self.build_and_install(setup_script, setup_base)
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 1105, in build_and_install
self.run_setup(setup_script, setup_base, args)
  File /usr/lib/python3/dist-packages/setuptools/command/easy_install.py, 
line 1094, in run_setup
run_setup(setup_script, args)
  File /usr/lib/python3/dist-packages/setuptools/sandbox.py, line 31, in 
run_setup
lambda: exec(compile(open(
  File /usr/lib/python3/dist-packages/setuptools/sandbox.py, line 73, in run
return func()
  File /usr/lib/python3/dist-packages/setuptools/sandbox.py, line 34, in 
lambda
{'__file__':setup_script, '__name__':'__main__'})
  File setup.py, line 16, in module
  File /usr/lib/python3.2/encodings/ascii.py, line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 193: 
ordinal not in range(128)

or 
** pip3.2 install python-dateutil **

Downloading/unpacking python-dateutil
  Downloading python-dateutil-2.1.tar.gz (152kB): 152kB downloaded
  Running setup.py egg_info for package python-dateutil
Traceback (most recent call last):
  File string, line 16, in module
  File /tmp/pip_build_root/python-dateutil/setup.py, line 16, in module
open(TOPDIR + /dateutil/__init__.py).read()).group(1)
  File /usr/lib/python3.2/encodings/ascii.py, line 26, in decode
return codecs.ascii_decode(input, self.errors)[0]
UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position 193: 
ordinal not in range(128)
Complete output from command python setup.py egg_info:
Traceback (most recent call last):

  File string, line 16, in module

  File /tmp/pip_build_root/python-dateutil/setup.py, line 16, in
module

open(TOPDIR + /dateutil/__init__.py).read()).group(1)

  File /usr/lib/python3.2/encodings/ascii.py, line 26, in decode

return codecs.ascii_decode(input, self.errors)[0]

UnicodeDecodeError: 'ascii' codec can't decode byte 0xc3 in position
193: ordinal not in range(128)


Cleaning up...
Command python setup.py egg_info failed with error code 1 in 
/tmp/pip_build_root/python-dateutil
Storing complete log in /root/.pip/pip.log

** In /root/.pip/pip.log **
Exception information:
Traceback (most recent call last):
  File 
/usr/local/lib/python3.2/dist-packages/pip-1.4.1-py3.2.egg/pip/basecommand.py,
 line 134, in main
status = self.run(options, args)
  File 
/usr/local/lib/python3.2/dist-packages/pip-1.4.1-py3.2.egg/pip/commands/install.py,
 line 236, in run
requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, 
bundle=self.bundle)
  File /usr/local/lib/python3.2/dist-packages/pip-1.4.1-py3.2.egg/pip/req.py, 
line 1134, in prepare_files
req_to_install.run_egg_info()
  File /usr/local/lib/python3.2/dist-packages/pip-1.4.1-py3.2.egg/pip/req.py, 
line 259, in run_egg_info
command_desc='python setup.py egg_info')
  File 
/usr/local/lib/python3.2/dist-packages/pip-1.4.1-py3.2.egg/pip/util.py, line 
670, in call_subprocess
% (command_desc, proc.returncode, cwd))
pip.exceptions.InstallationError: Command python setup.py egg_info failed with 
error code 1 in /tmp/pip_build_root/python-dateutil

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is 

[Bug 598465] Re: libroot-python-dev package required for non-development use of PyROOT

2013-06-06 Thread Lifeng Sun
** Changed in: root-system (Ubuntu)
   Status: Fix Committed = Fix Released

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

Title:
  libroot-python-dev package required for non-development use of PyROOT

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

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


[Bug 1022606] Re: Black screen with mouse pointer after booting Ubuntu using monitor with 1680x1050 resolution

2013-06-05 Thread Botao Sun
For project linaro-ubuntu, Linaro has switched from GUI based ubuntu
image to solid command line console, and this ubuntu desktop display
test is no longer applicable.

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

Title:
  Black screen with mouse pointer after booting Ubuntu using monitor
  with 1680x1050 resolution

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

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


[Bug 150960] Re: glassfish has no startup script

2013-05-31 Thread sun
The only glassfish init script I was able to find that is remotely correct is 
this:
http://www.lyonlabs.org/howto/glassfish-3.0.1

(via parent article: http://www.lyonlabs.org/howto/howdoi-glassfish.html
)

I didn't test it myself yet, but upon a cursory look, it seems to have
everything that is required.  All the other init scripts that have been
uploaded here or are referenced across the net aren't using lsb and
various validators will complain.

We're going to try that script, correct it where necessary, and most
likely also move it into a github repo over the next few weeks.

It is true that the init script should be distributed with the upstream
source package, but it certainly doesn't hurt to come up with a working
script first, so as to propose a concrete solution for inclusion
afterwards.

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

Title:
  glassfish has no startup script

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

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


[Bug 1181902] Re: Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze under certain conditions

2013-05-20 Thread Tong Sun
for xserver-xorg-video-nouveau

** Package changed: ubuntu = xserver-xorg-video-nouveau (Ubuntu)

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

Title:
  Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze
  under certain conditions

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

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


[Bug 1181902] [NEW] Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze under certain conditions

2013-05-19 Thread Tong Sun
Public bug reported:

Hi,

This only happens to Ubuntu 13.04, as my GeForce 6150SE card was working
fine for Ubuntu 12.10. The Nouveau driver glitch will cause my whole
system to freeze under certain conditions.

I first get my system freeze when starting virtualbox, which is
installed from the offical Oracle virtualbox PPA. Duplicated several
times -- Freshly boot into X, then start virtualbox from within xterm
via virtualbox , 2 seconds later my whole system freeze up.

Google search indicated that it might be cause by the offical Oracle
virtualbox PPA, so I followed the advice to switch to the offical Ubuntu
virtualbox from the software center, but get into system freeze doing
exactly the same thing. Duplicated several times as well.

I was about to conclude that it is the virtualbox's problem when I
suddenly remember that I've got into such system freeze before doing
something entirely different, because the symptom is exactly the same.
So I tried again -- startx -- :1 to get me into another X session, and
quit.

Yes, then and there, I get into such system freeze again. The symptom is
that the display turned black, then a random pattern tiled across the
whole screen.

Installing the closed source additional driver (nvidia) to replace the
Nouveau driver solve the problem, which in turn proved that my suspicion
was right -- it *is* the Nouveau driver that is causing the problem.

Thanks

PS.

Comparing with the previous Xorg.1.log, the lines that didn't get output
are:

 (II) NOUVEAU(0): EDID vendor ACR, prod id 426
 (II) NOUVEAU(0): Using EDID range info for horizontal sync
 (II) NOUVEAU(0): Using EDID range info for vertical refresh
 (II) NOUVEAU(0): Printing DDC gathered Modelines:
 . . . 

The whole unloading part (filtered by sed 's/\[[^]]*]//') of my
previous Xorg.1.log is at http://paste.debian.net/5260/, the whole un-
filtered file is at http://paste.debian.net/5261/.

Here is my GeForce 6150SE card:

$ lspci | grep VGA
00:0d.0 VGA compatible controller: NVIDIA Corporation C61 [GeForce 6150SE 
nForce 430] (rev a2)

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze
  under certain conditions

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

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


[Bug 1181902] Re: Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze under certain conditions

2013-05-19 Thread Tong Sun
Detailed discussion at
https://answers.launchpad.net/ubuntu/+question/229228

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

Title:
  Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze
  under certain conditions

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

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


[Bug 1181902] Re: Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze under certain conditions

2013-05-19 Thread Tong Sun
In case the new log is necessary, 
http://paste.debian.net/5272/

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

Title:
  Nouveau driver glitch on Ubuntu 13.04 will cause system to freeze
  under certain conditions

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

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


[Bug 982961] Re: RATEEST and statistic modules are broken

2013-03-17 Thread Yucong Sun
when would this be released ??!!!

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

Title:
  RATEEST and statistic modules are broken

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

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


[Bug 1108950] [NEW] package qmail 1.06-4 failed to install/upgrade: 子进程 已安装 post-installation 脚本 返回了错误号 1

2013-01-29 Thread Sun Kai
Public bug reported:

正在设置 qmail (1.06-4) ...

The hostname -f command returned: $1

Your system needs to have a fully qualified domain name (fqdn) in
order to install the var-qmail packages.

Installation aborted.

dpkg:处理 qmail (--configure)时出错:
 子进程 已安装 post-installation 脚本 返回了错误号 1
dpkg:依赖关系问题使得 qmail-run 的配置工作不能继续:
 qmail-run 依赖于 qmail (= 1.06-2.1);然而:
  软件包 qmail 尚未配置。
dpkg:处理 qmail-run (--configure)时出错:
 依赖关系问题 - 仍未被配置
由于已经达到 MaxReports 限制,没有写入 apport 报告。
在处理时有错误发生:
 qmail
 qmail-run
E: Sub-process /usr/bin/dpkg returned an error code (1)

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: qmail 1.06-4
ProcVersionSignature: Ubuntu 3.2.0-36.57-generic 3.2.35
Uname: Linux 3.2.0-36-generic i686
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.1
AptOrdering:
 qmail: Configure
 qmail-run: Configure
Architecture: i386
Date: Tue Jan 29 22:53:28 2013
ErrorMessage: 子进程 已安装 post-installation 脚本 返回了错误号 1
InstallationMedia: Ubuntu 10.04 LTS Lucid Lynx - Release i386 (20100429)
MarkForUpload: True
SourcePackage: netqmail
Title: package qmail 1.06-4 failed to install/upgrade: 子进程 已安装 
post-installation 脚本 返回了错误号 1
UpgradeStatus: Upgraded to precise on 2013-01-28 (1 days ago)

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


** Tags: apport-package i386 precise

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

Title:
  package qmail 1.06-4 failed to install/upgrade: 子进程 已安装 post-
  installation 脚本 返回了错误号 1

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

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

[Bug 1099873] [NEW] oggenc raw recording: Stream error: Invalid argument

2013-01-15 Thread Tong Sun
Public bug reported:

Hi,

Seem to me it is impossible to record raw audio of 16 bit signed little
endian, 2 channel 44100kHz with oggenc, under precise at least.

According to 
http://unix.stackexchange.com/questions/45837/pipe-the-output-of-parec-to-sox
http://thisisabore.net/tag/CLI

it should be as simple as

oggenc --raw -o test.ogg -

However, that always gives me the following error:

Encoding standard input to 
 test.ogg 
at quality 3.00
Stream error: Invalid argument


Done encoding file test.ogg

File length:  0m 00.0s
Elapsed time: 0m 00.0s
Rate: 0.
Average bitrate: inf kb/s

It's been working before according to the listed sources, could it be a
bug of oggenc in precise?

can you try it with your release please?

BTW, to get the correct MONITOR device, use this


MONITOR=$(pactl list | egrep -A2 '^(\*\*\* )?Source #' | \
Name: .*\.monitor$' | awk '{print $NF}' | tail -n1)

ref: http://www.outflux.net/blog/archives/2009/04/19/recording-from-
pulseaudio/

Thanks

** Affects: vorbis-tools (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  oggenc raw recording: Stream error: Invalid argument

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

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


[Bug 516018] Re: cups 400 Bad Request for fully qualified host name

2012-12-20 Thread sun
That's still open with Ubuntu Precise 12.04 LTS.
The fix described works for me.

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

Title:
  cups 400 Bad Request for fully qualified host name

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

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


Re: [Bug 451224] Re: No ipv6 traffic shown in iptraf

2012-11-13 Thread Yucong Sun
that sounds good work, ubuntu just port whatever get admited to debian , so
you may want to submit to debian first.

I was hoping to get sometime to get this useful tool working as well.


On Tue, Nov 13, 2012 at 5:56 AM, Koos van den Hout k...@kzdoos.xs4all.nlwrote:

 Quoting Binoy Babu who wrote on Tue 2012-11-06 at 05:44:

  Last version of iptraf was released on September 19, 2005. I don't think
  anybody is maintains it. Just another dead project.

 I managed to build a working iptraf with ipv6 support using the patches
 from the url below and one extra change

 https://aur.archlinux.org/packages.php?ID=42508

 which is for me a working solution but I don't know if ubuntu is willing to
 use it.

 Koos van den Hout

 --
 The Virtual Bookcase, the site about books, book   | Koos van den Hout
 news and reviews http://www.virtualbookcase.com/   | http://idefix.net/
 PGP keyid DSS/1024 0xF0D7C263  | IPv6 enabled!

 --
 You received this bug notification because you are subscribed to iptraf
 in Ubuntu.
 https://bugs.launchpad.net/bugs/451224

 Title:
   No ipv6 traffic shown in iptraf

 Status in “iptraf” package in Ubuntu:
   Confirmed
 Status in “iptraf” package in Debian:
   Confirmed

 Bug description:
   Binary package hint: iptraf

   With the growth in ipv6 traffic it becomes necessary to be able to
   'see' this when viewing network traffic with programs such as iptraf.
   At the moment it is only shown as 'Non-IP traffic'.

   lsb_release -rd
   Description:Ubuntu 8.04.3 LTS
   Release:8.04

   iptraf:
 Installed: 3.0.0-6
 Candidate: 3.0.0-6
 Version table:
*** 3.0.0-6 0
   500 http://nl.archive.ubuntu.com hardy/main Packages
   100 /var/lib/dpkg/status

   ProblemType: Bug
   Architecture: i386
   Date: Wed Oct 14 14:12:13 2009
   Dependencies:
libgcc1 1:4.2.4-1ubuntu4
gcc-4.2-base 4.2.4-1ubuntu4
libncurses5 5.6+20071124-1ubuntu2
libc6 2.7-10ubuntu5
   DistroRelease: Ubuntu 8.04
   NonfreeKernelModules: wl
   Package: iptraf 3.0.0-6
   PackageArchitecture: i386
   ProcEnviron:

  PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
LANG=en_US.UTF-8
SHELL=/bin/bash
   SourcePackage: iptraf
   Uname: Linux 2.6.24-24-generic i686

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


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

Title:
  No ipv6 traffic shown in iptraf

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

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

[Bug 1078116] [NEW] Traditional emacs color configuration no longer works since 12.04

2012-11-12 Thread Tong Sun
Public bug reported:

Hi,

I notice that the emacs color configuration behavior has changed since 12.04. 
My 10+ years of emacs color configuration is now broken, and nowhere did I 
found on the internet talking about such change. 

To duplicate:

$ cat  ~/.Xdefaults
Emacs.Foreground: honeydew
Emacs.Background: black
Emacs*cursorColor: yellow

Then start emacs with

emacs -q --no-site-file 

under X.

emacs should start with the designated color, however, in Ubuntu 12.04,
it will always start black on white.

Please verify.

Thanks

 emacs_23.3+1-1ubuntu9.1
 emacs23_23.3+1-1ubuntu9.1
 emacs23-bin-common_23.3+1-1ubuntu9.1
 emacs23-common_23.3+1-1ubuntu9.1
 emacsen-common_1.4.22ubuntu1

$ apt-cache policy emacs
emacs:
  Installed: 23.3+1-1ubuntu9.1
  Candidate: 23.3+1-1ubuntu9.1
  Version table:
 *** 23.3+1-1ubuntu9.1 0
500 http://us.archive.ubuntu.com/ubuntu/ precise-updates/main amd64 
Packages
500 http://security.ubuntu.com/ubuntu/ precise-security/main amd64 
Packages
100 /var/lib/dpkg/status
 23.3+1-1ubuntu9 0
500 http://us.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages

** Affects: emacs-defaults (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Traditional emacs color configuration no longer works since 12.04

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

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


[Bug 1072364] Re: HDMI stop working for Ubuntu 12.10

2012-10-30 Thread Tong Sun
Oh, forgot to mention, although the video/image is not shown on my TV,
the sound play though HDMI just fine.

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

Title:
  HDMI stop working for Ubuntu 12.10

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

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


[Bug 1072364] [NEW] HDMI stop working for Ubuntu 12.10

2012-10-28 Thread Tong Sun
Public bug reported:

Hi,

The ATI open source driver used to be working for my Acer Aspire AS5536
laptop's HDMI output (both 10.10 and 11.10 worked), but it doesn't work
any more in Ubuntu 12.10 -- My TV always shows Unsupported no matter
which option that I tired.

This is a fresh install.

what other info would you think is relevant and required?

Thanks

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  HDMI stop working for Ubuntu 12.10

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

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


[Bug 1072364] Re: HDMI stop working for Ubuntu 12.10

2012-10-28 Thread Tong Sun
** Package changed: ubuntu = xserver-xorg-video-ati (Ubuntu)

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

Title:
  HDMI stop working for Ubuntu 12.10

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

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


[Bug 1072364] Re: HDMI stop working for Ubuntu 12.10

2012-10-28 Thread Tong Sun
Found out my ATI Radeon card:

VGA compatible controller: ATI Technologies Inc RS780M/RS780MN [Radeon
HD 3200 Graphics]

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

Title:
  HDMI stop working for Ubuntu 12.10

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

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


[Bug 824708] Re: aptitude can no longer show changelogs: Changelog download failed: Download queue destroyed.

2012-10-26 Thread Yucong Sun
This is still happening on my 12.04 .1 LTS  x64

aptitude version is  0.6.6-1unbutu1

Please re-verify the necessary release is really released

** Tags removed: verification-done
** Tags added: verification-needed

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

Title:
  aptitude can no longer show changelogs: Changelog download failed:
  Download queue destroyed.

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

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


[Bug 1061852] [NEW] Unity Application Lens slow to load

2012-10-04 Thread R Sun
Public bug reported:

WHAT HAPPENS
--
Log into the system
Launch the dash with the 'window' key
Start typing 'chr'...

I see my files appearing in the search results
The application lens results appear ~10 - 15 seconds later

WHAT IS DESIRABLE
---
The application lens results appear immediately


Most users would login into the system and launch a web browser
Optimal unity experience demands that their browser or mail client shows up in 
the dash instantaneously

Also this behaviour has worsened recently (after upgrade to 12.04)

ProblemType: Bug
DistroRelease: Ubuntu 12.04
Package: unity 5.16.0-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-31.50-generic-pae 3.2.28
Uname: Linux 3.2.0-31-generic-pae i686
ApportVersion: 2.0.1-0ubuntu13
Architecture: i386
CompizPlugins: 
[core,composite,opengl,decor,resize,commands,place,regex,move,grid,session,snap,vpswitch,imgpng,gnomecompat,mousepoll,put,animation,compiztoolbox,expo,wall,ezoom,workarounds,unitymtgrabhandles,fade,scale,unityshell]
Date: Fri Oct  5 01:13:34 2012
EcryptfsInUse: Yes
InstallationMedia: Ubuntu 12.04 LTS Precise Pangolin - Beta i386 (20120328)
SourcePackage: unity
UpgradeStatus: No upgrade log present (probably fresh install)

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


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

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

Title:
  Unity Application Lens slow to load

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

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


[Bug 1061852] Re: Unity Application Lens slow to load

2012-10-04 Thread R Sun
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1061852

Title:
  Unity Application Lens slow to load

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

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


[Bug 1009663]

2012-09-04 Thread Big-sun
I can confirm this bug under Ubuntu 12.04(LO 3.5.4) and Gentoo linux(LO 3.5.6)
pdfimport extension can't import images properly.

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

Title:
  [Upstream] PDF File Imports Without Image

To manage notifications about this bug go to:
https://bugs.launchpad.net/df-libreoffice/+bug/1009663/+subscriptions

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


[Bug 1017127] Re: package ttf-root-installer (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: New = Fix Released

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

Title:
  package ttf-root-installer (not installed) failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 4

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

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


[Bug 958023] Re: package ttf-root-installer 5.18.00-2.3ubuntu4 failed to install/upgrade: подпроцесс установлен сценарий post-installation возвратил код ошибки 4

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: New = Fix Released

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

Title:
  package ttf-root-installer 5.18.00-2.3ubuntu4 failed to
  install/upgrade: подпроцесс установлен сценарий post-installation
  возвратил код ошибки 4

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

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

[Bug 512600] Re: import ROOT - ImportError: No module named libPyROOT

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: New = Fix Released

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

Title:
  import ROOT - ImportError: No module named libPyROOT

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

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


[Bug 939317] Re: package ttf-root-installer 5.18.00-2.3ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2012-08-14 Thread Lifeng Sun
*** This bug is a duplicate of bug 846823 ***
https://bugs.launchpad.net/bugs/846823

** This bug has been marked a duplicate of bug 846823
   package ttf-root-installer (not installed) failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 4

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

Title:
  package ttf-root-installer 5.18.00-2.3ubuntu4 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 4

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

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


[Bug 846823] Re: package ttf-root-installer (not installed) failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  package ttf-root-installer (not installed) failed to install/upgrade:
  subprocess installed post-installation script returned error exit
  status 4

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

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


[Bug 628110] Re: package ttf-root-installer 5.18.00-2.3ubuntu4 failed to install/upgrade: subprocess installed post-installation script returned error exit status 4

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  package ttf-root-installer 5.18.00-2.3ubuntu4 failed to
  install/upgrade: subprocess installed post-installation script
  returned error exit status 4

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

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


[Bug 537642] Re: the package 'root-system-bin' is not installable because a package for 'libkrb53' does not exist

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: New = Fix Released

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

Title:
  the package 'root-system-bin' is not installable because a package for
  'libkrb53' does not exist

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

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


[Bug 349860] Re: package ttf-root-installer 5.18.00-2.3ubuntu2 failed to install/upgrade:

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: Confirmed = Fix Released

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

Title:
  package ttf-root-installer 5.18.00-2.3ubuntu2 failed to
  install/upgrade:

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

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


[Bug 306171] Re: mislocated libraries ?

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: New = Fix Released

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

Title:
  mislocated libraries ?

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

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


[Bug 627375] Re: Package description misplaces Web site link

2012-08-14 Thread Lifeng Sun
fixed in 5.34.00-1

** Changed in: root-system (Ubuntu)
   Status: New = Fix Released

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

Title:
  Package description misplaces Web site link

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

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


[Bug 598465] Re: libroot-python-dev package required for non-development use of PyROOT

2012-08-14 Thread Lifeng Sun
will fix in 5.34.01-1

** Changed in: root-system (Ubuntu)
   Status: New = Fix Committed

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

Title:
  libroot-python-dev package required for non-development use of PyROOT

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

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


[Bug 1029984] [NEW] Dell Inspiron 6000 fan does not stop running

2012-07-27 Thread Sith Sun
Public bug reported:

I just installed Ubuntu 12,04 LTS, and the fan does not stop running. It
even goes full blast when I'm not doing anything. It's still running as
I'm speaking. I don't know much about Linux, but I know this is a sure
problem that can cause system failures, so please help me to fix this
problem, or I'm going to have to go back to Windows because I don't want
my computer to die out before 5 months.

** Affects: ubuntu
 Importance: Undecided
 Status: New

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

Title:
  Dell Inspiron 6000 fan does not stop running

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

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


[Bug 945735] Re: problem with shutdown ubuntu 11.10 x64

2012-07-19 Thread Aaron Sun
I found a temporary solution:

sudo cat /etc/default/grub

#GRUB_CMDLINE_LINUX_DEFAULT=acpi=off splash
GRUB_CMDLINE_LINUX_DEFAULT=quiet splash acpi=force

sudo update-grub

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

Title:
  problem with shutdown ubuntu 11.10 x64

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

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


[Bug 967174] Re: Reboot fails in Ubuntu

2012-05-16 Thread Botao Sun
Snowball board reboots failed on hardware pack:

http://snapshots.linaro.org/precise/hwpacks/lt-snowball-x11-base/65
/hwpack_linaro-lt-snowball-x11-base_20120514-65_armhf_supported.tar.gz

with ubuntu image:

http://snapshots.linaro.org/precise/images/ubuntu-desktop/158/linaro-
precise-ubuntu-desktop-20120515-158.tar.gz

Below is the serial console log output, then nothing happens:

root@linaro-ubuntu-desktop:~# reboot
root@linaro-ubuntu-desktop:~#   
Broadcast message from root@linaro-ubuntu-desktop   
(/dev/ttyAMA2) at 5:29 ...  

The system is going down for reboot NOW!
[  270.251159] init: Failed to create pty - disabling logging for job   
Checking for running unattended-upgrades:   
[  270.262268] init: Failed to create pty - disabling logging for job   
[  270.282409] init: Failed to create pty - disabling logging for job   
[  281.970306] Bluetooth: BTCG2900 NULL supplied for driver_data
[  281.989868] Bluetooth: BTCG2900 NULL supplied for info   
[  282.503784]  
[  282.503814] [4fb48cbc:1d5e97b7] CG2900_FM_Driver: cg2900_fm_switch_off: Inva0
[  282.514831]  
[  282.514862] [4fb48cbc:1e07a0b0] CG2900_FM_Driver: cg2900_fm_deinit: Already d
modem-manager[]: info  Caught signal 15, shutting down... 

[  286.701934] Restarting system.

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

Title:
  Reboot fails in Ubuntu

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

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


<    1   2   3   4   5   >