[Bug 1071738] Re: Indicator scroll event says direction UP on 12.10 even when scrolling down

2014-07-30 Thread Ofer Chen
#test python code for gdk scroll direction
#--

#!/usr/bin/python
from gi.repository import Gtk, Gdk, AppIndicator3

if __name__ == __main__:
menu = Gtk.Menu()
quit = Gtk.MenuItem(Quit)
quit.connect(activate, Gtk.main_quit)
menu.append(quit)
menu.show_all()

def scroll(ind, steps, direction):
print steps, direction
if direction != Gdk.ScrollDirection.UP:
print Things seem ok

indicator = AppIndicator3.Indicator.new('testscroll', '',
AppIndicator3.IndicatorCategory.APPLICATION_STATUS)
indicator.set_status(AppIndicator3.IndicatorStatus.ACTIVE)
indicator.set_icon(/usr/share/pixmaps/firefox.png)
indicator.connect(scroll-event, scroll)
indicator.set_menu(menu)
Gtk.main()

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

Title:
  Indicator scroll event says direction UP on 12.10 even when scrolling
  down

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

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


[Bug 763370] Re: xorg memory leak

2011-12-06 Thread Ofer Chen
I suspect this has something to do with Nvidia's driver since I switched
video card to ATI and the issue ceased so please share your video card
while reporting this bug

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

Title:
  xorg memory leak

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

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


[Bug 131094] Re: Heavy Disk I/O harms desktop responsiveness

2011-11-18 Thread Ofer Chen
I switched to using zramswap-enabler instead of a real swap partition it
makes things a lot better if you have the ram..

sudo add-apt-repository ppa:shnatsel/zram  sudo apt-get update sudo
apt-get install zramswap-enabler

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

Title:
  Heavy Disk I/O harms desktop responsiveness

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

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


[Bug 780652] Re: Popup menus show on the 1st X server display for some applets on the 2nd display in 11.04

2011-07-26 Thread Ofer Chen
I also did some test updating the plug for proper screen detection as
explained by Andy Campbell here
https://bugzilla.gnome.org/show_bug.cgi?id=632369#c6

 I had some results with applets but I'm still searching for the
context menu entry point.


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

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

Title:
  Popup menus show on the 1st X server display for some applets on the
  2nd display in 11.04

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

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


[Bug 780652] Re: Popup menus show on the 1st X server display for some applets on the 2nd display in 11.04

2011-07-25 Thread Ofer Chen
I think patches already exists down stream.. one part of the patch you
already tried but the second part is changing the way the frame is
detecting the screen.

First Part:
--
Author: Vincent Untz vuntz gnome org
Date:   Tue Feb 22 16:18:05 2011 +0100

panel: Fix issue with context menu

 gnome-panel/panel-context-menu.c |   29 +
 1 files changed, 29 insertions(+), 0 deletions(-)
---
diff --git a/gnome-panel/panel-context-menu.c b/gnome-panel/panel-context-menu.c
index a663a44..f25bba8 100644
--- a/gnome-panel/panel-context-menu.c
+++ b/gnome-panel/panel-context-menu.c
@@ -70,6 +70,29 @@ panel_context_menu_delete_panel (PanelToplevel *toplevel)
 panel_delete (toplevel);
 }
 
+static gboolean
+panel_context_menu_check_for_screen (GtkWidget *w,
+GdkEvent *ev,
+gpointer data)
+{
+   static int times = 0;
+   if (!w) {
+   times = 0;
+   return FALSE;
+   }
+   if (ev-type != GDK_KEY_PRESS)
+   return FALSE;
+   if (ev-key.keyval == GDK_KEY_f ||
+   ev-key.keyval == GDK_KEY_F) {
+   times++;
+   if (times == 3) {
+   times = 0;
+   start_screen_check ();
+   }
+   }
+   return FALSE;
+}
+
 static void
 panel_context_menu_setup_delete_panel_item (GtkWidget *menu,
GtkWidget *menuitem)
@@ -77,6 +100,8 @@ panel_context_menu_setup_delete_panel_item (GtkWidget *menu,
PanelWidget *panel_widget;
gboolean sensitive;
 
+   panel_context_menu_check_for_screen (NULL, NULL, NULL);
+
panel_widget = menu_get_panel (menu);
 
g_assert (PANEL_IS_TOPLEVEL (panel_widget-toplevel));
@@ -177,5 +202,9 @@ panel_context_menu_create (PanelWidget *panel)
//FIXME: can we get rid of this? (needed by menu_get_panel())
g_object_set_data (G_OBJECT (retval), menu_panel, panel);
 
+   g_signal_connect (retval, event,
+ G_CALLBACK (panel_context_menu_check_for_screen),
+ NULL);
+
return retval;
 }
--

Second Part:
--
commit e5a7947b25ae2c0aee0fca0c4734db790b978acc
Author: Vincent Untz vuntz gnome org
Date:   Tue Feb 22 16:30:24 2011 +0100

panel: Fix warning

 gnome-panel/panel-applet-frame.c |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gnome-panel/panel-applet-frame.c b/gnome-panel/panel-applet-frame.c
index 8fb803c..7452542 100644
--- a/gnome-panel/panel-applet-frame.c
+++ b/gnome-panel/panel-applet-frame.c
@@ -824,7 +824,7 @@ panel_applet_frame_activating_free 
(PanelAppletFrameActivating *frame_act)
 GdkScreen *
 panel_applet_frame_activating_get_screen (PanelAppletFrameActivating 
*frame_act)
 {
-   return gtk_widget_get_screen (frame_act-panel);
+   return gtk_widget_get_screen (GTK_WIDGET (frame_act-panel));
 }
 
 PanelOrientation
--

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

Title:
  Popup menus show on the 1st X server display for some applets on the
  2nd display in 11.04

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

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


[Bug 805937] Re: smbd segfaults at least twice a day

2011-07-20 Thread Ofer Chen
I got the same error when clients are accessing the samba server at
random occurrences it happens few times a day

lsb_release -rd
Description:Ubuntu 11.04
Release:11.04

uname -a
Linux 2.6.38-10-generic #46-Ubuntu SMP Tue Jun 28 15:07:17 UTC 2011 x86_64 
GNU/Linux

apt-cache policy samba
samba:
  Installed: 2:3.5.8~dfsg-1ubuntu2.2
  Candidate: 2:3.5.8~dfsg-1ubuntu2.2
  Version table:
 *** 2:3.5.8~dfsg-1ubuntu2.2 0
500 http://archive.ubuntu.com/ubuntu/ natty-updates/main amd64 Packages
100 /var/lib/dpkg/status
 2:3.5.8~dfsg-1ubuntu2 0
500 http://archive.ubuntu.com/ubuntu/ natty/main amd64 Packages


Thread debugging using libthread_db enabled]
0x7f9b6bb191ae in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#0  0x7f9b6bb191ae in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7f9b6baadd6e in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#2  0x7f9b6e9fec53 in smb_panic (why=value optimized out) at 
lib/util.c:1471
#3  0x7f9b6e9ee2e9 in fault_report (sig=11) at lib/fault.c:52
#4  sig_fault (sig=11) at lib/fault.c:75
#5  signal handler called
#6  0x7f9b6baee5d1 in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#7  0x7f9b6e9d511e in rep_strlcpy (d=0x7fff13d66918 , s=0x0, bufsize=256) 
at ../lib/replace/replace.c:69
#8  0x7f9b6ea0b434 in connections_fetch_entry (mem_ctx=0x0, 
conn=0x7f9b7094c920, name=0x0) at lib/conn_tdb.c:65
#9  0x7f9b6e78c676 in yield_connection (conn=0x7f9b7094c920, name=0x0) at 
smbd/connection.c:33
#10 0x7f9b6e7fd7f6 in close_cnum (conn=0x7f9b7094c920, vuid=101) at 
smbd/service.c:1256
#11 0x7f9b6e7b916d in reply_tdis (req=0x7f9b70955b00) at smbd/reply.c:4912
#12 0x7f9b6e7f8bb5 in switch_message (type=113 'q', req=0x7f9b70955b00, 
size=39) at smbd/process.c:1404
#13 0x7f9b6e7f8f57 in construct_reply (inbuf=value optimized out, 
nread=39, unread_bytes=0, seqnum=0, encrypted=false, deferred_pcd=0x0, 
conn=value optimized out) at smbd/process.c:1436
#14 process_smb (inbuf=value optimized out, nread=39, unread_bytes=0, 
seqnum=0, encrypted=false, deferred_pcd=0x0, conn=value optimized out) at 
smbd/process.c:1509
#15 0x7f9b6e7f93da in smbd_server_connection_read_handler (ev=value 
optimized out, fde=value optimized out, flags=value optimized out, 
private_data=value optimized out) at smbd/process.c:2126
#16 smbd_server_connection_handler (ev=value optimized out, fde=value 
optimized out, flags=value optimized out, private_data=value optimized 
out) at smbd/process.c:2141
#17 0x7f9b6ea0e303 in run_events (ev=0x7f9b7086d430, selrtn=1, 
read_fds=0x7fff13d66d90, write_fds=0x7fff13d66d10) at lib/events.c:157
#18 0x7f9b6e7fa936 in smbd_server_connection_loop_once () at 
smbd/process.c:844
#19 smbd_process () at smbd/process.c:2455
#20 0x7f9b6ecf991e in smbd_accept_connection (ev=value optimized out, 
fde=value optimized out, flags=value optimized out, private_data=value 
optimized out) at smbd/server.c:438
#21 0x7f9b6ea0e303 in run_events (ev=0x7f9b7086d430, selrtn=1, 
read_fds=0x7fff13d670b0, write_fds=0x7fff13d67030) at lib/events.c:157
#22 0x7f9b6ea0e4f8 in s3_event_loop_once (ev=0x7f9b7086d430, 
location=value optimized out) at lib/events.c:220
#23 0x7f9b6ea0ef90 in _tevent_loop_once (ev=0x7f9b7086d430, 
location=0x7f9b6ef000c8 smbd/server.c:726) at ../lib/tevent/tevent.c:497
#24 0x7f9b6ecfa5c3 in smbd_parent_loop (argc=value optimized out, 
argv=value optimized out) at smbd/server.c:726
#25 main (argc=value optimized out, argv=value optimized out) at 
smbd/server.c:1316
A debugging session is active.

   Inferior 1 [process 4958] will be detached.

Quit anyway? (y or n) [answered Y; input not from terminal]

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

Title:
  smbd segfaults at least twice a day

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/samba/+bug/805937/+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 805937] Re: smbd segfaults at least twice a day

2011-07-20 Thread Ofer Chen
I got the same error when clients are accessing the samba server at
random occurrences it happens few times a day

lsb_release -rd
Description:Ubuntu 11.04
Release:11.04

uname -a
Linux 2.6.38-10-generic #46-Ubuntu SMP Tue Jun 28 15:07:17 UTC 2011 x86_64 
GNU/Linux

apt-cache policy samba
samba:
  Installed: 2:3.5.8~dfsg-1ubuntu2.2
  Candidate: 2:3.5.8~dfsg-1ubuntu2.2
  Version table:
 *** 2:3.5.8~dfsg-1ubuntu2.2 0
500 http://archive.ubuntu.com/ubuntu/ natty-updates/main amd64 Packages
100 /var/lib/dpkg/status
 2:3.5.8~dfsg-1ubuntu2 0
500 http://archive.ubuntu.com/ubuntu/ natty/main amd64 Packages


Thread debugging using libthread_db enabled]
0x7f9b6bb191ae in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#0  0x7f9b6bb191ae in waitpid () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7f9b6baadd6e in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#2  0x7f9b6e9fec53 in smb_panic (why=value optimized out) at 
lib/util.c:1471
#3  0x7f9b6e9ee2e9 in fault_report (sig=11) at lib/fault.c:52
#4  sig_fault (sig=11) at lib/fault.c:75
#5  signal handler called
#6  0x7f9b6baee5d1 in ?? () from /lib/x86_64-linux-gnu/libc.so.6
#7  0x7f9b6e9d511e in rep_strlcpy (d=0x7fff13d66918 , s=0x0, bufsize=256) 
at ../lib/replace/replace.c:69
#8  0x7f9b6ea0b434 in connections_fetch_entry (mem_ctx=0x0, 
conn=0x7f9b7094c920, name=0x0) at lib/conn_tdb.c:65
#9  0x7f9b6e78c676 in yield_connection (conn=0x7f9b7094c920, name=0x0) at 
smbd/connection.c:33
#10 0x7f9b6e7fd7f6 in close_cnum (conn=0x7f9b7094c920, vuid=101) at 
smbd/service.c:1256
#11 0x7f9b6e7b916d in reply_tdis (req=0x7f9b70955b00) at smbd/reply.c:4912
#12 0x7f9b6e7f8bb5 in switch_message (type=113 'q', req=0x7f9b70955b00, 
size=39) at smbd/process.c:1404
#13 0x7f9b6e7f8f57 in construct_reply (inbuf=value optimized out, 
nread=39, unread_bytes=0, seqnum=0, encrypted=false, deferred_pcd=0x0, 
conn=value optimized out) at smbd/process.c:1436
#14 process_smb (inbuf=value optimized out, nread=39, unread_bytes=0, 
seqnum=0, encrypted=false, deferred_pcd=0x0, conn=value optimized out) at 
smbd/process.c:1509
#15 0x7f9b6e7f93da in smbd_server_connection_read_handler (ev=value 
optimized out, fde=value optimized out, flags=value optimized out, 
private_data=value optimized out) at smbd/process.c:2126
#16 smbd_server_connection_handler (ev=value optimized out, fde=value 
optimized out, flags=value optimized out, private_data=value optimized 
out) at smbd/process.c:2141
#17 0x7f9b6ea0e303 in run_events (ev=0x7f9b7086d430, selrtn=1, 
read_fds=0x7fff13d66d90, write_fds=0x7fff13d66d10) at lib/events.c:157
#18 0x7f9b6e7fa936 in smbd_server_connection_loop_once () at 
smbd/process.c:844
#19 smbd_process () at smbd/process.c:2455
#20 0x7f9b6ecf991e in smbd_accept_connection (ev=value optimized out, 
fde=value optimized out, flags=value optimized out, private_data=value 
optimized out) at smbd/server.c:438
#21 0x7f9b6ea0e303 in run_events (ev=0x7f9b7086d430, selrtn=1, 
read_fds=0x7fff13d670b0, write_fds=0x7fff13d67030) at lib/events.c:157
#22 0x7f9b6ea0e4f8 in s3_event_loop_once (ev=0x7f9b7086d430, 
location=value optimized out) at lib/events.c:220
#23 0x7f9b6ea0ef90 in _tevent_loop_once (ev=0x7f9b7086d430, 
location=0x7f9b6ef000c8 smbd/server.c:726) at ../lib/tevent/tevent.c:497
#24 0x7f9b6ecfa5c3 in smbd_parent_loop (argc=value optimized out, 
argv=value optimized out) at smbd/server.c:726
#25 main (argc=value optimized out, argv=value optimized out) at 
smbd/server.c:1316
A debugging session is active.

   Inferior 1 [process 4958] will be detached.

Quit anyway? (y or n) [answered Y; input not from terminal]

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

Title:
  smbd segfaults at least twice a day

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

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


[Bug 237469] Re: GTK and QT windows stop redrawing properly

2011-05-13 Thread Ofer Chen
I can confirm this still happens in natty with latest nvidia binary
drivers 270.41.06-0ubuntu1 and Gefore 7300GT

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

Title:
  GTK and QT windows stop redrawing properly

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


[Bug 774427] Re: Cannot add applets to second X server display in 11.04

2011-05-03 Thread Ofer Chen
yes the fix works fine with one exception applet context menu appears in
the primary monitor

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

Title:
  Cannot add applets to second X server display in 11.04

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


[Bug 774427] Re: Cannot add applets to second X server display in 11.04

2011-05-03 Thread Ofer Chen
looks like a fix has been suggested for the context menu issue
http://bugzilla-attachments.gnome.org/attachment.cgi?id=179797

can someone test if it works?

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

Title:
  Cannot add applets to second X server display in 11.04

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


[Bug 774427] Re: Cannot add applets to second X server display in 11.04

2011-05-03 Thread Ofer Chen
sorry I meant this
http://git.gnome.org/browse/gnome-panel/commit/?id=8261b19d008b92ab614ca6e3797b65ca125cec34

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

Title:
  Cannot add applets to second X server display in 11.04

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


[Bug 774427] Re: Cannot add applets to second X server display in 11.04

2011-05-03 Thread Ofer Chen
maybe Vincent Untz have some insight since this has been fixed by him
before..

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

Title:
  Cannot add applets to second X server display in 11.04

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


[Bug 774427] Re: Cannot add applets to second X server display in 11.04

2011-05-02 Thread Ofer Chen
raising the importance will not help fixing the bug
it was reported yesterday and there is already a draft of a patch to solve the 
issue, be patient it will solved in a few days.

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

Title:
  Cannot add applets to second X server display in 11.04

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


[Bug 774427] Re: Cannot add applets to second X server display in 11.04

2011-05-01 Thread Ofer Chen
this is the only way I found...
gnome-session-remove gnome-panel
gdb gnome-panel
run

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

Title:
  Cannot add applets to second X server display in 11.04

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


[Bug 131094] Re: Heavy Disk I/O harms desktop responsiveness

2010-11-16 Thread Ofer Chen
i wish this look like a major improvement I'm tempted compiling the kernel 
myself... 
is there a bleeding edge kernel ppa for Maverick?

-- 
Heavy Disk I/O harms desktop responsiveness
https://bugs.launchpad.net/bugs/131094
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 131094] Re: Heavy Disk I/O harms desktop responsiveness

2010-11-16 Thread Ofer Chen
*** mainline kernels does not include Ubuntu specific drivers.

I ended up installed Natty Narwhal, performance are much better I'll
stay with Natty's kernel for now... ;)

-- 
Heavy Disk I/O harms desktop responsiveness
https://bugs.launchpad.net/bugs/131094
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 385023] Re: System Hangs on emptying trash folder

2010-11-15 Thread Ofer Chen
I'm experiencing this too I would like to debug it since it won't go away I 
have to solve it...
I already tried resetting nautilus metadata - didn't helped...

-- 
System Hangs on emptying trash folder
https://bugs.launchpad.net/bugs/385023
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 561982] Re: Unusable Area on main screen in 2 screen setup

2010-10-02 Thread Ofer Chen
try latest ATI hofix and try again ;), fixed my issues with similar setup.
http://support.amd.com/us/kbarticles/Pages/GPU83ATICatalystLinuxHotfix.aspx

-- 
Unusable  Area on main screen in 2 screen setup
https://bugs.launchpad.net/bugs/561982
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 565679] Re: 1.0~rc3+svn20090426-1ubuntu16 don't install and use libfribidi-dev

2010-08-29 Thread Ofer Chen
I still have the issue what I did what to use a fully unicode (e.g. 
arialuni.ttf) font and change mplayer encoding to ISO8859-8
it fixes most of the problem with subtitles but it's still not the proper way 
of fixing the issue, perhaps I will have a go at freebidi source code, because 
this is a long time issue for me not only on Ubuntu.

-- 
1.0~rc3+svn20090426-1ubuntu16 don't install and use libfribidi-dev
https://bugs.launchpad.net/bugs/565679
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 390733] Re: Process gconfd-2 causes cpu overuse and overheat

2010-08-28 Thread Ofer Chen
I had this issue on Lucid 10.04 upgraded from 9.10 it is probably a duplicate 
of:
Metacity - https://bugs.launchpad.net/metacity/+bug/150721
GDM  - https://bugs.launchpad.net/ubuntu/+source/gdm/+bug/526379
Gconf- https://bugs.launchpad.net/ubuntu/+source/gconf/+bug/293535

simply a side effect of Metacity running twice as sudo ps aux | grep metacity 
shows,
rm ~/.config/autostart/metacity.desktop solved it for me .

-- 
Process gconfd-2 causes cpu overuse and overheat
https://bugs.launchpad.net/bugs/390733
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 581214] Re: lvm volume does not activate on boot

2010-08-22 Thread Ofer Chen
I have exactly the same issue LVM not getting mounted on boot and I can always 
mount it from recovery shell
maybe udev rule /lib/udev/rules.d/85-lvm2.rules doesn't get executed..
or /lib/udev/rules.d/56-lvm.rules

-- 
lvm volume does not activate on boot
https://bugs.launchpad.net/bugs/581214
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 614662] Re: A better mountall

2010-08-21 Thread Ofer Chen
Thank you, I was looking for something that doesn't need constant
attention ;)

-- 
A better mountall
https://bugs.launchpad.net/bugs/614662
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 571027] Re: Lucid Ebox critical bug when enabling users and groups

2010-07-24 Thread Ofer Chen
yes it is fixed please mark as closed.

-- 
Lucid Ebox critical bug when enabling users and groups
https://bugs.launchpad.net/bugs/571027
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 565679] Re: 1.0~rc3+svn20090426-1ubuntu16 don't install and use libfribidi-dev

2010-07-04 Thread Ofer Chen
I'm experiencing same difficulties... cp1255 is not working correctly

-- 
1.0~rc3+svn20090426-1ubuntu16 don't install and use libfribidi-dev
https://bugs.launchpad.net/bugs/565679
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 571027] Re: Lucid Ebox critical bug when enabling users and groups

2010-05-04 Thread Ofer Chen
there is a topic about this in the forums 
http://forum.ebox-platform.com/index.php?topic=3598.15 
after adding the fix in the forum I got a different error message

recreate the config files:

sudo /usr/share/ebox-usersandgroups/ebox-usersandgroups-reinstall

remove/comment a few lines from /usr/share/ebox/stubs/usersandgroups
/slapd-master.ldif.mas

***
dn: cn=config
changetype: modify
add: olcTLSCACertificateFile
olcTLSCACertificateFile: /etc/ldap/ssl/ssl.cert
-
add: olcTLSCertificateFile
olcTLSCertificateFile: /etc/ldap/ssl/ssl.cert
-
add: olcTLSCertificateKeyFile
olcTLSCertificateKeyFile: /etc/ldap/ssl/ssl.key
# Allow querying the root DSE
dn: olcDatabase={-1}frontend,cn=config
changetype: modify
add: olcAccess
olcAccess: to dn.base= by * read
olcAccess: to dn.base=cn=subschema by * read
***


***
A really nasty bug has occurred

Exception

Failed to enable: root command ldapadd -H 'ldapi://' -Y EXTERNAL -c -f 
/var/lib/ebox/tmp/slapd-master-db.ldif failed. Error output: SASL/EXTERNAL 
authentication started SASL username: 
gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth SASL SSF: 0 ldap_add: 
Insufficient access (50) additional info: no write access to parent ldap_add: 
No such object (32) ldap_add: No such object (32) ldap_add: No such object (32) 
ldap_add: No such object (32) Command output: adding new entry dc=ubuntu-test 
adding new entry ou=Users,dc=ubuntu-test adding new entry 
ou=Groups,dc=ubuntu-test adding new entry ou=slaves,dc=ubuntu-test adding 
new entry cn=ebox,dc=ubuntu-test . Exit value: 32
Trace

Failed to enable: root command ldapadd -H 'ldapi://' -Y EXTERNAL -c -f 
/var/lib/ebox/tmp/slapd-master-db.ldif failed. 
Error output: SASL/EXTERNAL authentication started
SASL username: gidNumber=0+uidNumber=0,cn=peercred,cn=external,cn=auth
SASL SSF: 0
ldap_add: Insufficient access (50)
additional info: no write access to parent
ldap_add: No such object (32)
ldap_add: No such object (32)
ldap_add: No such object (32)
ldap_add: No such object (32)

Command output: adding new entry dc=ubuntu-test

adding new entry ou=Users,dc=ubuntu-test

adding new entry ou=Groups,dc=ubuntu-test

adding new entry ou=slaves,dc=ubuntu-test

adding new entry cn=ebox,dc=ubuntu-test

. 
Exit value: 32 at 
/usr/share/perl5/EBox/CGI/ServiceModule/ConfigureModuleController.pm line 74
EBox::CGI::ServiceModule::ConfigureModuleController::_process('EBox::CGI::ServiceModule::ConfigureModuleController=HASH(0x24...')
 called at /usr/share/perl5/EBox/CGI/Base.pm line 262
EBox::CGI::Base::run('EBox::CGI::ServiceModule::ConfigureModuleController=HASH(0x24...')
 called at /usr/share/perl5/EBox/CGI/Run.pm line 120
EBox::CGI::Run::run('EBox::CGI::Run', 
'ServiceModule/ConfigureModuleController', 'EBox') called at 
/usr/share/ebox/cgi/ebox.cgi line 19
ModPerl::ROOT::ModPerl::Registry::usr_share_ebox_cgi_ebox_2ecgi::handler('Apache2::RequestRec=SCALAR(0x24325350)')
 called at /usr/lib/perl5/ModPerl/RegistryCooker.pm line 204
eval {...} called at /usr/lib/perl5/ModPerl/RegistryCooker.pm line 204
ModPerl::RegistryCooker::run('ModPerl::Registry=HASH(0x260b74a0)') called at 
/usr/lib/perl5/ModPerl/RegistryCooker.pm line 170
ModPerl::RegistryCooker::default_handler('ModPerl::Registry=HASH(0x260b74a0)') 
called at /usr/lib/perl5/ModPerl/Registry.pm line 31
ModPerl::Registry::handler('ModPerl::Registry', 
'Apache2::RequestRec=SCALAR(0x24325350)') called at -e line 0
eval {...} called at -e line 0
***

-- 
Lucid Ebox critical bug when enabling users and groups
https://bugs.launchpad.net/bugs/571027
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 14911] Re: Flash plugin problem with ARGB visuals causes crash

2010-03-21 Thread Ofer Chen
Still crashing Ubuntu 9.10 AMD64 + Firefox 3.6

-- 
Flash plugin problem with ARGB visuals causes crash
https://bugs.launchpad.net/bugs/14911
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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