Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having trouble with installing vsftpd on centos 6. When I enter the command

yum install vsftpd

I get the following:

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.widexs.nl
 * extras: mirror.serverbeheren.nl
 * updates: mirror.serverbeheren.nl
Setting up Install Process
No package vsftpd available.
Error: Nothing to do

And I don't know how to fix this. Does anyone have an idea? Should I add another repo and if so, how should I do this? I'm quite new to centos, I've been used to Ubuntu where I could just use apt-get to install most things.

Thanks in advance!

share|improve this question
You may get better answers from ServerFault or SuperUser. – Benny Hill Feb 18 at 19:45

closed as off topic by Wooble, Eugene Mayevski 'EldoS Corp, Michael Foukarakis, Will Feb 20 at 16:21

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 0 down vote accepted

Install Repository

wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -Uvh epel-release-6*.rpm

Install vsftpd

yum install vsftpd
share|improve this answer

hmm strange, yum is missing some repository where vsftpd is located. You still can download it manually: http://rpmfind.net/linux/rpm2html/search.php?query=vsftpd&submit=Search+...&system=centos&arch=

and install it through rpm command, or add repository(not sure which one) to your yum

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.