Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora Resources > Guides & Solutions (No Questions)
FedoraForum Search

Forgot Password? Join Us!

Guides & Solutions (No Questions) Post your guides here (No links to Blogs accepted). You can also append your comments/questions to a guide, but don't start a new thread to ask a question. Use another forum for that.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 10th January 2012, 08:47 AM
picasso_1.2.13 Offline
Registered User
 
Join Date: Oct 2007
Posts: 51
linuxfirefox
Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

UPDATE: I've changed the links to the updated patch that will work with the latest kernel updates.

Official support for VMware server ended on June 30th, 2011. Although it is generally recommended that anyone using VMware server migrate to VMware ESXi or another VMware product, in some cases it may still be relevant to use VMware server. However, due to the lack of support, the last version of VMware server (2.0.2) has become severely out of date and no longer runs as intended “out of the box” on modern Linux distributions with newer kernels.

There have been numerous efforts in the past by the community to fix the various issues which enabled us to continue using VMware server even on modern Linux distributions. Notably, the wrapper script and patches by Rado Cotescu (See http://radu.cotescu.com/vmware-server-kernel-2-6-38/) enabled VMware server to function on the Linux 2.6.3x kernels up until 2.6.39 when BKL (Big Kernel Lock) was removed from the kernel causing the VMware modules to no longer compile. There are also countless valuable contributions online by many other members of the community that are not mentioned here.

What is presented here are just my own recent efforts built on top of the VMware server user community and the likes of Rado Cotescu to show that VMware server 2.0.2 can still be used even today and works on Fedora 15/16 and the newer 3.x kernels. A lot of credit goes to those who came before me.

Setting up Fedora 15/16 system

For this tutorial, we use either Fedora 15 or Fedora 16 on the x86_64 architecture (64bit). The initial release of Fedora 15 used a kernel that still had BKL and hence Rado Cotescu's wrapper scripts still worked. But the kernel changed in Fedora 15 through updates and the latest F15 kernel no longer has BKL, which broke VMware Server. The tutorial here, along with the updated code patches will fix this problem. So our first steps are:

[1] Install Fedora 15/16 x86_64 on hardware with virtualization support.
[2] Apply all current updates with “yum -y update”.

Ensure that your installation includes 'make', 'patch', the C compiler 'gcc', and the kernel source and headers. These packages are usually named 'make', 'patch', 'gcc', 'kernel-headers', and 'kernel-devel'. When you install those via the 'yum' utility, their dependencies will be pulled in. These are needed to patch the code and rebuild the kernel modules for VMware server. You can install these tools with:

[3] Install packages with:

# yum -y install make patch gcc kernel-headers kernel-devel

I'm sure there is a way to setup SELinux to work with VMware Server, but I haven't figured that one out and that's not an obstacle I want to to deal with just yet. SELinux is enabled by default, so in the interim, we disable SELinux:

[4] Disable “SELinux” by editing /etc/sysconfig/selinux and rebooting.

Next, there is a problem with VMware and the NMI watchdog feature of certain Linux kernels. (See http://kb.vmware.com/selfservice/mic...externalId=924) Check to see if you have this feature enabled by running this command:

$ cat /proc/sys/kernel/nmi_watchdog

If you get a '1', then the feature is enabled and must be turned off or VMs will mysteriously crash. To turn off nmi_watchdog is different for Fedora 15 and Fedora 16:

[5] Fedora 15: Edit /boot/grub/grub.conf and add “nmi_watchdog=0” to the kernel line.
[5] Fedora 16: Edit /etc/default/grub and add “nmi_watchdog=0” to the GRUB_CMDLINE_LINUX. Then run:

# grub2-mkconfig -o /boot/grub2/grub.cfg”

to rebuild the grub configuration.

Now, reboot the system and check the /proc/sys/kernel/nmi_watchdog parameter again to make sure you see a '0'.

The final step is to open up the necessary ports on the firewall or disable the firewall completely. The three ports that need to be opened are 902/TCP, 8222/TCP, and 8333/TCP.

[6] Care must be taken in how you add the firewall rules. The iptables commands below are just guidelines.

# iptables -I INPUT 5 -p tcp --dport 902 -m state --state NEW -j ACCEPT
# iptables -I INPUT 6 -p tcp --dport 8222 -m state --state NEW -j ACCEPT
# iptables -I INPUT 7 -p tcp --dport 8333 -m state --state NEW -j ACCEPT

Installing VMware Server

VMware server is available from www.vwmare.com in both a .tar.gz and RPM format. Since we are on Fedora, download the RPM format and then install it:

[7] Install VMware server RPM package:

yum localinstall /path/to/VMware-server-2.0.2-203138.x86_64.rpm

Normally, at this point, you can run 'vmware-config.pl' to finish the setup. But unfortunately, if you went ahead and did that, you would run into all sorts of problems like the Perl script not being able to detect your kernel sources and the missing “smp_lock.h” header file which was part of BKL that is no longer available. In order to fix these problems, we need to perform a few more steps.

First, download the patches (http://www.jlbond.com/downloads/vmwa....6.42+.tar.bz2) and untar the archive:

[8] Download the archive:

Code:
# wget http://www.jlbond.com/downloads/vmware-server-2.0.2-203138-linux_2.6.42+.tar.bz2
[9] Untar the archive:

# tar jxf vmware-server-2.0.2-203138-linux_2.6.42+.tar.bz2

You will find two files: vmware-config.pl.patch and vmware-server-2.0.2-203138-linux_2.6.42.patch. The first one is to fix the vmware-config.pl script and the second one is to patch the VMware kernel module sources. The 2nd patch is based on Rado Cotescu's patch but with additional fixes for some deprecated syntax and naively replaces BKL with mutexes.

[10] patch vmware-config.pl script:

# patch -d /usr/bin -p0 < /path/to/vmware-config.pl.patch

Patching the kernel modules is a bit more tedious (at some point, i may write a script to do this):

[11] patch the VMware module sources:

# pushd /usr/lib/vmware/modules/source
# mkdir backups; cp -a *.tar backups/
# mkdir working; ls *.tar | xargs -n 1 tar -C working/ -xf
# pushd working
# patch -p1 < /path/to/vmware-server-2.0.2-203138-linux_2.6.42.patch
# tar cf ../vmci.tar vmci-only
# tar cf ../vmmon.tar vmmon-only
# tar cf ../vmnet.tar vmnet-only
# tar cf ../vsock.tar vsock-only
# popd; rm -rf working/ ;popd

Next, there appears to be a problem between the bundled libxml2 with the system's zlib package. Either you can use an older zlib library or you can make vmware use the system's libxml2 which doesn't have problems with zlib. (see http://communities.vmware.com/message/1670102) We will move the bundled libxml2 out of the way so that vmware uses the native libxml2:

[12] Move bundled libxml2 out of the way so vmware uses native libxml2:

# pushd /usr/lib/vmware/lib; mv libxml2.so.2 SKIP-libxml2.so.2 ; popd

Finally, run 'vmware-config.pl' and answer the questions to finish up the installation. Once VMware server starts up, you should be able to access the management console at https://<your_ip_address>:8333.

Remark 1: Certain browsers like Firefox don't always work with VMware server's HTTPS. If you experience such problems, disabling TLS (and forcing SSL3) seems to help. Or, you can try another browser like Chrome.

Remark 2: When using NAT or HostOnly networking, the interface counters show enormous numbers in the packet counters. Since I mostly use Bridged networking which seems to work fine, I haven't looked into this further.

Last edited by picasso_1.2.13; 28th March 2012 at 05:19 AM.
Reply With Quote
  #2  
Old 6th February 2012, 06:26 AM
Kingtu Offline
Registered User
 
Join Date: May 2005
Posts: 126
linuxfirefox
Exclamation Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

doesn't work on fedora 16. I get error:
/tmp/vmware-config10/vmnet-only/userif.c: In function ‘VNetCsumCopyDatagram’:
/tmp/vmware-config10/vmnet-only/userif.c:579:3: error: incompatible type for argument 1 of ‘kmap’
/usr/src/kernels/3.2.2-1.fc16.i686.PAE/arch/x86/include/asm/highmem.h:60:7: note: expected ‘struct page *’ but argument is of type ‘const struct <anonymous>’
/tmp/vmware-config10/vmnet-only/userif.c:582:3: error: incompatible type for argument 1 of ‘kunmap’
/usr/src/kernels/3.2.2-1.fc16.i686.PAE/arch/x86/include/asm/highmem.h:61:6: note: expected ‘struct page *’ but argument is of type ‘const struct <anonymous>’
make[2]: *** [/tmp/vmware-config10/vmnet-only/userif.o] Error 1
make[1]: *** [_module_/tmp/vmware-config10/vmnet-only] Error 2
make[1]: Leaving directory `/usr/src/kernels/3.2.2-1.fc16.i686.PAE'
make: *** [vmnet.ko] Error 2
make: Leaving directory `/tmp/vmware-config10/vmnet-only'

I did notice that I dont have /usr/lib/vmware/modules/sources. I have /usr/lib/vmware/modules/source??? maybe that is causing a problem with the patch????
Reply With Quote
  #3  
Old 6th February 2012, 06:32 AM
picasso_1.2.13 Offline
Registered User
 
Join Date: Oct 2007
Posts: 51
linuxfirefox
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Quote:
Originally Posted by Kingtu View Post
doesn't work on fedora 16. I get error:
/tmp/vmware-config10/vmnet-only/userif.c: In function ‘VNetCsumCopyDatagram’:
/tmp/vmware-config10/vmnet-only/userif.c:579:3: error: incompatible type for argument 1 of ‘kmap’
/usr/src/kernels/3.2.2-1.fc16.i686.PAE/arch/x86/include/asm/highmem.h:60:7: note: expected ‘struct page *’ but argument is of type ‘const struct <anonymous>’
/tmp/vmware-config10/vmnet-only/userif.c:582:3: error: incompatible type for argument 1 of ‘kunmap’
/usr/src/kernels/3.2.2-1.fc16.i686.PAE/arch/x86/include/asm/highmem.h:61:6: note: expected ‘struct page *’ but argument is of type ‘const struct <anonymous>’
make[2]: *** [/tmp/vmware-config10/vmnet-only/userif.o] Error 1
make[1]: *** [_module_/tmp/vmware-config10/vmnet-only] Error 2
make[1]: Leaving directory `/usr/src/kernels/3.2.2-1.fc16.i686.PAE'
make: *** [vmnet.ko] Error 2
make: Leaving directory `/tmp/vmware-config10/vmnet-only'

I did notice that I dont have /usr/lib/vmware/modules/sources. I have /usr/lib/vmware/modules/source??? maybe that is causing a problem with the patch????
you're right about "source" vs "sources", that was my typo and I have corrected it. Thanks!

I'm guessing that the patch didn't really take. What was the output when you ran the patch?
Reply With Quote
  #4  
Old 6th February 2012, 01:05 PM
Kingtu Offline
Registered User
 
Join Date: May 2005
Posts: 126
linuxsafari
Exclamation Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Patched seemed to work fine. Maybe because I'm not using 64bit vmware server package???
Reply With Quote
  #5  
Old 6th February 2012, 06:03 PM
picasso_1.2.13 Offline
Registered User
 
Join Date: Oct 2007
Posts: 51
linuxfirefox
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Quote:
Originally Posted by Kingtu View Post
Patched seemed to work fine. Maybe because I'm not using 64bit vmware server package???
that may be true, i've only tested on 64bit thinking no one runs in 32 anymore...
Reply With Quote
  #6  
Old 7th February 2012, 05:19 AM
Kingtu Offline
Registered User
 
Join Date: May 2005
Posts: 126
linuxfirefox
Exclamation Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

I'm still running 32 because I figured there would still be application compatability issues. 64bit is just now becoming standard even though cpus capable of the 64bit instruction set have been out for a long time. anyway the scrpts can be adapted??? Unless you know how I can just run a 64bit kernel so I can get vmware server running!! Googles something about it but I cant find the dir /etc/rpm/platform in fedora 16.
Reply With Quote
  #7  
Old 13th February 2012, 09:18 PM
AlexKey Offline
Registered User
 
Join Date: Feb 2012
Location: inet
Posts: 5
windows_98_nt_2000opera
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Regards picasso_1.2.13, those patches saved real amount of time for me, thanks very much!

Almost all compiles OK.

But task really isn't complete yet, problem with vmnet-only imho does not depend on 32/64 differrences but Fedora 15/16, for I have identical error on my Fedora 16 x86_64

Quote:
Building the vmnet module.

Using 2.6.x kernel build system.
make: Entering directory `/tmp/vmware-config9/vmnet-only'
make -C /lib/modules/3.2.5-3.fc16.x86_64/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules
make[1]: Entering directory `/usr/src/kernels/3.2.5-3.fc16.x86_64'
CC [M] /tmp/vmware-config9/vmnet-only/driver.o
CC [M] /tmp/vmware-config9/vmnet-only/hub.o
CC [M] /tmp/vmware-config9/vmnet-only/userif.o
/tmp/vmware-config9/vmnet-only/userif.c: In function 'VNetCsumCopyDatagram':
/tmp/vmware-config9/vmnet-only/userif.c:579:3: error: incompatible type for argument 1 of 'kmap'
include/linux/highmem.h:48:21: note: expected 'struct page *' but argument is of type 'const struct <anonymous>'
/tmp/vmware-config9/vmnet-only/userif.c:582:3: error: incompatible type for argument 1 of 'kunmap'
include/linux/highmem.h:54:20: note: expected 'struct page *' but argument is of type 'const struct <anonymous>'
make[2]: *** [/tmp/vmware-config9/vmnet-only/userif.o] Error 1
make[1]: *** [_module_/tmp/vmware-config9/vmnet-only] Error 2
make[1]: Leaving directory `/usr/src/kernels/3.2.5-3.fc16.x86_64'
make: *** [vmnet.ko] Error 2
make: Leaving directory `/tmp/vmware-config9/vmnet-only'
Unable to build the vmnet module.
Would be great if there could be a solution for this, for not sure I would be able to manage an issue myself (in term).
Reply With Quote
  #8  
Old 13th February 2012, 11:38 PM
AlexKey Offline
Registered User
 
Join Date: Feb 2012
Location: inet
Posts: 5
windows_98_nt_2000opera
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Hi, thanks for quick answer

Yes, I'm on Fedora 16 x86_64, and I guess yes, they did. I have now kernel 3.2.5, would be some pain to downgrade specially for that..

Fedora have been already installed before I had to deal with that serv, so I don't know for sure with which kernel it was shipped, though
http://docs.fedoraproject.org/en-US/..._Sysadmin.html
now say that
Quote:
Fedora 16 features the new 3.1.0 kernel
Though I did all as you wrote in first post, all other modules compiled OK, on 3.2.5, except for last one

Last edited by AlexKey; 13th February 2012 at 11:41 PM.
Reply With Quote
  #9  
Old 14th February 2012, 12:10 AM
AlexKey Offline
Registered User
 
Join Date: Feb 2012
Location: inet
Posts: 5
windows_98_nt_2000opera
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Guys here http://weltall.heliohost.org/wordpre...l-3-2-and-3-3/
managed to to this for 3.x with Workstation and Player , maybe it can be helpful with server too someway..
Reply With Quote
  #10  
Old 15th February 2012, 11:02 AM
AlexKey Offline
Registered User
 
Join Date: Feb 2012
Location: inet
Posts: 5
windows_98_nt_2000opera
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Guess it was..

Quote:
Using 2.6.x kernel build system.
make: Entering directory `/tmp/vmware-config10/vmnet-only'
make -C /lib/modules/3.2.5-3.fc16.x86_64/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. modules
make[1]: Entering directory `/usr/src/kernels/3.2.5-3.fc16.x86_64'
CC [M] /tmp/vmware-config10/vmnet-only/driver.o
CC [M] /tmp/vmware-config10/vmnet-only/hub.o
CC [M] /tmp/vmware-config10/vmnet-only/userif.o
CC [M] /tmp/vmware-config10/vmnet-only/netif.o
CC [M] /tmp/vmware-config10/vmnet-only/bridge.o
CC [M] /tmp/vmware-config10/vmnet-only/filter.o
CC [M] /tmp/vmware-config10/vmnet-only/procfs.o
CC [M] /tmp/vmware-config10/vmnet-only/smac_compat.o
CC [M] /tmp/vmware-config10/vmnet-only/smac.o
CC [M] /tmp/vmware-config10/vmnet-only/vnetEvent.o
CC [M] /tmp/vmware-config10/vmnet-only/vnetUserListener.o
LD [M] /tmp/vmware-config10/vmnet-only/vmnet.o
Building modules, stage 2.
MODPOST 1 modules
CC /tmp/vmware-config10/vmnet-only/vmnet.mod.o
LD [M] /tmp/vmware-config10/vmnet-only/vmnet.ko
make[1]: Leaving directory `/usr/src/kernels/3.2.5-3.fc16.x86_64'
cp -f vmnet.ko ./../vmnet.o
make: Leaving directory `/tmp/vmware-config10/vmnet-only'
The vmnet module loads perfectly into the running kernel.


..........


Starting vmware (via systemctl): [ OK ]

The configuration of VMware Server 2.0.2 build-203138 for Linux for this
running kernel completed successfully.
Weltall's solution for workstation and player resolved my installation issue with server vmnet module, though patch can't be automatically applied, particularly to netif.c - some minor handwork was done.

From what I've seen, it must be compatible with all 2.6.x through 3.3.x RC kernels too.

I'll post here diff file when I'll have little more time though, for it could be included in the first post.
Reply With Quote
  #11  
Old 15th February 2012, 09:19 PM
Kingtu Offline
Registered User
 
Join Date: May 2005
Posts: 126
linuxsafari
Smile Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Quote:
Originally Posted by AlexKey View Post
Guess it was..



Weltall's solution for workstation and player resolved my installation issue with server vmnet module, though patch can't be automatically applied, particularly to netif.c - some minor handwork was done.

From what I've seen, it must be compatible with all 2.6.x through 3.3.x RC kernels too.

I'll post here diff file when I'll have little more time though, for it could be included in the first post.
Would you post how you manually applied the patch from Weltall's page
Reply With Quote
  #12  
Old 16th February 2012, 07:16 PM
AlexKey Offline
Registered User
 
Join Date: Feb 2012
Location: inet
Posts: 5
windows_98_nt_2000opera
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Hi Kingtu

I've just read carefully .patch file and copy-pasted things in place - vmnet module for server and worksation/player is very similar, but line numbers differ.

in netif.c some code must be pasted repeatedly, for function call enclosed in #if #endif encounters once for ws/player, but twice for server.
Reply With Quote
  #13  
Old 24th February 2012, 05:40 AM
Kingtu Offline
Registered User
 
Join Date: May 2005
Posts: 126
linuxfirefox
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Quote:
Originally Posted by AlexKey View Post
Hi Kingtu

I've just read carefully .patch file and copy-pasted things in place - vmnet module for server and worksation/player is very similar, but line numbers differ.

in netif.c some code must be pasted repeatedly, for function call enclosed in #if #endif encounters once for ws/player, but twice for server.
I have looked at the patch files and the wetall patch doesn't seem anything like the patch in the opening post. I'm trying to figure out where you are lookng. maybe ou could paste a diff in the two files and the name of the files so I can see what you did. then I should be able to do the rest. just show me one diff where you had to change. I really appreciate it.

Thanks

---------- Post added 24th February 2012 at 12:40 AM ---------- Previous post was 23rd February 2012 at 05:40 PM ----------

I was able to get everything to work after a clean install using the Fedora 15 x64 DVD. I did not run any yum updates becasue that will upgrade the kernel and give me the same problems as before. If I was missing any packages I found them here: ftp://mirror.steadfast.net/fedora/re...4/os/Packages/

and installed them manually. All is well for now until a soultion is found for compiling vmware-server after kernel 2.6.38
Reply With Quote
  #14  
Old 8th March 2012, 08:42 PM
picasso_1.2.13 Offline
Registered User
 
Join Date: Oct 2007
Posts: 51
linuxfirefox
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

hey guys...

ok, finally had some time to look at this. looks like there were some more changes in the kernels, especially 2.6.42 and above. i'm running with this new patch right now with Fedora 15 and kernel 2.6.42.7-1.fc15.

before I posted it publicly, i'd like to test it further. if anyone here wants to test it as well, please PM me and I'll send the patch privately. and of course, would appreciate it if you could let me know what problems you ran into...
Reply With Quote
  #15  
Old 22nd March 2012, 02:22 AM
greno Online
Registered User
 
Join Date: Oct 2005
Location: U.S.A.
Posts: 261
linuxepiphany
Re: Howto: Install VMware Server 2.0.2 on Fedora 15 & 16

Some problem on Fedora 16 32-bit w/PAE kernel.

Need to install kernel-PAE-devel and NOT kernel-devel.

Patches apply fine.

When running vmware-config.pl it gets all the way to networking setup where I selected Bridge and NAT then it tries to build vmnet and gives this error:


/tmp/vmware-config2/vmnet-only/userif.c: In function ‘VNetCsumCopyDatagram’:
/tmp/vmware-config2/vmnet-only/userif.c:579:3: error: incompatible type for argument 1 of ‘kmap’
/usr/src/kernels/3.2.10-3.fc16.i686.PAE/arch/x86/include/asm/highmem.h:60:7: note: expected ‘struct page *’ but argument is of type ‘const struct <anonymous>’
/tmp/vmware-config2/vmnet-only/userif.c:582:3: error: incompatible type for argument 1 of ‘kunmap’
/usr/src/kernels/3.2.10-3.fc16.i686.PAE/arch/x86/include/asm/highmem.h:61:6: note: expected ‘struct page *’ but argument is of type ‘const struct <anonymous>’
make[2]: *** [/tmp/vmware-config2/vmnet-only/userif.o] Error 1
make[1]: *** [_module_/tmp/vmware-config2/vmnet-only] Error 2
make[1]: Leaving directory `/usr/src/kernels/3.2.10-3.fc16.i686.PAE'
make: *** [vmnet.ko] Error 2
make: Leaving directory `/tmp/vmware-config2/vmnet-only'
Unable to build the vmnet module.

Last edited by greno; 22nd March 2012 at 03:23 AM.
Reply With Quote
Reply

Tags
fedora, howto, install, server, vmware

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Install VMware VMware-server-1.0.1-29996.i386.rpm sheffrem Servers & Networking 6 12th April 2007 01:13 AM
VMWare Server install on Fedora 6 Fails -- Please help Delphi123 Using Fedora 6 10th February 2007 08:10 PM
VMware-server install GaryG Using Fedora 10 19th December 2006 08:46 PM
Howto: Windows in Fedora with Vmware Server on dual boot laptop. wneumann Guides & Solutions (No Questions) 3 30th October 2006 07:03 PM
HOWTO: Install nVidia, RealOne, XMMS, Xine, Vmware, Cedega 5.1 & MPlayer in FC5 bigboss2200 Guides & Solutions (No Questions) 6 19th April 2006 12:22 PM


Current GMT-time: 06:46 (Tuesday, 21-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat