Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No package s3cmd available

Tags:

centos

rpm

s3cmd

I am trying to install an s3cmd rpm on my CentOS 6.x by using the command yum install s3cmd but I am getting the following error output :

Loaded plugins: fastestmirror, refresh-packagekit, security 
Setting up Install Process 
Loading mirror speeds from cached hostfile  
* base: centos.mirror.net.in  
* extras: centos.mirror.net.in  
* updates: centos.mirror.net.in 
No package s3cmd available.
Error: Nothing to do

Can somebody provide me URL from where I could manually download s3cmd rpm or any other solution for this?

like image 674
Vinit89 Avatar asked Feb 26 '16 04:02

Vinit89


People also ask

Where is s3cmd installed?

By default s3cmd puts its configuration file in ~/. s3cfg, but you can override a configuration file with the -c option and specify a different configuration file.


2 Answers

The s3tools repos are empty now. Please get it from the EPEL repository instead, which I am able to keep maintained.

$ sudo yum --enablerepo=epel install s3cmd
like image 194
Matt Domsch Avatar answered Oct 21 '22 16:10

Matt Domsch


I resolved this problem using following steps :-

  1. cd /etc/yum.repos.d

  2. wget http://s3tools.org/repo/RHEL_6/s3tools.repo

  3. yum install s3cmd

like image 44
Vinit89 Avatar answered Oct 21 '22 17:10

Vinit89