General :: Which Is Closer To RHEL 5/6, 14, Centos 5.5 Or Another Distro

Nov 15, 2010

Which is closer to RHEL 5/6, Fedora 14, Centos 5.5 or another distro? In terms of installation and administration.

View 8 Replies


ADVERTISEMENT

CentOS 5 :: Pirut/yum: RHEL 5.1 - Maintain An Unregistered RHEL Box?

Feb 16, 2010

A client has sent me an RHEL 5.1 box for me to do some work on, but it's not registered with Red Hat. This is causing me problems, because it's a minimal installation, and I need some more dev software.My immediate reaction was to install various bits (emacs, and so on) from my Centos 5(.0) DVD.The base RHEL system only had one (disabled) repo entry,so I added a yum DVD repo entry in yum.conf.d.

This looked good to start with, but it doesn't work. Something in RHEL's pirut/yum/rpm/whatever is getting confused, and can't work out what is/isn't installed.

Question - how do you maintain an unregistered RHEL box? Has RH done something to make life difficult? Is my problem simply that I'm using a Centos 5.0 DVD, instead of Centos 5.1? Am I stuck with downloading lots of rpms from the net and doing everything manually? I really don't want to do that.

View 2 Replies View Related

Red Hat / Fedora :: GRUB Of Previously Installed Distro / Enable Wake On Lan In Scientific (RHEL)?

Jan 2, 2010

I have two problems. I installed a RHEL variant (scientific linux) on an already dual boot system with ubuntu and vista.

It replaced GRUB with (I think an older) GRUB version and to add to that I cannot see my ubuntu ditro anymore. is there a way of reinstalling the GRUB that came with ubuntu then adding the RHEL distro to it?

my second problem is that I cannot figure out how to enable wake on lan in scientific linux (RHEL). on ubuntu I would just write a small script and update all runlevels to run it at startup. what is the alternative on redhat?

View 5 Replies View Related

General :: Using Centos 4 In Place Of RHEL 4?

Jun 12, 2010

I have a software program that when you try to install it on Centos it returns "This programs requires RHEL 4" Is there a work around to get the software to use the Centos software the same as it would RHEL 4?

View 6 Replies View Related

Red Hat :: General - Convert Between CentOS And RHEL?

May 4, 2010

In general, how easy is it to convert between CentOS and RHEL (in either direction)?

View 6 Replies View Related

General :: Make Install To Rpm For Centos / Rhel?

Feb 10, 2011

I am looking for a tool that can automatically create a rpm package after compiling from source, replacing "make install" Ubuntu and Debian use checkinstall for that.

What is the equivalent for centos?

View 1 Replies View Related

General :: How Does The Documentation Of CentOS/RHEL Compare To Some Of The Other Distros

Oct 29, 2010

documentation on the "stable" war-horse OSs. I am impressed for example on the community support of Ubuntu, Slackware, and impressed by the formal documentation of Arch and Gentoo.

1. However, how does the documentation of CentOS/RHEL compare to some of the other distros? and

2. How about compared to similar OSs, like Debian

View 2 Replies View Related

General :: Rhel/centos File Execute And Installation?

Mar 6, 2010

i have new build testing centos 5.4 i386 base how to monitor logs and watch what is going wrong with file. i have 1 zmanda server enterprise i give permission and when i excecute nothing happend

# chmod +x amanda-enterprise-3.0-installer.bin
-rwxr-xr-x 1 root root 0 Mar 6 12:12 amanda-enterprise-3.0-installer.bin
# ./amanda-enterprise-3.0-installer.bin

what i am missing to install it.

View 1 Replies View Related

Networking :: Get Speeds Closer To 1000Mb/s?

Apr 4, 2010

First of all I have two Gentoo Linux computers. These computer both have Ethernet ports that support 1000MB/s speeds. Here is the ethtool report for both of the cards.

[code]...

Link detected: yes I have a Cat6 cable connecting the two computers together for direct file backup. Now when I run iperf to check my speeds, I get the following:

[code]...

My question is why is this so slow and how do I get my speeds closer to 1000Mb/s?

View 9 Replies View Related

General :: Disable Boot / Startup The Clamav On Rhel / Centos?

Feb 22, 2010

how to disable boot,startup the clamav on rhel/centos.

View 1 Replies View Related

General :: Monitor Hardware Temperature (CPU , Motherboard , HDD Etc) In CentOS/RHEL?

Jun 7, 2011

How to monitor hardware temperature (CPU , Motherboard , HDD etc) in CentOS/RHEL ?

View 3 Replies View Related

General :: Failed To Get Either RHEL 6.0 Eval Or Centos To Install On Virtual Box

Mar 10, 2011

So far failed to get either RHEL 6.0 Eval or Centos to install on Virtual Box.

Should it really be that difficult?

View 14 Replies View Related

Security :: Take A Closer Look Once The Scans Stepped Up A Notch?

Nov 1, 2010

It was recommended that I post the results of a service scan performed against a remote machine. However, before I get flamed for lack of proper etiquette, I asked for advice prior to posting. So, here goes. I have a been getting scanned repeatedly by the same group of addresses for well over 2 months. I decided to take a closer look once the scans stepped up a notch. By "stepped up a notch" I mean more specific. All the originating HOST are using either port 12200 or port 6000. All with one exception, appear to be located in China. The scans are blatant. Over and over again. I noticed some timing between scans that seemed to match up with a European location as well.

The first question would be if I could get in trouble for the remote host actions. I mean, I have noticed pings directed past the router to the internal network now in my linux logs. Could the attacker/scanner be using me as a bounce for other stuff? The scans, as stated before, never stop.

I ran a scan against one of the host out of curiosity. You can check it out at http://pastebin.com/5qcKSgC0. It appeared to be a school in china. Should I report it? IF so, how would aI report it to some guy in china, I don't speak or write Chinese.

View 3 Replies View Related

General :: Distro - Nominate A Disastrous Distro From Past Or Present

Jan 9, 2010

nominate a disastrous distro from past or present that was simply AWFUL and what exactly was so bad about it?

View 14 Replies View Related

Programming :: Getting Closer To The Answer - Python Iterations Over Nested Tuples?

May 22, 2010

Code:
tupe=("File",("Open","Open a file"),"Edit",("Cut","Cut a file"),("Paste","Paste a file"),"About",("About","About the program"))
menutitle=""
menupos=0
for items in tupe:
if type(items)==str:

[Code]...

I'm trying to understand how to make "File" be the parent information for "Open","Open a file" and "Edit" to be the parent of "Cut, Cut a file" and "Paste", "paste a file". Does anyone have a suggestion for accessing the a nested tuple in this manner? The above code does not quite do what I want it to. The above code is for visual purposes, but I'm learning how to refactor for wx.python.

View 3 Replies View Related

CentOS 5 Networking :: Bridging Interface Using A Customized CentOS Distro?

Jan 18, 2011

ok I am using a customized CentOS distro that is looking for 3 network cards on boot. eth0, eth1, eth2. I do not need eth0 and need to bridge it to eth1.

View 1 Replies View Related

General :: Cannot Ping From Host (RHEL 6) To RHEL 5 In (virtual)?

May 1, 2011

can not ping from host (RHEL 6) to RHEL 5 in (virtual)? I have stopped iptables on both machines. But still not able to ping from host machine to virtual.

View 1 Replies View Related

CentOS 5 Networking :: Authbind Equivalent - Package For CentOS / RHEL?

Feb 23, 2010

I am trying to see if there is an authbind equivalent or authbind package for CentOS/RHEL? x If so, where can I get more info and download it? It seems to be only available for Debian and Ubuntu.

View 3 Replies View Related

CentOS 5 :: Windows AD ACLS Used On Centos/RHEL Directories?

Aug 31, 2010

We are slowly migrating from a predominantly Windows house to a 50/50 Win/RHEL operation and even further in the future.Currently, we have a LOT of Windows folders that are created by custom applications which, upon creation of a new folder set, applies the corresponding ACL so that only the associated groups are able to access the folders. Now for the problem, we are migrating the applications to a RHEL55 environment and it is creating the folders on that system now but the groups are still residing in the Windows AD. Is there an "easy" (I know, a very relative term) to have the Windows groups given permission to the Linux shares without very much manual intervention?

View 1 Replies View Related

General :: Downloading RHEL 5.4 AS From RHEL Website?

Dec 23, 2009

I am trying to download RHEL 5.4 AS version for testing..But under [URL] There is no specific link for AS version or ES version..How can I detect which iso is for AS and which one for ES..? There are separate links for AS and ES version for RHEL 4.x version but why is it not available for RHEL 5.x versions?

View 3 Replies View Related

General :: Difference Between Rhel 5 And Rhel 6?

Feb 3, 2011

difference between rhel 5 and rhel 6 - basic difference.

View 3 Replies View Related

General :: Upgrade From RHEL 3 To RHEL 5.x?

Nov 18, 2009

i have old RHEL 3 system which has kernel 2.4 installed into it. I wasnt to upgrade it to RHEL 5.x so i downloaded a kernel 2.6 package but was not able to compile it.

View 1 Replies View Related

Software :: How To Create A Centos Distro

Jul 3, 2011

Im looking to create my own centos distro.

View 3 Replies View Related

General :: Best LXDE Based Distro/distro That Supports LXDE?

Dec 15, 2010

Lubuntu is nice - but it seems the LXDE version is not as up to date as Fedora LXDE Spin or even Debian squeeze with LXDE installed. I do like Chromium on Lubuntu though... its faster and a nice touch. I am looking for a lightweight 64-bit distribution for my main laptop (it is by no means "old" or "low spec" but I like that Lubuntu starts up in like 2 secs).

LXDE version seems not to be recent (esp in 10.04 version which seems to work more stably for me - with Nvidia drivers etc)64 bit install is currently a pain - requires first install of minimal CD or alternate CD both of which required wired Ethernet, then install of lubuntu from PPA. Native 64-bit support would be nice. Linux Mint LXDE, for example, is also only 32-bit.

View 4 Replies View Related

Red Hat :: Diffrence Between RHEL And Centos?

Jan 5, 2010

what is the diffrence between RHEL and Centos. diffrences between support,packges, Xwindow, organization funda, someone say redhat is launch Centos like fedora. but when fedora for beta, RHEL for tested with formal support so why redhat launch this Centos.i get some information from net but not sufficiant for me..

View 3 Replies View Related

CentOS 5 :: Cant Compile Gcc 333 In Rhel 5?

Apr 3, 2010

I downloaded src of gcc 3.3.3 and tried to compile in RHEL 5 with the existing gcc 4.1.2.
Got following error

[root@localhost gcc-3.3.3-src]# pwd
/home/nikole/gccmy/gcc-3.3.3-src
[root@localhost gcc-3.3.3-src]# which gcc

[code]....

View 2 Replies View Related

CentOS 5 Networking :: Wifi - Best Usb Wireless Nic For Distro / Release?

Jul 28, 2010

I have a couple of dell precision boxes running centos 5.4, that are occasionally sent to trade shows. I would like to set them up to connect to wireless networks. Question, what is generally considered the best usb wireless nic to purchase for this distro/release? Also, any opinions on the best wireless aircard and carrier to use, ie; sprint at&t, etc?

View 3 Replies View Related

Software :: Hwinfo RPM For RHEL 5 Or Centos 5 /6?

Jul 21, 2011

For a audit script that I use, I need a hwinfo RPM for RHEL 5 or Centos 5/6 that works (Opensuse ones do not work). Is there one which anybody knows about?

View 3 Replies View Related

Red Hat :: CentOS 5 / RHEL 5 - YUM Updates Through Proxy?

Nov 28, 2008

I have been trying all day but so far I am unable to configure yum to use a proxy server to retrieve updates.Due a recent compliance mandate direct internet access had to be removed for a pool of our Cent/RHEL servers. I have added the http_proxy environment variable in /etc/profile using:

export http_proxy=http://ourproxy:8080
export ftp_proxy=http://ourproxy:8080
export gopher_proxy=http://ourproxy:8080

I am using the FQDN of the proxy server, and i can ping that FQDN from the CLI without a problem. When I do this and I reboot the server I can get to the internet through the proxy using links/lynx. Yum however stalls out after loading plugins. I have read in a few places that I need a trailing / after the port number above, adding this and rebooting has no effect.

So I tried specifying the yum.conf file... [URL]. When I do this yum still tries to contact the redhat/cent network directly. No behavior change. If I use tcpdump I can see the server I am running yum on try to directly connect without the proxy, which times out for good reason.

The proxy server I am running is squid, but I can see the server I am running yum on blatantly ignore any proxy settings I have tried so far. I am really in a hole on this one as I have to get several updates to fix vulnerabilities found during our last scan.

View 2 Replies View Related

CentOS 5 :: Install Xen 3.2 On RHEL Version3

Jun 4, 2009

My doubt is " Can we install Xen 3.2 on RHEL version 3".

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved