Koji and Signing RPMS

2009-08-19 Thread Greg Trahair
Hi All, I'm using Koji in combination with Mash to create rpms, but at the moment I'm not signing them and I need to start that now. I'm finding it quite hard to find any way that the koji/mash combination can do this without me having to create my own mechanism. Is there anyone that can

Về: Fedora-buildsys-list Digest, Vol 54, Issue 5

2009-08-19 Thread NGUYEN VAN TAN
I tried to install follow the thread https://www.redhat.com/archives/fedora-buildsys-list/2009-July/msg0.html. And I tried to init buildroot by command mock -r fedora-9-ppc --init  to check if mock can make a cross build environment first but it didn't run. It reported errors. mock -r

Orphaning some packages

2009-08-19 Thread salimma
I am orphaning the following packages -- some of them because I no longer use them, some of them because of the packaging overhead. Mono (Banshee dependencies) ipod-sharp libipoddevice podsleuth Others: Io-language pidgin-rhythmbox On these other packages, I'm reducing my involvement to

Re: Updated Fedora 12 Schedule--Final Release Date 2009-11-10

2009-08-19 Thread Ankit Patel
John Poelstra wrote: As a follow-up to last week's announcement changing the date for the Fedora 12 Alpha release, https://www.redhat.com/archives/fedora-devel-announce/2009-August/msg6.html the remaining tasks in the Fedora 12 schedule have been adjusted by one week.

Re: Kernel 2.6.29 for F10

2009-08-19 Thread Rodd Clarkson
On Wed, 2009-08-19 at 14:16 +1000, Rodd Clarkson wrote: Dave, Is this an offer to try and help me get the f12 kernel to boot on my system so that I can test it for you? ;-] https://bugzilla.redhat.com/show_bug.cgi?id=513528 Rodd I'd just like to thank Kyle McMartin for giving me a

Re: Kernel 2.6.29 for F10

2009-08-19 Thread Reindl Harald
This would be ok if you never pushed it to updates-testing But if you do that it's logical for test-users that they can start testing and not getting 2.6.27 after that - Push it to updatestesting is like go on and after that step there should be no package-conflicts if they were THANK YOU for

Re: Fedora 12 Features Proposed for Removal

2009-08-19 Thread Tom spot Callaway
On 08/06/2009 04:39 AM, Peter Robinson wrote: After requesting status updates, including direct email to the feature owners, the following feature pages do not have a current status or their ability to tested during the Alpha is unclear based on the lack of information provided or

Re: rawhide report: 20090819 changes

2009-08-19 Thread Josh Boyer
On Wed, Aug 19, 2009 at 10:49:22AM -0400, Steve Grubb wrote: On Wednesday 19 August 2009 08:40:52 am Rawhide Report wrote: Compose started at Wed Aug 19 06:15:07 UTC 2009 New package Does this large list mean that the Alpha freeze is lifted? Yes. josh -- fedora-devel-list mailing list

Re: Troubleshooting pendrive ext2fs

2009-08-19 Thread Casimiro de Almeida Barreto
Discovered the problem: The pendrive is a counterfeit. VID=1043 PDI=8012 does not correspond to Kingston (iChips ???). Somehow it is capable of storing 16GBytes of data (I recorded a file and then unconnected the pendrive and reconnected it and verified the content via cat $FILE | md5sum

Re: Fedora 12 Features Proposed for Removal

2009-08-19 Thread Paul W. Frields
On Wed, Aug 19, 2009 at 03:57:02PM +0100, Peter Robinson wrote: Hi Spot, After requesting status updates, including direct email to the feature owners, the following feature pages do not have a current status or their ability to tested during the Alpha is unclear based on the lack

Re: Fedora 12 Features Proposed for Removal

2009-08-19 Thread Peter Robinson
After requesting status updates, including direct email to the feature owners, the following feature pages do not have a current status or their ability to tested during the Alpha is unclear based on the lack of information provided or percentage of completion.

FEL: GreenSoCs and XMOS Semiconductor want to collaborate

2009-08-19 Thread Chitlesh GOORAH
Hello there, This email is meant as a feedback of what is going about FEL and two companies who want to collaborate with us on the gcc compiler, eclipse and debugging level. This is very encouraging (from FEL's point of view) to have these 2 companies : * GreenSoCs * XMOS Semiconductor (who are

Orphaning SmartEiffel

2009-08-19 Thread Gérard Milmeister
Hi, Since the SmartEiffel project is quite dead (it hasn't had any release since June 2007) and I cannot get it to compile on any of the current Fedora releases, I am orphaning it. There seem to appear smarteiffel snapshots from time to time, so someone may try his or her luck with it. Regards,

Build requirements for threaded code?

2009-08-19 Thread Tom Lane
This might be a stupid question, but: what compile and link options are necessary nowadays for multithreaded code? I see various references to -pthread and -lpthread, but it's hard to be sure what's authoritative. regards, tom lane -- fedora-devel-list mailing list

Re: Build requirements for threaded code?

2009-08-19 Thread Sam Varshavchik
Tom Lane writes: This might be a stupid question, but: what compile and link options are necessary nowadays for multithreaded code? I see various references to -pthread and -lpthread, but it's hard to be sure what's authoritative. Just -lpthread does the trick for me. The -pthread option is

Re: Fedora 11 slapd too many open files: /lib64/libnspr4.so

2009-08-19 Thread Bernie Innocenti
El Thu, 13-08-2009 a las 07:56 +0200, Bernie Innocenti escribió: El Thu, 13-08-2009 a las 07:12 +0200, Bernie Innocenti escribió: Ping? This bug is pretty nasty: we have to restart slapd 2 or 3 times a day :-/ Ok, I think I'm starting to see the light here, but perhaps it's just

Re: source file audit - 2009-08-10

2009-08-19 Thread Tom spot Callaway
On 08/10/2009 12:15 PM, Kevin Fenzi wrote: spot:BADSOURCE:chemoelectric_-_Goudy_Bookletter_1.zip:oflb-goudy-bookletter-1911-fonts Not sure why this failed. I confirmed that the .zip file available from the site is identical to the one in the lookaside. spot:BADSOURCE:daa2iso.zip:daa2iso Fixed

Re: Build requirements for threaded code?

2009-08-19 Thread Braden McDaniel
On Wed, 2009-08-19 at 20:32 -0400, Sam Varshavchik wrote: Tom Lane writes: This might be a stupid question, but: what compile and link options are necessary nowadays for multithreaded code? I see various references to -pthread and -lpthread, but it's hard to be sure what's

Re: Build requirements for threaded code?

2009-08-19 Thread Roland McGrath
-pthread means -D_REENTRANT and -lpthread. -D_REENTRANT is basically useless and you should use standard feature test macros or _GNU_SOURCE for what you want. So just linking with -lpthread is what I would call the normal and recommended practice. The man pages are not maintained by people

Re: Build requirements for threaded code?

2009-08-19 Thread Michel Salim
On Wed, 2009-08-19 at 19:57 -0700, Roland McGrath wrote: -pthread means -D_REENTRANT and -lpthread. -D_REENTRANT is basically useless and you should use standard feature test macros or _GNU_SOURCE for what you want. So just linking with -lpthread is what I would call the normal and

Re: Build requirements for threaded code?

2009-08-19 Thread John Reiser
On 08/19/2009 07:57 PM, Roland McGrath wrote: -pthread means -D_REENTRANT and -lpthread. -D_REENTRANT is basically useless and you should use standard feature test macros or _GNU_SOURCE for what you want. So just linking with -lpthread is what I would call the normal and recommended practice.

[Bug 504272] [Fonts-Indic][te_IN] - Character 'HA' showing wrong shape in Composition

2009-08-19 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=504272 --- Comment #5 from Krishna Babu K kkrot...@redhat.com 2009-08-19 02:44:06 EDT --- Hi Pravin, As Satya said the 0C39 -

[Bug 518161] New: contains expression seems not working on the fontconfig rule

2009-08-19 Thread bugzilla
Please do not reply directly to this email. All additional comments should be made in the comments box of this bug. Summary: contains expression seems not working on the fontconfig rule https://bugzilla.redhat.com/show_bug.cgi?id=518161 Summary: contains expression seems not working

[Issue 43029] support PS-OpenType/OTF/(SFNT with CFF) fonts for PDF export and printing

2009-08-19 Thread hdu
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=43029 User hdu changed the following: What|Old value |New value

[Issue 16032] OOo should support optional OpenType features

2009-08-19 Thread hdu
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=16032 This issue depends on issue 43029, which changed state: What|Old value |New value

[Bug 517789] Droid Sans overrides default Japanese desktop font

2009-08-19 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=517789 Jens Petersen peter...@redhat.com changed: What|Removed |Added

[Issue 43029] support PS-OpenType/OTF/(SFNT with CFF) fonts for PDF export and printing

2009-08-19 Thread hdu
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=43029 User hdu changed the following: What|Old value |New value

[Issue 43029] support PS-OpenType/OTF/(SFNT with CFF) fonts for PDF export and printing

2009-08-19 Thread ferossan
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=43029 --- Additional comments from feros...@openoffice.org Wed Aug 19 15:45:03 + 2009 --- Great news!!! I would like to test it. Could you please confirm the version

[Bug 458476] [RFE] Support OpenType CFF fonts

2009-08-19 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=458476 Caolan McNamara caol...@redhat.com changed: What|Removed |Added

[Issue 43029] support PS-OpenType/OTF/(SFNT with CFF) fonts for PDF export and printing

2009-08-19 Thread auberon
To comment on the following update, log in, then open the issue: http://www.openoffice.org/issues/show_bug.cgi?id=43029 --- Additional comments from aube...@openoffice.org Wed Aug 19 17:33:57 + 2009 --- @ferrosan: read the release notes here

[Bug 518161] contains expression seems not working on the fontconfig rule

2009-08-19 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=518161 Akira TAGOH ta...@redhat.com changed: What|Removed |Added

Re: Ok. Looks like this one _may_ fulfill our calendering needs. Testing required.

2009-08-19 Thread Adam Williamson
On Thu, 2009-07-30 at 09:22 +0530, susmit shannigrahi wrote: On Wed, Jul 29, 2009 at 3:19 PM, David JM Emmettm...@davidjmemmett.co.uk wrote: Okays, As I'm relatively new to this list, I don't really have access to much - so I'll just fire away... 1) When is F12 deadline - how does

Re: Ok. Looks like this one _may_ fulfill our calendering needs. Testing required.

2009-08-19 Thread Adam Williamson
On Wed, 2009-07-29 at 12:30 +0530, susmit shannigrahi wrote: Hi, I am quite frightened to take up this topic again and again lest you all be bored. Looking at some other stuff around this topic, I just hit some more info. Looks like Debian looked at this before, and came up with some useful

Re: Ok. Looks like this one _may_ fulfill our calendering needs. Testing required.

2009-08-19 Thread susmit shannigrahi
http://wiki.debian.org/Groupware A few new options here. Will look into it. http://obm.org/doku.php SUN JDK, so may not be doable http://obm.org/doku.php?id=install_obm_sync_server_from_sources Thanks. -- Regards, Susmit. = ssh 0x86DD170A

Moksha/Fedora Community Planning Meetings

2009-08-19 Thread Tom spot Callaway
The Fedora Community (and Moksha) efforts have a regular public meeting at 1400 UTC every Monday. We invite interested parties to participate in our meeting. You can join our meeting via Fedora Talk, extension 2001. For more information about Fedora Talk, see: http://talk.fedoraproject.org/ Our

[Change Request] Don't replace sigul db files.

2009-08-19 Thread Ricky Zhou
--- modules/sigul/manifests/init.pp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/modules/sigul/manifests/init.pp b/modules/sigul/manifests/init.pp index d2b6dc9..20a88bd 100644 --- a/modules/sigul/manifests/init.pp +++ b/modules/sigul/manifests/init.pp @@ -41,6 +41,7

Re: [Change Request] Don't replace sigul db files.

2009-08-19 Thread Jesse Keating
On Wed, 2009-08-19 at 16:41 -0400, Ricky Zhou wrote: --- modules/sigul/manifests/init.pp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) These look good to me, thanks! -- Jesse Keating Fedora -- Freedom² is a feature! identi.ca: http://identi.ca/jkeating signature.asc

Re: Seeking comments on my proposal

2009-08-19 Thread Toshio Kuratomi
On 08/18/2009 11:19 AM, Steven M. Parrish wrote: Got the outline of my proposal here https://fedoraproject.org/wiki/SugarZilla I welcome any comments I dislike the idea of anonymous opening of bugs and anonymous commenting in bugzilla. It's not clear from the proposal if that's a

[PATCH] Adding mod_limitipconn

2009-08-19 Thread ko zin
manifests/servergroups/secondary.pp|1 + modules/mod_limitipconn/README | 10 ++ modules/mod_limitipconn/files/limitipconn.conf | 18 ++ modules/mod_limitipconn/manifests/init.pp | 12 4 files changed, 41

Re: [PATCH] Adding mod_limitipconn

2009-08-19 Thread SmootherFrOgZ
On Wed, Aug 19, 2009 at 11:10 PM, Mike McGrathmmcgr...@redhat.com wrote: This will allow us for greater control against abusive clients. Starting on secondary1 for now which seems to be the biggest problem. ---  manifests/servergroups/secondary.pp            |    1 +  

[Change Request]

2009-08-19 Thread Dennis Gilmore
id like to make the following changes impact will be minimal /buildgroups is the only active service on buildsys.pfp.o where plague used to run. its only needed for mock building using epel targets so the increaded load will be insignificant. the change will be trasnparent to end users.

Re: Ok. Looks like this one _may_ fulfill our calendering needs. Testing required.

2009-08-19 Thread Adam Williamson
On Thu, 2009-08-20 at 00:26 +0530, susmit shannigrahi wrote: http://wiki.debian.org/Groupware A few new options here. Will look into it. http://obm.org/doku.php SUN JDK, so may not be doable http://obm.org/doku.php?id=install_obm_sync_server_from_sources Debian's page says OBM is

Re: [Change Request]

2009-08-19 Thread Stephen John Smoogen
On Wed, Aug 19, 2009 at 4:27 PM, Dennis Gilmoreden...@ausil.us wrote: id like to make the following changes   impact will be minimal /buildgroups is the only active service on buildsys.pfp.o where plague used to run.   its only needed for mock building using epel targets so the increaded load

Re: [Change Request]

2009-08-19 Thread Mike McGrath
On Wed, 19 Aug 2009, Stephen John Smoogen wrote: On Wed, Aug 19, 2009 at 4:27 PM, Dennis Gilmoreden...@ausil.us wrote: id like to make the following changes   impact will be minimal /buildgroups is the only active service on buildsys.pfp.o where plague used to run.   its only needed

Re: [Change Request]

2009-08-19 Thread Jesse Keating
On Wed, 2009-08-19 at 16:44 -0600, Stephen John Smoogen wrote: Both changes look of little impact from infrastructure side. Provisional +1 unless a release engineer says OH MY ZOD, didnt you think about Kryptonite? I don't know of any release engineering item that relies on buildsys. --

Recent change freeze exception - MXs for our domains

2009-08-19 Thread Ricky Zhou
Hey, we had a @fedoraproject.org mail outage today because Red Hat's MXs changed IPs. Previously, we had our MXs set to mx[123].fedoraproject.org, which pointed to the IPs of the MXes. With the last change, we switched to setting the MXs directly to mx[12].redhat.com, which should always point

[Change Request] Set replace = false on some db files which I missed.

2009-08-19 Thread Ricky Zhou
I missed a few files in my earlier change request. --- modules/sigul/manifests/init.pp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/modules/sigul/manifests/init.pp b/modules/sigul/manifests/init.pp index 20a88bd..f613182 100644 --- a/modules/sigul/manifests/init.pp

Re: [Change Request]

2009-08-19 Thread Dennis Gilmore
On Wednesday 19 August 2009 06:19:06 pm Jesse Keating wrote: On Wed, 2009-08-19 at 16:44 -0600, Stephen John Smoogen wrote: Both changes look of little impact from infrastructure side. Provisional +1 unless a release engineer says OH MY ZOD, didnt you think about Kryptonite? I don't know

Re: [Change Request] Set replace = false on some db files which I missed.

2009-08-19 Thread Toshio Kuratomi
On 08/19/2009 04:41 PM, Ricky Zhou wrote: I missed a few files in my earlier change request. --- modules/sigul/manifests/init.pp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/modules/sigul/manifests/init.pp b/modules/sigul/manifests/init.pp index

Re: Seeking comments on my proposal

2009-08-19 Thread Steven M. Parrish
On 08/18/2009 11:19 AM, Steven M. Parrish wrote: Got the outline of my proposal here https://fedoraproject.org/wiki/SugarZilla I welcome any comments I dislike the idea of anonymous opening of bugs and anonymous commenting in bugzilla. It's not clear from the proposal if that's a

[Change Request] Update xz on the builders

2009-08-19 Thread Toshio Kuratomi
A data corruption bug was found in the current xz package for certain files. The xz package was updated to a snapshot in Fedora and EPEL. We'd like to update the builders with the new xz to make sure we aren't producing packages with corrupted payloads. The corruption bug report is here:

Re: [Change Request] Update xz on the builders

2009-08-19 Thread Dennis Gilmore
On Wednesday 19 August 2009 08:36:21 pm Toshio Kuratomi wrote: A data corruption bug was found in the current xz package for certain files. The xz package was updated to a snapshot in Fedora and EPEL. We'd like to update the builders with the new xz to make sure we aren't producing packages

Re: [Change Request] Update xz on the builders

2009-08-19 Thread Jesse Keating
On Aug 19, 2009, at 18:36, Toshio Kuratomi a.bad...@gmail.com wrote: A data corruption bug was found in the current xz package for certain files. The xz package was updated to a snapshot in Fedora and EPEL. We'd like to update the builders with the new xz to make sure we aren't producing

Re: [Change Request] Update xz on the builders

2009-08-19 Thread Mike McGrath
On Wed, 19 Aug 2009, Toshio Kuratomi wrote: A data corruption bug was found in the current xz package for certain files. The xz package was updated to a snapshot in Fedora and EPEL. We'd like to update the builders with the new xz to make sure we aren't producing packages with corrupted

Re: [Change Request] Set replace = false on some db files which I missed.

2009-08-19 Thread Mike McGrath
On Wed, 19 Aug 2009, Ricky Zhou wrote: I missed a few files in my earlier change request. --- modules/sigul/manifests/init.pp |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/modules/sigul/manifests/init.pp b/modules/sigul/manifests/init.pp index 20a88bd..f613182

Re: Seeking comments on my proposal

2009-08-19 Thread Toshio Kuratomi
On 08/19/2009 06:29 PM, Steven M. Parrish wrote: On 08/18/2009 11:19 AM, Steven M. Parrish wrote: Got the outline of my proposal here https://fedoraproject.org/wiki/SugarZilla I welcome any comments I dislike the idea of anonymous opening of bugs and anonymous commenting in bugzilla. It's

Re: [Change Request] Update xz on the builders

2009-08-19 Thread Toshio Kuratomi
On 08/19/2009 08:09 PM, Toshio Kuratomi wrote: On 08/19/2009 07:10 PM, Jesse Keating wrote: The host xz wouldn't be used to produce any rpms, the rpm inside the chroot would. Does this come into play when initing the buildroot? You're right, this wouldn't come into play unless it's a

[PATCH] Add a comment about the behavior of autodisablePuppet.

2009-08-19 Thread Ricky Zhou
--- modules/puppet/manifests/init.pp |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/modules/puppet/manifests/init.pp b/modules/puppet/manifests/init.pp index 686de0a..bac8819 100644 --- a/modules/puppet/manifests/init.pp +++ b/modules/puppet/manifests/init.pp @@

[PATCH] Try an autodisablePuppet fix.

2009-08-19 Thread Ricky Zhou
--- manifests/nodes/backup1.fedora.phx.redhat.com.pp |2 +- .../nodes/proxy1.stg.fedora.phx.redhat.com.pp |1 + .../nodes/sign-bridge1.fedora.phx.redhat.com.pp|2 +- .../nodes/sign-vault1.fedora.phx.redhat.com.pp |2 +- modules/puppet/manifests/init.pp

Re: Ok. Looks like this one _may_ fulfill our calendering needs. Testing required.

2009-08-19 Thread susmit shannigrahi
The page you link is only for the sync server, which doesn't appear to be mandatory. It provides Funambol, Outlook and Mozilla sync services. I would think that once OBM's CalDav support is complete you wouldn't really need the sync server... Ok. I shall try to get it up today and see. --

Re: How Extract The Fedorecore iso cd

2009-08-19 Thread Tim
On Wed, 2009-08-19 at 11:37 +1000, Michael Wright wrote: I HAVE DOWNLOADED Fedora-11-i386-disc1.iso Fedora-11-i386-disc2.iso Fedora-11-i386-disc3.iso Fedora-11-i386-disc4.iso Fedora-11-i386-disc5.iso Fedora-11-i386-disc6.iso The above 6 are for creating 6 CD-ROMs to install a system from.

Re: Testdisk error for LVM partition recover

2009-08-19 Thread Arun Shrimali
On Tue, Aug 18, 2009 at 7:53 PM, Mikkel L. Ellertson mik...@infinity-ltd.com wrote: Please, do not post is HTML! Arun Shrimali wrote: On Mon, Aug 17, 2009 at 10:14 PM, Mikkel wrote: What happens when you try to boot? Do you get an error message? If so, what is it? /Boot disk

Re: Sound Howto for Fedora-11

2009-08-19 Thread Roger
n 08/19/2009 03:55 PM, Jonathan Ryshpan wrote: How can I get my various sound utilities and functions namely: Amarok Firefox Sound (npviewer) Xmms Audacity Pulseaudio and its Controls Gnome Advanced Volume Control Jack

Touchpad on new MacBook Pro

2009-08-19 Thread Henrik Frisk
Hi all, I have a new MacBook Pro on which I have sucessfully installed Fedora 11. For the most part it works really great but I have a problem with the touch pad. On the new Macs the touch pad has an integrated button so, in Fedora, the only way I can work it is to use clicking and dragging with

Samba 3 and changepasswd

2009-08-19 Thread Arun Shrimali
Dear All, I have recently setup a standalone Samba 3.32 server on Fedora 11, which is working fine. Now I want my users to change their password through browser interface. Is there any web based utility through which users can change their password in tdbsam ?? as samba 3 uses tdbsam I have

Re: IRC tool question

2009-08-19 Thread Mike Chambers
On Tue, 2009-08-18 at 16:44 -0600, Kevin Kempter wrote: Hi all; most of my clients use IM to communicate realtime, however I have one who uses their own IRC server. Is there a way I can setup KDE or a specific IRC chat tool to alert me with a desktop popup message whenever my name is

Re: Samba 3 and changepasswd

2009-08-19 Thread Didar Hossain
On Wed, Aug 19, 2009 at 2:01 PM, Arun Shrimaliarun.r...@gmail.com wrote: Dear All, I have recently setup a standalone Samba 3.32 server on Fedora 11, which is working fine. Now I want my users to change their password through browser interface. Is there any web based utility through which

Re: nvidia vs suspend to disk

2009-08-19 Thread Michael Hennebry
On Mon, 17 Aug 2009, Michael Hennebry wrote: Does anyone currently have suspend to disk working with nvidia's drivers? Has anyone tried and failed to get suspend to disk working with nvidia's drivers? If so, how? One of the items I googled hinted that it might not be possible with SMP. In

Re: Fedora And Virtualization

2009-08-19 Thread Mike Cloaked
Itamar Reis Peixoto wrote: don't use VM$#$$#$# please use KVM, libvirt and virt-manager If you have a box that does not have hardware virtualisation then can you still use KVM? -- View this message in context:

Re: Fedora And Virtualization

2009-08-19 Thread Itamar Reis Peixoto
no, the hardware virtualization is required, but there are cheap machines with this, like amd processor's On Wed, Aug 19, 2009 at 8:29 AM, Mike Cloakedmike.cloa...@gmail.com wrote: Itamar Reis Peixoto wrote: don't use VM$#$$#$# please use KVM, libvirt and virt-manager If you have a

Re: Samba 3 and changepasswd

2009-08-19 Thread Arun Shrimali
On Wed, Aug 19, 2009 at 2:53 PM, Didar Hossaindidar.hoss...@gmail.com wrote: On Wed, Aug 19, 2009 at 2:01 PM, Arun Shrimaliarun.r...@gmail.com wrote: Dear All, I have recently setup a standalone Samba 3.32 server on Fedora 11, which is working fine. Now I want my users to change their

Re: Fedora And Virtualization

2009-08-19 Thread Tom Horsley
On Wed, 19 Aug 2009 04:29:54 -0700 (PDT) Mike Cloaked wrote: If you have a box that does not have hardware virtualisation then can you still use KVM? Not KVM, but virt-manager and qemu will work (just slower, but then all virtualization options will be slow as well, which one is slowest is

Re: Selecting Image for Icons in F11

2009-08-19 Thread Anne Wilson
On Tuesday 18 August 2009 21:23:02 Jim wrote: F11/KDE-4.3 How do you select a Image for a Icon in KDE-4.3 ? Like in KDE-3.5 where you could go into Properties and click on Icon to select a Icon Image . Like the Image for /home the little house. Exactly the same as in 3.5. Properties, click

Re: IRC tool question

2009-08-19 Thread Anne Wilson
On Tuesday 18 August 2009 23:44:16 Kevin Kempter wrote: Hi all; most of my clients use IM to communicate realtime, however I have one who uses their own IRC server. Is there a way I can setup KDE or a specific IRC chat tool to alert me with a desktop popup message whenever my name is used in

how to get 32-bit libz.so.1 support on 64-bit fedora?

2009-08-19 Thread Robert P. J. Day
i just installed a sizable number of pre-built 32-bit executables on my 64-bit f11 system, a very small number of which are looking for the (32-bit) shared lib libz.so.1 and which will therefore fail to run. since my system is 64-bit, i have no libz shared lib under either /lib or /usr/lib,

Re: how to get 32-bit libz.so.1 support on 64-bit fedora?

2009-08-19 Thread Pikachu_2014
Hi, you just have to install the i586 zlib package : yum install zlib.i586 2009/8/19 Robert P. J. Day rpj...@crashcourse.ca i just installed a sizable number of pre-built 32-bit executables on my 64-bit f11 system, a very small number of which are looking for the (32-bit) shared lib

Re: how to get 32-bit libz.so.1 support on 64-bit fedora?

2009-08-19 Thread Robert P. J. Day
On Wed, 19 Aug 2009, Pikachu_2014 wrote: Hi, you just have to install the i586 zlib package : yum install zlib.i586 yup, i just figured that out. and i'm assuming that would have required also installing glibc.i586 as a dependency, which i just happened to have installed already. rday --

Re: Sound Howto for Fedora-11

2009-08-19 Thread Hiisi
From: Jonathan Ryshpan jonr...@pacbell.net How can I get my various sound utilities and functions namely: Amarok Firefox Sound (npviewer) Xmms Audacity Pulseaudio and its Controls Gnome Advanced Volume Control Jack Qjackctl

hello

2009-08-19 Thread Alireza Yaghoobi Bijarboneh
I want to login in site but I cannot. Why? -- fedora-list mailing list fedora-list@redhat.com To unsubscribe: https://www.redhat.com/mailman/listinfo/fedora-list Guidelines: http://fedoraproject.org/wiki/Communicate/MailingListGuidelines

Re: F11 iwlagn errors on Thinkpad W700

2009-08-19 Thread Chris Rouch
On Mon, Aug 17, 2009 at 12:45 AM, Robert G. (Doc) Savagedsav...@peaknet.net wrote: I apologize in advance for what promises to be a lengthy post. Suggest heavy editing in any replies. Since installing F11 on my Thinkpad W700 I've had a chronic problem with the wireless disconnecting after a

Re: Thinkpad T60P Wifi Help

2009-08-19 Thread Chris Rouch
On Tue, Aug 18, 2009 at 5:49 AM, Gregory Sieranskigregory.sieran...@gmail.com wrote: Hi guys, Ever since I installed F11 I have been unable to get wifi to work. I have an airport router using mac filtering and wpa2 personal encryption. I used these exact same things when running F10 and had no

Re: access USB devices from VirtualBox

2009-08-19 Thread Patrick O'Callaghan
On Tue, 2009-08-18 at 22:14 -0500, Michael Cronenworth wrote: On 08/18/2009 07:46 PM, L wrote: hope some one offer a fix? This is due to a legacy usbfs system in use by Fedora. No other distribution uses usbfs anymore. VirtualBox is coded to use legacy first, then libusb. In

Re: Fedora And Virtualization

2009-08-19 Thread Patrick O'Callaghan
On Wed, 2009-08-19 at 07:39 -0400, Tom Horsley wrote: On Wed, 19 Aug 2009 04:29:54 -0700 (PDT) Mike Cloaked wrote: If you have a box that does not have hardware virtualisation then can you still use KVM? Not KVM, but virt-manager and qemu will work (just slower, but then all

Re: nvidia vs suspend to disk

2009-08-19 Thread Chris Rouch
On Mon, Aug 17, 2009 at 3:31 PM, Michael Hennebryhenne...@web.cs.ndsu.nodak.edu wrote: Does anyone currently have suspend to disk working with nvidia's drivers? If so, how? One of the items I googled hinted that it might not be possible with SMP. In another thread (no hardware

virt-install - Custom Disk layout Missing while instalation

2009-08-19 Thread Mohammad Mateen Aslam
I am installing FC-11 guest on Fedora 11 Machine via virt-install as follows bash# virt-install -n shu -r 2000 -l /root/Fedora-11-x86_64-DVD.iso --accelerate --os-type=linux -f /dev/vmdata/vm1.root -x console=ttyS0 --nographics --hvm Everything goes fine and until i reached to disk partition

Re: Fedora And Virtualization

2009-08-19 Thread Tom Horsley
On Wed, 19 Aug 2009 08:43:52 -0430 Patrick O'Callaghan wrote: Not necessarily true. I think the Xen people claim their product can actually be faster without hardware virtualization in some circumstances. True. The xen paravirtualization is indeed fast, but needs kernel support in the VM with

Re: nvidia vs suspend to disk

2009-08-19 Thread Paul W. Frields
On Wed, Aug 19, 2009 at 03:27:13PM +0200, Chris Rouch wrote: On Mon, Aug 17, 2009 at 3:31 PM, Michael Hennebryhenne...@web.cs.ndsu.nodak.edu wrote: Does anyone currently have suspend to disk working with nvidia's drivers? If so, how? One of the items I googled hinted that it might not

Re: Fedora And Virtualization

2009-08-19 Thread Chris Adams
Once upon a time, Tom Horsley tom.hors...@att.net said: True. The xen paravirtualization is indeed fast, but needs kernel support in the VM with a paravirt aware kernel, which you can get for linux kernels (sometimes, depending on the current state of patches) I think all the paravirt kernel

Re: virt-install - Custom Disk layout Missing while instalation

2009-08-19 Thread Chris Adams
Once upon a time, Mohammad Mateen Aslam mateenas...@hotmail.com said: Everything goes fine and until i reached to disk partition step where i find no custom layout option ... More over it dont ask for any software packages and just do standard installation. what to do to have custom package

Re: hello

2009-08-19 Thread iarly selbir | ski0s
Please. only saying you have problem don't said anything to us try help you, provides more information about your problem, errors, etc. Regards, - - iarly selbir | ski0s :wq! On Wed, Aug 19, 2009 at 9:52 AM, Alireza Yaghoobi Bijarboneh computerman1...@yahoo.com wrote: I want to login in

Discussion -- perhaps a trollette -- re: upgrades !

2009-08-19 Thread William Case
Hi; Is there no way around having to restart after some upgrade downloads like a new kernel or the recent gfs upgrades? I have no solutions to offer other than some amateur passing thoughts. Nor do I find restarting a particularly onerous burden in Fedora. However, by way of comparison, I

Re: access USB devices from VirtualBox

2009-08-19 Thread Mikkel L. Ellertson
Agile Aspect wrote: Try adding the following to /etc/fstab: none /sys/bus/usb/driversusbfs devgid=503,devmode=664 0 0 And then create a group 'usb' with a group id of 503. Dumb question - why not use the vbox group, as you already have to be a member of it to run

Re: System-Administration-Users and Group tool mismatch with adduser tool?

2009-08-19 Thread Mikkel L. Ellertson
Daniel B. Thurman wrote: The question is a general question, regardless of the distro, OSIT. Fedora starts @ 500 up Ubuntu starts @ 1000 up I am not sure if the administration tool itself is the same application for most distros, though. I am currently setting up on Ubuntu and I

thunderbird no longer opens clicked URLs in a web browser (protocol-handler.app.http) ?

2009-08-19 Thread Lonni J Friedman
Ever since updating to thunderbird-3.0beta3 (in Fedora11), any URLs that I click on fail to do anything. Previously they opened up in Firefox. I've got the following set in thunderbird: network.protocol-handler.app.http;firefox network.protocol-handler.app.https;firefox

Re: Fedora And Virtualization

2009-08-19 Thread Tom Horsley
On Wed, 19 Aug 2009 08:55:29 -0500 Chris Adams wrote: I think all the paravirt kernel patches are upstream now. Fedora has been shipping paravirt-capable kernels for a while now, and I don't think there are extra patches to support that. Yep. The latest kernels all have the paravirt ops

Re: Discussion -- perhaps a trollette -- re: upgrades !

2009-08-19 Thread Tom Horsley
On Wed, 19 Aug 2009 10:13:49 -0400 William Case wrote: What are the arguments against this kind of thing? Mostly that it is really really hard to do right and you'd probably never get the kind of discipline and testing require from the wild west open source community :-). There are systems

Re: Discussion -- perhaps a trollette -- re: upgrades !

2009-08-19 Thread Dave Ihnat
On Wed, Aug 19, 2009 at 10:35:12AM -0400, Tom Horsley wrote: Mostly that it is really really hard to do right and you'd probably never get the kind of discipline and testing require from the wild west open source community :-). Actually, this has already been done with Ksplice

Thunderbird 3.0b3 IMAP IDLE

2009-08-19 Thread Chris Bredesen
List, IMAP IDLE seems to have quit working for me in beta 3. It's either not working or it stops working after a very short duration. Anyone else seeing strange behavior with IMAP servers? I'll see nothing new in my inbox, then if I happen to open a message or do something that triggers a

Re: thunderbird no longer opens clicked URLs in a web browser (protocol-handler.app.http) ?

2009-08-19 Thread Steven Stern
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/19/2009 09:22 AM, Lonni J Friedman wrote: Ever since updating to thunderbird-3.0beta3 (in Fedora11), any URLs that I click on fail to do anything. Previously they opened up in Firefox. I've got the following set in thunderbird:

Re: Thunderbird 3.0b3 IMAP IDLE

2009-08-19 Thread Dr. Michael J. Chudobiak
On 08/19/2009 10:47 AM, Chris Bredesen wrote: List, IMAP IDLE seems to have quit working for me in beta 3. It's either not working or it stops working after a very short duration. Anyone else seeing strange behavior with IMAP servers? I have a setup where several users watch the same IMAP

  1   2   >