Linux-Noob Forums
ProFTPd - handy links - Printable Version

+- Linux-Noob Forums (https://www.linux-noob.com/forums)
+-- Forum: Linux Server Administration (https://www.linux-noob.com/forums/forum-8.html)
+--- Forum: FTP Server (https://www.linux-noob.com/forums/forum-85.html)
+--- Thread: ProFTPd - handy links (/thread-3988.html)

Pages: 1 2


ProFTPd - handy links - Digerati - 2003-12-15


http://castaglia.proftpd.de/

 

Good place to get started.

 

http://proftpd.linux.co.uk/

 

I thought these links were a good thing to add for now.




ProFTPd - handy links - Oroshi - 2003-12-15


is the ProFTPd use GUI interface?

 

i know that vsftpd is not a GUI




ProFTPd - handy links - Digerati - 2003-12-15


I think you might can install a gui for it but I wouldnt know. I have better luck in the command line interface. I use linux for server stuff only and do not care about gui's or desktop versions of anything.

 

 

When in doubt google it or better yet [/url][url=http://www.google.com/linux]http://www.google.com/linux it




ProFTPd - handy links - Xzibit - 2005-04-28

Hey everyone i'm running proftpd on fedore core 2 and i unziped it all in the main directory and have no idea how to install it. Cant find what is the right readme and hoping someone can alberate better cause after all i'm a noob.



ProFTPd - handy links - hijinks - 2005-04-29


easy answer.. use the rpm.. if you have apt-get its as easy as

 

apt-get update && apt-get install proftpd

 

if not

 

rpm -ivh [/url][url=http://ayo.us5.freshrpms.net/fedora/linux/...fc2.fr.i386.rpm]http://ayo.us5.freshrpms.net/fedora/linux/...fc2.fr.i386.rpm

 

then run the following commands to get it running

 

chkconfig proftpd on

service proftpd start

 

fedora is rpm based.. you should almost never install anything from source unless you really need to or know what you are doing :)




ProFTPd - handy links - znx - 2005-04-30


Quote:... you should almost never install anything from source unless you really need to or know what you are doing :)

 

thats.. thats.. eureka.. i knew i should be installing from source all this time... :P




ProFTPd - handy links - trinimoses - 2005-07-21


I want to configure this progarm to give a particaular user access to the web folder /var/www/html so he can do updates to the folder.. how do i do this ?

 

I have proftpd 1.2 on FC4




ProFTPd - handy links - tek-69 - 2005-07-22

if im remembering right, all that usr has to do is have either ownership or group privs for the dir in question. so chmod and chown would be where to start.



ProFTPd - handy links - znx - 2005-07-24


Quote:I want to configure this progarm to give a particaular user access to the web folder /var/www/html so he can do updates to the folder.. how do i do this ? 

I have proftpd 1.2 on FC4
 

its all about the permissions, so all you need to do is add the user to the web group (for instance my 'web' group is apache).

 



Code:
# usermod -G web `groups user | cut -d':' -f2-` user




 

that adds 'web' to the existing list of groups that the 'user' has. as long as the directory and files have permissions for the web group to edit it will work..

 



Code:
# chgrp -R web /var/www/html
# chmod -R g=rw /var/www/html




 

that alters the group to be web and alters the permissions to give read write access to the group.




ProFTPd - handy links - Digerati - 2007-07-18


This is what I used to do and I am not sure if its right or wrong but always worked.

 

 

To add a user for ftp purpose only so they can log into their home dir and nothing else and upload and download.

 

use:

 

useradd -m -k /dev/null -s /sbin/nologin {username}

 

 

for web use

 

useradd -d /var/www/html/{username} -m -k /dev/null -s /sbin/nologin {username}

 

To remove the user:

 

userdel {username}

 

to delete the user and all thier stuff:

 

userdel -r {username}