Re: Dragonfly Mail Agent

2009-09-02 Thread Michel Alexandre Salim
2009/9/1 Christoph Höger choe...@cs.tu-berlin.de: Am Dienstag, den 01.09.2009, 18:48 +0100 schrieb Jonathan Underwood: 2009/8/31 Neal Becker ndbeck...@gmail.com: We already have ssmtp, esmtp.  Is this something different? I don't think they have local mail delivery capability, though that is

Re: [PATCH] anaconda upgrade from same version

2009-09-02 Thread Kevin Kofler
Muayyad AlSadi wrote: it seems that anaconda wants that anaconda's upgrade requires a version that is strictly older than current That's normal. Anaconda can't do downgrades, so upgrading from Fedora n + updates to just Fedora n (with the same n) isn't going to work, or even do anything. So

Re: Triggers just to avoid unowned directories?

2009-09-02 Thread Michel Alexandre Salim
On Tue, Sep 1, 2009 at 6:13 PM, Jesse Keatingjkeat...@j2solutions.net wrote: On Tue, 2009-09-01 at 17:44 -0400, Bill Nottingham wrote: Multi-ownership seems *far* preferable to me than using triggers to move files around, or moving a prelink-specific directory to the base filesystem package.

Re: Commas not allowed in License tags

2009-09-02 Thread Frank Murphy (Frankly3D)
On 01/09/09 16:53, Iain Arnell wrote: Redistributable, no modification permitted Redistributable though no modification permitted ? -- fedora-devel-list mailing list fedora-devel-list@redhat.com https://www.redhat.com/mailman/listinfo/fedora-devel-list

Re: Triggers just to avoid unowned directories?

2009-09-02 Thread Michael Schwendt
On Tue, 01 Sep 2009 15:13:25 -0700, Jesse wrote: On Tue, 2009-09-01 at 17:44 -0400, Bill Nottingham wrote: Multi-ownership seems *far* preferable to me than using triggers to move files around, or moving a prelink-specific directory to the base filesystem package. Then the guidelines

Re: [PATCH 3/3] dracut has initrd-generic-version instead of initrd-version (#519185)

2009-09-02 Thread Hans de Goede
Hi, On 08/26/2009 08:11 PM, Jesse Keating wrote: On Wed, 2009-08-26 at 14:07 -0400, Jon Masters wrote: On Wed, 2009-08-26 at 11:45 +0200, Hans de Goede wrote: dracut using kernel come with a prebuild initrd-generic-version instead of initrd-version, so if we fail to find

Re: dhclient and dhcp update require restart?

2009-09-02 Thread Dennis J.
On 08/27/2009 07:49 PM, David Cantrell wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 26 Aug 2009, Dariusz J. Garbowski wrote: Hi, something that bothers me a bit... More and more system restart requests with each update (even if one doesn't use the package at the time). Is

rawhide report: 20090902 changes

2009-09-02 Thread Rawhide Report
Compose started at Wed Sep 2 06:15:05 UTC 2009 New package beacon WYSIWYG editor for docbook xml New package cpptasks Compile and link task for ant New package eqntott Generates truth tables from Boolean equations New package libbs2b Bauer stereophonic-to-binaural

Re: rawhide report: 20090902 changes

2009-09-02 Thread James Laska
top post Heads up for anyone installing from rawhide today. A fix didn't land in time for anaconda-12.19 (see bug#520791), I've built an updates.img (http://jlaska.fedorapeople.org/520791-updates.img) for anyone interested in testing the installer today. Information on using an updates.img with

Fedora Test Day Summary - Sectool

2009-09-02 Thread Eduard Benes
Greeting! This Tuesday was the Sectool Test Day / Fit Finish [1] (TD/FF). Though we expected higher attendance, the results are really valuable. Thanks to all who participated, especially to Maros Barabas who promtply started to resolve reported bugs and already fixed some important issues. The

Re: rawhide report: 20090902 changes

2009-09-02 Thread Dave Jones
On Wed, Sep 02, 2009 at 08:44:00AM -0400, James Laska wrote: top post Heads up for anyone installing from rawhide today. A fix didn't land in time for anaconda-12.19 (see bug#520791), I've built an updates.img (http://jlaska.fedorapeople.org/520791-updates.img) for anyone interested

sed -i symlink behavior...

2009-09-02 Thread Warren Togami
I just noticed some behavior changes within sed. Run the following commands in various distros. #!/bin/bash set -x echo abc original.txt ln -s original.txt symlink.txt sed -i 's/abc/123/' symlink.txt if [ -L symlink.txt ]; then echo yes symlink else echo not symlink anymore fi cat

Re: sed -i symlink behavior...

2009-09-02 Thread Jerry James
On Wed, Sep 2, 2009 at 9:35 AM, Warren Togamiwtog...@redhat.com wrote: What is the correct behavior?  Is this a bug that it changed? Read up on the --follow-symlinks option to sed. -- Jerry James http://www.jamezone.org/ -- fedora-devel-list mailing list fedora-devel-list@redhat.com

Directory draft (was Re: Triggers just to avoid unowned directories?)

2009-09-02 Thread Bill Nottingham
Michel Alexandre Salim (michael.silva...@gmail.com) said: Multi-ownership seems *far* preferable to me than using triggers to move files around, or moving a prelink-specific directory to the base filesystem package. Then the guidelines should be fixed to create less confusion over the

Re: [Fedora-packaging] Directory draft (was Re: Triggers just to avoid unowned directories?)

2009-09-02 Thread Tom spot Callaway
On 09/02/2009 11:47 AM, Bill Nottingham wrote: Michel Alexandre Salim (michael.silva...@gmail.com) said: Multi-ownership seems *far* preferable to me than using triggers to move files around, or moving a prelink-specific directory to the base filesystem package. Then the guidelines should

Re: Directory draft (was Re: Triggers just to avoid unowned directories?)

2009-09-02 Thread Toshio Kuratomi
On 09/02/2009 08:47 AM, Bill Nottingham wrote: Michel Alexandre Salim (michael.silva...@gmail.com) said: Multi-ownership seems *far* preferable to me than using triggers to move files around, or moving a prelink-specific directory to the base filesystem package. Then the guidelines should

Re: rawhide report: 20090902 changes

2009-09-02 Thread James Laska
On Wed, 2009-09-02 at 11:17 -0400, Dave Jones wrote: On Wed, Sep 02, 2009 at 08:44:00AM -0400, James Laska wrote: top post Heads up for anyone installing from rawhide today. A fix didn't land in time for anaconda-12.19 (see bug#520791), I've built an updates.img

Re: sed -i symlink behavior...

2009-09-02 Thread yersinia
On Wed, Sep 2, 2009 at 5:35 PM, Warren Togami wtog...@redhat.com wrote: I just noticed some behavior changes within sed. Run the following commands in various distros. #!/bin/bash set -x echo abc original.txt ln -s original.txt symlink.txt sed -i 's/abc/123/' symlink.txt if [ -L

Re: Fedora Test Day Summary - Sectool

2009-09-02 Thread Adam Williamson
On Wed, 2009-09-02 at 08:55 -0400, Eduard Benes wrote: Greeting! This Tuesday was the Sectool Test Day / Fit Finish [1] (TD/FF). Though we expected higher attendance, the results are really valuable. I think part of the problem may have been that people (at least, me, and I take myself as

Re: [Fedora-packaging] Re: Directory draft (was Re: Triggers just to avoid unowned directories?)

2009-09-02 Thread Bill Nottingham
Toshio Kuratomi (a.bad...@gmail.com) said: Section 1.3 Optional functoinality is a special case of Section 1.5 Common directory without one requiring the other. I'd combine them like this: I've updated the proposal based on this and other feedback. And one more idea to throw out there: How

Re: ABRT for f12 status

2009-09-02 Thread Matthias Clasen
On Wed, 2009-09-02 at 17:04 +, Colin Walters wrote: On Wed, Sep 2, 2009 at 4:38 PM, Matthias Clasenmcla...@redhat.com wrote: After talking to the abrt guys, I've changed the desktop spin ks to replace bug-buddy and kerneloops by abrt. This change should be made in comps (as per my

Re: ABRT for f12 status

2009-09-02 Thread drago01
On Wed, Sep 2, 2009 at 7:04 PM, Colin Walterswalt...@verbum.org wrote: On Wed, Sep 2, 2009 at 4:38 PM, Matthias Clasenmcla...@redhat.com wrote: After talking to the abrt guys, I've changed the desktop spin ks to replace bug-buddy and kerneloops by abrt. This change should be made in comps

Re: Fedora Test Day Summary - Sectool

2009-09-02 Thread Ville Skyttä
On Wednesday 02 September 2009, Adam Williamson wrote: On Wed, 2009-09-02 at 08:55 -0400, Eduard Benes wrote: Greeting! This Tuesday was the Sectool Test Day / Fit Finish [1] (TD/FF). Though we expected higher attendance, the results are really valuable. I think part of the problem may

Re: [PATCH 3/3] dracut has initrd-generic-version instead of initrd-version (#519185)

2009-09-02 Thread Jesse Keating
On Wed, 2009-09-02 at 10:26 +0200, Hans de Goede wrote: As one of the persons involved in dracut and in integrating dracut into the distribution I'm rather surprised to hear this. Where has this been discussed ? Were are the bugs for the situations where this does not work properly ? Also

Help for a bug with mime types

2009-09-02 Thread Nicoleau Fabien
Hi, I recently had a bug open for phatch which I maintain : https://bugzilla.redhat.com/show_bug.cgi?id=520680 It seems that my package use a mime type that is normaly used by nautilus. I tried different solutions : - adding theses two lines in /usr/share/applications/defaults.list :

Re: ABRT for f12 status

2009-09-02 Thread Colin Walters
On Wed, Sep 2, 2009 at 5:11 PM, Matthias Clasenmcla...@redhat.com wrote: On Wed, 2009-09-02 at 17:04 +, Colin Walters wrote: On Wed, Sep 2, 2009 at 4:38 PM, Matthias Clasenmcla...@redhat.com wrote: After talking to the abrt guys, I've changed the desktop spin ks to replace bug-buddy

Re: Fedora Test Day Summary - Sectool

2009-09-02 Thread Mathieu Bridon (bochecha)
I think part of the problem may have been that people (at least, me, and I take myself as generally representative of the typical super-lazy Fedora-using schlub :) don't know what sectool is, what it's for, and where it fits into Fedora...it sort of blindsided me when it showed up on the Test

Next Test Day: Sugar on a Stick [Tomorrow]

2009-09-02 Thread Sebastian Dziallas
Greetings, sorry for the late notice and the cross-post. This test day will focus on Sugar Labs' Sugar on a Stick, a downstream project based on Fedora. Sugar on a Stick has launched it's first version codenamed Strawberry successfully in June and has recently announced the beta release of

Re: rawhide report: 20090902 changes

2009-09-02 Thread Horst H. von Brand
Rawhide Report rawh...@fedoraproject.org wrote: Compose started at Wed Sep 2 06:15:05 UTC 2009 The missing (?) /usr/bin/[ in coreutils makes yum-3.2.23-15.fc12.noarch give up, even with --skip-broken. Had to -x coreutils* to get the other updates. (x86_64, rawhide up to date) -- Dr. Horst H.

Re: rawhide report: 20090902 changes

2009-09-02 Thread Seth Vidal
On Wed, 2 Sep 2009, Horst H. von Brand wrote: Rawhide Report rawh...@fedoraproject.org wrote: Compose started at Wed Sep 2 06:15:05 UTC 2009 The missing (?) /usr/bin/[ in coreutils makes yum-3.2.23-15.fc12.noarch give up, even with --skip-broken. Had to -x coreutils* to get the other

Re: Commas not allowed in License tags

2009-09-02 Thread Kevin Kofler
Frank Murphy (Frankly3D) wrote: Redistributable though no modification permitted That would require a guideline change for no particular reason. Redistributable, no modification permitted is the one valid use of a comma. :-) Kevin Kofler -- fedora-devel-list mailing list

Re: [Fedora-packaging] Re: Directory draft (was Re: Triggers just to avoid unowned directories?)

2009-09-02 Thread Kevin Kofler
Bill Nottingham wrote: 1) filesystem started out as just the FHS dirs Well, we could have filesystem with the FHS dirs and a new system-filesystem with the distro-specific ones. Kevin Kofler -- fedora-devel-list mailing list fedora-devel-list@redhat.com

Re: [Fedora-packaging] Re: Directory draft (was Re: Triggers just to avoid unowned directories?)

2009-09-02 Thread Casey Dahlin
On 09/02/2009 03:27 PM, Kevin Kofler wrote: Bill Nottingham wrote: 1) filesystem started out as just the FHS dirs Well, we could have filesystem with the FHS dirs and a new system-filesystem with the distro-specific ones. Kevin Kofler That doesn't fix concerns 2 and 3 (snipped

Re: rawhide report: 20090902 changes

2009-09-02 Thread Clyde E. Kunkel
On 09/02/2009 12:23 PM, James Laska wrote: On Wed, 2009-09-02 at 11:17 -0400, Dave Jones wrote: On Wed, Sep 02, 2009 at 08:44:00AM -0400, James Laska wrote: top post Heads up for anyone installing from rawhide today. A fix didn't land in time for anaconda-12.19 (see bug#520791),

Re: Reboot madness? [Was: Re: dhclient and dhcp update require restart?]

2009-09-02 Thread Stephen John Smoogen
2009/9/1 Dariusz J. Garbowski thufo...@yahoo.co.uk: I'm starting to be really bothered by this. Today kdenetwork requires restart due to... fix Bug 515586 - Kopete: New Messages from changed resource arrive in new tab/window. Wouldn't login/logout sequence do? And that only if the user really

Re: Directory draft (was Re: Triggers just to avoid unowned directories?)

2009-09-02 Thread Christopher Aillon
On 09/02/2009 09:03 AM, Matthias Clasen wrote: On Wed, 2009-09-02 at 11:47 -0400, Bill Nottingham wrote: Michel Alexandre Salim (michael.silva...@gmail.com) said: Multi-ownership seems *far* preferable to me than using triggers to move files around, or moving a prelink-specific directory to

Re: Reboot madness? [Was: Re: dhclient and dhcp update require restart?]

2009-09-02 Thread Colin Walters
On Wed, Sep 2, 2009 at 7:44 PM, Stephen John Smoogensmo...@gmail.com wrote: I think that the selling point is over-sold. It is true in many case for servers, but desktops are a much more interconnected system where updating something deep requires a lot of restarts.. and yes you could come up

Re: Fedora linux 7

2009-09-02 Thread Michel Alexandre Salim
Hello, Thank you for your interest in Fedora! Some pointers follow below the quote: On Tue, Sep 1, 2009 at 12:38 AM, liuliu1103liuliu1...@yeah.net wrote: I want to buy fedora linux 7  system .But I  can't bought is recently Please tell me who have fedroa linux7 system, I am from China

Re: rawhide report: 20090902 changes

2009-09-02 Thread James Laska
On Wed, 2009-09-02 at 15:41 -0400, Clyde E. Kunkel wrote: On 09/02/2009 12:23 PM, James Laska wrote: On Wed, 2009-09-02 at 11:17 -0400, Dave Jones wrote: On Wed, Sep 02, 2009 at 08:44:00AM -0400, James Laska wrote: top post Heads up for anyone installing from rawhide today.

Re: rawhide report: 20090902 changes

2009-09-02 Thread James Laska
On Wed, 2009-09-02 at 16:24 -0400, James Laska wrote: On Wed, 2009-09-02 at 15:41 -0400, Clyde E. Kunkel wrote: On 09/02/2009 12:23 PM, James Laska wrote: On Wed, 2009-09-02 at 11:17 -0400, Dave Jones wrote: On Wed, Sep 02, 2009 at 08:44:00AM -0400, James Laska wrote: top post

Re: dhclient and dhcp update require restart?

2009-09-02 Thread David Cantrell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 2 Sep 2009, Dennis J. wrote: On 08/27/2009 07:49 PM, David Cantrell wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 26 Aug 2009, Dariusz J. Garbowski wrote: Hi, something that bothers me a bit... More and more system

rpm/mock: can't upbuild FC10 targets on FC9 host

2009-09-02 Thread Philip Prindeville
Seems to be an rpm versioning issue: [r...@builder SRPMS]# mock -r fedora-10-x86_64 --rebuild perl-Net-Patricia-1.15_01-1.fc9.src.rpm INFO: mock.py version 0.9.14 starting... State Changed: init plugins State Changed: start INFO: Start(perl-Net-Patricia-1.15_01-1.fc9.src.rpm)

Re: AucTeX dependencies and TeXLive 2009

2009-09-02 Thread Matthew Saltzman
On Tue, 2009-09-01 at 18:50 +0100, Jonathan Underwood wrote: 2009/9/1 Jonathan Underwood jonathan.underw...@gmail.com: Is that intentional? Seems emacs-auctex requires 11.85, while your package provides 11.84. AucTeX is the upstream for the preview tex package - so this is another case

Re: how to determain those no longer required packages

2009-09-02 Thread Matthew Woehlke
James Antill wrote: ATM we don't carry reason=dep across updates To ask the obvious... why not? An update is not necessarily a user action (I run 'yum upgrade -y' in cron jobs on two machines, and may start doing it on more). IMO updating an existing package should *never* change the

Re: how to determain those no longer required packages

2009-09-02 Thread Seth Vidal
On Wed, 2 Sep 2009, Matthew Woehlke wrote: James Antill wrote: ATM we don't carry reason=dep across updates To ask the obvious... why not? B/c it's not been implemented, yet. The yumdb code has only really been in use since shortly after f11 came out. -sv -- fedora-devel-list mailing

Re: AucTeX dependencies and TeXLive 2009

2009-09-02 Thread Jonathan Underwood
2009/9/2 Matthew Saltzman m...@clemson.edu: On Tue, 2009-09-01 at 18:50 +0100, Jonathan Underwood wrote: 2009/9/1 Jonathan Underwood jonathan.underw...@gmail.com: Is that intentional? Seems emacs-auctex requires 11.85, while your package provides 11.84. AucTeX is the upstream for the

Re: dhclient and dhcp update require restart?

2009-09-02 Thread Dariusz J. Garbowski
On 09/02/2009 02:33 PM, David Cantrell wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 2 Sep 2009, Dennis J. wrote: On 08/27/2009 07:49 PM, David Cantrell wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wed, 26 Aug 2009, Dariusz J. Garbowski wrote: Hi, something that

[Bug 506430] [pa_IN][GPOS]The font doesn't have the right shape

2009-09-02 Thread bugzilla
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=506430 A S Alam aa...@redhat.com changed: What|Removed |Added

[Bug 514158] [bn_IN] pango in not rendering character U+09E2 and U+09E3 due to wrong characters class assignement

2009-09-02 Thread bugzilla
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=514158 Parag pnem...@redhat.com changed: What|Removed |Added

[Bug 499345] [kn_IN][Pango] GSUB U+0CB0 U+200D U+0CCD U+0C95 font has error.

2009-09-02 Thread bugzilla
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=499345 Parag pnem...@redhat.com changed: What|Removed |Added

[Bug 500304] [bn_IN][Additional Vowels]U+09E2 U+09E3 font doesn't have right shape

2009-09-02 Thread bugzilla
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=500304 Parag pnem...@redhat.com changed: What|Removed |Added

[Bug 514158] [bn_IN] pango in not rendering character U+09E2 and U+09E3 due to wrong characters class assignement

2009-09-02 Thread bugzilla
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. https://bugzilla.redhat.com/show_bug.cgi?id=514158 Parag pnem...@redhat.com changed: What|Removed |Added

RE: F11 - vmlinuz-2.6.29.6-217.2.16.fc11.i586 does not boot

2009-09-02 Thread Markus Kesaromous
Date: Wed, 2 Sep 2009 17:45:50 +0200 From: rolf.offerma...@gmx.net To: fedora-kernel-list@redhat.com CC: scha...@gmail.com Subject: Re: F11 - vmlinuz-2.6.29.6-217.2.16.fc11.i586 does not boot Aioanei Rares wrote: On 08/28/2009 03:34 PM, Rolf Offermanns wrote: Hi All, I recently

Re: Multiple IP addresses without aliasing?

2009-09-02 Thread Adam Hough
But this is getting kind of silly. My original question has been answered: The Fedora network init scripts DO NOT support multiple IPs, end of story. That all depends on what you consider multiple IPs. You can do multiple ip addresses on the same network card with ip aliasing but they

Creating a Windws XP virtual machine Fedora 11

2009-09-02 Thread James Harrison
Hi I am trying to create a virtual machine and install Windows XP. I am using Fedora 11.The system was last fully patched about an hour ago. selinux is disabled. r...@pc32 ~]# uname -a Linux x.com 2.6.29.6-217.2.16.fc11.i686.PAE #1 SMP Mon Aug 24 17:16:21 EDT 2009 i686 i686 i386 GNU/Linux

Re: Creating a Windws XP virtual machine Fedora 11

2009-09-02 Thread Frank Murphy (Frankly3D)
On 02/09/09 08:56, James Harrison wrote: Hi I am trying to create a virtual machine and install Windows XP. I am using Fedora 11.The system was last fully patched about an hour ago. selinux is disabled. You best bet is the virt-list: https://www.redhat.com/mailman/listinfo/fedora-virt --

Re: NAT-setup: modification requared

2009-09-02 Thread Alain Spineux
On Wed, Sep 2, 2009 at 7:07 AM, Hiisivery-c...@rambler.ru wrote: Dear List! I have F11 machine which shares WEB to small home wired network. F11 computer has 3 ethernet adapters - one built in motherboard (eth0, 'main' adapter) and two additional cards (eth1,2). With grate help of this list

Re: NAT-setup: modification requared

2009-09-02 Thread Joerg Bergmann
You should buy a network switch (about 10$), connect that to eth1 and connect both the clients to that switch. No further configuration needed, please do _not_ configure eth2. Joerg Bergmann Am Mittwoch, den 02.09.2009, 09:07 +0400 schrieb Hiisi: Dear List! I have F11 machine which shares WEB

Re: NAT-setup: modification requared

2009-09-02 Thread jaivuk
Or your third option is to setup a bridge between eth1 and eth2. It means you will bind eth1 and eth2 together to form a virtual switch or bridge. Bridge will create its own virtual interface and then you should delete any IP addresses from the eth1 and eth2 and set just one IP address on the

Re: Chrome-Fedora People

2009-09-02 Thread Timothy Murphy
Patrick O'Callaghan wrote: That worked for me, but when I try to view video it claims that Flash is not installed, which it is (64-bit Adobe version). There doesn't appear to be a way to configure this. Do all videos use Flash? I looked at a couple of what I would call videos, and they seemed

F11: no sound

2009-09-02 Thread lanas
Hello, After the install and update (close to 600 packages were updated) of Fedora 11 x86_64 there is no sound. On board sound is provided by Nvidia. Ubuntu, installed previously, used to have sound. Installed xine and mplayer (yum install xine, yum install mplayer) and both are playing a ogg

F11: low video resolution

2009-09-02 Thread lanas
Hello again, After the install and update (close to 600 packages were updated) of Fedora 11 x86_64 there is seemingly no way to specify which video adapter there is nor to specify which monitor is being used. Hence, the resolution is low at 1280xSomething. The video adapter is on-board and

Re: Chrome-Fedora People

2009-09-02 Thread Andrew Parker
On Wed, Sep 2, 2009 at 6:12 AM, Timothy Murphygayle...@eircom.net wrote: The thing I would miss most if I went over to chrome would be the google toolbar. It seems very surprising this isn't available, in view of the connection with google. Its all mashed up in the address bar. If you just

Re: howto play audio here and hear it there

2009-09-02 Thread Tim
On Tue, 2009-09-01 at 22:24 +0100, Marko Vojinovic wrote: You need to have avahi zeroconf service running, set up appropriate environment variables, and such. Hmm, and for the rest of us that have proper networks, and don't want to run zeroconf, we can't do networked pulse audio? --

Re: In the news: Soon to be published, Skype back-door trojan code?

2009-09-02 Thread Tim
On Tue, 2009-09-01 at 14:46 -0700, Daniel B. Thurman wrote: read on down the page where it's possible that Skype can remotely view and listen via your webcam. That sounds like tinfoil hat rumouring, but I have seen something similarly disconcerting, with flash on some pages: While viewing the

Re: FC11 - flash plugin for Firefox

2009-09-02 Thread Paul Erickson
On 08/23/2009 09:25 AM, Ryan Lynch wrote: If you search for 'leigh123' and 'flash-plugin' and '64 bit' and 'rpm' on fedoraforums.org, there is a very nice RPM and yum repo for Adobe's 64-bit flash-plugin. The packager keeps it reasonably well updated, too. -Ryan On 2009-08-23, John

Re: FC11 - flash plugin for Firefox

2009-09-02 Thread Frank Murphy (Frankly3D)
On 02/09/09 14:15, Paul Erickson wrote: --snip-- Hi Ryan, I am having a little trouble finding the package you mention. I am also trying to get flashplayer to work with my F11 64 bit machine. cheers, Paul http://tinyurl.com/n38u9z -- fedora-list mailing list fedora-list@redhat.com To

Re: Chrome-Fedora People

2009-09-02 Thread Patrick O'Callaghan
On Tue, 2009-09-01 at 22:58 -0400, Kevin J. Cummings wrote: That worked for me, but when I try to view video it claims that Flash is not installed, which it is (64-bit Adobe version). There doesn't appear to be a way to configure this. I put symlinks in

Re: Chrome-Fedora People

2009-09-02 Thread Mark Knoop
At 09:19 on 02 Sep 2009, Patrick O'Callaghan wrote: Tried that, but no dice. I keep getting Hello, you either have JavaScript turned off or an old version of Adobe's Flash Player. Get the latest Flash player. I can't see where Javascript is turned on or off (though the Help implies it's

Evince: Prints some images not others

2009-09-02 Thread Smith, Herb
I have been trying to print a pdf document that contains several jpg images. Some of them print, however others do not. This occurs on two different systems so it does not seem to be a printer issue. Does anyone know what would distinguish jpg files to make one print and another just appear as

Re: Chrome-Fedora People

2009-09-02 Thread Patrick O'Callaghan
On Wed, 2009-09-02 at 11:12 +0100, Timothy Murphy wrote: Patrick O'Callaghan wrote: That worked for me, but when I try to view video it claims that Flash is not installed, which it is (64-bit Adobe version). There doesn't appear to be a way to configure this. Do all videos use Flash?

Re: Chrome-Fedora People

2009-09-02 Thread Patrick O'Callaghan
On Wed, 2009-09-02 at 15:00 +0100, Mark Knoop wrote: At 09:19 on 02 Sep 2009, Patrick O'Callaghan wrote: Tried that, but no dice. I keep getting Hello, you either have JavaScript turned off or an old version of Adobe's Flash Player. Get the latest Flash player. I can't see where

Re: In the news: Soon to be published, Skype back-door trojan code?

2009-09-02 Thread Patrick O'Callaghan
On Wed, 2009-09-02 at 22:34 +0930, Tim wrote: Unfortunately, this webcam is one built into my laptop, so simply disconnecting is not an option. I've opened up as much of the laptop as I can without risking breaking bits, and I can't find a connection for the camera. So mine has tape over

hyperthreading on f11 pae kernel?

2009-09-02 Thread Gianluca Cecchi
Hello, I have an old Dell GX260 with one P4 and 1Gb of ram. I installed F11 32 bit and updated it yesterday with latest kernel available. I noticed that kernel installed was the PAE one, as stated inside release notes. Also in other documents I see that only i586 is the other available one kernel.

Re: In the news: Soon to be published, Skype back-door trojan code?

2009-09-02 Thread Fernando Cassia
On Sun, Aug 30, 2009 at 7:28 AM, Marko Vojinovic vvma...@gmail.com wrote: On Sunday 30 August 2009 09:20:59 Tim wrote: On Sat, 2009-08-29 at 14:09 -0700, Joel Gomberg wrote: I thought Skype was P2P application Supposedly it is, but with closed source, you've no real idea what it's

Re: FC11 - flash plugin for Firefox

2009-09-02 Thread Paul Erickson
On 09/02/2009 06:34 AM, Frank Murphy (Frankly3D) wrote: On 02/09/09 14:15, Paul Erickson wrote: --snip-- Hi Ryan, I am having a little trouble finding the package you mention. I am also trying to get flashplayer to work with my F11 64 bit machine. cheers, Paul http://tinyurl.com/n38u9z

Chrome Fedora proxy configuration

2009-09-02 Thread John Thompson
Has anyone figured out how to configure a proxy server with Chrome? Going to Options...Under the Hood and clicking the Change proxy settings button just brings up a help screen, but I can't see anywhere to actually change the settings. -- -John (j...@os2.dhs.org) -- fedora-list mailing list

Re: Chrome Fedora proxy configuration

2009-09-02 Thread iarly selbir | ski0s
In my .bash_profile I added an exporting two variables http_proxy and all_proxy export all_proxy=http://ip.ip.ip.ip:port same way to http_proxy More information you can take a look on http://code.google.com/p/chromium/wiki/LinuxProxyConfig Regards, - - iarly selbir | ski0s :wq! On Wed, Sep

Re: Chrome Fedora proxy configuration

2009-09-02 Thread Kevin J. Cummings
On 09/02/2009 11:38 AM, John Thompson wrote: Has anyone figured out how to configure a proxy server with Chrome? Going to Options...Under the Hood and clicking the Change proxy settings button just brings up a help screen, but I can't see anywhere to actually change the settings. I installed

Re: hyperthreading on f11 pae kernel?

2009-09-02 Thread Michael Cronenworth
Gianluca Cecchi on 09/02/2009 09:10 AM wrote: I have an old Dell GX260 with one P4 and 1Gb of ram. I installed F11 32 bit and updated it yesterday with latest kernel available. I noticed that kernel installed was the PAE one, as stated inside release notes. Also in other documents I see that

Re: Evince: Prints some images not others

2009-09-02 Thread Frank Cox
On Wed, 02 Sep 2009 09:01:44 -0500 Smith, Herb wrote: I have been trying to print a pdf document that contains several jpg images. Some of them print, however others do not. https://bugzilla.redhat.com/show_bug.cgi?id=220983 -- MELVILLE THEATRE ~ Melville Sask ~

Re: Fedora 11 GDM - unwanted list of all local users and impossible to customize?

2009-09-02 Thread Phill
This works for me too! However, when I lock my screen and come back later to unlock it, it shows my user name and host name. Anyone know how to stop this behaviour? Greetings, I found the solution back in Fedora 10. It's not exactly user friendly... Yes, works! Thanks! All on one

Re: Creating a Windws XP virtual machine Fedora 11

2009-09-02 Thread Bill Davidsen
James Harrison wrote: Hi I am trying to create a virtual machine and install Windows XP. I am using Fedora 11.The system was last fully patched about an hour ago. selinux is disabled. I suspect from your output that you are using virt-manager. You might try just doing the creation from

Re: NAT-setup: modification requared

2009-09-02 Thread Bill Davidsen
Hiisi wrote: Dear List! I have F11 machine which shares WEB to small home wired network. F11 computer has 3 ethernet adapters - one built in motherboard (eth0, 'main' adapter) and two additional cards (eth1,2). With grate help of this list and even greater help of google I was able to set up

Re: Creating a Windws XP virtual machine Fedora 11

2009-09-02 Thread Stewart Williams
James Harrison wrote: Hi I am trying to create a virtual machine and install Windows XP. I am using Fedora 11.The system was last fully patched about an hour ago. selinux is disabled. r...@pc32 ~]# uname -a Linux x.com 2.6.29.6-217.2.16.fc11.i686.PAE #1 SMP Mon Aug 24 17:16:21 EDT 2009

Re: Chrome Fedora proxy configuration

2009-09-02 Thread John Thompson
On 09/02/2009 10:48 AM, Kevin J. Cummings wrote: On 09/02/2009 11:38 AM, John Thompson wrote: Has anyone figured out how to configure a proxy server with Chrome? Going to Options...Under the Hood and clicking the Change proxy settings button just brings up a help screen, but I can't see

Re: [OT] LiveCD proved to be a valuable tool

2009-09-02 Thread Bill Davidsen
Smith, Herb wrote: All, My wife has a Dell set up as a dual boot with Fedora 6 and Windows XP. Over the weekend a shutdown attempt went awry and something got corrupted on her machine. Neither Fedora or Windows would boot. Fedora would get past GRUB, but hang at the second step in the

Re: Audio locks on latest kernel

2009-09-02 Thread Bill Davidsen
Antonio M wrote: 2009/9/1 Antonio M antonio.montagn...@gmail.com: I am still experiencing some breaks also with Totem so I issued the command pulseaudio -vv and I got this warning is it a fake or shall I report to alsa driver people???: Since it explicitly requests you do so, I think

Re: KDE clock settings

2009-09-02 Thread Bill Davidsen
Patrick O'Callaghan wrote: On Mon, 2009-08-31 at 20:36 -0400, Robert L Cochran wrote: So, when you installed Fedora, did you carefully uncheck that little box that says System Clock uses UTC? Windows does not really understand UTC or handle it very well. The solution is to go to the System --

Problem with yum

2009-09-02 Thread Adonai Silveira Canez
Hi, I using yumex for install softwares in my fedora 11, but using comand line yum return error, I'm not understand what is going. The errors is down: [ado...@schummacher-lap ~]$ yum install exiv2 Plugins carregados: aliases, allowdowngrade, auto-update-debuginfo, :

Recovering lost+found

2009-09-02 Thread Geoffrey Leach
Major crash. 4000+ files in /lost+found. (/vmlinuz-2.6.29.6-217.2.16.fc11.i686.PAE) The obvious strategy to re-install and re-update. Does anyone have a better idea? Thanks. -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list

Re: In the news: Soon to be published, Skype back-door trojan code?

2009-09-02 Thread Rick Stevens
Tim wrote: On Tue, 2009-09-01 at 14:46 -0700, Daniel B. Thurman wrote: read on down the page where it's possible that Skype can remotely view and listen via your webcam. That sounds like tinfoil hat rumouring, but I have seen something similarly disconcerting, with flash on some pages: While

Re: Chrome Fedora proxy configuration

2009-09-02 Thread iarly selbir | ski0s
You can use the variable all_proxy that will serve to all protocols as well Regards, - - iarly selbir | ski0s :wq! On Wed, Sep 2, 2009 at 2:33 PM, John Thompson johndthomp...@gmail.comwrote: On 09/02/2009 10:48 AM, Kevin J. Cummings wrote: On 09/02/2009 11:38 AM, John Thompson wrote:

So far I am not impressed with F11

2009-09-02 Thread Randall J. Berry
So far F11 has been nothing short of a pain for me. I have had more issues with this one release than I have for all of the preceding releases combined. The issues begin with sound, at any given moment for apparently no reason all sound including system sounds turn to static. This has been

Re: So far I am not impressed with F11

2009-09-02 Thread Michael Schwendt
On Wed, 02 Sep 2009 14:38:52 -0400, Randall wrote: So far F11 has been nothing short of a pain for me. I have had more issues with this one release than I have for all of the preceding releases combined. The issues begin with sound, at any given moment for apparently no reason all sound

Re: Problem with yum

2009-09-02 Thread Michael Schwendt
On Wed, 02 Sep 2009 14:53:46 -0300, Adonai wrote: Hi, I using yumex Don't reply to arbitrary messages on this list. That disturbes a threaded view of list messages. Compose a new message to open a new [independent] thread. Replies contain references to older messages in a thread. for

Re: Amarok Cover Manager Dead

2009-09-02 Thread Brian Blater
On Tue, Sep 1, 2009 at 3:18 PM, Daniel B. Thurmand...@cdkkt.com wrote: On 09/01/2009 10:34 AM, rgheck wrote: On 09/01/2009 10:24 AM, Daniel B. Thurman wrote: On 08/31/2009 09:13 PM, rgheck wrote: I don't know when it started, but as of today, anyway, amarok's cover manager just doesn't

Re: KDE clock settings

2009-09-02 Thread Patrick O'Callaghan
On Wed, 2009-09-02 at 13:46 -0400, Bill Davidsen wrote: Patrick O'Callaghan wrote: On Mon, 2009-08-31 at 20:36 -0400, Robert L Cochran wrote: So, when you installed Fedora, did you carefully uncheck that little box that says System Clock uses UTC? Windows does not really understand

Re: So far I am not impressed with F11

2009-09-02 Thread jack craig
FWIW, i took the upgrade fc10 - fc11 and have been tickled pink since. i use the gnome desktop, i have pulseaudio working, mplayer plays my favourite FM network station, and my development for moblin is flawless... just fyi, ... On 09/02/2009 11:52 AM, Michael Schwendt wrote: On Wed, 02 Sep

Question on shredding a terebyte drive

2009-09-02 Thread Dean S. Messing
I have a terebyte sata drive that I need to securely wipe clean. It originally had 2 partitions. I deleted them using `fdisk', rebooted, and then as root ran shred -vz /dev/sdd The drive is capable of about 60MB/sec, but shred is only shredding about 25MB every 5 seconds according to its

  1   2   >