[Bug 902223] Re: nginx reloading not working with IPv6 enabled

2012-01-15 Thread Alessio Caiazza
I've installed it and tried to reload the configuration without any
problem.

Now it's runing on my production server.

Thank you

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

Title:
  nginx reloading not working with IPv6 enabled

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

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


[Bug 902223] [NEW] nginx reloading not working with IPv6 enabled

2011-12-09 Thread Alessio Caiazza
Public bug reported:

I've an ubuntu 10.04.3 server that can't reload nginix configuration due
to the following bug.

From: http://mailman.nginx.org/pipermail/nginx-
devel/2010-April/000176.html


The function ngx_cmp_sockaddr contained a typo which prevented nginx
from reloading, because nginx tried to add a socket multiple times
to an epoll descriptor.

--- src/core/ngx_cycle.c~   2009-10-26 17:22:24.0 +0100
+++ src/core/ngx_cycle.c2010-04-11 21:14:43.997932783 +0200
@@ -847,7 +847,7 @@
 sin61 = (struct sockaddr_in6 *) sa1;
 sin62 = (struct sockaddr_in6 *) sa2;
 
-if (sin61-sin6_port != sin61-sin6_port) {
+if (sin61-sin6_port != sin62-sin6_port) {
 return NGX_DECLINED;
 }

If nginx listened on an IPv6 address on multiple ports (e.g. [::]:80
and [::]:443), the port is ignored and thus a socket is added multiple
times, because the sockets are kept an a linked list and once a match
is found the list is not searched any further and the first socket
gets always selected and added via epoll_ctl.

** Affects: nginx (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/902223

Title:
  nginx reloading not working with IPv6 enabled

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

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


[Bug 750437] Re: fglrx hard lockup on shutdown

2011-05-23 Thread Alessio Caiazza
Same here with an integrated ATI Radeon 4250

01:05.0 VGA compatible controller: ATI Technologies Inc RS880 [Radeon HD 4250] 
(prog-if 00 [VGA controller])
Subsystem: Giga-byte Technology Device d000
Flags: bus master, fast devsel, latency 0, IRQ 18
Memory at d000 (32-bit, prefetchable) [size=256M]
I/O ports at ee00 [size=256]
Memory at fdfe (32-bit, non-prefetchable) [size=64K]
Memory at fde0 (32-bit, non-prefetchable) [size=1M]
Expansion ROM at unassigned [disabled]
Capabilities: access denied
Kernel driver in use: fglrx_pci
Kernel modules: radeon

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

Title:
  fglrx hard lockup on shutdown

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


[Bug 737838] Re: No way to change Tasque Preferences without a systray icon

2011-05-10 Thread Alessio Caiazza
I'm getting crazy with this autotools stuffs.

I made a better patch that enable/disable menu entries like in the original 
tray icon popmenu.
I've also recovered the tooltip feature with a label line in AppIndicator.


I'm waiting for a review on gnome bugzilla ( 
https://bugzilla.gnome.org/show_bug.cgi?id=649670 )  but I backported my patch 
to tasque 0.19 so it can be applied on natty also.

#instructions
get the source from git: git clone git://git.gnome.org/tasque
update to 0.1.9: git checkout TASQUE_0_1_9
apply my patch
do the autogen voodoo
make dist
than use tasque-0.1.9.tar.gz for making a deb


Here there's a prebuilt package: 
http://dl.dropbox.com/u/19623560/tasque_0.1.9-1_all.deb

** Bug watch added: GNOME Bug Tracker #649670
   https://bugzilla.gnome.org/show_bug.cgi?id=649670

** Patch added: appindicator.diff
   
https://bugs.launchpad.net/ubuntu/+source/tasque/+bug/737838/+attachment/2122827/+files/appindicator.diff

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

Title:
  No way to change Tasque Preferences without a systray icon

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


[Bug 737838] Re: No way to change Tasque Preferences without a systray icon

2011-05-06 Thread Alessio Caiazza
I coded a patch. It's a quick fix but it works.


** Patch added: unity_indicator.patch
   
https://bugs.launchpad.net/ubuntu/+source/tasque/+bug/737838/+attachment/2116991/+files/unity_indicator.patch

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

Title:
  No way to change Tasque Preferences without a systray icon

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


[Bug 737838] Re: No way to change Tasque Preferences without a systray icon

2011-05-06 Thread Alessio Caiazza
And this one is the build deps patch.

I'm not familiar with automake/autoconf :(

Instructions:

apt-get source tasque

copy both patches inside tasque-0.1.9/debian/patches

add the following lines at the end of tasque-0.1.9/debian/patches/series
unity_deps.patch
unity_indicator.patch

cd tasque-0.1.9
dpkg-buildpackage

there's an additionail build dependencies, libappindicator0.1-cil-dev

Here[1] you can find prebuild a deb package.

[1] http://dl.dropbox.com/u/1420974/tasque_0.1.9-1_all.deb

** Patch added: unity_deps.patch
   
https://bugs.launchpad.net/ubuntu/+source/tasque/+bug/737838/+attachment/2116992/+files/unity_deps.patch

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

Title:
  No way to change Tasque Preferences without a systray icon

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


[Bug 727143] Re: Windows border disappears when closing Java windows

2011-05-03 Thread Alessio Caiazza
I cannot reproduce this bug with OpenJDK-jre but only with sun-jre.

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

Title:
  Windows border disappears when closing Java windows

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


[Bug 597197] [NEW] desktopcouch don't quit after logout adn restart on login

2010-06-22 Thread Alessio Caiazza
Public bug reported:

Binary package hint: desktopcouch

After logging out lots of process related to desktopcouch didn't quit,
if you log in the respwan.

After some days of login/logout youll'find lots of process running.

$ who
adminars pts/02010-06-22 12:22 (pc-ars32.arsanita.toscana.it)

I logged in with adminars user and checked alecai's process

$ps aux | grep alecai
alecai2652  0.0  0.0   1828   556 ?S12:23   0:00 /bin/sh -e 
/usr/bin/couchdb -n -a \/etc/couchdb/default.ini\ -a 
\/etc/xdg/desktop-couch/compulsory-auth.ini\ -a 
\/home/alecai/.config/desktop-couch/desktop-couchdb.ini\ -b -r 0 -p 
/home/alecai/.cache/desktop-couch/desktop-couchdb.pid -o 
/home/alecai/.cache/desktop-couch/desktop-couchdb.stdout -e 
/home/alecai/.cache/desktop-couch/desktop-couchdb.stderr -R
alecai2680  0.0  0.0   1828   336 ?S12:23   0:00 /bin/sh -e 
/usr/bin/couchdb -n -a \/etc/couchdb/default.ini\ -a 
\/etc/xdg/desktop-couch/compulsory-auth.ini\ -a 
\/home/alecai/.config/desktop-couch/desktop-couchdb.ini\ -b -r 0 -p 
/home/alecai/.cache/desktop-couch/desktop-couchdb.pid -o 
/home/alecai/.cache/desktop-couch/desktop-couchdb.stdout -e 
/home/alecai/.cache/desktop-couch/desktop-couchdb.stderr -R
alecai2681  0.1  1.0  36020 10680 ?S12:23   0:01 
/usr/lib/erlang/erts-5.7.4/bin/beam -Bd -K true -- -root /usr/lib/erlang 
-progname erl -- -home /home/alecai -- -noshell -noinput -smp auto -sasl 
errlog_type error -pa /usr/lib/couchdb/erlang/lib/couch-0.10.0/ebin 
/usr/lib/couchdb/erlang/lib/mochiweb-r97/ebin 
/usr/lib/couchdb/erlang/lib/ibrowse-1.5.2/ebin 
/usr/lib/couchdb/erlang/lib/erlang-oauth/ebin -eval application:load(ibrowse) 
-eval application:load(oauth) -eval application:load(crypto) -eval 
application:load(couch) -eval crypto:start() -eval ssl:start() -eval 
ibrowse:start() -eval couch_server:start([ /etc/couchdb/default.ini, 
/etc/xdg/desktop-couch/compulsory-auth.ini, 
/home/alecai/.config/desktop-couch/desktop-couchdb.ini]), receive done - 
done end. -pidfile /home/alecai/.cache/desktop-couch/desktop-couchdb.pid -heart
alecai2685  0.0  0.0   1616   444 ?Ss   12:23   0:00 heart -pid 
2681 -ht 11
alecai2688  0.0  1.0  17032 10484 ?RN   12:23   0:00 
/usr/bin/python /usr/lib/desktopcouch/desktopcouch-service
alecai2733  0.0  0.3  19368  3488 ?Ssl  12:23   0:00 
/usr/lib/couchdb/bin/couchjs /usr/share/couchdb/server/main.js
alecai3173  0.0  1.0  17020 10468 ?SN   12:31   0:00 
/usr/bin/python /usr/lib/desktopcouch/desktopcouch-service
adminars  3404  0.0  0.0   3336   812 pts/0S+   12:48   0:00 grep 
--color=auto alecai


$ lsb_release -rd
Description:Ubuntu 10.04 LTS
Release:10.04


$ apt-cache policy desktopcouch
desktopcouch:
  Installato: 0.6.4-0ubuntu3
  Candidato: 0.6.4-0ubuntu3
  Tabella versione:
 *** 0.6.4-0ubuntu3 0
500 http://it.archive.ubuntu.com/ubuntu/ lucid/main Packages
100 /var/lib/dpkg/status

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

-- 
desktopcouch don't quit after logout adn restart on login
https://bugs.launchpad.net/bugs/597197
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 455943] Re: Avatars don't appear

2010-06-18 Thread Alessio Caiazza
I'm having this bug using lucid with Xming for remote login from a
windows workstation.

How can  I provide more infomation?

-- 
Avatars don't appear
https://bugs.launchpad.net/bugs/455943
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 138331] Re: trackerd running under user after user logs out

2007-10-30 Thread Alessio Caiazza
I can't be able to reproduce this bug I think it should be caused by
other factors.

I assumed it was a trackerd problem becouse pam_mount never unmount my
home, but is was related to evolution not to trackerd

Oct 30 10:03:25 talbot gdm[7024]: pam_mount(misc.c:264)
command: /usr/bin/lsof [/home/nolith]  
Oct 30 10:03:25 talbot gdm[7024]: pam_mount(mount.c:131) lsof output
(should be empty)... 
Oct 30 10:03:25 talbot gdm[7024]: pam_mount(mount.c:100) COMMANDPID
USER   FD   TYPE DEVICE  SIZE NODE NAME 
Oct 30 10:03:25 talbot gdm[7024]: pam_mount(mount.c:100) gtk-windo 7259
nolith  cwdDIR  254,9  4096  128 /home/nolith 
Oct 30 10:03:25 talbot gdm[7024]: pam_mount(mount.c:100) evolution 7314
nolith   22u   REG  254,9 12288
14680420 /home/nolith/.evolution/addressbook/local/system/addressbook.db 
Oct 30 10:03:25 talbot gdm[7024]: pam_mount(mount.c:100) evolution 7314
nolith   23r   REG  254,9   131
14681356 
/home/nolith/.evolution/addressbook/local/system/addressbook.db.summary 

I'll keep my eyes open on this problem, but should be related to some
other causes.

-- 
trackerd running under user after user logs out
https://bugs.launchpad.net/bugs/138331
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 138331] Re: trackerd running under user after user logs out

2007-10-29 Thread Alessio Caiazza
I've got the same problem on a fresh gutsy installation with pam_mount
over encrypted partition.

** Changed in: tracker (Ubuntu)
   Status: Fix Released = New

-- 
trackerd running under user after user logs out
https://bugs.launchpad.net/bugs/138331
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 138331] Re: trackerd running under user after user logs out

2007-10-29 Thread Alessio Caiazza
$ cat tracker.log 
29 ott 2007, 17:15:09:397 - ERROR: execution of prepared query CreateService 
failed due to constraint failed with return code 19
29 ott 2007, 17:15:09:397 - ERROR: CreateService uri is 
/usr/share//applications/sun-java6-java.desktop
29 ott 2007, 17:15:09:397 - ERROR: could not get file id for 
/usr/share//applications/sun-java6-java.desktop - unable to continue indexing 
this file
29 ott 2007, 17:15:09:399 - ERROR: execution of prepared query CreateService 
failed due to constraint failed with return code 19
29 ott 2007, 17:15:09:399 - ERROR: CreateService uri is 
/usr/share//applications/sun-java6-javaws.desktop
29 ott 2007, 17:15:09:399 - ERROR: could not get file id for 
/usr/share//applications/sun-java6-javaws.desktop - unable to continue indexing 
this file

-- 
trackerd running under user after user logs out
https://bugs.launchpad.net/bugs/138331
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 138331] Re: trackerd running under user after user logs out

2007-10-29 Thread Alessio Caiazza
How can I obtain the status?
Shoul I try to kill from a root's shell or a user shell?

This is my lsof /home/nolith

** Attachment added: lsof /home/nolith
   http://launchpadlibrarian.net/10206942/lsof.txt

-- 
trackerd running under user after user logs out
https://bugs.launchpad.net/bugs/138331
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


Re: [Bug 138331] Re: trackerd running under user after user logs out

2007-10-29 Thread Alessio Caiazza

Il giorno lun, 29/10/2007 alle 17.10 +, Alessio Caiazza ha scritto:
 How can I obtain the status?

I've installed tracker-utils

$ tracker-status 
Tracker daemon's status is �Ë.

 Shoul I try to kill from a root's shell or a user shell?
$ ps aux | grep tracker
nolith9161  3.6  0.5  30264 10092 ?SNl  14:28  11:23
trackerd
nolith   17324  0.0  0.0   2988   776 pts/0R+   19:43   0:00 grep
tracker
[EMAIL PROTECTED]:~$ kill 9161
[EMAIL PROTECTED]:~$ ps aux | grep tracker
nolith   17326  0.0  0.0   2988   772 pts/0R+   19:43   0:00 grep
tracker

$ tracker-status 
Tracker daemon's status is Initializing.

May I provide some additional data?

-- 
trackerd running under user after user logs out
https://bugs.launchpad.net/bugs/138331
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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

[Bug 155880] xserver-xorg-input-evtouch causes xorg crashes on amd64

2007-10-22 Thread Alessio Caiazza
Public bug reported:

Binary package hint: xserver-xorg-input-evtouch

I've found this bug report  http://www.mail-archive.com/[EMAIL 
PROTECTED]/msg389241.html
I can confirm that gutsy amd64 suffers this bug, and the fix provided works 
great!

** Affects: xf86-input-evtouch (Ubuntu)
 Importance: Undecided
 Status: New

-- 
xserver-xorg-input-evtouch causes xorg crashes on amd64
https://bugs.launchpad.net/bugs/155880
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 86893] Re: [Feisty] Clicking on HPLIP Toolbox in gnome menu does nothing

2007-03-18 Thread Alessio Caiazza
If someone tells me the command to run for starting package manager with
python-qt selected for install I can try to implement this.

I think that the fastest way should be using Tk interface which should
be implemented by default in python.

Bye

Someone writes:

If python-qt is missing (default live session or installation from
Ubuntu/Xubuntu/Edubuntu desktop CD) pop up a Window as follows:



To run the HP Toolbox the python-qt package is nedded to be installed
which does not ship with the desktop CD due to space reasons.

Do you want to install it now?

[ Install python-qt ] [ Abort running HP Toolbox ]



If the user decides to install the package manager is started and the
python-qt package gets installed. After that HP-Toolbox gets started.

-- 
[Feisty] Clicking on HPLIP Toolbox in gnome menu does nothing
https://launchpad.net/bugs/86893

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


[Bug 83532] Re: Scripts for making a .deb don't support newest release of IBM Java on (at least) Dapper PPC.

2007-03-06 Thread Alessio Caiazza
I confirm this bug.

This fix works great.
tnx

-- 
Scripts for making a .deb don't support newest release of IBM Java on (at 
least) Dapper PPC.
https://launchpad.net/bugs/83532

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


[Bug 51419] Re: Install updates-button only refreshes update list in it_IT environement

2007-03-06 Thread Alessio Caiazza
This bug still exists on feisty ppc ubuntu.

Tnx

-- 
Install updates-button only refreshes update list in it_IT environement
https://launchpad.net/bugs/51419

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


[Bug 70718] Re: gnome-obex-send cannot find devices

2007-03-06 Thread Alessio Caiazza
Same problem on my ibook g4 with feisty.
From CLI works correcly, from GUI not.
The rc.local hacks fixed the problem.

-- 
gnome-obex-send cannot find devices
https://launchpad.net/bugs/70718

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


Re: [Bug 51419] Re: Install updates-button only refreshes update list in it_IT environement

2007-03-06 Thread Alessio Caiazza
On 3/6/07, Michael Vogt [EMAIL PROTECTED] wrote:
 @Alessio Caiazza: what version of gksu/libgksu are you using?


$ dpkg -l *gksu
Desiderato=sconosciUto/Installato/Rimosso/P:eliminato/H:bloccato
| Stato=Non/Installato/file Config./U:spacchett./conf. Fallita/H:inst.parzial.
|/ Err?=(nessuno)/H:bloc./necess.Reinst./X=entrambi (Stato,Err: maiusc.=grave)
||/ Nome   Versione   Descrizione
+++-==-==-
ii  gksu   2.0.0-1ubuntu3 graphical frontend to su

There's no libgksu installed by default in feisty.

-- 
Install updates-button only refreshes update list in it_IT environement
https://launchpad.net/bugs/51419

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


[Bug 88891] Re: texmaker crashes with segmentation fault

2007-03-04 Thread Alessio Caiazza
Same problem for me.
PPC arch

-- 
texmaker crashes with segmentation fault
https://launchpad.net/bugs/88891

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


[Bug 89413] hp-toolbox missing dependencies

2007-03-03 Thread Alessio Caiazza
Public bug reported:

Binary package hint: hplip

hp-toolbox is installed by default, but it needs python-qt3 for running,
wich isn't installed by default.

ProblemType: Bug
Date: Sat Mar  3 11:00:47 2007
DistroRelease: Ubuntu 7.04
Uname: Linux mekare 2.6.20-9-powerpc #3 Sun Feb 25 23:27:54 UTC 2007 ppc 
GNU/Linux

** Affects: hplip (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
hp-toolbox missing dependencies
https://launchpad.net/bugs/89413

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


[Bug 59848] Re: no suspend2ram on edgy (ibook g4)

2007-02-26 Thread Alessio Caiazza
After 5 monts it's still unconfirmed?
Anyone has a workaround? I consider sleep a major feature.

-- 
no suspend2ram on edgy (ibook g4)
https://launchpad.net/bugs/59848

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


[Bug 59848] Re: no suspend2ram on edgy (ibook g4)

2006-11-09 Thread Alessio Caiazza
Ok.
I made a fresh install of Ubuntu edgy.
Sleep has worked only first time.
After that I had same problem of Kubuntu.

-- 
no suspend2ram on edgy (ibook g4)
https://launchpad.net/bugs/59848

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


Re: [Bug 59848] Re: no suspend2ram on edgy (ibook g4)

2006-11-07 Thread Alessio Caiazza
I'm on KDE and just before logging in, if I clode the lid, the standby
led blink, the apple led switch off and just after a second it switch
on.
Open a lid and you can find a nice black screen.

I've tried with hibernate, wich was not installed on my machine, does
not work neither with nor without.

bye,
Alessio

2006/11/7, Matthias Jordan [EMAIL PROTECTED]:
 Can repro. On my G4 iBook it looks like this:
 In GDM (i.e. without GNOME running) the iBook goes into Standby when the 
 cover is closed. As soon as GNOME is running, closing the cover only locks 
 the screen. There is no Standby and no suspend2ram in this case. cat 
 /sys/power/state prints disk on my machine.
 As Alessio reported: suspend was no problem on my machine with Dapper.



-- 
no suspend2ram on edgy (ibook g4)
https://launchpad.net/bugs/59848

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


[Bug 59848] Re: no suspend2ram on edgy (ibook g4)

2006-10-31 Thread Alessio Caiazza
I can't suspend to ram too on my iBook G4 1GHz with edgy.
On Dapper I had any problem.

-- 
no suspend2ram on edgy (ibook g4)
https://launchpad.net/bugs/59848

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


[Bug 64053] Re: does not recognize ibook as a laptop

2006-10-10 Thread Alessio Caiazza
I tink that if formfactor is unknown does not mean that isn't a laptop
or a device with batteries.


Can you forward this bug to HAL team?

cheers

-- 
does not recognize ibook as a laptop
https://launchpad.net/bugs/64053

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


[Bug 64053] does not recognize ibook as a laptop

2006-10-04 Thread Alessio Caiazza
Public bug reported:

Binary package hint: kde-guidance-powermanager

I've noticed that kde-guidance-powermanager does not recognize ibook g4 as a 
laptop and quit.
I've fixed  /usr/share/python-support/kde-guidance/powermanage.py
 on line 99 
return ( properties[system.formfactor] == laptop or 
properties[system.formfactor] == unknown )

It's a simple workaround, the real bug may be on hal or in kernel.

** Affects: kde-guidance (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
does not recognize ibook as a laptop
https://launchpad.net/bugs/64053

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