General :: REpository Configuration In Redhat 6 64bit

Jun 6, 2011

How to configure repository in my standalone system to resolve dependencies so that i will not have to install all the rpms in my system by typing rpm -ivh and the name of rpm.

View 4 Replies


ADVERTISEMENT

Software :: Libcrypto.so.6() (64bit) And Libssl.so.6() (64bit) For Redhat 6?

Apr 5, 2011

does anyone know where I can find libcrypto.so.6()(64bit) and libssl.so.6()(64bit) for Redhat 6 - based distributions?

View 6 Replies View Related

General :: Configuration Of New Kernel For Redhat?

Feb 18, 2011

how to install new own kernel in Redhat 5. Can i install Debian kernel in redhat ?

View 2 Replies View Related

Server :: Redhat Repositories - Can't Find In The Currently Enabled Repository

Apr 14, 2011

I have installed RHEL 6 and registered it. I want to install

php-mcrypt
libmcrypt

and some other packages but could not find in the currently enabled repository. Can i get a list of the available repositories.

# yum repolist
Loaded plugins: rhnplugin
repo id repo name status
rhel-x86_64-server-6 Red Hat Enterprise Linux Server (v. 6 for 64-bit x86_64) 3,930
repolist: 3,930

View 6 Replies View Related

CentOS 5 :: Configuring Redhat 5 Enterprise Workstation To Point To 5 Repository Updates?

Apr 7, 2011

If I have Redhat 5 Enterprise workstation, how can I configure it to point to Centos 5 so I can receive updates and fixes through Centos rather than paying for Redhat support ? I heard this can be done, but wasn't sure what the steps are in terms of configuring Redhat

View 4 Replies View Related

Software :: Samba Install On RedHat ES 5.5 64bit Edition

Nov 4, 2010

I have redhat ES 5.5 64bit edition and I'm trying to install samba using the DVD I installed the software with - however this is failing the dependency checks, am I installing the wrong software or something?

[root@localhost samba]# ls
PERL_CONVERT_ASN1_0_20_1_1_.RPM SAMBA3X_CLIENT_3_3_8_0_51_E.RP SAMBA3X_DOMAINJOIN_GUI_3_3_ SAMBA_COMMON_3_0_33_3_28_000.RP
SAMBA_3_0_33_3_28_EL5_X86_6.RPM SAMBA3X_COMMON_3_3_8_0_51_E.RP SAMBA3X_SWAT_3_3_8_0_51_EL5.RP SAMBA_COMMON_3_0_33_3_28_EL.RP
SAMBA3X_3_3_8_0_51_EL5_X86_.RPM SAMBA3X_DOC_3_3_8_0_51_EL5_.RPM SAMBA_CLIENT_3_0_33_3_28_EL.RP

Here's what I'm running.
Code:
for pkg in 'ls'; do rpm -i $pkg; done;
This is just rpm's I've grabbed directly from the disk.

View 1 Replies View Related

Fedora X86/64bit :: Unable 32bit Repository On A 64 Bit System?

Nov 25, 2009

I am trying to kick start learning programming for Android.I try to install Android SDK(1.5, 1.6, and 2.0). However, the emulator keeps crashing with "Segmentation Fault" error. Since Android emulator is a binary only 32 bit executable, I suspect that I am missing some 32 bit library, so I tried to install qemu.However, since my installation is 64 bit, I can only install 64 bit qemu. how to enable 32bit repository on a 64 bit system? I don't know if I should use i586 or i686.

View 2 Replies View Related

Fedora X86/64bit :: Backup Updates Or Repository By Using APTONCD?

May 11, 2011

i am using ubuntu before, i dont have problem to backup my updates or my repository by using APTONCD, i switched now to fedora to give it a try. so far its good, my question now is how can i backup my repo, or any similar software like APTONCD.

View 3 Replies View Related

Fedora X86/64bit :: Upgrading 15 - Cannot Retrieve Metalink For Repository

Aug 21, 2011

I couldn't upgrade my system to f15, always an error message shown as below:

cannot retrieve metalink for repository: fedora. Please verify its path and try again.

View 1 Replies View Related

General :: Cant Mount Redhat 5.0 From Redhat 4.0 Via Fstab?

May 5, 2011

I cant mount a directory on red hat 5 from red hat 4 using fstab.I keep getting permission denied.I mount directories on the same red hat 5 sys from other red hat 5 and 2 old HPUX systems using fstab.When I try to telnet to it i get "no route to host."

View 3 Replies View Related

Debian Configuration :: How To Configuration Repository

Apr 11, 2010

How to change repository via terminal i install my debian trhough debian cd 1 so if i type apt-get upgrade the source is always fromd cd 1 and i want change ther source to the another repository(via internet not cd)

View 8 Replies View Related

Software :: Yum Configuration In The Redhat 5?

Mar 4, 2010

I have the pirated redhat 5 in my notebook. Now I need to do yum configuration. But for this we need the baseurl. I don't know the baseurls for downloading some important packages.

View 3 Replies View Related

Server :: CVS Configuration On Redhat Enterprise ?

May 11, 2009

Installation of CVS on Redhat linux

Installing CVS on Redhat Linux Redhat Enterprise 4.0

The following steps give simple steps to install CVS software on Redhat Enterprise Linux 4.0.

1) Download the tarball cvs-1.11.1p1.tar.gz
2) Run "gunzip cvs-1.11.1p1.tar". You will get file called cvs-1.11.1p1.tar.
3) Then extract this file using command
"tar -xvf cvs-1.11.1p1.tar".
4) Then go to directory cvs-1.11.1p1.
5) There you will find a file called INSTALL. Read it once carefully.
6) Now run the command "./configure."
7) Build it using the command "make".
8) Install binaries/documentation using command "make install".
9) Now open file called /etc/services and add the following lines.
Cvspserver 2401/tcp # CVS client/server operations
cvspserver 2401/udp # CVS client/server operations
10) Open file called /etc/xinetd.conf and add the following lines to that file.
service cvspserver
{
Port = 2401
socket_type = stream
protocol = tcp
wait = no
user = root
passenv =
server = /opt/bin/cvs
server_args = --allow-root=/home/cvs -f pserver
env = HOME=/home/cvs
log = /var/log/cvslog
}
11) Space on both sides of = in the above file is a must.
12) Restart xinetd services by running command " services xinted restart "
13) Check whether CVS is running on the port 2401 by using the following command "nmap IP |grep 2401". If the CVS server is running correctly it will give output as "2401/tcp open cvspserver ".

It doesn't output like "2401/tcp open cvspserver"

View 1 Replies View Related

General :: RepoError: Cannot Retrieve Repository Metadata (repomd.xml) For Repository

Sep 18, 2009

I've been trying to get my wireless working on the livecd to make sure its possible before I install it, but, I get a ton of errors when I install RPM's

Code:

Traceback (most recent call last):
File "/usr/share/PackageKit/helpers/yum/yumBackend.py", line 1649, in install_files
txmbr = self.yumbase.installLocal(inst_file)

[code]....

RepoError: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. verify its path and try again I get that one trying to install a driver installer from [URL]

View 4 Replies View Related

General :: Error: Cannot Retrieve Repository Metadata (repomd.xml) For Repository:

May 18, 2010

when i was trying to install perl with fedora using yum: # yum install perl i got the following error: Loaded plugins: presto, refresh-packagekit Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. Please verify its path and try again

View 3 Replies View Related

General :: Error: Cannot Retrieve Repository Metadata (repomd.xml) For Repository

Jul 8, 2010

When I tell yum to update i get this error, Quote: $ yum update Loaded plugins: presto, refresh-packagekit Error: Cannot retrieve repository metadata (repomd.xml) for repository: InstallMedia. Please verify its path and try again

View 4 Replies View Related

Server :: Sftp And Ftps Configuration In RedHat?

Mar 8, 2011

how to setup ftps & sftp in RHEL 5.4 Server.

View 4 Replies View Related

Server :: Yum Installation And Configuration In Details On Redhat / Centos 5.0?

Feb 21, 2011

yum installation and configuration in details on Redhat / Centos 5.0

View 1 Replies View Related

Server :: Troubleshoot Curropted Grub Configuration In Redhat Enterprice?

Jun 2, 2010

How to troubleshoot curropted Grub configuration in Redhat Enterprice Linux 5.

View 2 Replies View Related

Debian Configuration :: Creating A DVD Repository?

Jul 25, 2010

I have a server running debian 5 in a closed intranet (I can't get to the intenet). I want to install some program and update others.

Is there a way to download part of a repository (using a FTP client) so I could burn it on a DVD?

View 3 Replies View Related

Debian Configuration :: Ubuntuzilla APT Repository - Safe To Use?

Mar 4, 2010

Ubuntuzilla is an APT repository hosting the Mozilla builds of the latest official releases of Firefox, Thunderbird, and Seamonkey. This repository should also work on Linux distributions that are derivatives of Ubuntu, and probably also on any Debian derivative.

View 14 Replies View Related

Debian Configuration :: How To Install Kamailio DEB Repository

Jun 16, 2010

I'm trying to install Kamailio DEB repository. (see http://www.kamailio.org/dokuwiki/doku.php/packages:debs)

These are the steps I've done(as explained on the web site):
1. First download and add our GPG key to your apt key list:
wget http://deb.kamailio.org/kamailiodebkey.gpg
apt-key add kamailiodebkey.gpg

2.Then add the repository lines to your /etc/apt/sources.list file depending on the Kamailio version of your choice:
deb http://deb.kamailio.org/kamailio lenny main
deb-src http://deb.kamailio.org/kamailio lenny main

[Code]...

View 3 Replies View Related

Fedora :: Repository Configuration For Older Releases

May 10, 2009

June 12, 2011. It appears that quite a few of the alternative repositories that I've suggested in the posts below are no longer functional. Rather than flog a dead horse I'm closing this thread and strongly suggest that you use a supported release of Fedora.The Fedora releases here, Fedora Core 1 through Fedora 12, are no longer supported or maintained, so they do not receive bug fixes or security updates. We do not recommend using these releases any more. I've spent the last day or so installing every Fedora release since Fedora Core 1, excluding Fedora 11, on a computer I had laying around. My goal was to figure out how to get yum to work despite the fact that the stock repositories are long gone in most cases.

I was motivated by the fact that the yum questions are never ending here at Fedora Forum and the question of how to make yum work for these older versions of Fedora seem to be quite common. The usual response is to install the newest and greatest Fedora. That's fine, but there are cases where this is just not possible. I'll outline separately what I've done for each release. You will only get one update, however, you should be able to install any software that is available through these repositories. You could consider adding other repositories if you need additional software.

View 14 Replies View Related

CentOS 5 :: Repository Base Is Listed More Than Once In The Configuration

Apr 17, 2009

When I try and use the YUM command I get the following:

Repository base is listed more than once in the configuration

Is there a way to fix this? I use Centos 5.2.

View 9 Replies View Related

Debian Configuration :: Error In Opera Update From Repository

Jul 2, 2010

I've got Opera for Linux on my Debian Lenny system, installed by adding their repository to my APT config, and it works great. Just recently there was an update. When I downloaded it, it could not install because the signature could not be verified.

W: GPG error: [url] lenny Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY F9A2F76A9D1A0061

Why would that happen now when I already had the repository correctly setup in my apt files? I tried re-installing the key and that didn't change anything. Is there a problem with a public key server somewhere?

View 2 Replies View Related

Debian Configuration :: Install The Nvidia Drivers From The Repository?

Jul 7, 2011

I want to install the nvidia drivers from the repository (they seem quite updated lately). But i hit some issues:

# aptitude install nvidia-glx
The following NEW packages will be installed:
libgl1-nvidia-alternatives{ab} libgl1-nvidia-glx{ab}
libglx-nvidia-alternatives{a} nvidia-glx nvidia-installer-cleanup{a}
nvidia-kernel-common{a} nvidia-kernel-dkms{a} nvidia-support{a}
nvidia-vdpau-driver{a}

[Code]...

Since the nvidia packages are in testing i assume they can be installed, do they?

View 6 Replies View Related

Fedora :: Updates Installation - RPM Fusion Repository Configuration

Aug 17, 2010

I just installed RPMFusion free and non-free, and now update manager is telling me that it needs to install updates "RPM Fusion (free) Repository Configuration" and "RPM Fusion (non-free) Repository Configuration". When I try to install these I get a message asking 'Do you trust the source of the packages?" and i click 'Yes", it then asks for a password for authentication, and then I get message saying "Could not update packages. Failed to process request" and under more details:

failed to install signature: Traceback (most recent call last):
File "/usr/share/PackageKit/helpers/yum/yumBackend.py", line 2926, in install_signature
self.yumbase.getKeyForPackage(pkg, askcb = lambda x, y, z: True)
File "/usr/lib/python2.6/site-packages/yum/__init__.py", line 4309, in getKeyForPackage
result = ts.pgpImportPubkey(misc.procgpgkey(info['raw_key']))
File "/usr/lib/python2.6/site-packages/rpmUtils/transaction.py", line 59, in __getattr__
return self.getMethod(attr)
File "/usr/lib/python2.6/site-packages/rpmUtils/transaction.py", line 69, in getMethod
return getattr(self.ts, method)
AttributeError: 'NoneType' object has no attribute 'pgpImportPubkey'

View 3 Replies View Related

Ubuntu :: Installing Packages Suspect Repository Configuration

Mar 18, 2011

I completed an installation of Ubuntu 10.10 LTS 64-bit as a guest operating system on a VMWare server. Somehow during the installation process, I neglected to install a GUI desktop. I want to install the gnome desktop, but I am running into a series of errors similar to the one shown below:

[Code]....

View 1 Replies View Related

Debian Configuration :: 7.4 64bit Network Connection Is Dropping On Server

Oct 16, 2015

We are having an issue where our network connection is dropping on our server. Everything was working for about a month without issues then suddenly we experienced a network outage. Here is what I found in our logs. Rebooting the machine was the only way to have everything come up.

Oct 16 09:20:59 server2 kernel: [2612816.936085] ------------[ cut here ]------------
Oct 16 09:20:59 server2 kernel: [2612816.936101] WARNING: at /build/linux-FpPMO6/linux-3.2.54/net/sched/sch_generic.c:256 dev_watchdog+0xf2/0x151()
Oct 16 09:20:59 server2 kernel: [2612816.936106] Hardware name: ProLiant DL380p Gen8
Oct 16 09:20:59 server2 kernel: [2612816.936110] NETDEV WATCHDOG: eth0 (tg3): transmit queue 0 timed out

[Code] ....

We have the same exact server, running the same exact debian version for over a year with no issues.

View 0 Replies View Related

Fedora X86/64bit :: Kernel Installation With I386/i686 Configuration Set

Jul 24, 2009

I'm currently using FC 9 - 2.6.27 x86_64. (In my Hp - nx6320 laptop with- Intel centrino Duo processor). I have downloaded linux-2.6.30.2. How do I install this with i386/i686 configuration set. All that I want is a 32 bit - linux-2.6.30, because NCTUns 5.0 works only with the 32-bit kernel. I have tried following:

Code:
make ARCH=i386 menuconfig
After this, I see the architecture set to "X86_32 = Y" in the .config file. But later, after I run

Code:
make bzImage
The configuration restarts asking to select Y/N for various packages and modules. I have no much idea on what to select and what not to, in order to retain X86_32 set. I end up with the new .config file with contents as below after the make bzImage command.

Code:
#X86_32 is not set
X86_64 = y
Again it is going to be built as a X86_64 bit kernel.

How to install the kernel as 32-bit along with the existing FC-9 64 bit kernel.

View 5 Replies View Related







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