[Bug 396257] [NEW] firefox 3.5 does not play sound with flash

2009-07-06 Thread Miek Gieben
Public bug reported:

Binary package hint: firefox-3.5

The new firefox-3.5 was installed with a system update. After that I
tried to watch some videos on youtube.com. In firefox 3.1 audio was
working, in firefox-3.5 is it not.

Audio is working with a pulseaudio setup - I can play mp3 with mpg123,
audacious. No problems there.

System is completely up to date Jaunty, 32 bits.

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

-- 
firefox 3.5 does not play sound with flash
https://bugs.launchpad.net/bugs/396257
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 364720] [NEW] CONFIG_BASE_SMALL=0 is set?

2009-04-21 Thread Miek Gieben
Public bug reported:

I was playing with /proc/sys/kernel/pid_max and found that I could't raise it 
above 32768. I've filled this bug about it
in the kernel's bug tracker: http://bugzilla.kernel.org/show_bug.cgi?id=13090

Turns out this is due to CONFIG_BASE_SMALL is being set to 0. Is this on
purpose?

Same is true for the mainline kernels which are now provided by Ubuntu.

% cat /proc/version 
  
Linux version 2.6.29-02062901-generic (r...@zinc) (gcc version 4.2.3 (Ubuntu 
4.2.3-2ubuntu7)) #02062901 SMP Fri Apr 3 14:17:44 UTC 2009

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

-- 
CONFIG_BASE_SMALL=0 is set?
https://bugs.launchpad.net/bugs/364720
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 367211] [NEW] sed -i destroys symlink

2009-04-26 Thread Miek Gieben
Public bug reported:

When using 'sed -i' on a symlink the symlink gets destroyed.
Observe:

% ls -l myfile symlink
-rw-rw-r-- 1 miekg miekg 12 Apr 26 10:53 myfile
lrwxrwxrwx 1 miekg miekg  6 Apr 26 10:53 symlink -> myfile

# do an edit
% sed -i 's/hello//' symlink

% ls -l myfile symlink
-rw-rw-r-- 1 miekg miekg 12 Apr 26 10:53 myfile
-rw-rw-r-- 1 miekg miekg  7 Apr 26 10:54 symlink

And gone is your symlink.

This either a feature or a bug :)

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

-- 
sed -i destroys symlink
https://bugs.launchpad.net/bugs/367211
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 367211] Re: sed -i destroys symlink

2009-04-27 Thread Miek Gieben
This is due to using rename(), in the file lib/utils.c (is sed's source) at 
line 324 in the function:
ck_rename (from, to, unlink_if_fail):

   int rd = rename (from, to);

from is now a tmp-file and to is the original file. According to the
manpage of rename(2):

   If  oldpath  refers  to a symbolic link the link is renamed; if newpath 
refers to a symbolic link
   the link will be overwritten.

So the later thing happens.

-- 
sed -i destroys symlink
https://bugs.launchpad.net/bugs/367211
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 367211] Re: sed -i destroys symlink

2009-04-27 Thread Miek Gieben
The following "patch" fixed the problem. It does so by looking at the target. 
If it is an symlink the tmp file will be copied
to the target of the symlink. Patch also included as attachment.

elektron.m% diff -ur sed-4.1.5/lib/utils.c sed-4.1.5-modified/lib/utils.c
--- sed-4.1.5/lib/utils.c   2005-06-21 16:09:40.0 +0200
+++ sed-4.1.5-modified/lib/utils.c  2009-04-27 11:04:38.003830559 +0200
@@ -321,7 +321,19 @@
   const char *from, *to;
   const char *unlink_if_fail;
 {
-  int rd = rename (from, to);
+  /* if to is a symlink, shouldn't we move the the link name instead? */
+  char *buf[255];
+  int rd;
+  ssize_t  sym;
+  if ((sym = readlink(to, buf, 254)) != -1) 
+{
+  buf[sym] = '\0';
+  rd = rename (from, buf);
+}
+  else 
+   {
+  rd = rename (from, to);
+   }
   if (rd != -1)
 return;
 


** Attachment added: "Fix symlink behavoir in sed"
   http://launchpadlibrarian.net/26021447/patch

-- 
sed -i destroys symlink
https://bugs.launchpad.net/bugs/367211
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 213444] Re: Hardy Heron nfs (client) reports internal error when I attempt to mount with NFS

2008-05-18 Thread Miek Gieben
tracing the mount call gives:

This is only the last part:

port=htons(53), sin_addr=inet_addr("127.0.0.1")}, [16]) = 259
close(3)= 0
gettimeofday({1211135677, 873940}, NULL) = 0
mount("toaster.xx.yy:/vol/music", "/nfs/toaster.x.yy", "nfs", 0, 
"addr=2xx.1xx.2xx.2x") = -1 EIO (Input/output error)
write(2, "mount.nfs: internal error\n", 26mount.nfs: internal error) = 26
exit_group(32)  = ?
Process 12870 detached

Looks like the mount syscal fails.

-- 
Hardy Heron nfs (client) reports internal error when I attempt to mount with NFS
https://bugs.launchpad.net/bugs/213444
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 213444] Re: Hardy Heron nfs (client) reports internal error when I attempt to mount with NFS

2008-05-22 Thread Miek Gieben
This:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477503

seems related. And it supposedly provides a fix.

-- 
Hardy Heron nfs (client) reports internal error when I attempt to mount with NFS
https://bugs.launchpad.net/bugs/213444
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 213444] Re: Hardy Heron nfs (client) reports internal error when I attempt to mount with NFS

2008-05-25 Thread Miek Gieben
[ Quoting DaveAbrahams in "[Bug 213444] Re: Hardy Heron nfs (c"... ]
> Me too.  Please apply the patch, Ubuntu!

I tried that patch. It removed the 'internal error', but I still
couldn't mount the remote NFS directory.

--
grtz,
 - Miek   
 GPG Key ID: 3880 D0F6   http://www.miek.nl/

-- 
Hardy Heron nfs (client) reports internal error when I attempt to mount with NFS
https://bugs.launchpad.net/bugs/213444
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 238790] [NEW] adduser should be extended to allow ldap/nis

2008-06-10 Thread Miek Gieben
Public bug reported:

Binary package hint: adduser

The current adduser pkg (and also the passwd) pkg do not transparantly handle a 
ldap setup. It would be nice if ubuntu
would add this functionality.

http://www.thkukuk.de/pam/pwdutils/
is a package which includes all utilities which would allow for this.

System information:
passwd 1:4.0.18.2-1ubuntu2
adduser 3.105ubuntu1

Ubuntu hardy herron

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

-- 
adduser should be extended to allow ldap/nis
https://bugs.launchpad.net/bugs/238790
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 295103] Re: very slow boot after upgrade to 8.10

2009-03-18 Thread Miek Gieben
I've made a bootchart of my (looong) startup, maybe that can help track
down the slow starts?

See 
http://miek.nl/files/intrepid-20090315-2.png

-- 
very slow boot after upgrade to 8.10
https://bugs.launchpad.net/bugs/295103
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 291373] Re: vim: hang after ^Z / fg

2009-02-18 Thread Miek Gieben
Strace of when vim hangs:

After the SIGINT (control-C) is of course resumes.


foton.m% strace -p 8439 

Process 8439 attached - interrupt to quit
pause() = ? ERESTARTNOHAND (To be restarted)
--- SIGINT (Interrupt) @ 0 (0) ---
rt_sigaction(SIGINT, {0x815a1d0, [], 0}, {0x815a1d0, [], 0}, 8) = 0
rt_sigprocmask(SIG_UNBLOCK, [INT], [INT], 8) = 0
sigreturn() = ? (mask now [])
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
select(8, [0 5 7], NULL, [0 5], {0, 0}) = 0 (Timeout)
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) = 0
select(8, [0 5 7], NULL, [0 5], {0, 0}) = 0 (Timeout)
ioctl(0, SNDCTL_TMR_TIMEBASE or TCGETS, {B38400 opost isig icanon echo ...}) =

-- 
vim: hang after ^Z / fg
https://bugs.launchpad.net/bugs/291373
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 291373] Re: vim: hang after ^Z / fg

2009-02-18 Thread Miek Gieben
Same problem here. With zsh and

Package: vim-full
Status: install ok installed
Priority: extra
Section: editors
Installed-Size: 120
Maintainer: Ubuntu Core Developers 
Architecture: all
Source: vim
Version: 1:7.1.314-3ubuntu3.1

-- 
vim: hang after ^Z / fg
https://bugs.launchpad.net/bugs/291373
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 329375] [NEW] groff version is too old

2009-02-14 Thread Miek Gieben
Public bug reported:

Binary package hint: groff

The version of groff included in Ubuntu is from:
% groff -v 
GNU groff version 1.18.1
Copyright (C) 2002 Free Software Foundation, Inc.

GNU groff is currently at 1.20.

I would like to see this package upgrade. I've build a quick 'n dirty deb for 
ubuntu, but a clean/supported
package would be better

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

-- 
groff version is too old
https://bugs.launchpad.net/bugs/329375
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 329375] Re: groff version is too old

2009-02-14 Thread Miek Gieben
Yes, we were running to trouble with psbb macro (I'm no export in groff), but 
upgrading groff made this
problem(*) go away.

(*) the bounding box of an included eps figure wasn't detected properly,
which meant the figure didn't fit on the page.

-- 
groff version is too old
https://bugs.launchpad.net/bugs/329375
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 291373] Re: vim: hang after ^Z / fg

2009-02-22 Thread Miek Gieben
[ Quoting David Hoeffer in "[Bug 291373] Re: vim: hang after ^Z"... ]
> Thanks dominiko! I've rebuilt the package with your patch (wrapping it

being /very/ lazy here... :) But do you have a deb source package
somewhere for download?

Regards, 
Miek

-- 
vim: hang after ^Z / fg
https://bugs.launchpad.net/bugs/291373
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 291373] Re: vim: hang after ^Z / fg

2009-02-22 Thread Miek Gieben
[ Quoting dominiko in "[Bug 291373] Re: vim: hang after ^Z"... ]
> This is the message in vim_dev where I posted the patch:
> 
> ** Attachment added: "fixed race condition in suspend resume with CTRL-Z  fg"
>
> http://launchpadlibrarian.net/22983879/fix-race-condition-suspend-os_unix.c.patch

ok ok :)

I've applied the patch and rebuild my vim packages. I'm testing it now.
I'm put up my vim packages (for now) at:

http://miek.nl/vim-temp/

I will leave them there for a week or so.

Regards,

--
 --Miek

-- 
vim: hang after ^Z / fg
https://bugs.launchpad.net/bugs/291373
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 239480] [NEW] there should be a putpwnam()

2008-06-12 Thread Miek Gieben
Public bug reported:

glibc support nss with all kind of read functions, like for instance 
getpwnam(). These function can either read from /etc/passwd or a NIS/LDAP 
backend. There is however only one write function: putpwent():
  int putpwent(const struct passwd *p, FILE *stream);
which requires a file. As such you can only read from LDAP, never write to it.

It would be nice to be able to write to ldap, with something like putpwnam(). 
With this function the shadow-utils can also be modified so that they
support writing to different backends (chsh, chfn, etc.).

This will also allow for a much easier transition for people wanting to
migrate to ldap as the default debian/ubuntu utils keep on working.

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

-- 
there should be a putpwnam()
https://bugs.launchpad.net/bugs/239480
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 356256] [NEW] dist-upgrade stops slapd

2009-04-06 Thread Miek Gieben
Public bug reported:

Not sure if this is an openldap bug... BUT

I decided to upgrade to jaunty - this also includes and openldap
upgrade. When openldap is upgraded, it is first stopped, then some other
packages are installed and later it is restarted.

If you have the user information stored in ldap this is quite annoying.
This means that every user lookup first has to timeout before
/etc/passwd and friends are consulted.

Would it be possible to handle ldap (and maybe kerberos) in a special
way during an upgrade? So that the down-time of each service is
minimized?

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

-- 
dist-upgrade stops slapd
https://bugs.launchpad.net/bugs/356256
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 396257] Re: firefox 3.5 does not play sound with flash

2009-07-07 Thread Miek Gieben
Hmm, it looks SOLVED...

when using pavucontrol, firefox-3.5 show up as an application playing audio.
I can then use move-stream and select the correct output device. This
solves my problem

-- 
firefox 3.5 does not play sound with flash
https://bugs.launchpad.net/bugs/396257
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 172775] Re: /var/run/zabbix-server deleted after reboot

2009-06-10 Thread Miek Gieben
Why not use the following code:

if test ! -d $(dirname $PID); then
mkdir $(dirname $PID)
chown -R zabbix:zabbix $(dirname $PID)
fi

safes a variable, not a big deal, but still.

-- 
/var/run/zabbix-server deleted after reboot
https://bugs.launchpad.net/bugs/172775
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 70051] Re: amd64 (edgy): save image as... crashes browser

2006-11-03 Thread Miek Gieben
Done that, but epiphany-browser-dbgsym didn't crash when I tried
to save-as. 

And now, epiphany (non debug) also doesn't crash any more
Very strange. I'll keep an eye on it - if it doesn't crash this week I'll close
this bug.

Thanks.

-- 
amd64 (edgy): save image as... crashes browser
https://launchpad.net/bugs/70051

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


[Bug 70051] Re: amd64 (edgy): save image as... crashes browser

2006-11-04 Thread Miek Gieben
Cannot reproduce it anymore. It may be connect to 'nut' (the package
nut-usb) usb driver, which wasn't too stable.

-- 
amd64 (edgy): save image as... crashes browser
https://launchpad.net/bugs/70051

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


[Bug 53448] Re: [Dapper] Sound Recorder doesn't respect input selection on second record

2006-11-08 Thread Miek Gieben
This bug is still there in Edgy, but somewhat different. When I do the second
record gnome-sound-recorder disables CAPTURE on the capture device of my sound 
blaster live. So I can only record once, close sound recorder, enable CAPURE 
again and start gnome-sound-recorder again.

I've now upgraded to alsa-1.0.13 (from Debian unstable) but this makes
no difference.

I've also had issues with Ekiga, but this may be the same ALSA bug?

-- 
[Dapper] Sound Recorder doesn't respect input selection on second record
https://launchpad.net/bugs/53448

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


[Bug 71078] buttons stays pressed down

2006-11-09 Thread Miek Gieben
Public bug reported:

When I click on a subject-bookmark in the toolbar of epiphany is sometimes 
stays pressed.
I've attached a screenshot to tell what I mean. So the submenu is gone, but the 
button
isn't unpressed.

** Affects: epiphany-browser (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
buttons stays pressed down
https://launchpad.net/bugs/71078

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


[Bug 71078] Re: buttons stays pressed down

2006-11-09 Thread Miek Gieben

** Attachment added: "screenshot of the problem"
   http://librarian.launchpad.net/5021592/epip.jpg

-- 
buttons stays pressed down
https://launchpad.net/bugs/71078

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


[Bug 90319] Re: cursor redraw lingers

2007-10-28 Thread Miek Gieben
Haven't seen it again, neither with the oss nv driver, nor the closed
source one.

-- 
cursor redraw lingers
https://bugs.launchpad.net/bugs/90319
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 152889] using a LDAP database source

2007-10-15 Thread Miek Gieben
Public bug reported:

Binary package hint: openoffice.org2

Using OO 2.3 I cannot add an LDAP datasource for use as address book.
File->New->Database->Connect to New database

Does not list LDAP as a connection. I cannot find a way to enable this.
OTOH evolution does work with the LDAP setup.

** Affects: openoffice.org2 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
using a LDAP database source
https://bugs.launchpad.net/bugs/152889
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 110956] Re: feisty not supported in rkhunter

2007-10-02 Thread Miek Gieben
Thanks, I noticed that :)

-- 
feisty not supported in rkhunter
https://bugs.launchpad.net/bugs/110956
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 81242] Re: postfix-ldap is linked against gnuTLS

2008-04-15 Thread Miek Gieben
[15 Apr, @01:00 CEST, Steve Langasek wrote in "[Bug 81242] Re: postfix-ldap i 
..."]
> Marking as 'incomplete' and unmilestoning.  We still need the stderr
> output of a process that's failing in this way to diagnose whether it's
> a postfix or gnutls bug.

It will not be possible for me to provide this debugging output, as we
have switched to Exim for this particular implementation, and this is
now running production.


--
grtz,
 - Miek   
 GPG Key ID: 3880 D0F6   http://www.miek.nl/


** Attachment added: "unnamed"
   http://launchpadlibrarian.net/13469348/unnamed

-- 
postfix-ldap is linked against gnuTLS
https://bugs.launchpad.net/bugs/81242
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 191355] Re: cron complains /etc/cron.daily/find exited with return code 127

2008-04-10 Thread Miek Gieben
findutils in hardy only contains find and xargs. It should not ship an
cron.daily script anymore.

Therefore I can confirm this bug.

-- 
cron complains /etc/cron.daily/find exited with return code 127
https://bugs.launchpad.net/bugs/191355
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 216049] [NEW] window list restore to current workspace does not work

2008-04-11 Thread Miek Gieben
Public bug reported:

Binary package hint: gnome-panel

In the window list applet I can observe the following behavior: 
(this is on hardy with AMD64)
- set the preference to: 'restore to current workspace'
- minimize a window
- try to restore the window in a different workspace

It will not work, instead the window in the window list will just flash and do 
nothing. Only when you
click on the minimized window in the correct workspace will it restore.

** Affects: gnome-panel (Ubuntu)
 Importance: Undecided
 Status: New

-- 
window list restore to current workspace does not work
https://bugs.launchpad.net/bugs/216049
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 106957] Re: Systemtap should require kernel debug information

2007-08-04 Thread Miek Gieben
Okay, I was typing this when systemtap decided to issue a illegal opcode
and crash my server :(

Anyhow. Looks like I got it working by:

apt-get install linux-source-2.6.20
compiling a kernel in /usr/src
setting /lib/modules/`uname -r`/build -> /usr/src/linux-source-2.6.20

and then running top.stp, but then my system crashed...

-- 
Systemtap should require kernel debug information
https://bugs.launchpad.net/bugs/106957
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 139756] sound applet mute inconsistency

2007-09-15 Thread Miek Gieben
Public bug reported:

Binary package hint: gnome-applets

When using the mouse-wheel you can mute the sound when doing over the
sound-applet icon. Moving down you mute, moving up the sound is enabled
again.

Now open the sound-properties by double-clicking the sound-applet icon.

You can now still use the mouse-wheel to mute the sound, but you cannot unmute 
it by scrolling up...
You have to right click and choose 'unmute' are unmute it in the 
sound-properties.

** Affects: gnome-applets (Ubuntu)
 Importance: Undecided
 Status: New

-- 
sound applet mute inconsistency
https://bugs.launchpad.net/bugs/139756
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 128735] Re: Notification Area on second screen's panel doesn't work

2007-08-11 Thread Miek Gieben
Exactly the same problem here, also running in a dual head setup. Gnome
2.18.1 Ubuntu Feisty. Notification area only works on display :0.0 and
not in :0.1.

-- 
Notification Area on second screen's panel doesn't work
https://bugs.launchpad.net/bugs/128735
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 83180] Re: apt-listchanges conflicts with software updates

2007-08-12 Thread Miek Gieben
This looks to be fixed in feist now.

-- 
apt-listchanges conflicts with software updates
https://bugs.launchpad.net/bugs/83180
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 23532] Re: vim-gnome uses old openFileWidget

2007-08-12 Thread Miek Gieben
Can be closed, vim7 is using the correct widget

-- 
vim-gnome uses old openFileWidget
https://bugs.launchpad.net/bugs/23532
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


[Bug 116415] Re: puppet and puppetd have no man pages

2008-01-20 Thread Miek Gieben
Reduction labs does include a manual page, but only for puppet. This can be 
found at:
http://reductivelabs.com/trac/puppet/browser/man/man8/puppet.8

It would be nice to have some kind of manual pages of puppetd, puppetmasterd 
too, so that one can write a
sane /etc/default/puppetmaster.

-- 
puppet and puppetd have no man pages
https://bugs.launchpad.net/bugs/116415
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 116415] Re: puppet and puppetd have no man pages

2008-01-23 Thread Miek Gieben
[21 Jan, @16:27 CET, Francisco Calderón wrote in "Re: [Bug 116415] Re: puppet 
an ..."]
> Hi Miek, im trying to download the man page but that trac is having a
> problem and i dont see the svn address, do you have the svn address to
> download the original man page?

I don't have the original svn, but the page is working again (at
least for me).

btw, I don't consider that manual page particular well written.

--
grtz,
 - Miek   
 GPG Key ID: 3880 D0F6   http://www.miek.nl/

-- 
puppet and puppetd have no man pages
https://bugs.launchpad.net/bugs/116415
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 124641] Re: device-mapper: ioctl: error adding target to table

2007-09-22 Thread Miek Gieben
Experienced this too (AMD64, gutsy 22 sept). Indeed removing emvs and
rebooting fixed this.

-- 
device-mapper: ioctl: error adding target to table
https://bugs.launchpad.net/bugs/124641
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 110956] Re: feisty not supported in rkhunter

2007-09-22 Thread Miek Gieben
NIce and thanks. But I've now upgraded to gusty :)

-- 
feisty not supported in rkhunter
https://bugs.launchpad.net/bugs/110956
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 71078] Re: buttons stays pressed down

2007-09-22 Thread Miek Gieben
Running gnome 2.20 (gutsy) right now. The problem isn't gone. I've got a
new screenshot, but that wouldn't add any new information.

-- 
buttons stays pressed down
https://bugs.launchpad.net/bugs/71078
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 185671] Re: [Hardy] gnome-terminal current locale ANSI_X3.4-1968 not unicode using en-gb

2008-04-01 Thread Miek Gieben
Same problem here. Fresh upgrade from feisty to hardy.  My shell is zsh. My 
locale settings:
% locale -a
C
POSIX
en_AU.utf8
en_BW.utf8
en_CA.utf8
en_DK.utf8
en_GB.utf8
en_HK.utf8
en_IE.utf8
en_IN
en_NZ.utf8
en_PH.utf8
en_SG.utf8
en_US.utf8
en_ZA.utf8
en_ZW.utf8
nl_BE.utf8
nl_NL.utf8

% cat /etc/environment
LANGUAGE="en_US:en_GB:en"
LANG="en_US.UTF-8"
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games"

Doing a `ssh localhost`:
% echo $LANGUAGE 
en_US:en_GB:en

Creating a new gnome-terminal:
% echo $LANG
C

So there is a difference between logging in and creating a new terminal.
Gnome-terminal is set to start a login shell.

The encoding in gnome-terminal falls back to ANSI, instead of UTF-8 :-(

-- 
[Hardy] gnome-terminal current locale ANSI_X3.4-1968 not unicode using en-gb
https://bugs.launchpad.net/bugs/185671
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 185671] Re: [Hardy] gnome-terminal current locale ANSI_X3.4-1968 not unicode using en-gb

2008-04-01 Thread Miek Gieben
For some (unknown) reason /etc/environment isn't sourced.

Btw the reason that gnome-terminal falls back to ANSI_X3.4-1968, is because:
% locale charmap  

Returns it, if LANG=C.

% LANG=en_US.UTF-8 locale charmap
UTF-8

-- 
[Hardy] gnome-terminal current locale ANSI_X3.4-1968 not unicode using en-gb
https://bugs.launchpad.net/bugs/185671
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 202332] Re: mailman broken after security upgrade on gutsy

2008-03-15 Thread Miek Gieben
I'm using the debian etch package, which seems to work fine under Gutsy.
See packages.debian.org.

-- 
mailman broken after security upgrade on gutsy
https://bugs.launchpad.net/bugs/202332
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 36690] Re: daylight saving time messes up cron

2008-03-30 Thread Miek Gieben
Sadly, this bug is *still* there. It's 30 March 2008 and DST was enabled last 
night. Any crons I had scheduled between 2 and 3 haven't run.
(I was expecting this ofcourse, but still)

-- 
daylight saving time messes up cron
https://bugs.launchpad.net/bugs/36690
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


[Bug 118974] Re: No sane error message when downloading from invalid certificate SSL connection

2008-04-06 Thread Miek Gieben
The bug is bigger than this. Going to any page with a self signed
certificate fails.  This is on Hardy with an AMD64 processer.

When doing the same in firefox (3), it asks if you want to create an exception 
for the self-signed certificate for this site. Epiphany otoh does no such 
thing and just refuses to load the page.

Seems like a sane security measure, but it would be handy if epiphany would 
allow you to also add such certs to a list of trusted one. OR at least
would give a sane warning.

-- 
No sane error message when downloading from invalid certificate SSL connection
https://bugs.launchpad.net/bugs/118974
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 56402] Re: wishlist - ship vmlinux in a -dbg package for oprofile use

2007-06-09 Thread Miek Gieben
Just to add my vote too. I would be very nice to have Systemtap on
Ubuntu systems.

-- 
wishlist - ship vmlinux in a -dbg package for oprofile use
https://bugs.launchpad.net/bugs/56402
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 110956] feisty not supported in rkhunter

2007-04-29 Thread Miek Gieben
Public bug reported:

Binary package hint: rkhunter

rkhunter does not detect that it is running on feisty:

Determining OS... Warning: This operating system is not fully supported!
-

Found warnings:
[07:35:28] Warning: This operating system is not fully supported!

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

-- 
feisty not supported in rkhunter
https://bugs.launchpad.net/bugs/110956
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 71078] Re: buttons stays pressed down

2007-04-18 Thread Miek Gieben
How to trigger:

1. Click on a bookmark menu.
2. Middle click on a item to open it in a new tab
3. Repeat this multiple times

When a previous selected bookmark is still loading, I get the greatest change 
of getting this
hanging button

-- 
buttons stays pressed down
https://bugs.launchpad.net/bugs/71078
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 106957] Re: Systemtap should require kernel debug information

2007-06-25 Thread Miek Gieben
This is on powerpc - to get systemtap working I followed the instruction
from the previous post, but I still get errors:

 ./keyhack.stp -v
Pass 1: parsed user script and 52 library script(s) in 1010usr/20sys/1120real 
ms.
WARNING: cannot find module kernel debuginfo: No DWARF information found
WARNING: cannot find module kernel debuginfo: No DWARF information found
semantic error: no match for probe point while resolving probe point 
kernel.function("kbd_event")
Pass 2: analyzed script: 1 probe(s), 0 function(s), 0 embed(s), 0 global(s) in 
380usr/150sys/592real ms.
Pass 2: analysis failed.  Try again with more '-v' (verbose) options.

% ./top.stp -vv
SystemTap translator/driver (version 0.5.12 built 2007-02-02)
(Using Red Hat elfutils 0.123 libraries.)
Copyright (C) 2005-2006 Red Hat, Inc. and others
This is free software; see the source for copying conditions.
Created temporary directory "/tmp/stap5oOiKJ"
Searched '/usr/share/systemtap/tapset/2.6.20-16-powerpc/ppc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/2.6.20-16-powerpc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/2.6.20/ppc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/2.6.20/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/2.6/ppc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/2.6/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/ppc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/*.stp', match count 33
Searched '/usr/share/systemtap/tapset/LKET/2.6.20-16-powerpc/ppc/*.stp', match 
count 0
Searched '/usr/share/systemtap/tapset/LKET/2.6.20-16-powerpc/*.stp', match 
count 0
Searched '/usr/share/systemtap/tapset/LKET/2.6.20/ppc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/LKET/2.6.20/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/LKET/2.6/ppc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/LKET/2.6/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/LKET/ppc/*.stp', match count 0
Searched '/usr/share/systemtap/tapset/LKET/*.stp', match count 19
Pass 1: parsed user script and 52 library script(s) in 990usr/30sys/1184real ms.
WARNING: cannot find module kernel debuginfo: No DWARF information found
WARNING: cannot find module kernel debuginfo: No DWARF information found
semantic error: no match for probe point while resolving probe point 
kernel.function("sys_*")
Pass 2: analyzed script: 1 probe(s), 1 function(s), 0 embed(s), 1 global(s) in 
360usr/190sys/609real ms.
Pass 2: analysis failed.  Try again with more '-v' (verbose) options.
Running rm -rf /tmp/stap5oOiKJ

-- 
Systemtap should require kernel debug information
https://bugs.launchpad.net/bugs/106957
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 106957] Re: Systemtap should require kernel debug information

2007-06-25 Thread Miek Gieben
I did all that, I've installed the debug-*  package and fixed the
symlink - but still no go. I might try to run this on my AMD64 system.
But on power-pc it looks like a no-go.

-- 
Systemtap should require kernel debug information
https://bugs.launchpad.net/bugs/106957
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 90319] cursor redraw lingers

2007-03-07 Thread Miek Gieben
Public bug reported:

Binary package hint: epiphany-browser

With epiphany 2.17.92 on AMD64 the cursor re-drawing is faulty. When typing 
some text 
and then going back on the line with  the cursor pipe symbol isn't 
properly removed.
In ascii art this yields:   a|b|B|B|C|C
which is quite annoying.

This is only in webforms - so it may wel be a gecko problem.

I've enabled a non-blinking cursor in gnome - epiphany doesn't honor this 
setting for webpages, but
that's another bugreport.

** Affects: epiphany-browser (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
cursor redraw lingers
https://launchpad.net/bugs/90319

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


[Bug 90319] Re: cursor redraw lingers

2007-03-07 Thread Miek Gieben
Cursor theme? The mouse cursor theme is human - I've never touched any other
settings.

I'm attaching a screencast, where I type something in google and them
move the cursor to the left and right. This is in ogg.

** Attachment added: "screencast of cursor problem."
   http://librarian.launchpad.net/6667232/cursor

-- 
cursor redraw lingers
https://launchpad.net/bugs/90319

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


Re: [Bug 84059] Re: latest feisty kernel does not boot

2007-03-14 Thread Miek Gieben
[On 14 Mar, @19:25, Phillip Lougher wrote in "[Bug 84059] Re: latest feisty  
..."]
> Hi Miek
> 
> Can you confirm that you have not experienced this bug since upgrading
> to 2.6.20-8?  If so, we can close this bug.

I think this is a duplicate of: 75681

regards,

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 90319] Re: cursor redraw lingers

2007-03-15 Thread Miek Gieben
Even with a blinking cursor enabled, the problem persists. In firefox the cursor
redraw in the entire application is as weird (also in the address bar).

Could this be an X issue?

-- 
cursor redraw lingers
https://launchpad.net/bugs/90319

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


[Bug 90319] Re: cursor redraw lingers

2007-03-15 Thread Miek Gieben
Hmmm, I've changed my X setup to use the closed source nvidia module and that
makes the issue disappear.



-- 
cursor redraw lingers
https://launchpad.net/bugs/90319

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


[Bug 85437] Re: terminal stays blank/black

2007-03-16 Thread Miek Gieben
Bug is back... I've left a commit upstream. This is with gnome 2.18 on
Feisty

-- 
terminal stays blank/black
https://launchpad.net/bugs/85437

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


[Bug 85437] Re: terminal stays blank/black

2007-03-16 Thread Miek Gieben
Even with:

Package: libvte9
Status: install ok installed
Priority: optional
Section: libs
Installed-Size: 2396
Maintainer: Ubuntu Core developers 
Architecture: amd64
Source: vte
Version: 1:0.16.0-0ubuntu3

still there :(

-- 
terminal stays blank/black
https://launchpad.net/bugs/85437

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


[Bug 47762] Re: [Radeon 9200] [Mac Mini (powerpc)] drm fails to initialize the radeon module, consequently direct rendering is disabled.

2007-03-27 Thread Miek Gieben
Slightly simular setup: powermac G4, also with ATI, I get:

drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: Searching for BusID pci::00:10.0
drmOpenDevice: node name is /dev/dri/card0
drmOpenDevice: open result is 8, (OK)
drmOpenByBusid: drmOpenMinor returns 8
drmOpenByBusid: drmGetBusid reports pci::00:10.0
(EE) AIGLX error: dlopen of /usr/lib/dri/r200_dri.so failed 
(/usr/lib/dri/r200_dri.so: cannot open shared object file: No such file or 
directory)
(II) Loading local sub module "GLcore"

kernel version: 2.6.20-13.21
xserver-xorg-video-ati: 1:6.6.3-2ubuntu4

-- 
[Radeon 9200] [Mac Mini (powerpc)] drm fails to initialize the radeon module, 
consequently direct rendering is disabled.
https://launchpad.net/bugs/47762

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


[Bug 47762] Re: [Radeon 9200] [Mac Mini (powerpc)] drm fails to initialize the radeon module, consequently direct rendering is disabled.

2007-03-27 Thread Miek Gieben
never mind, installing: libgl1-mesa-dri 
fixes this.

-- 
[Radeon 9200] [Mac Mini (powerpc)] drm fails to initialize the radeon module, 
consequently direct rendering is disabled.
https://launchpad.net/bugs/47762

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


[Bug 84059] latest feisty kernel does not boot

2007-02-08 Thread Miek Gieben
Public bug reported:

Binary package hint: linux-image-2.6-power4

I've upgraded to the latest kernel (generic-6 I *think*). And now my laptop 
doesn't boot
anymore... It's extremely hard to get any debug data, because the usplash 
starts. Then
it just hangs at about 5%. If I wait long enough the laptop reboots 
automaticaly, the herd2
kernel works.

I've upgraded it on 8 Feb 2007.

** Affects: linux-meta (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-08 Thread Miek Gieben
Note: this is on powerpc so there is no grub, only yaboot - using
'nosplash' on the boot prompt doesn't make any difference. And I'm using
only 1 filesystem, /dev/hda3 is / and /dev/hda4 is swap (hda1/hda2 are
used by yaboot - I think).

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-08 Thread Miek Gieben
Ah, found /etc/yaboot.conf via the rescue cd - its a kernel crash...:

Faulting instruction address: 0xc0084a0c
Oops: kernel access of bad area: sig: 11 [#1]

And a lot of other numbers

Is this a kernel bug or a bad disk?

I might be able to make a picture of the dump if that is really needed.

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-08 Thread Miek Gieben
Sorry for the bad quality, I only have a mobile laying around here. Tomorrow I 
will type
the backtrace of the screen.

** Attachment added: "loosy backtrace picture 1"
   http://librarian.launchpad.net/6360667/Afb271.jpg

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-08 Thread Miek Gieben
Backtrace:

init-bottom
Done
Unable to handle kernel paging request for data at address 0x004
Faulting instructing address:  0xc0084a0c
Oops: kernel access of bad area: sig: 11 [#1]


Call Trace:
DFFC3E40  C0084AAB free_block+0x160/0x16c (unreliable)
DFFC3E60  C00845B8 cache_flusharray+0x5c/0x100
DFFC3E80  C00847D4 kmem_cache_free+0xb4/0xd0
DFFC3EA0  C0080280 destroy_inode+0x78/0x8c
DFFC3EC0  C009F4D4 iput+0x94/0xb4
DFFC3ED0  C0095280 do_inlinkat+0x130/0x194
DFFC3ED0  C0013510 ret_from_syscal+0x0/0x38
--- Exception: c01 at 0xf810a18
LR: 0x102cc
 Instruction dump:
 5499c .

The hex numbers on the left are not correct; I had limited time this
morning and after the crash I get only 180 seconds before the system
reboots :P

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-08 Thread Miek Gieben
On booting the old kernel: I can select 'old' in the yaboot prompt, but
this kernel isn't configured... No vmlinuz.old nor an initramfs.old is
there in the /boot directory.

I can only boot from a rescue CD and then chroot to the root partition. I 
should be able to retrieve
the boot.log that way.

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-09 Thread Miek Gieben
The crashing kernel does not write any dmesg/boot logging, so I cannot
give that in this bugreport :(

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-10 Thread Miek Gieben
It is kernel version 2.6.20-6.11.

I've did a apt-get install --reinstall of the kernel and this helped. I
can now boot the laptop... I'm still suspecting a bad block on the disk
or something.

Can I run some tests?

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-10 Thread Miek Gieben
Did a badblocks /dev/hda3 which didn't report any errors. Kernel crashes
again...with the same backtrace as above.

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 84059] Re: latest feisty kernel does not boot

2007-02-14 Thread Miek Gieben
The latest kernel upgrade, 2.6.20-8.x seems to fix to issue.

-- 
latest feisty kernel does not boot
https://launchpad.net/bugs/84059

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


[Bug 85437] terminal stays blank/black

2007-02-15 Thread Miek Gieben
Public bug reported:

Binary package hint: gnome-terminal

When switching workspaces the gnome-terminal screen sometimes stays complete 
black. The
supplied screenshot shows what I mean. I'm using a black background and a white 
foreground.

gnome-terminal:
Version: 2.17.91-0ubuntu1
Architecture: amd64

This was working in previous versions of gnome-terminal.

** Affects: gnome-terminal (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
terminal stays blank/black
https://launchpad.net/bugs/85437

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


[Bug 85437] Re: terminal stays blank/black

2007-02-15 Thread Miek Gieben

** Attachment added: "screenshot of the terminal"
   http://librarian.launchpad.net/6442278/gnome-bug.jpg

-- 
terminal stays blank/black
https://launchpad.net/bugs/85437

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


[Bug 75555] Re: Software Raid Setup with feisty herd1 alternate on amd64

2007-02-16 Thread Miek Gieben
*** This bug is a duplicate of bug 75681 ***

** This bug has been marked a duplicate of bug 75681
   initramfs script: race condition between sata and md

-- 
Software Raid Setup with feisty herd1 alternate on amd64
https://launchpad.net/bugs/7

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


[Bug 85437] Re: terminal stays blank/black

2007-02-20 Thread Miek Gieben
** Bug watch added: GNOME Bug Tracker #409055
   http://bugzilla.gnome.org/show_bug.cgi?id=409055

** Also affects: gnome-terminal (upstream) via
   http://bugzilla.gnome.org/show_bug.cgi?id=409055
   Importance: Unknown
   Status: Unknown

-- 
terminal stays blank/black
https://launchpad.net/bugs/85437

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


[Bug 15424] Re: Error while burning DVD-RWs: Input/output error

2006-12-07 Thread Miek Gieben
I have the same problem. This is on amd64/Edgy. After SUCCESSFULLY 
writing a CD, nautilus complains about it and produces an error.

dmesg contains:
[229239.339649] usb 2-6.7: USB disconnect, address 7
[470357.737282] cdrom: This disc doesn't have any tracks I recognize!
[470403.956490] scsi: unknown opcode 0x01
[470434.214181] ISO 9660 Extensions: Microsoft Joliet Level 3
[470434.293628] ISO 9660 Extensions: RRIP_1991A
[599410.177646] cdrom: This disc doesn't have any tracks I recognize!

This was all working on Dapper.

-- 
Error while burning DVD-RWs: Input/output error
https://launchpad.net/bugs/15424

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


Re: [Bug 71078] Re: buttons stays pressed down

2006-12-12 Thread Miek Gieben
[On 12 Dec, @13:13, Sebastien Bacher wrote in "[Bug 71078] Re: buttons stays  
..."]
> Thank you for your bug. What version of Ubuntu do you use? How do you

This is on Edgy (but I had the same problem in Dapper). This is on
AMD46

> close the menu? By clicking on an item? By using the keyboard? By

The menu button is normally closes automaticly when you select an 
item/bookmark. The keyboard isn't used.

It may be related to using the middle click for opening the bookmark
in a new tab - when I know this for sure, I will update the bug report.

> clicking out of epiphany?

I don't click outside of epiphany when this happens.

thanks

--
grtz,
  - Miek

  http://www.miek.nl
  PGP: 6A3C F450 6D4E 7C6B C23C  F982 258B 85CF 3880 D0F6

-- 
buttons stays pressed down
https://launchpad.net/bugs/71078

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


[Bug 78563] Order of package names in argument list shouldn't be relevant

2007-01-09 Thread Miek Gieben
Public bug reported:

Binary package hint: apt

See bugs reported in debian:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=196021
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=122304

They don't seem to be applied in Ubuntu either, this means the order of packages
in apt-get is still important.

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

-- 
Order of package names in argument list shouldn't be relevant
https://launchpad.net/bugs/78563

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


[Bug 78572] view-source open abiword and gives error

2007-01-09 Thread Miek Gieben
Public bug reported:

Binary package hint: epiphany-browser

I've installed abiword and since then epiphany-browser will use abiword
to view the source of a page (^U).

I cannot find any way to tell epiphany to use gvim (for instance) to view the 
source. The only remedy
seems to be to deinstall abiword.

This is in Edgy Eft.

** Affects: epiphany-browser (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
view-source open abiword and gives error
https://launchpad.net/bugs/78572

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


[Bug 78572] Re: view-source open abiword and gives error

2007-01-09 Thread Miek Gieben
If I do that I get a list with the following:
0 abiword
0 epiphany
* firefox
0 gvim
0 text editor

Where firefox is the default - I cannot change the order of the list.

-- 
view-source open abiword and gives error
https://launchpad.net/bugs/78572

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


[Bug 78572] Re: view-source open abiword and gives error

2007-01-09 Thread Miek Gieben
Not consciously. Looking via nautilus at .txt files I indeed see abiword listed 
as the
preferred entry. Clicking gvim and then checking in epiphany indeed gives the 
desired
result: gvim opens the source of the page.

Hmm, not very intuitative, esp. considering epiphany is so user friendly it 
doesn't
need a view-source editor setting...

But: thanks for your help, abiword is gone and I'm flying gvim again :-)

-- 
view-source open abiword and gives error
https://launchpad.net/bugs/78572

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


[Bug 79255] whitescreen issue

2007-01-14 Thread Miek Gieben
Public bug reported:

Binary package hint: compiz

I've upgraded to feisty on January the 13th, as I wanted to try the new 3d 
features I've installed
compiz(-gnome). This sadly does not work. I think I've got AIGLX working, but 
enabling compiz
gives me a whitescreen. This is on apple G4 powerbook, with:

:00:10.0 VGA compatible controller: ATI Technologies Inc Radeon R250
[Mobility FireGL 9000] (rev 01)

using the opensource ati driver.

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

-- 
whitescreen issue
https://launchpad.net/bugs/79255

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


[Bug 79255] Re: whitescreen issue

2007-01-17 Thread Miek Gieben
Updated today - desktop-effects allows me to try out compiz - the whitescreen
issue is gone :-) But compiz only manages 3/4 of the screen, the right side 
isn't
managed somehow.

-- 
whitescreen issue
https://launchpad.net/bugs/79255

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


[Bug 80878] gnome-applets on amd64 problems

2007-01-21 Thread Miek Gieben
Public bug reported:

Binary package hint: gnome-applets

This is on feisty. When I upgraded some gnome-applets failed. See:
http://bugzilla.gnome.org/show_bug.cgi?id=399052

Looking further I see this:
% dpkg -L gnome-applets
Package `gnome-applets' does not contain any files (!)

So I rebuild the gnome-applets package and installed that.
Now I get the following:

% apt-get -f install
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Correcting dependencies...Done
The following packages were automatically installed and are no longer required:
   gnome-applets (2.17.1-0ubuntu3 )
Use 'apt-get autoremove' to remove them.
The following packages will be REMOVED
   gnome-applets (2.17.1-0ubuntu3)
0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
Need to get 0B of archives.
After unpacking 1012kB disk space will be freed.
Do you want to continue [Y/n]? n
Abort.

The applets are now showing in the panel, but this is kind of annoying.

** Affects: gnome-applets (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
gnome-applets on amd64 problems
https://launchpad.net/bugs/80878

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


Re: [Bug 80878] Re: gnome-applets on amd64 problems

2007-01-22 Thread Miek Gieben
[On 22 Jan, @18:33, Sebastien Bacher wrote in "[Bug 80878] Re: gnome-applets  
..."]
> Thank you for your bug. Does it work fine if you reinstall the feisty
> package? What mirror are you using? You are the only one who opened a
> bug about that, it makes likely that was a local problem on your
> computer during the package installation

looks to be confirmed:

% apt-get clean
% apt-get install --reinstall gnome-applets
% dpkg -L gnome-applets
  ... list of files ...


Strange indeed,

--
grtz,
  - Miek

  http://www.miek.nl
  PGP: 6A3C F450 6D4E 7C6B C23C  F982 258B 85CF 3880 D0F6

-- 
gnome-applets on amd64 problems
https://launchpad.net/bugs/80878

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


[Bug 81242] postfix-ldap is linked against gnuTLS

2007-01-24 Thread Miek Gieben
Public bug reported:

Binary package hint: postfix

When trying to get SSL and postfix and ldap going I stumbled accross the 
following:
postfix-ldap is linked against gnu TLS and this breaks SSL and LDAP.
postfix itself /is/ linked against openSSL.

postmap works, but postfix will complain about 'bad search filter'

See: 
http://archives.neohapsis.com/archives/postfix/2007-01/1351.html

for the discussion.

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

-- 
postfix-ldap is linked against gnuTLS
https://launchpad.net/bugs/81242

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


[Bug 81808] powerpc and gnome-power-manager

2007-01-27 Thread Miek Gieben
Public bug reported:

Binary package hint: gnome-power-manager

gnome-power-manager refuses to start.
This is on feisty.

gnome-power-manager --no-daemon
  This program cannot start until you start the dbus session service.

ps aux|grep dbus show that dbus is running

nm-applet and NetworkManager are completely working

** Affects: gnome-power-manager (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
powerpc and gnome-power-manager
https://launchpad.net/bugs/81808

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


[Bug 75555] Re: Software Raid Setup with feisty herd1 alternate on amd64

2007-01-28 Thread Miek Gieben
Same with herd2. Create the arrays, installed grub on the 2 disks and
tried to boot. Grub all goes okay, but then it doesn't detect the arrays
properly and ubunut fails to boot. You get dropped in the busybox shell
which is ran from the initrd image!

Now I have a boot partition without raid1 and this works, all other raid
devices are detected, it is just the booting that fails.

This is with a 2-disk raid1 setup. My /etc/fstab:
proc/procprocdefaults,nosuid,noexec0   0
/dev/sda1   /ext3defaults,errors=remount-ro 0   1
/dev/sdb1   /mnt/root  ext3  defaults,noauto,errors=remount-ro 0   1
/dev/md2   /varxfsdefaults   0   1
/dev/md3   /tmpxfsdefaults,usrquota,grpquota 0   2
/dev/md4   /usr xfs defaults0   2
/dev/md5   /vol xfs defaults0   2
/dev/md6   /home xfsdefaults,usrquota,grpquota  0   2
/dev/md1   none swapsw  0   0
/dev/hdc/media/cdrom0   udf,iso9660 user,noauto 0  0

/dev/sda1 and /dev/sdb1 used to raid1 too...

-- 
Software Raid Setup with feisty herd1 alternate on amd64
https://launchpad.net/bugs/7

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


[Bug 83180] apt-listchanges conflicts with software updates

2007-02-04 Thread Miek Gieben
Public bug reported:

Binary package hint: apt-listchanges

When you install apt-listchanges, you previously got a pop-up with the changes 
before you
went ahead with the software updates. Now (feisty) the software update waits 
for you
to click on 'Details' and look at the changes inside the terminal window. There 
you also must
press 'Y' (yes) to continue the install.

I consider this a regression from dapper/edgy.

regards,

** Affects: apt-listchanges (Ubuntu)
 Importance: Undecided
 Status: Unconfirmed

-- 
apt-listchanges conflicts with software updates
https://launchpad.net/bugs/83180

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


[Bug 436340] Re: Installer fails: grub fails on Intel ICH10 raid

2010-02-27 Thread Miek Gieben
With lucid alpha3 (alternate) installer this is still a problem. I'm
looking a the exact error (UUIDs not supported) right now

-- 
Installer fails: grub fails on Intel ICH10 raid
https://bugs.launchpad.net/bugs/436340
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 436340] Re: Installer fails: grub fails on Intel ICH10 raid

2010-02-27 Thread Miek Gieben
I'm if I mount /proc in the chroot is seems to work:

chroot /target
mount /proc
grub-install --modules=raid /dev/sda

-- 
Installer fails: grub fails on Intel ICH10 raid
https://bugs.launchpad.net/bugs/436340
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 428872] [NEW] cups-included is empty

2009-09-13 Thread Miek Gieben
Public bug reported:

In Jaunty /usr/share/ppd/cups-included/ is full of ppd drivers for cups. In 
karmic this
directory is almost empty.

The net result is that I cannot use my Dymo label writer because the ppd
file is not there.

% lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:Ubuntu karmic (development branch)
Release:9.10
Codename:   karmic

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

-- 
cups-included is empty
https://bugs.launchpad.net/bugs/428872
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 428872] Re: cups-included is empty

2009-09-13 Thread Miek Gieben
Just saw these debug messages from 'system-config-printer'

% system-config-printer
No ID match for device usb://DYMO/LabelWriter%20400?serial=08091919352987:
  DYMO
  LabelWriter 400
  
   
Using lsb/usr/cups-included/textonly.ppd (status: 3)
No ID match for device usb://DYMO/LabelWriter%20400?serial=08091919352987:
  DYMO
  LabelWriter 400
  
   
Using lsb/usr/cups-included/textonly.ppd (status: 3)

-- 
cups-included is empty
https://bugs.launchpad.net/bugs/428872
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 428872] Re: cups-included is empty

2009-09-13 Thread Miek Gieben
Thanks for your comments, but nor system-config-printer nor lpinfo seem
to work:

% lpinfo -m | fgrep -i dymo 
gives no result.
system-config-printer finds the print just fine, but then fails to provide the 
correct ppd. Even the
vendor Dymo is not in the list.

Do need some extra package (this is a stock karmic install) to give me
this functionality?

-- 
cups-included is empty
https://bugs.launchpad.net/bugs/428872
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 428872] Re: cups-included is empty

2009-09-13 Thread Miek Gieben
Well, I'm getting more confused by the minute. Basicly (I think) it
boils down to the following question:

why does 'lpinfo -m |grep -i dymo' gives a result on your system and not
on mine?

(lpinfo -m generates a large amount of printer ppd files, just not for
any dymo printers).

-- 
cups-included is empty
https://bugs.launchpad.net/bugs/428872
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 428872] Re: cups-included is empty

2009-09-14 Thread Miek Gieben
Yes, I have the cups-common package and the sample.drv is also
installed.

-- 
cups-included is empty
https://bugs.launchpad.net/bugs/428872
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 428872] Re: cups-included is empty

2009-09-14 Thread Miek Gieben
Well, I will be damned...

Now it works. Dymo is listed in the gui and:
% lpinfo -m |grep dymp
drv:///sample.drv/dymo.ppd Dymo Label Printer

No idea why this is.

Well, thanks for your help.

-- 
cups-included is empty
https://bugs.launchpad.net/bugs/428872
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 562083] [NEW] tar: Record size = 8 blocks

2010-04-13 Thread Miek Gieben
Public bug reported:

Binary package hint: tar

When creating a tar archive with git-archive. I get a good tar archive, which 
unpacks on all distros I tried it, expect
on Ubuntu Lucid:
% apt-show-versions -p tar  
tar/lucid uptodate 1.22-2

% tar tvf rdup-1.1.5.tar.bz2  
tar: Record size = 8 blocks

And nothing happens. Ubuntu Karmic's tar just works.

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

-- 
tar: Record size = 8 blocks
https://bugs.launchpad.net/bugs/562083
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 562083] Re: tar: Record size = 8 blocks

2010-04-13 Thread Miek Gieben
tar-1.23 has the same issue. Maybe this is not a bug in tar, but in GIT.

-- 
tar: Record size = 8 blocks
https://bugs.launchpad.net/bugs/562083
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 562083] Re: tar: Record size = 8 blocks

2010-04-13 Thread Miek Gieben
It is not something in git-archive, but it is hard to reproduce. I did
spotted a bug in a archive creation script. If I do a

tar cfz archive.tar.bz2# name the file .bz2, but use the
-z (gzip) compression flag

unpack

tar xvf archive.tar.bz2

sometimes you get the warning mentioned in this bugreport, but not
always. If I do this on some test directory everything works ok.

-- 
tar: Record size = 8 blocks
https://bugs.launchpad.net/bugs/562083
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 432287] [NEW] Xorg eats 100% CPU

2009-09-17 Thread Miek Gieben
Public bug reported:

Running the very latest Karmic (of as today) and Xorg now eats 100% cpu. 
Disabling composer (this is with 
xfce) slightly fixes the problem (i.e. makes X usable again). When running top 
and moving your mouse in 
X the CPU hits the roof...

Might be related to: 419264

ProblemType: Bug
Architecture: i386
Date: Fri Sep 18 08:25:47 2009
DistroRelease: Ubuntu 9.10
MachineType: ASUSTeK Computer INC. B202
Package: xserver-xorg-core 2:1.6.3-1ubuntu6
ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.31-10-generic 
root=UUID=f903ee0b-7613-4db4-8d6b-6d2b830fa3f7 ro quiet splash
ProcEnviron:
 LANGUAGE=en_US:en_GB:en
 PATH=(custom, user)
 LANG=en_US.UTF-8
 SHELL=/bin/zsh
ProcVersionSignature: Ubuntu 2.6.31-10.34-generic
RelatedPackageVersions:
 xserver-xorg 1:7.4+3ubuntu5
 libgl1-mesa-glx 7.6.0~git20090817.7c422387-0ubuntu4
 libdrm2 2.4.13-1ubuntu1
 xserver-xorg-video-intel 2:2.8.1-1ubuntu1
 xserver-xorg-video-ati 1:6.12.99+git20090825.fc74e119-0ubuntu1
SourcePackage: xorg-server
Uname: Linux 2.6.31-10-generic i686
XorgConf: Error: [Errno 2] No such file or directory: '/etc/X11/xorg.conf'
dmi.bios.date: 09/02/2008
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 0701
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P5LD2EB-DHS
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr0701:bd09/02/2008:svnASUSTeKComputerINC.:pnB202:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP5LD2EB-DHS:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: B202
dmi.product.version: System Version
dmi.sys.vendor: ASUSTeK Computer INC.
fglrx: Not loaded
system:
 distro: Ubuntu
 architecture:   i686kernel: 2.6.31-10-generic

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


** Tags: apport-bug i386

-- 
Xorg eats 100% CPU
https://bugs.launchpad.net/bugs/432287
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


  1   2   >