[Bug 596064] Re: nmbd fails to start on boot - problem with upstart

2010-12-10 Thread Jean-Michel Dault
It should be:
mkdir -p /var/run/samba

Otherwise if the directory already exists it won't be able to start. So
mkdir -p will start in all conditions.

-- 
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/596064

Title:
  nmbd fails to start on boot - problem with upstart 

-- 
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 596064] Re: nmbd fails to start on boot - problem with upstart

2010-12-10 Thread Jean-Michel Dault
It should be:
mkdir -p /var/run/samba

Otherwise if the directory already exists it won't be able to start. So
mkdir -p will start in all conditions.

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

Title:
  nmbd fails to start on boot - problem with upstart 

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


[Bug 381063] Re: dbus needs more than the default 1024 open files

2009-09-03 Thread Jean-Michel Dault
We have the same problem too:

r...@slxats2:~# ps -u messagebus
  PID TTY  TIME CMD
 2677 ?02:28:11 dbus-daemon

r...@slxats2:~# ls /proc/2677/fd|wc -l
1024
r...@slxats2:~#

r...@slxats2:~# (strace -p 2677  21 13 | grep Too many open files
12) 31
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)

Here is a detailed excerpt from ptrace:
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
gettimeofday({1252007529, 345943}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=6, events=POLLIN}, {fd=10, events=POLLIN}, 
{fd=9, events=POLLIN}, {fd=11, events=POLLIN}, {fd=12, events=POLLIN}, {fd=13, 
events=POLLIN}, {fd=30, events=POLLIN}, {fd=32, events=POLLIN}, {fd=29, 
events=POLLIN}, {fd=329, events=POLLIN}, {fd=343, events=POLLIN}, {fd=345, 
events=POLLIN}, {fd=346, events=POLLIN}, {fd=358, events=POLLIN}, {fd=38, 
events=POLLIN}, {fd=17, events=POLLIN}, {fd=21, events=POLLIN}, {fd=23, 
events=POLLIN}, {fd=24, events=POLLIN}, {fd=27, events=POLLIN}, {fd=211, 
events=POLLIN}, {fd=217, events=POLLIN}, {fd=221, events=POLLIN}, {fd=222, 
events=POLLIN}, {fd=271, events=POLLIN}, {fd=321, events=POLLIN}, {fd=325, 
events=POLLIN}, {fd=327, events=POLLIN}, {fd=328, events=POLLIN}, {fd=36, 
events=POLLIN}, {fd=339, events=POLLIN}, ...], 1018, 254392) = 1 ([{fd=3, 
revents=POLLIN}])
gettimeofday({1252007529, 349210}, NULL) = 0
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
gettimeofday({1252007529, 349515}, NULL) = 0
poll([{fd=3, events=POLLIN}, {fd=6, events=POLLIN}, {fd=10, events=POLLIN}, 
{fd=9, events=POLLIN}, {fd=11, events=POLLIN}, {fd=12, events=POLLIN}, {fd=13, 
events=POLLIN}, {fd=30, events=POLLIN}, {fd=32, events=POLLIN}, {fd=29, 
events=POLLIN}, {fd=329, events=POLLIN}, {fd=343, events=POLLIN}, {fd=345, 
events=POLLIN}, {fd=346, events=POLLIN}, {fd=358, events=POLLIN}, {fd=38, 
events=POLLIN}, {fd=17, events=POLLIN}, {fd=21, events=POLLIN}, {fd=23, 
events=POLLIN}, {fd=24, events=POLLIN}, {fd=27, events=POLLIN}, {fd=211, 
events=POLLIN}, {fd=217, events=POLLIN}, {fd=221, events=POLLIN}, {fd=222, 
events=POLLIN}, {fd=271, events=POLLIN}, {fd=321, events=POLLIN}, {fd=325, 
events=POLLIN}, {fd=327, events=POLLIN}, {fd=328, events=POLLIN}, {fd=36, 
events=POLLIN}, {fd=339, events=POLLIN}, ...], 1018, 254388) = 1 ([{fd=3, 
revents=POLLIN}])
gettimeofday({1252007529, 464829}, NULL) = 0
accept(3, 0xbf8ec168, [16]) = -1 EMFILE (Too many open files)
gettimeofday({1252007529, 471040}, NULL) = 0

-- 
dbus needs more than the default 1024 open files
https://bugs.launchpad.net/bugs/381063
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 381063] Re: dbus needs more than the default 1024 open files

2009-09-03 Thread Jean-Michel Dault
The /etc/default/dbus is a great way to fix the problem. It's also
configurable.

I suggest the following patch in the dbus package:
--- /etc/default/dbus.orig   2009-09-03 17:19:14.747613907 -0400
+++ /etc/default/dbus   2009-09-03 16:22:09.117573599 -0400
@@ -8,3 +8,8 @@

 # Parameters to pass to dbus.
 PARAMS=
+
+# dbus-daemon --system needs way more than 1024 opened files
+# on a multi-user system (LTSP, etc)
+ulimit -n 65535
+

-- 
dbus needs more than the default 1024 open files
https://bugs.launchpad.net/bugs/381063
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 420586] Re: Sync libasterisk-agi-perl 1.01-1 (universe) from Debian testing (main).

2009-08-28 Thread Jean-Michel Dault
The 0.10 was the test release before the final 1.0. The latest version,
1.01 has no new features, only some important bugfixes. Here is the
changelog, in reverse order since 0.10:

0.10Seriously this is a test release, and if all is well next
version will be 1.0.

1.00Fix AGI readresponse so if ReadParse isn't manually run, the first 
command output will be returned
Fix AGI say_datetime_all so it works correctly (pointed out by Sergey 
Basmanov)
Fix Manager sendcommand problem.  Reported by numerous people but patch 
used from Tilghman Lesher
Fix warning from being printed if AGI verbose is used without level

1.01Fix 2 typos in Asterisk::Manager (Thanks Denis Smirnov)

-- 
Sync libasterisk-agi-perl 1.01-1 (universe) from Debian testing (main).
https://bugs.launchpad.net/bugs/420586
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 420586] Re: Sync libasterisk-agi-perl 1.01-1 (universe) from Debian testing (main).

2009-08-28 Thread Jean-Michel Dault

** Attachment added: Diff of the code between 0.10 and 1.0.1
   http://launchpadlibrarian.net/30940665/libasterisk-agi-perl_0.10-1.01.diff

-- 
Sync libasterisk-agi-perl 1.01-1 (universe) from Debian testing (main).
https://bugs.launchpad.net/bugs/420586
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 416976] Re: No Change Rebuild Required as pwlib updated.

2009-08-21 Thread Jean-Michel Dault
It appears that the .dsc and .diff are already in the mirrors since
30-Apr-2009:

http://us.archive.ubuntu.com/ubuntu/pool/universe/o/openh323/openh323_1.18.0.dfsg-10.diff.gz

-- 
No Change Rebuild Required as pwlib updated.
https://bugs.launchpad.net/bugs/416976
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 416976] Re: No Change Rebuild Required as pwlib updated.

2009-08-21 Thread Jean-Michel Dault
I confirm. However, the debdiff is incorrect, we need to change the
Depends and Build-Depends as well.

I attach the complete debdiff between the debian -9 and debian -10
versions.


** Attachment added: openh323-debdiff
   http://launchpadlibrarian.net/30642710/openh323-debdiff

-- 
No Change Rebuild Required as pwlib updated.
https://bugs.launchpad.net/bugs/416976
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 416976] Re: No Change Rebuild Required as pwlib updated.

2009-08-21 Thread Jean-Michel Dault
OK,  the .dsc and .diff are on the mirrors, but the binaries can't be
found anywhere.

Probably a FTBFS that didn't get resolved.

-- 
No Change Rebuild Required as pwlib updated.
https://bugs.launchpad.net/bugs/416976
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 254968] Re: CAPS LOCK doesn't work in rdesktop 1.6

2009-06-19 Thread Jean-Michel Dault
*** This bug is a duplicate of bug 251709 ***
https://bugs.launchpad.net/bugs/251709

** This bug has been marked a duplicate of bug 251709
   rdesktop works bad with several keyboard layouts

-- 
CAPS LOCK doesn't work in rdesktop 1.6
https://bugs.launchpad.net/bugs/254968
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 352406] Re: Caps/Num lock does not run in any RDP program

2009-06-19 Thread Jean-Michel Dault
*** This bug is a duplicate of bug 251709 ***
https://bugs.launchpad.net/bugs/251709

** This bug is no longer a duplicate of bug 254968
   CAPS LOCK doesn't work in rdesktop 1.6
** This bug has been marked a duplicate of bug 251709
   rdesktop works bad with several keyboard layouts

-- 
Caps/Num lock does not run in any RDP program
https://bugs.launchpad.net/bugs/352406
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 251709] Re: rdesktop works bad with several keyboard layouts

2009-06-19 Thread Jean-Michel Dault
I tested different combinations:

- Intrepid i386: affected
- Jaunty i386: affected
- Karmic amd64: affected

Using -y makes CAPS LOCK work with a US layout, but unfortunately:
- altgr presses ENTER
- arrowup doesn't work
- arrowdown launches the start menu
- arrowleft is alt
- arrowright doesn't work
- pgup presses slash
- pgdn doesn't work
- home doesn't work
- end doesn't work
- keypad enter presses arrowdown

Removing the 02_raw_keyboard_support.dpatch patches solves all problems.
I tested every single key combination of the layouts I know.

-- 
rdesktop works bad with several keyboard layouts
https://bugs.launchpad.net/bugs/251709
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 251709] Re: rdesktop works bad with several keyboard layouts

2009-06-19 Thread Jean-Michel Dault
Here are some links that refer to this bug:
http://ubuntuforums.org/showthread.php?t=975449
http://ubuntuforums.org/showthread.php?p=7075739#post7075739
http://ubuntuforums.org/showthread.php?t=977663

-- 
rdesktop works bad with several keyboard layouts
https://bugs.launchpad.net/bugs/251709
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 270997] Re: intrepid regression: rdesktop overrides window manger key binding even when -K is used

2009-06-19 Thread Jean-Michel Dault
*** This bug is a duplicate of bug 251709 ***
https://bugs.launchpad.net/bugs/251709

** This bug has been marked a duplicate of bug 251709
   rdesktop works bad with several keyboard layouts

-- 
intrepid regression: rdesktop overrides window manger key binding even when -K 
is used
https://bugs.launchpad.net/bugs/270997
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 270784] Re: [intrepid] keyboard key doesn't correspond

2009-06-19 Thread Jean-Michel Dault
Might be related to bug #251709.

-- 
[intrepid] keyboard key doesn't correspond
https://bugs.launchpad.net/bugs/270784
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 381567] Re: rdesktop keyboard mapping broken under VNC

2009-06-19 Thread Jean-Michel Dault
*** This bug is a duplicate of bug 251709 ***
https://bugs.launchpad.net/bugs/251709

** This bug has been marked a duplicate of bug 251709
   rdesktop works bad with several keyboard layouts

-- 
rdesktop keyboard mapping broken under VNC
https://bugs.launchpad.net/bugs/381567
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 307389] Re: pressed keyboard button doesn't correspond typing symbol

2009-06-19 Thread Jean-Michel Dault
*** This bug is a duplicate of bug 251709 ***
https://bugs.launchpad.net/bugs/251709

** This bug has been marked a duplicate of bug 251709
   rdesktop works bad with several keyboard layouts

-- 
pressed keyboard button doesn't correspond typing symbol
https://bugs.launchpad.net/bugs/307389
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 304044] Re: arrow keys in raw mode stopped working in Intrepid

2009-06-19 Thread Jean-Michel Dault
*** This bug is a duplicate of bug 251709 ***
https://bugs.launchpad.net/bugs/251709

** This bug has been marked a duplicate of bug 251709
   rdesktop works bad with several keyboard layouts

-- 
arrow keys in raw mode stopped working in Intrepid
https://bugs.launchpad.net/bugs/304044
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 254968] Re: CAPS LOCK doesn't work in rdesktop 1.6

2009-06-19 Thread Jean-Michel Dault
*** This bug is a duplicate of bug 251709 ***
https://bugs.launchpad.net/bugs/251709

I tested different combinations:

- Intrepid i386: affected
- Jaunty i386: affected
- Karmic amd64: affected

Using -y makes CAPS LOCK work with a US layout, but unfortunately:
- altgr presses ENTER
- arrowup doesn't work
- arrowdown launches the start menu
- arrowleft is alt
- arrowright doesn't work
- pgup presses slash
- pgdn doesn't work
- home doesn't work
- end doesn't work
- keypad enter presses arrowdown

Removing the 02_raw_keyboard_support.dpatch patches solves all problems.
I tested every single key combination of the layouts I know.

-- 
CAPS LOCK doesn't work in rdesktop 1.6
https://bugs.launchpad.net/bugs/254968
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 251709] Re: rdesktop works bad with several keyboard layouts

2009-06-19 Thread Jean-Michel Dault
The raw keyboard patch is really broken, it modifies #define's so there
is no clean way to have -y without breaking the regular behavior.

Besides, there is a large thread on the rdesktop mailing list:
http://sourceforge.net/mailarchive/forum.php?thread_name=a905f5230904142325g2e4d575bp35412af4a77fd4eb%40mail.gmail.comforum_name=rdesktop-devel

I quote Peter Åstrand here:
For a normal application, looking at the keycode is simply a big no-no.
Using the keysyms is the preferred approach; works on all platforms.

-- 
rdesktop works bad with several keyboard layouts
https://bugs.launchpad.net/bugs/251709
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 389614] [NEW] Rdesktop crashes when removing USB key with LTSP

2009-06-19 Thread Jean-Michel Dault
Public bug reported:

Binary package hint: rdesktop

- This bug has been heavily tested with 1.6.0-2ubuntu1 on Intrepid i386,
but the package hasn't changed in Jaunty or Karmic.

When using LTSP in rdesktop mode, with  rdesktop -r
disk:disk=/media/root/ and as USB drive, it's possible to make rdesktop
segfault under certain circumstances.

How to duplicate:
- Login to rdesktop
- Insert USB key
- Go to My computer or equivalent, go to disk on terminal, and click on 
the directory containing the USB drive
- Press F5 until you see the files on the USB drive.
- Now, leave F5 pressed (it will refresh the file list continuously) and 
disconnect the USB drive. You will get a segfault.

The problem is in disk.c. Rdesktop does a rewinddir(pdir). Between the
USB disconnect and the umounting of the directory, there is a state of
uncertainty where pdir=0. Doing a rewinddir(0) causes a segfault.

If you add a simple condition, it fixes the problem.
   if(pdir==0)
   return RD_STATUS_NO_SUCH_FILE;

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

-- 
Rdesktop crashes when removing USB key with LTSP
https://bugs.launchpad.net/bugs/389614
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 389614] Re: Rdesktop crashes when removing USB key with LTSP

2009-06-19 Thread Jean-Michel Dault
Patch included

** Attachment added: Do not call rewinddir(pdir) if  pdir is zero.
   http://launchpadlibrarian.net/28121129/fix-usb-drive.patch

-- 
Rdesktop crashes when removing USB key with LTSP
https://bugs.launchpad.net/bugs/389614
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 389665] Re: French Canadian layout is obsolete

2009-06-19 Thread Jean-Michel Dault
New fr-ca layout

** Attachment added: fr-ca
   http://launchpadlibrarian.net/28124071/fr-ca

-- 
French Canadian layout is obsolete
https://bugs.launchpad.net/bugs/389665
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 389665] Re: French Canadian layout is obsolete

2009-06-19 Thread Jean-Michel Dault
README that explains layouts

** Attachment added: README.fr-ca_en-ca
   http://launchpadlibrarian.net/28124049/README.fr-ca_en-ca

-- 
French Canadian layout is obsolete
https://bugs.launchpad.net/bugs/389665
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 389665] [NEW] French Canadian layout is obsolete

2009-06-19 Thread Jean-Michel Dault
Public bug reported:

Binary package hint: rdesktop

The fr-ca layout included with rdesktop uses an old, circa 1998 legacy
layout, that does not correspond neither to the default fr-ca linux
layout, nor the default fr-ca Windows layout, nor to the fr-ca Mac
layout.

Altgr + the |#\ key (under the ESC key and left of the 1 key),
should map to backslash, whereas it currently displays the notsign,
that looks like this: ¬. This, added to the fact that Windows 2008
often needs user to use the domain\user syntax to log in, creates a
lot of confusion.

Since there are actually three different french layouts in Canada, we
need a map for all of them.

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

-- 
French Canadian layout is obsolete
https://bugs.launchpad.net/bugs/389665
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 389665] Re: French Canadian layout is obsolete

2009-06-19 Thread Jean-Michel Dault
English Canadian version

** Attachment added: en-ca-multix
   http://launchpadlibrarian.net/28124148/en-ca-multix

-- 
French Canadian layout is obsolete
https://bugs.launchpad.net/bugs/389665
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 389665] Re: French Canadian layout is obsolete

2009-06-19 Thread Jean-Michel Dault
New fr-ca-multix layout

** Attachment added: fr-ca-multix
   http://launchpadlibrarian.net/28124141/fr-ca-multix

-- 
French Canadian layout is obsolete
https://bugs.launchpad.net/bugs/389665
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 389665] Re: French Canadian layout is obsolete

2009-06-19 Thread Jean-Michel Dault
Updated legacy layout (there were lots of missing symbols)


** Attachment added: fr-ca-legacy
   http://launchpadlibrarian.net/28124191/fr-ca-legacy

-- 
French Canadian layout is obsolete
https://bugs.launchpad.net/bugs/389665
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 379636] Re: Gnome-RDP throws error Fooo! upon exit

2009-06-19 Thread Jean-Michel Dault
I can confirm the problem.

The error message is in rdesktop/rdpsnd_alsa.c:  printf(Fooo!\n);
When there is a lot of screen updates (video or Flash site), Alsa has problem 
catching up as soon as CPU load is more than 50%. If you use PulseAudio, it 
makes matters even worse, as Pulse takes CPU of its own.

How to duplicate easily:
- Use rdesktop full screen with -r sound:local option
- With Firefox+Flash, go to www.eye4u.com
- Navigate the site
- You should have hundreds of Fooo! messages.

Work-around:
- Use /dev/dsp directly (You have to disable pulse first)
asoundconf unset-pulseaudio
killall pulseaudio
rdesktop [...] -r sound:local:oss:/dev/dsp [...]

You will still get some glitches with high load, but normal sites
(YouTube for example), will work perfectly.

-- 
Fooo! errors with Rdesktop/Gnome-RDP
https://bugs.launchpad.net/bugs/379636
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 379636] Re: Fooo! errors with Rdesktop/Gnome-RDP

2009-06-19 Thread Jean-Michel Dault
** Summary changed:

- Gnome-RDP throws error Fooo! upon exit
+ Fooo! errors with Rdesktop/Gnome-RDP

-- 
Fooo! errors with Rdesktop/Gnome-RDP
https://bugs.launchpad.net/bugs/379636
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 203944] Re: CUPS error unsupported character set iso8859-1

2008-03-31 Thread Jean-Michel Dault
I have the same problem, on a Pentium 4 (32-bit), with 1.3.6-1ubuntu2.

If I do LC_ALL=C lpr something, it works, if the locale is
iso-8859-1 or iso-8859-15, it fails.

-- 
CUPS error unsupported character set iso8859-1
https://bugs.launchpad.net/bugs/203944
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 203944] Re: CUPS error unsupported character set iso8859-1

2008-03-31 Thread Jean-Michel Dault
It seems Debian had the same problem with another version:
http://www.mail-archive.com/[EMAIL PROTECTED]/msg120358.html

-- 
CUPS error unsupported character set iso8859-1
https://bugs.launchpad.net/bugs/203944
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 203944] Re: CUPS error unsupported character set iso8859-1

2008-03-31 Thread Jean-Michel Dault
Other links:
http://www.cups.org/str.php?L2537
http://www.cups.org/str.php?L2533
https://bugzilla.samba.org/show_bug.cgi?id=5080

-- 
CUPS error unsupported character set iso8859-1
https://bugs.launchpad.net/bugs/203944
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 203944] Re: CUPS error unsupported character set iso8859-1

2008-03-31 Thread Jean-Michel Dault
A more recent bug report from Debian:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=471228

-- 
CUPS error unsupported character set iso8859-1
https://bugs.launchpad.net/bugs/203944
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 203944] Re: CUPS error unsupported character set iso8859-1

2008-03-31 Thread Jean-Michel Dault
http://groups.google.com/group/linux.debian.bugs.dist/browse_thread/thread/08e29c72aff5ea44/83350881376f6bc1?lnk=raot

-- 
CUPS error unsupported character set iso8859-1
https://bugs.launchpad.net/bugs/203944
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 70146] Re: [SRU] libnss-ldap for edgy-proposed: Problem with LDAPS

2006-12-15 Thread Jean-Michel Dault
The proposed patch might fix other issues, but it doesn't fix the
problem I reported. ;-)

It seems that in versions of nss_ldap =241, you need to specify the
port in the hostname, or use an URI  for ldaps to work. The bug is also
present in version 253 compiled from source.

If I change my config to: host 192.168.2.224:636, it works.

I need to find out what changed between 240 and 241... Unfortunately, I
can't find version 241 to 243 anywhere, and I'm afraid a diff from 240
and 244 will be quite huge, so it will be hard to fix.

Will report to upstream.

-- 
[SRU] libnss-ldap for edgy-proposed: Problem with LDAPS
https://launchpad.net/bugs/70146

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


[Bug 70146] Re: [SRU] libnss-ldap for edgy-proposed: Problem with LDAPS

2006-12-15 Thread Jean-Michel Dault
Reported upstream:
http://bugzilla.padl.com/show_bug.cgi?id=303

-- 
[SRU] libnss-ldap for edgy-proposed: Problem with LDAPS
https://launchpad.net/bugs/70146

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