[Bug 1635056] [NEW] mencoder segfault while extracting rawaudio from dvd iso

2016-10-19 Thread Zenigata
Public bug reported:

Trying to extract audio track from a DVD iso produces a segfault in
mencoder with the -aid parameter.

mplayer is able to read the iso as a DVD. mencoder is able to process
the video and if no -aid is given no segfault occurs...

Bug experienced with Ubuntu Xenial. Tried to upgrade mencoder to Yakety
version with no success fixing the bug.

here is the command line used :

mencoder dvd://3 -nocache -noslices -noconfig all -demuxer +lavf -o
/tmp/audio.3E5JPY -aid 128 -dvd-device /home/andrea/Videos/DVD.iso
-noskip -ovc copy -of rawaudio -oac copy

and here is the output :

There are 3 titles on this DVD.
There are 1 angles in this DVD title.

libdvdread: Attempting to retrieve all CSS keys
libdvdread: This can take a _long_ time, please be patient

libdvdread: Get key for /VIDEO_TS/VIDEO_TS.VOB at 0x0138
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_0.VOB at 0x2a82
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_01_1.VOB at 0x2a87
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_0.VOB at 0x2aae
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_02_1.VOB at 0x2ab3
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_0.VOB at 0x704e
libdvdread: Elapsed time 0
libdvdread: Get key for /VIDEO_TS/VTS_03_1.VOB at 0x00018a34
libdvdread: Elapsed time 0
libdvdread: Found 3 VTS's
libdvdread: Elapsed time 0
audio stream: 0 format: ac3 (5.1) language: en aid: 128.
audio stream: 1 format: dts (5.1) language: en aid: 137.
audio stream: 2 format: ac3 (stereo) language: en aid: 130.
audio stream: 3 format: dts (5.1) language: fr aid: 139.
audio stream: 4 format: ac3 (5.1) language: fr aid: 132.
number of audio channels on disk: 5.
subtitle ( sid ): 0 language: fr
number of subtitles on disk: 1

success: format: 2  data: 0x0 - 0x5681f000
libavformat version 57.25.100 (external)
libavformat file format detected.
[lavf] stream 0: video (mpeg2video), -vid 0
[lavf] stream 1: audio (ac3), -aid 0
[lavf] stream 2: audio (dca), -aid 1
[lavf] stream 3: audio (ac3), -aid 2
[lavf] stream 4: audio (dca), -aid 3
[lavf] stream 5: audio (ac3), -aid 4
VIDEO:  [MPG2]  720x576  0bpp  25.000 fps0.0 kbps ( 0.0 kbyte/s)
zsh: segmentation fault (core dumped)

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

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

Title:
  mencoder segfault while extracting rawaudio from dvd iso

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

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


[Bug 1514474] Re: package tex-common 6.04 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-14 Thread Zenigata
For people affectés by this issue, you may try following procédure :
   - download the tex-common package
  $ aptitude download tex-common
   - unpack the deb package
  $ dpkg-deb -R tex-common_6.04_all.deb fixfolder
   - fix the postinst script in fixfolder/DEBIAN by removing the faulty 
parametrer  :--no-error-if-no-engine=luajittex (3 occurrences to remove) or 
replace it by the fixed script joined in previous post
- rebuid the package
  $ dpkg-deb -b fixfolder fixed-tex-common.deb
- remove previous bugged installation and installation fixed
  $ sudo dpkg --force-all -r tex-common && sudo dpkg -i fixed-tex-common.deb

It worked like a charm for me, but the faulty parametrer may have been
there for some cases...

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

Title:
  package tex-common 6.04 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tex-common/+bug/1514474/+subscriptions

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

[Bug 1514474] Re: package tex-common 6.04 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-13 Thread Zenigata
Here is a modified postinst script  for tex-common that did the job for
me.

However I do not know if it is a correct fix or just a work around (I
did just remove the incorrect option "--no-error-if-no-engine=luajittex"
that may have been intended as usefull in some cases)


** Attachment added: "modified post-inst script"
   
https://bugs.launchpad.net/ubuntu/+source/tex-common/+bug/1514474/+attachment/4720369/+files/postinst

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

Title:
  package tex-common 6.04 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tex-common/+bug/1514474/+subscriptions

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


[Bug 1514474] Re: package tex-common 6.04 failed to install/upgrade: subprocess installed post-installation script returned error exit status 1

2016-08-13 Thread Zenigata
It seems there is a faulty parameter in the call to fmtutils :

fmtutil: unknown option `--no-error-if-no-engine=luajittex'; try fmtutil
--help if you need it.

It should not be that difficult to fix...

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

Title:
  package tex-common 6.04 failed to install/upgrade: subprocess
  installed post-installation script returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tex-common/+bug/1514474/+subscriptions

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


[Bug 783582] Re: [Aspire 3830TG, Conexant ID 506c, Speaker, Internal] No sound at all

2012-05-28 Thread Zenigata
Problem is back in precise.

suspend trick works, but this is a trick.

For an LTS this should not be leaved unsolved

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

Title:
  [Aspire 3830TG, Conexant ID 506c, Speaker, Internal] No sound at all

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

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


[Bug 880032] Re: [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

2011-11-25 Thread Zenigata
Seems to be fixed now... Do'nt know how or why.

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

Title:
  [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/880032/+subscriptions

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


[Bug 783582] Re: [Aspire 3830TG, Conexant ID 506c, Speaker, Internal] No sound at all

2011-10-27 Thread Zenigata
Exactly the same problem as Mark Baas on an Acer 3830T.

Actually before update to kernel 3.0.13, I had sound by compiling the
latest alsa-driver snapshots. After 3.0.13, I had no sound at all even
with compilation of the snapshot.

I never use suspend, so I did'nt bump into this fix. But when I saw
that comment I tried and this worked.

So I guess something went wrong somewhere. Probably the suspend trick
worked with 3.0.12, but there installation of alsa-driver compiled with
--enable-dynamic-minors --without-oss worked better as a fix (no need to
suspend).

I also tried unloading and reloading the dirver without suspend and this
does'nt work...

I think the fix-released status is confusing since the fix does not work
!

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

Title:
  [Aspire 3830TG, Conexant ID 506c, Speaker, Internal] No sound at all

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

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


[Bug 880032] Re: [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

2011-10-23 Thread Zenigata
Does not fix the problem for headphone... Only for front speaker.

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

Title:
  [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/880032/+subscriptions

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


[Bug 880032] [NEW] [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

2011-10-22 Thread Zenigata
Public bug reported:

No sound at all with Ubuntu 11.10. All solutions given for 11.04 (and
that are supposed to be integrated in 11.10) are inneffective.

Also tried to use module-assistant in order to recompile the alsa-driver
but build of the module fails with m-a.

Instalaltion of the module from alsa-source give an unkown symbol error
at module load.

ProblemType: Bug
DistroRelease: Ubuntu 11.10
Package: alsa-base 1.0.24+dfsg-0ubuntu2
ProcVersionSignature: Ubuntu 3.0.0-13.21-generic 3.0.6
Uname: Linux 3.0.0-13-generic x86_64
NonfreeKernelModules: wl
AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.24.
ApportVersion: 1.23-0ubuntu3
Architecture: amd64
ArecordDevices:
  List of CAPTURE Hardware Devices 
 card 0: PCH [HDA Intel PCH], device 0: CONEXANT Analog [CONEXANT Analog]
   Subdevices: 1/1
   Subdevice #0: subdevice #0
AudioDevicesInUse:
 USERPID ACCESS COMMAND
 /dev/snd/controlC0:  andrea 1862 F pulseaudio
Card0.Amixer.info:
 Card hw:0 'PCH'/'HDA Intel PCH at 0xc080 irq 48'
   Mixer name   : 'Intel CougarPoint HDMI'
   Components   : 'HDA:14f1506c,1025054c,0010 
HDA:80862805,80860101,0010'
   Controls  : 25
   Simple ctrls  : 13
CheckboxSubmission: 7856840b27eb023b4ee6d496b106c090
CheckboxSystem: 2954e74ba17fb0e37fc942cd1d9fab4e
Date: Sat Oct 22 19:42:24 2011
InstallationMedia: Ubuntu 11.10 Oneiric Ocelot - Release amd64 (20111012)
PackageArchitecture: all
ProcEnviron:
 PATH=(custom, no user)
 LANG=fr_FR.UTF-8
 SHELL=/bin/zsh
SourcePackage: alsa-driver
Symptom: audio
Symptom_AlsaPlaybackTest: ALSA playback test through plughw:PCH failed
Symptom_Card: Audio interne - HDA Intel PCH
Symptom_Jack: Speaker, Internal
Symptom_Type: No sound at all
Title: [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 06/08/2011
dmi.bios.vendor: Acer
dmi.bios.version: V1.05
dmi.board.asset.tag: Base Board Asset Tag
dmi.board.name: JM30_HR
dmi.board.vendor: Acer
dmi.board.version: Base Board Version
dmi.chassis.type: 10
dmi.chassis.vendor: Acer
dmi.chassis.version: V1.05
dmi.modalias: 
dmi:bvnAcer:bvrV1.05:bd06/08/2011:svnAcer:pnAspire3830T:pvrV1.05:rvnAcer:rnJM30_HR:rvrBaseBoardVersion:cvnAcer:ct10:cvrV1.05:
dmi.product.name: Aspire 3830T
dmi.product.version: V1.05
dmi.sys.vendor: Acer

** Affects: alsa-driver (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug oneiric running-unity

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

Title:
  [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/880032/+subscriptions

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


[Bug 880032] Re: [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

2011-10-22 Thread Zenigata
-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/880032

Title:
  [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/880032/+subscriptions

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


[Bug 880032] Re: [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

2011-10-22 Thread Zenigata
Well, compiling alsa snapshot alsa-driver-1.0.24.72 with

./configure --enable-dynamic-minors --without-oss

seems to fix the problem.

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

Title:
  [Aspire 3830T, Conexant CX20588, Speaker, Internal] No sound at all

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/880032/+subscriptions

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


[Bug 314668] Re: [needs-packaging] Thunderbird 3

2009-12-12 Thread Zenigata
Please package for Karmic. Thunderbird 3.0 is a great update.

Thanks.

-- 
[needs-packaging] Thunderbird 3
https://bugs.launchpad.net/bugs/314668
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 303697] Re: [RV730XT] [fglrx] video tearing / vsync problems - independent of compiz use

2009-10-25 Thread Zenigata
Same problem with 9.04 and Ati drivers 9.10. :(

-- 
[RV730XT] [fglrx] video tearing / vsync problems - independent of compiz use
https://bugs.launchpad.net/bugs/303697
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 296553] [NEW] [intrepid] desactivating gnome sounds does not work

2008-11-10 Thread Zenigata
Public bug reported:

When trying to deactivate the login sound in the
system/administration/sounds menu, even thought it  is reported as
deactivated, it is still played at begining of the session.

This is quite an annoying but not a serious bug.


Regards.

-- 
Z.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
[intrepid] desactivating gnome sounds does not work
https://bugs.launchpad.net/bugs/296553
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 212897] Re: [fglrx] soft lockup, CPU0 stuck for 11s!

2008-11-01 Thread Zenigata
Well I did not encounter that bug in intrepid, I don't know if it's
fglrx or the kernel, but intrepid seems much more stable than hardy on
my cpu, no more black screens etc..

-- 
[fglrx] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 179042] Re: Videos tear and blink when enabling compiz [AMD Feature #7647]

2008-11-01 Thread Zenigata
@spandanj
1) Does VLC or WMP in windows use opengl to playback video?
Well WMP I do not know, but VLC, you can choose

2) Does windows have the capability to use opengl in more than one
software? or mac? Meaning, Is the problem that OpenGL cannot be used
simultaneously (eg. compiz and google-earth) smoothly the major problem
in ubuntu?

Well yes, when I was using Windows, it was possible.
3) does x11 as a playback device for Mplayer show video with less quality than 
OpenGL?

Yes or no, actually X11 rendering is usually less smooth, sometimes
laggy. xv or ogl renderers tends to be smoother, with no need to rescale
te video.

-- 
Videos tear and blink when enabling compiz [AMD Feature #7647]
https://bugs.launchpad.net/bugs/179042
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 289509] [NEW] [intrepid] fn+vol keys lag and slow down the system

2008-10-26 Thread Zenigata
Public bug reported:

After configuring keybinding for lowering and raising volume in
intrepid, every time I try to use these key, it slows down the system
and it seems very laggy (the animation of the bar appearing to show the
volume shows up and disapear repetidly during a minute or more, and
gnome-settings-daemon is taking much cpu time).

It looks liek it i reated to a problem with the fn+voldow/volup keys,
because the keys for brightness work correctly, and if I change the
shortcut to something else, it works.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
[intrepid] fn+vol keys  lag and slow down the system
https://bugs.launchpad.net/bugs/289509
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 198453] Re: Default ALSA device must use PulseAudio, otherwise ALSA applications may fail

2008-10-19 Thread Zenigata
@Daniel
Yes I know I can remove pulseaudio, but as stated by others, it breaks 
ubuntu-desktop package and thus prevent the upgrade to be proposed. And also 
since the begining with hardy, I have to rebuild alsa from the source (the ones 
downloaded with apt-get sources) and sometime safe-upgrades break again the 
sound system.

I think sound issues are of major importance to Ubuntu since sound
belongs to the basics thing that should just work. Pulseaudio is in
itself a good idea, but it is much more ressource consuming that alsa
dmix. Actually I am not sure wether pulseaudio really bring something to
people not wanting to do CAM or webradios, and for those, would'nt it be
more consistent to have Jack ?

Also the problem with hardy is the regression on the alsa side : 7.10 I
had my alsa sound working, inputs, outputs every thing was correct
(after some painful configuration). With hardy, at first I had only one
slider, no alsa interface (mixing capabilities were inexistant for none
pulseaudio devices), I got rid of pulseaudio, find out that I had to
recompile alsa, and unfortunately I am still unable to have the
recording from mic/line in input work properly : it is very noisy, even
thought the sound in the speaker when not muting mic line in is good.

I do really hope that 8.10 will clean these messy problems and that
sound won'nt be anymore an issue on Ubuntu.

Regards.

-- 
Default ALSA device must use PulseAudio, otherwise ALSA applications may fail
https://bugs.launchpad.net/bugs/198453
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 198453] Re: Default ALSA device must use PulseAudio, otherwise ALSA applications may fail

2008-10-18 Thread Zenigata
Well I think pulseaudio is one of the thing that was a little bit too
fast harshed into ubuntu. As of now it disables the use of lots of
features of Alsa and the latest update of hardy screwed my settings one
more time.

People should have the choice between an feature missing cpu expensive
pulseaudio and a correctly set Alsa, and updates should'nt reset theirs
settings.

It is not acceptable that after an update, one loses its ALSA device, so
that it becomes impossible for him to easily set  his volume and that
gnome's audio preferences falls the default device to the oss interface.

I do hope that the pulse-audio implementation in Intrepid won't be as
messy as the one in hardy, but the audio problems induced by hardy
pulseaudio arevery nerving me and make me consider switching to other
distrib.

For now I have applications that complain about not finding sound a.s.o.
gnome mixer is unusable.

-- 
Default ALSA device must use PulseAudio, otherwise ALSA applications may fail
https://bugs.launchpad.net/bugs/198453
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 178732] Re: [xinput] missing devices

2008-06-15 Thread Zenigata
Well actually xgl does not support xinput, so one is unable to use
extended input devices and xgl at the same time.

I think this bug should be set to invalid since it is more a feature
request.

Regards

-- 
Z.

-- 
[xinput] missing devices
https://bugs.launchpad.net/bugs/178732
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 224087] [NEW] dapper to hardy update ldconfig wrong

2008-04-29 Thread Zenigata
Public bug reported:

While upgrading to hardy frome dapper, I got an update failure message
at the veruy en, before cleaning.

During the upgrade, it was complaning about symbol lookup errors for
libgdk_pixbuf-2.2.0.so.0, and after fixing this I got some other symbol
lookup errors with other libs...

Many graphics apps were broken (including gdm, kdm).

I correct this by editin /etc/ld.so.conf.d/libc.conf to use as default
folder /usr/lib instead of /usr/local/lib but I'm not sure this the good
way.

-- 
Z.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
dapper to hardy update ldconfig wrong
https://bugs.launchpad.net/bugs/224087
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 224087] Re: dapper to hardy update ldconfig wrong

2008-04-29 Thread Zenigata

** Attachment added: apt.log
   http://launchpadlibrarian.net/14016279/apt.log

-- 
dapper to hardy update ldconfig wrong
https://bugs.launchpad.net/bugs/224087
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 224087] Re: dapper to hardy update ldconfig wrong

2008-04-29 Thread Zenigata

** Attachment added: main.log
   http://launchpadlibrarian.net/14016305/main.log

-- 
dapper to hardy update ldconfig wrong
https://bugs.launchpad.net/bugs/224087
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 224087] Re: dapper to hardy update ldconfig wrong

2008-04-29 Thread Zenigata
Here are the files, hope it may help.

By the way, I think that the way I fixed the problem is not the good
one, it seems to me that because of the failure of the upgrade just
before the clean-up, there were still old versions of the libs in
/usr/local/lib, and thus ldconfig was pointing to those old versions
instead of the correct ones.

So the change I made is sort of a work around, but removing the libs in
/usr/local/lib should do the same without preventing people to install
new versions of some lib in that folder...


Regards
-- 
Z.

** Attachment added: term.log
   http://launchpadlibrarian.net/14016388/term.log

-- 
dapper to hardy update ldconfig wrong
https://bugs.launchpad.net/bugs/224087
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 224087] Re: dapper to hardy update ldconfig wrong

2008-04-29 Thread Zenigata

** Attachment added: main_pre_req.log
   http://launchpadlibrarian.net/14016321/main_pre_req.log

-- 
dapper to hardy update ldconfig wrong
https://bugs.launchpad.net/bugs/224087
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 224087] Re: dapper to hardy update ldconfig wrong

2008-04-29 Thread Zenigata

** Attachment added: apt-term.log
   http://launchpadlibrarian.net/14016289/apt-term.log

-- 
dapper to hardy update ldconfig wrong
https://bugs.launchpad.net/bugs/224087
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 223823] [NEW] [javascript] DOM incompatibility between FF2 and FF3

2008-04-28 Thread Zenigata
Public bug reported:

Binary package hint: firefox-3.0

Changing the DOM in FF3 cause a lot of code rewriting, for example that
code :

this.scroll.up = this.base.getElementsByClassName(scrollup).reduce();

used to be corect in FF2, but in FF3 you have to cast the result of
getElementsByClassName(scrollup) to array.

It would be nice to have all the functions of Array existing on the
object returned by this in FF3.

in FF3 the working code is

this.scroll.up =
Array.from(this.base.getElementsByClassName(scrollup)).reduce()

So, maybe it is a feature, but if so, I'd like to know the interest of
doing this.

Regards

-- 
Z.

ProblemType: Bug
Architecture: amd64
Date: Mon Apr 28 20:02:07 2008
DistroRelease: Ubuntu 8.04
NonfreeKernelModules: fglrx ath_hal
Package: firefox-3.0 3.0~b5+nobinonly-0ubuntu3
PackageArchitecture: amd64
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=fr_FR.UTF-8
 SHELL=/bin/zsh
SourcePackage: firefox-3.0
Uname: Linux 2.6.24-16-generic x86_64

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


** Tags: apport-bug

-- 
[javascript] DOM incompatibility between FF2 and FF3
https://bugs.launchpad.net/bugs/223823
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 223823] Re: [javascript] DOM incompatibility between FF2 and FF3

2008-04-28 Thread Zenigata

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/13991768/Dependencies.txt

** Attachment added: pluginreg.dat.txt
   http://launchpadlibrarian.net/13991769/pluginreg.dat.txt

** Attachment added: profiles.ini.txt
   http://launchpadlibrarian.net/13991770/profiles.ini.txt

-- 
[javascript] DOM incompatibility between FF2 and FF3
https://bugs.launchpad.net/bugs/223823
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 212897] [NEW] [hardy][xorg] soft lockup, CPU0 stuck for 11s!

2008-04-06 Thread Zenigata
Public bug reported:

Binary package hint: xserver-xorg

Since a few days, when I leave my laptop for a big while, it has a black
screen  and seems unresponsive to anything but the sys requests
alt+printscr+e/s/b.

I tried to log on it using ssh acces, but no response even thought it
responded to ping.

I did not find revelent info in dmesg, but syslog seems to report a sof
lockup involving xorg...

In the logs I am joining there, the bug seems to have happened at 16h40.

Regards.

-- 
Z.

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

-- 
[hardy][xorg] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 212897] Re: [hardy][xorg] soft lockup, CPU0 stuck for 11s!

2008-04-06 Thread Zenigata

** Attachment added: uname -a output
   http://launchpadlibrarian.net/13151204/uname-a.log

-- 
[hardy][xorg] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 212897] Re: [hardy][xorg] soft lockup, CPU0 stuck for 11s!

2008-04-06 Thread Zenigata

** Attachment added: version
   http://launchpadlibrarian.net/13151211/version.log

-- 
[hardy][xorg] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 212897] Re: [hardy][xorg] soft lockup, CPU0 stuck for 11s!

2008-04-06 Thread Zenigata

** Attachment added: syslog
   http://launchpadlibrarian.net/13151274/syslog

-- 
[hardy][xorg] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 212897] Re: [hardy][xorg] soft lockup, CPU0 stuck for 11s!

2008-04-06 Thread Zenigata

** Attachment added: lspci-vvnn.log
   http://launchpadlibrarian.net/13151300/lspci-vvnn.log

-- 
[hardy][xorg] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 212897] Re: [hardy][xorg] soft lockup, CPU0 stuck for 11s!

2008-04-06 Thread Zenigata

** Attachment added: dmesg.log
   http://launchpadlibrarian.net/13151305/dmesg.log

-- 
[hardy][xorg] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 192382] Re: alsamixer broken in hardy - intel hda

2008-04-06 Thread Zenigata
Well the trick of using an asound.state file seems to work, and using
pulse audio allow one to set the volume of the pulse device using
alsamixer. So this bug is probably going to be quite transparent to the
typical user that is doing a fresh installation.

Anyway it is a bad thing to have in a lts, maybe it is due to the
version mimatch between the different alsa component, but the fact is
that one is able to change the mixer settings using the old asound.state
file.

I use a file with all the outputs, not only one, that allow me to tweak
my settings quite fine.

regards.

-- 
Z.

-- 
alsamixer broken in hardy - intel hda
https://bugs.launchpad.net/bugs/192382
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 212897] Re: [hardy][xorg] soft lockup, CPU0 stuck for 11s!

2008-04-06 Thread Zenigata
** Description changed:

  Binary package hint: xserver-xorg
  
  Since a few days, when I leave my laptop for a big while, it has a black
  screen  and seems unresponsive to anything but the sys requests
- alt+printscr+e/s/b.
+ alt+printscr+e/s/b, but I have to say that the screen remains all black
+ till the alt+printscr+b.
  
  I tried to log on it using ssh acces, but no response even thought it
  responded to ping.
  
  I did not find revelent info in dmesg, but syslog seems to report a sof
  lockup involving xorg...
  
  In the logs I am joining there, the bug seems to have happened at 16h40.
  
+ Normally, my laptop is not configured to suspend or such things like
+ this, and I also had a music player running that had stopped.
+ 
+ Let me know if there is need for any other details.
+ 
  Regards.
  
  -- 
  Z.

-- 
[hardy][xorg] soft lockup, CPU0 stuck for 11s!
https://bugs.launchpad.net/bugs/212897
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 200813] Re: dead keys broken in hardy

2008-04-06 Thread Zenigata
Same thing here, 'apt-get --purge remove scim scim-*' did a good job

-- 
Z.

-- 
dead keys broken in hardy
https://bugs.launchpad.net/bugs/200813
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 197639] Re: [hardy] fglrx xv output not available for video playback

2008-03-24 Thread Zenigata
Same here. For the blinkin' issue, I have the same thing with or without
these options on most opengl apps.

For Gnome Chess, I have mostly a black screen that sometimes lets the
correct rendering appears beneath...

I think there is a probleme with the order of sort of layers when using
compositing with fglrx...

I'm not sure wether this is a fglrx issue or a aiglx...


Regards
-- 
Z.

-- 
[hardy] fglrx xv output not available for video playback
https://bugs.launchpad.net/bugs/197639
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 197937] Re: [hardy] usplash colors got corrupted since last update

2008-03-22 Thread Zenigata
I tested blacklisting any fb driver, and it did fix this.

So I lost high res TTY, but I have a working usplash back...

Thanks

-- 
Z.

-- 
[hardy] usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 205239] [NEW] [hardy] alsamixer: function snd_mixer_load failed: No such file or directory

2008-03-22 Thread Zenigata
Public bug reported:

Binary package hint: alsa-utils

Since my first upgrade to hardy, I git that message trying to run
alsamixer.

alsamixer: function snd_mixer_load failed: No such file or directory

alsa sound output works thought, it is just that I do not ave access to
any mixer (graphics versions of alsamixer suffer the same way)

here are some details about my system :

uname -a

Linux chameau 2.6.24-12-generic #1 SMP Wed Mar 12 22:31:43 UTC 2008
x86_64 GNU/Linux

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

-- 
[hardy] alsamixer: function snd_mixer_load failed: No such file or directory
https://bugs.launchpad.net/bugs/205239
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 205239] Re: [hardy] alsamixer: function snd_mixer_load failed: No such file or directory

2008-03-22 Thread Zenigata

** Attachment added: dmesg
   http://launchpadlibrarian.net/12812217/dmesg.log

-- 
[hardy] alsamixer: function snd_mixer_load failed: No such file or directory
https://bugs.launchpad.net/bugs/205239
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 205239] Re: [hardy] alsamixer: function snd_mixer_load failed: No such file or directory

2008-03-22 Thread Zenigata

** Attachment added: lspci -vvnn output
   http://launchpadlibrarian.net/12812223/lspci-vvnn.txt

-- 
[hardy] alsamixer: function snd_mixer_load failed: No such file or directory
https://bugs.launchpad.net/bugs/205239
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 205239] Re: [hardy] alsamixer: function snd_mixer_load failed: No such file or directory

2008-03-22 Thread Zenigata

** Attachment added: ouput of the alsa-info script...
   http://launchpadlibrarian.net/12812278/alsa-info.txt

-- 
[hardy] alsamixer: function snd_mixer_load failed: No such file or directory
https://bugs.launchpad.net/bugs/205239
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 160309] Re: X crashes when idle

2008-03-22 Thread Zenigata
Kind of same problem, allmost every time the pc goes idle, or sometime
while playing with some littles opengl apps (like the physics simulator
phun app)

here is a xorg.log with the bug...

When happening while playing with phun, the screen goes black, then gdm
tries to start (mouse cursor round with little dots)

** Attachment added: xorg.log after freeze during phun.
   http://launchpadlibrarian.net/12814903/Xorg.0.log.old

-- 
X crashes when idle
https://bugs.launchpad.net/bugs/160309
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 197937] Re: [hardy] usplash colors got corrupted since last update

2008-03-16 Thread Zenigata
I found out that using radeonfb instead of vesafb corrects this issue.

And since a few updatre I noticed that vesafb was not working for
displaying high res ttys...

Regards.

-- 
Z.

-- 
[hardy] usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 185641] Re: [hardy] Stretch icon feature doesn't work

2008-03-14 Thread Zenigata
Well the fix is not that good :

If one is now able to strech the icons, a streched icon lokks awful even
when using an svg file as icon.

It is as if it is converted to low res bitmap and then streched, so
where the advantage of vector format icons ?


Regards
-- 
Z.

-- 
[hardy] Stretch icon feature doesn't work
https://bugs.launchpad.net/bugs/185641
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 192382] Re: alsamixer broken in hardy - intel hda

2008-03-13 Thread Zenigata
Hmm I have the same problem on hardy amd64 up to date. I saw a status
flag set to fix released, is this true, or is there still some problem
and need for further information  ?

Regards

-- 
Z.

-- 
alsamixer broken in hardy - intel hda
https://bugs.launchpad.net/bugs/192382
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 197805] Re: [hardy] gmplayer unable to open video files with space in their names

2008-03-12 Thread Zenigata
The application executable name is gmplayer, and its launcher name is
Mplayer Movie Player, so I guess it is probably mplayer.

And yes the problem only occurs when opening the file from within
nautilus, and not only by clicking (Open with ... give also the same
error)

Regards.

-- 
Z.

-- 
[hardy] gmplayer unable to open video files with space in their names
https://bugs.launchpad.net/bugs/197805
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 192550] Re: glxgears image split across screen in hardy 64-bit

2008-03-12 Thread Zenigata
Installing latest fglrx drivers seems to fix this issue.

I don't know if they could be put in hardy, but it may be a good idea
since it's probably the best simpelst way to fix that problem...

-- 
Z.

-- 
glxgears image split across screen in hardy 64-bit
https://bugs.launchpad.net/bugs/192550
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 200160] [NEW] [hardy] french keyboard layout broken

2008-03-09 Thread Zenigata
Public bug reported:

When trying to remove scim, I lost the ability of typing accentuated
letters by typping the accent and then the letter like it is usually the
case.

This affects gnome (maybe X).

for typing  â ê î ô û or öïüë I have to use altGr + a key instead of '^'
or '¨' then 'letter to be accentuated'

Regards

-- 
Z.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
[hardy] french keyboard layout broken
https://bugs.launchpad.net/bugs/200160
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 197937] Re: [hardy] usplash colors got corrupted since last update

2008-03-06 Thread Zenigata

** Attachment added: shutdown (wrong)
   http://launchpadlibrarian.net/12456716/us-shutdown.JPG

-- 
[hardy] usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] usplash colors got corrupted since last update

2008-03-06 Thread Zenigata
here is the result of uname -a, apt-cache policy and the lspci file.

uname -a:

Linux chameau 2.6.24-11-generic #1 SMP Fri Feb 29 21:26:31 UTC 2008
x86_64 GNU/Linux

apt-cache policy usplash:

usplash:
  Installé : 0.5.15
  Candidat : 0.5.15
 Table de version :
 *** 0.5.15 0
500 http://fi.archive.ubuntu.com hardy/main Packages
100 /var/lib/dpkg/status


usplash.conf:
# Usplash configuration file
xres=1024
yres=768


** Attachment added: lspci -vvnn output
   http://launchpadlibrarian.net/12460827/lspci-vvnn.lg

-- 
[hardy] usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] customs usplash colors got corrupted since last update

2008-03-05 Thread Zenigata
Yes, here are the deb's files (64 bit and 32 bit) and the sources.
Basicly it is the usplash-theme-ubuntu package with custom png files.


** Attachment added: 64 bit deb
   http://launchpadlibrarian.net/12438065/usplash-theme-crans_1.0-1_amd64.deb

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] customs usplash colors got corrupted since last update

2008-03-05 Thread Zenigata

** Attachment added: 32 bit deb
   http://launchpadlibrarian.net/12438068/usplash-theme-crans_1.0-1_i386.deb

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] customs usplash colors got corrupted since last update

2008-03-05 Thread Zenigata

** Attachment added: sources
   http://launchpadlibrarian.net/12438070/usplash-theme-crans-src.tar.bz2

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] customs usplash colors got corrupted since last update

2008-03-05 Thread Zenigata
The 1998-2008 appearing under the progress bar is a bug due to the way
I've done the png. In 1024x768 (the resolution I use) in is on both
sides of it.

The bug I have with hardy, is that the colors get wrong when the usplash
show at shutdown (I have a kind of green-pink violet patchwork)...

Thanks anyway for looking at it, but maybe it is architecture dependent
(I remember the greyscale bug that was occuring in Edgy 64 bit)

Regards

-- 
Z.

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] customs usplash colors got corrupted since last update

2008-03-05 Thread Zenigata
Yes, here are two photos (not very good quality thought), the startup
one, which looks just like the one you have (this is the normal look),
and the shutdown one, which is messy.

I also tested that typing usplash -c in a console was sufficient to
get the wrong version, so I think it maybe something that is loaded
after the start-up (maybe th video driver or something else) that is
interferring with the fb...

** Attachment added: startup (correct image)
   http://launchpadlibrarian.net/12452154/us-startup.JPG

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] customs usplash colors got corrupted since last update

2008-03-05 Thread Zenigata

** Attachment added: shutdown (wrong)
   http://launchpadlibrarian.net/12452155/us-startup.JPG

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197937] Re: [hardy] customs usplash colors got corrupted since last update

2008-03-05 Thread Zenigata
By the way, I've just tested the non customized usplash, it has also
wrong palette at shutdown or run by usplash -c

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197626] Re: [hardy] xinput hotplug buggy

2008-03-04 Thread Zenigata
Oh ! I was'nt aware of it. So I probably do not have enabled it...

Here are my worg.conf and 0.log files anyway.

But since one has to enable it, then it is probably not a bug...

By the way I would be interested by knowing how to enable it.

Thanks.

Best regards.

-- 
Z.

** Attachment added: xorg.conf
   http://launchpadlibrarian.net/12427213/xorg.conf

-- 
[hardy] xinput hotplug buggy
https://bugs.launchpad.net/bugs/197626
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 197626] Re: [hardy] xinput hotplug buggy

2008-03-04 Thread Zenigata

** Attachment added: xorg.0.log
   http://launchpadlibrarian.net/12427217/Xorg.0.log

-- 
[hardy] xinput hotplug buggy
https://bugs.launchpad.net/bugs/197626
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 197937] [NEW] [hardy] customs usplash colors got corrupted since last update

2008-03-03 Thread Zenigata
Public bug reported:

ubuntu version :
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION=Ubuntu hardy (development branch)
Linux chameau 2.6.24-11-generic #1 SMP Fri Feb 29 21:26:31 UTC 2008 x86_64 
GNU/Linux

I had a custom usplash made under gutsy.

Since my upgrade to hardy, the shutdown usplash disappeared, and since
yesterday's update, it is back but with corrupted colors.

I noticied that in hardy they were a lot of nice new features in usplash
that also apply to older usplash-themes, and maybe there is a palette
chage imposed for the shutdown, that in my opinion should not be
elsewhere thant in the c file that produces the usplash. (and not
general)


Regards.

-- 
Z.

** Affects: ubuntu
 Importance: Undecided
 Status: New

** Description changed:

+ ubuntu version :
+ DISTRIB_ID=Ubuntu
+ DISTRIB_RELEASE=8.04
+ DISTRIB_CODENAME=hardy
+ DISTRIB_DESCRIPTION=Ubuntu hardy (development branch)
+ Linux chameau 2.6.24-11-generic #1 SMP Fri Feb 29 21:26:31 UTC 2008 x86_64 
GNU/Linux
+ 
  I had a custom usplash made under gutsy.
  
  Since my upgrade to hardy, the shutdown usplash disappeared, and since
  yesterday's update, it is back but with corrupted colors.
  
  I noticied that in hardy they were a lot of nice new features in usplash
  that also apply to older usplash-themes, and maybe there is a palette
  chage imposed for the shutdown, that in my opinion should not be
  elsewhere thant in the c file that produces the usplash. (and not
  general)
  
  
  Regards.
  
  -- 
  Z.

-- 
[hardy] customs usplash colors got corrupted since last update
https://bugs.launchpad.net/bugs/197937
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 197626] [NEW] [hardy] xinput hotplug buggy

2008-03-02 Thread Zenigata
Public bug reported:

Binary package hint: libxi6

One of the most expected feature of Hardy is Xorg 7.3 with xandr and
xinput able to manage hotplug.

If xandr seems to do it properly, I have been experiencing  troubles
with xinput :

while plugin in a graphic tablet it is recognised by xinput (xinput list
gives the new extented devices names) but not by the application (gimp
or any other thing just do not see it).

And even thought the devices are correctly listed by xinput, they are
not properly set-up (I am almost unable to use the tablet as a mouse,
and there is no pressure detected at all).

It is possible to make the application aware of the existence of the
devices using xinput set-mode devicename absolute/relative, but then
there still is the not correctly set bug.

unloading and reloading the module does not help.

If the tablet is pluged in at X start-up it works pretty well.

Regards.

-- 
Z.

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

-- 
[hardy] xinput hotplug buggy
https://bugs.launchpad.net/bugs/197626
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 197639] [NEW] [hardy] fglrx xv output not available for video playback

2008-03-02 Thread Zenigata
Public bug reported:

using an up to date amd64 hardy and the repositorie's fglrx drivers

The xv output is not working for video playback.

Since the opengl bug it is quite annoying since the only output
available is a very slow x11.


Regards
-- 
Z.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
[hardy] fglrx xv output not available for video playback
https://bugs.launchpad.net/bugs/197639
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 134370] Re: [Gutsy, Hardy] Video doesn't play in XV video players

2008-03-02 Thread Zenigata
I have the issue on Hardy with the proprietary driver fglrx.

Since thre is a bug with that driver and the opengl rendering it is
quite annoying.

It seems to me that this bug is linked with the composite extension
being activated.

And maybe fglrx is a little buggy, but since it works under other
distro, there is for sure something one can do for hardy.

-- 
Z.

-- 
[Gutsy, Hardy] Video doesn't play in XV video players
https://bugs.launchpad.net/bugs/134370
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 192550] Re: glxgears image split across screen in hardy 64-bit

2008-03-02 Thread Zenigata
this post http://ubuntuforums.org/showthread.php?t=698675 seems to
indicate that the problem is not from fglrx, but from soething in the
config that should be added.

-- 
Z.

-- 
glxgears image split across screen in hardy 64-bit
https://bugs.launchpad.net/bugs/192550
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 197805] [NEW] [hardy] gmplayer unable to open video files with space in their names

2008-03-02 Thread Zenigata
Public bug reported:

Binary package hint: nautilus

Since upgrade to hardy, if I clic on a video file which  name has a
space in it, to launch it with gmplayer, gmplayers tell me unable to
open file %pathtothefile.

I'm not sure wether the bug is in nautilus or gmplayer, or there
interaction...

When setting another player it works.

When opening from gmplayer it works.

Regards.

-- 
Z.

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

-- 
[hardy] gmplayer unable to open video files with space in their names
https://bugs.launchpad.net/bugs/197805
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 197345] [NEW] resizing icons do not work anymore

2008-03-01 Thread Zenigata
Public bug reported:


When trying to resize a desktop icon in Gnome, it gives me the littles blue 
square to move, but if I try to move them they do not.

I just upgraded to hardy from gutsy

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION=Ubuntu hardy (development branch)

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
resizing icons do not work anymore
https://bugs.launchpad.net/bugs/197345
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 197338] [NEW] update-manager-all.deb broken (hardy)

2008-03-01 Thread Zenigata
Public bug reported:

Binary package hint: update-manager
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION=Ubuntu hardy (development branch)

when trying to upgrade from gutsy to hardy, I encounter that problem :

Préparation du remplacement de update-manager 1:0.81 (en utilisant 
.../update-manager_1%3a0.87.9_all.deb) ...
Traceback (most recent call last):
  File /usr/bin/pycentral, line 1685, in module
main()
  File /usr/bin/pycentral, line 1679, in main
rv = action.run(global_options)
  File /usr/bin/pycentral, line 1180, in run
pkg.prepare(used_runtimes, old_used_runtimes, old_pkg)
  File /usr/bin/pycentral, line 803, in prepare
rt.remove_byte_code(removed_fs)
AttributeError: 'NoneType' object has no attribute 'remove_byte_code'
dpkg : erreur de traitement de 
/var/cache/apt/archives/update-manager_1%3a0.87.9_all.deb (--install) :


I think that the deb file is somehow corrupted, but I tried purging my apt 
cache and redoing the thing it comes up the exact same way.


Regards

-- 
Z.

** Affects: update-manager (Ubuntu)
 Importance: Undecided
 Status: New

** Description changed:

  Binary package hint: update-manager
+ DISTRIB_ID=Ubuntu
+ DISTRIB_RELEASE=8.04
+ DISTRIB_CODENAME=hardy
+ DISTRIB_DESCRIPTION=Ubuntu hardy (development branch)
  
  when trying to upgrade from gutsy to hardy, I encounter that problem :
  
  Préparation du remplacement de update-manager 1:0.81 (en utilisant 
.../update-manager_1%3a0.87.9_all.deb) ...
  Traceback (most recent call last):
File /usr/bin/pycentral, line 1685, in module
  main()
File /usr/bin/pycentral, line 1679, in main
  rv = action.run(global_options)
File /usr/bin/pycentral, line 1180, in run
  pkg.prepare(used_runtimes, old_used_runtimes, old_pkg)
File /usr/bin/pycentral, line 803, in prepare
  rt.remove_byte_code(removed_fs)
  AttributeError: 'NoneType' object has no attribute 'remove_byte_code'
  dpkg : erreur de traitement de 
/var/cache/apt/archives/update-manager_1%3a0.87.9_all.deb (--install) :
  
  
  I think that the deb file is somehow corrupted, but I tried purging my apt 
cache and redoing the thing it comes up the exact same way.
  
  
  Regards
  
  -- 
  Z.

-- 
update-manager-all.deb broken (hardy)
https://bugs.launchpad.net/bugs/197338
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 192550] Re: glxgears image split across screen in hardy 64-bit

2008-03-01 Thread Zenigata
Exact same problem by me, allmost same config (amd64, ati x200M, fglrx
in use)

-- 
glxgears image split across screen in hardy 64-bit
https://bugs.launchpad.net/bugs/192550
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 179042] Re: [fglrx] fglrx, compiz and opengl conflict

2008-03-01 Thread Zenigata
Sorry for the delay, but I got back to gutsy for a while, now I am back
to hardy, and still have some OGL issue with fglrx

** Attachment added: xorg.conf
   http://launchpadlibrarian.net/12342740/xorg.conf

-- 
[fglrx] fglrx, compiz and opengl conflict
https://bugs.launchpad.net/bugs/179042
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 179042] Re: [fglrx] fglrx, compiz and opengl conflict

2008-03-01 Thread Zenigata

** Attachment added: xorg.0.log
   http://launchpadlibrarian.net/12342745/Xorg.0.log

-- 
[fglrx] fglrx, compiz and opengl conflict
https://bugs.launchpad.net/bugs/179042
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 179042] Re: [fglrx] fglrx, compiz and opengl conflict

2008-03-01 Thread Zenigata
Actually, using the fglrx driver and its composite extension to activate
compiz result in having buggy rendering of most opengl apps :

 * glchess just gives a black window (it works if compiz is shut down)
 * glxgears is just as buggy as in bug 192550
 * other OGL apps I've tried are either black or with a bug like the one of 
glxgears 192550


Regards

-- 
[fglrx] fglrx, compiz and opengl conflict
https://bugs.launchpad.net/bugs/179042
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 81975] Re: alsamixer : function snd_mixer_load failed

2008-03-01 Thread Zenigata
I have the same problem with alsamixer :

uname -a : Linux chameau 2.6.24-10-generic #1 SMP Fri Feb 22 18:26:06
UTC 2008 x86_64 GNU/Linux


** Attachment added: dmesg.log
   http://launchpadlibrarian.net/12342961/dmesg.log

-- 
alsamixer : function snd_mixer_load failed
https://bugs.launchpad.net/bugs/81975
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 81975] Re: alsamixer : function snd_mixer_load failed

2008-03-01 Thread Zenigata

** Attachment added: lspci-vvnn.lg
   http://launchpadlibrarian.net/12342965/lspci-vvnn.lg

-- 
alsamixer : function snd_mixer_load failed
https://bugs.launchpad.net/bugs/81975
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 81975] Re: alsamixer : function snd_mixer_load failed

2008-03-01 Thread Zenigata
Here is the alsa-info.txt

** Attachment added: alsa-info.txt
   http://launchpadlibrarian.net/12343001/alsa-info.txt

-- 
alsamixer : function snd_mixer_load failed
https://bugs.launchpad.net/bugs/81975
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 81975] Re: alsamixer : function snd_mixer_load failed

2008-03-01 Thread Zenigata
I should also state that alsamixer used to work before upgrade to hardy,
that the sound is still working well (even with alsa output,so it's only
a matter with the mixer) and gnome sound applet do not see anything else
as the oss mixer for the built-in modem...

Taking a quick look at alsa-info.txt, the problem seems to be that alsa
do not load anything for the mixer (the mixer part is quite empty)

Regards

-- 
alsamixer : function snd_mixer_load failed
https://bugs.launchpad.net/bugs/81975
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 197383] [NEW] [hardy] mail-notification regression

2008-03-01 Thread Zenigata
Public bug reported:

Binary package hint: mail-notification

The current package is not compiled with ssl and tls support for pop3
and imap mailboxes, this is anoying.

I am using hardy amd64 up to date.
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=8.04
DISTRIB_CODENAME=hardy
DISTRIB_DESCRIPTION=Ubuntu hardy (development branch)
Linux chameau 2.6.24-10-generic #1 SMP Fri Feb 22 18:26:06 UTC 2008 x86_64 
GNU/Linux

Beside this, I am unable to compile it using the standard procedure :

apt-get source mail-notification
apt-get build-dep mail-notification
cd mail-notification-4.1-dfsg.1
./configure
make

In gutsy it used to work.

Regards

-- 
Z.

** Affects: mail-notification (Ubuntu)
 Importance: Undecided
 Status: New

-- 
[hardy] mail-notification regression
https://bugs.launchpad.net/bugs/197383
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 197338] Re: update-manager-all.deb broken (hardy)

2008-03-01 Thread Zenigata
I redownloaded I renamed the .deb file and it worked, not sure it was
the cause of the bug...

-- 
update-manager-all.deb broken (hardy)
https://bugs.launchpad.net/bugs/197338
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 197374] Re: update-manager -d generates error while updating Gutys to 8.04

2008-03-01 Thread Zenigata
*** This bug is a duplicate of bug 197338 ***
https://bugs.launchpad.net/bugs/197338

Actually you can install it, maybe the update already took place,

I did it by using the following commands :

aptitude download update-manager
mv update-managerIDONOTREMEMEBRTHEEXACTNAMEOFTHEDEB.deb update-manager.deb

(the last line is because there is a % in the name that i found ugly)

sudo dpkg -i update-manager.deb

this worked for me, while trying to install the .deb in
/var/cache/apt/archive was unsuccessfull

-- 
update-manager -d generates error while updating Gutys to 8.04
https://bugs.launchpad.net/bugs/197374
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 197338] Re: update-manager-all.deb broken (hardy)

2008-03-01 Thread Zenigata
Hmm odd, vvery odd, maybe try getting the build-dependencies (apt-get
build-dep) it is another thing I made before getting it to work since I
unsuccessfully tried to install it directly from the source package
before.

-- 
Z.

-- 
update-manager-all.deb broken (hardy)
https://bugs.launchpad.net/bugs/197338
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 123092] Re: NetworkManger freezes the pc at session stratup

2008-01-08 Thread Zenigata
** Description changed:

  Binary package hint: network-manager-gnome
  
  Since today (06/29/07) update of network-manager-gnome, My laptop
- freezes badly (event the alt+impr+E/S/B keys do not work) when NW tries
+ freezes badly (even the alt+impr+E/S/B keys do not work) when NW tries
  to get an ip adress (I think)
  
  I can work around the problem by killing NW before login in to my gnome
  session, then I am able to start the wifi connection via console without
  any problem.
  
  When the pc freezes, the capslock LED blinks. I had similar problem when
  my upgrade to gutsy was not complete and this was due to not up to date
  network-tools package.
  
  The freeze seems to happen just when NW is getting the ip (first guess,
  need to check it) because the first green light is lit sonce quite a
  while (means association to wifi access point I think) then it freezes.

-- 
NetworkManger freezes the pc at session stratup
https://bugs.launchpad.net/bugs/123092
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 179042] [hardy] fglrx, compiz and opengl conflict

2007-12-28 Thread Zenigata
Public bug reported:

Binary package hint: xorg-driver-fglrx

When using the proprietary ati driver that is in the hardy repository
with compiz (using aiglx and not xgl), the opengl rendering is buggy :

there is lots of blinking and every opengl window has an allways on
top attribute that makes them (because of the blinking) visible half of
the time.

I tried it with the hardy repository doing an upgrade from gutsy to
hardy using aptitude dist-upgrade.

I have an amd64 installation


Regards.

-- 
Z.

** Affects: linux-restricted-modules-2.6.24 (Ubuntu)
 Importance: Undecided
 Status: New

-- 
[hardy] fglrx, compiz and opengl conflict
https://bugs.launchpad.net/bugs/179042
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 178732] [xinput] missing devices

2007-12-26 Thread Zenigata
Public bug reported:


Sometimes xinput seems to not report that it has set some extended input 
devices.

This is quite annoying cause it may cause you to have a device such as a
tablet that you see it works with the corrects drivers (not just as a
mouse) but you just can't use it with gimp or any other drawing
applications that are claiming that there is no extended input device

Here are the result of some commands that explain the bug

cat /var/log/Worg.0.log |grep wacom
(II) LoadModule: wacom
(II) Loading /usr/lib/xorg/modules/input//wacom_drv.so
(II) Module wacom: vendor=X.Org Foundation
(II) Wacom driver level: 47-0.7.7-7 $
(**) stylus device is /dev/input/wacom
(**) WACOM: suppress value is 2
(**) cursor device is /dev/input/wacom
(**) WACOM: suppress value is 2
(**) eraser device is /dev/input/wacom
(**) WACOM: suppress value is 2
(II) XINPUT: Adding extended input device eraser (type: Wacom Eraser)
(II) XINPUT: Adding extended input device cursor (type: Wacom Cursor)
(II) XINPUT: Adding extended input device stylus (type: Wacom Stylus)

[ so one can see that xorg actually add the extended devices ]

(**) Option Device /dev/input/wacom
stylus Wacom X driver grabbed event device
(==) Wacom using pressure threshold of 30 for button 1
(==) Wacom USB Graphire4 tablet speed=9600 maxX=10208 maxY=7424 maxZ=511 
resX=2032 resY=2032 suppress=2 tilt=enabled
(==) Wacom device stylus top X=0 top Y=0 bottom X=10208 bottom Y=7424
(==) Wacom device cursor top X=0 top Y=0 bottom X=10208 bottom Y=7424
(==) Wacom device eraser top X=0 top Y=0 bottom X=10208 bottom Y=7424


and 

xidump -l
pointerdisabled
keyboard   keyboard


but as a result they are not present in the xidump (or the xsetpointer) list of 
available device.

Thi might be an interraction with xserver-xgl package, I'll have to work
it out.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
[xinput] missing devices
https://bugs.launchpad.net/bugs/178732
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 178732] Re: [xinput] missing devices

2007-12-26 Thread Zenigata
Well it seems that is is due to Xgl, and actually I'm not sure if xinput
is supposed to be supported by Xgl.

-- 
[xinput] missing devices
https://bugs.launchpad.net/bugs/178732
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 178492] decorators not working anymore

2007-12-24 Thread Zenigata
Public bug reported:

Binary package hint: compiz

With the new fglrx driver, I am unable to get any decorator to work
under compiz, and so I'm unable to use compiz.

I tried to uninstall and reinstall every thing related to compiz,
emerald or fglrx and nothing worked.

I tried to reuse the xgl solution but without any further success.

When I get an error massage it is the famous one about GLX_PIXMAPS
extension being missing.

-- 
Z.

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

-- 
decorators not working anymore
https://bugs.launchpad.net/bugs/178492
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 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-12-04 Thread Zenigata
For racoon it comes with the package racoon : i   racoon
- IPsec IKE keying daemon

For why is gnome getting sluggish, I think this may be related to many
other bug reported as gnome being so when one as is lo interface
misconfigured, or event I read once that one had such problems while
having its wired network interface configured to something like inet
dhcp that caused a long delay when he had no wire plugged.

I am pretty sure that theses problems were introduced with gnome 2.20,
but since there are a lots of packages that were changed I won't really
be able to point out the gulty ones.

Basicly for now I know theses things :

 There is a problem I did'nt have with racoon before (and using another
software racoonhelper(third party opensource software) seems to be more
reliable).

When there is the smallest problem with network, gnome(or even only
gnome apps, like trying to launch gnome-terminal under KDE) get
sluggish.

In the sluggish state, the system is just doing nothing : the apps
allready launched respond normally, and the cpu usage is pretty low.


Reagrds

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-12-03 Thread Zenigata
Hello,

I looked a little forward into the problem, and I concurr to the
following :

   The problem happens when racoon fails to create or maintain an ipsec
tunnel for securing a wifi network I use.

actually I do not really know if the problem comes from racoon, from
NetworkManager or from the madwifi driver or from gnome.

here are the facts :

racoon fails to etablish the tunnel because of a problem during the
phase 1

Dec  3 19:00:02 chameau racoon: ERROR: phase1 negotiation failed due to
time up. c647c6ccd3f63a21:

and then it messes everything up.

actually the error that racoon has can be fixed by resetting the wifi
connection (with NetworkManager for example)

but then the different questions I have are :

what makes that racoon fails, and that the ping command seems to be
failing as well (takes a very long time to return an error) ?

Why shall gnome get slugish when there is a problem with the network :
eventually this can result in the inability to do anything (even leaving
the session), wich is very bad for a user friendly graphic interface
(unless you want to mimic Windows in every aspect)

Does the fact that resetting the connection seems to fix the problem
mean that NetworkManager do not see that there is a problem with the
connection ?

If there actually is a problem with the connection, does it comes from
madwifi ?

Here are the syslog concerning racoon when there's a bug :
   

Regards

** Attachment added: bugracoon.txt
   http://launchpadlibrarian.net/10713812/bugracoon.txt

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 54419] Re: usb change between 2.6.15-23 and 2.6.15-26 breaks working setup

2007-11-26 Thread Zenigata
Hello,

I just found that bug report, and I'd like to say that I have exactly
the same issue with a laptop under gutsy (kernel 2.6.22-14-generic).

The odd thing is that it seems to me that sometimes I have that problem
(during boot I can see usb 6-3 not accepting addres X error -110) and
some other I just do not get any error messages (and the boot time is
much shorter).

-- 
usb change between 2.6.15-23 and 2.6.15-26 breaks working setup
https://bugs.launchpad.net/bugs/54419
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 164528] gnome very slow to launch (or apps very slow to launch under gnome)

2007-11-22 Thread Zenigata
Public bug reported:

Ever since the change to gnome 2.20, gnome is abnormaly slow too launch.

As a matter of fact sometime it launches the session in a quite correct
time (event thought much slower than it used to be with 2.19), but even
when it launch the session in an acceptable time, then most applications
take at least one minute to launch (pidgin a.s.o) when they should only
take one second.

After a while things seems to go back to a normal state, and everything
is smotth and fast again.

Here are things that seems to impact on this behaviour :

 * when NetworkManager seems to have troubles to connect to a wifi network, 
everything goes wrong (and this can also bring the normal state to the state 
where you have to wait ages for launching anything)
 * after something that caused X to crash, I am very unlikely to be able to 
launch the session again in a reasonable time (it may take up to 1 hour to 
launch the session)
 
When I am unable to launch a gnome session, I can launch a KDE one in a normal 
speed, but then some Gnome apps (like gnome-terminal) are taking ages to launch.

I am using the amd64 version of Ubuntu 7.10 gutsy, with Xgl and an ATI
card, and my wifi car is an atheros (i.e. proprietary drivers)

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-11-22 Thread Zenigata
Johnathon a écrit :
 Thank you for your comments. This does not appear to be a bug report and
 we are closing it. We appreciate the difficulties you are facing, but it
 would make more sense to raise your question in the support tracker.
 [WWW] https://answers.launchpad.net/ubuntu

 ** Changed in: ubuntu
Status: New = Invalid

   
How do you call it when a software has a random behaviour introduced by 
a version change ?

I know that I have'nt be very specific, because I do not know how to 
precisely locate the bug (yes it is a bug) but it seems that gnome 2.20 
(you know it makes a huge chenge in evrey paquets so I cannot tell the 
ones that are behaving in a wrong way) something is wrong and make that 
sometime one can simply not mog in to his gnome session.

But well if you still believe that not starting without any error 
message is a normal behaviour and is not a bug...

-- 
Z.

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-11-22 Thread Zenigata

** Attachment added: messages.log
   http://launchpadlibrarian.net/10519120/messages.log

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-11-22 Thread Zenigata
Arg sorry, I thought attaching the logs by mail would work, but it
resulted in an copy/past here are the files :

** Attachment added: daemon.log
   http://launchpadlibrarian.net/10519118/daemon.log

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-11-22 Thread Zenigata
Johnathon a écrit :
 Can you try checking in the following log files, to see if there are any
 obvious error messages appearing whilst your system is sluggish?

 Log Files:
 /var/log/dmesg
 /var/log/daemon
 /var/log/messages

 Kind Regards,

 Johnathon

 Here are the files truncated around the issue.
   
daemon.log dmesgslugish.log and messages.log are when not being able to 
get in the gnome session (black screen)

This can be produced on my pc simply by restarting X using 
ctrl+alt+back slash a few time (one to three time).

For theses I do not see any particular thing.

The daemon.log2 refer to the situation when I am able to log in but have 
to wait until I can run any other app.

Here I can see something that may be related to the issue :

the time when I am able to launch apps is when racoon is done 
negociating an ipsec tunnel, but so far I do not knowwhy it is so.

Best regards

-- 
Z.



Nov 22 22:40:27 chameau NetworkManager: info  starting... 
Nov 22 22:40:27 chameau NetworkManager: info  New VPN service 'openvpn' 
(org.freedesktop.NetworkManager.openvpn). 
Nov 22 22:40:27 chameau NetworkManager: info  New VPN service 'ppp' 
(org.freedesktop.NetworkManager.ppp_starter). 
Nov 22 22:40:27 chameau NetworkManager: info  New VPN service 'vpnc' 
(org.freedesktop.NetworkManager.vpnc). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.621617] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_5950'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.776693] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_5a3f'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.777807] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_5975'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.778822] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_5a36'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.779523] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4379'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.780194] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4379_scsi_host'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.780878] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4379_scsi_host_scsi_device_lun0'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.781545] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4374'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.782204] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/usb_device_0_0__00_13_0'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.782879] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/usb_device_0_0__00_13_0_if0'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.783549] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4375'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.784215] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/usb_device_0_0__00_13_1'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.784878] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/usb_device_0_0__00_13_1_if0'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.785580] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4373'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.786284] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/usb_device_0_0__00_13_2'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.787005] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/usb_device_0_0__00_13_2_if0'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.787667] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4372'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.788337] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4376'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.788996] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4376_ide_0_0'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.789651] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_437b'). 
Nov 22 22:40:27 chameau NetworkManager: debug [1195767627.790308] 
nm_hal_device_added(): New device added (hal udi is 
'/org/freedesktop/Hal/devices/pci_1002_4377'). 
Nov 22 22:40:27 

[Bug 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-11-22 Thread Zenigata

** Attachment added: dmesgslugish.log
   http://launchpadlibrarian.net/10519119/dmesgslugish.log

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 164528] Re: gnome very slow to launch (or apps very slow to launch under gnome)

2007-11-22 Thread Zenigata

** Attachment added: daemon.log2
   http://launchpadlibrarian.net/10519121/daemon.log2

-- 
gnome very slow to launch (or apps very slow to launch under gnome)
https://bugs.launchpad.net/bugs/164528
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 159024] [gutsy] [alsa/dmix] DMIX not working

2007-10-31 Thread Zenigata
Public bug reported:

Since a few days before gutsy public release, I noticed that I was
unable to listen to a sound (with xmms or a video player) and watch a
flash animation with nspluginwrapper under Firefox.

At first I thought it was due to nspluginwrapper, but now I noticed that
I was unable to play sound with two different apps at the same time,
evan thought alsa seems to be correctly set to use DMIX.

I am using the amd 64 version of gutsy, with the intek-hda driver for a
sound card based on ALC 861.

I used to be able to play differents sounds with alsa before.

-- 
Z.

** Affects: ubuntu
 Importance: Undecided
 Status: New

-- 
[gutsy] [alsa/dmix] DMIX not working
https://bugs.launchpad.net/bugs/159024
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 152583] [nspluginwrapper] npviewer does not respond

2007-10-14 Thread Zenigata
Public bug reported:

Binary package hint: nspluginwrapper

Since yesterday (13/10/2007) update of gusty, I am unable to use
nspluginwrapper : each time I bump into a site with flash or a pdf page
I want to see in firefox, it give me an not responsive firefox.

I am using an up to date gutsy 64 bit, and before yesterday,  nsplugin
wrapper was working quite right (only a little sound issue).


Regards.

-- 
Z.

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

-- 
[nspluginwrapper] npviewer does not respond
https://bugs.launchpad.net/bugs/152583
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 152586] [nspluginwrapper] Flash 9 used with nsplugin wrapper blocks other audio apps

2007-10-14 Thread Zenigata
Public bug reported:

Binary package hint: nspluginwrapper

Since a few days, it seems to me that nspluginwrapper uses oss instead
alsa for the audio output, meaning that it blocks other apps from
playing audio at the same time.

It seems to me that since quite a while nspluginwrapper should be using
aoss with flash 8 to enable the use of alsa, and that flash 9 is
supposed to use alsa.


Regards

-- 
Z.

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

-- 
[nspluginwrapper] Flash 9 used with nsplugin wrapper blocks other audio apps
https://bugs.launchpad.net/bugs/152586
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 152583] Re: [nspluginwrapper] npviewer does not respond

2007-10-14 Thread Zenigata
It seems that the installation script do not properly run
nspluginwrapper -u to update the wrapped plugin for each installed
plugin.

nspluginwrapper -l did report that the wrapper was 0.91.94 when the
current version is 0.91.95

I do not know if the -u option works, I remove (-r) every plugin and
reinstalled them (-i) and now it works.

One should maybe verify the installation script in the package to be
sure that there is a nspluginwrapper -u, and if there is, then the -u
option is probably broken in nspluginwrapper

-- 
Z.

-- 
[nspluginwrapper] npviewer does not respond
https://bugs.launchpad.net/bugs/152583
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


  1   2   >