2003-12-15, 02:08 PM
(This post was last modified: 2010-03-04, 03:13 PM by Dungeon-Dave.)
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
|
2003-12-15, 02:08 PM
(This post was last modified: 2010-03-04, 03:13 PM by Dungeon-Dave.)
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.
2003-12-15, 06:53 PM
is the ProFTPd use GUI interface? i know that vsftpd is not a GUI
2003-12-15, 09:01 PM
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
2005-04-28, 10:19 PM
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.
2005-04-29, 02:09 AM
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 :)
2005-04-30, 02:08 AM
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
2005-07-21, 06:50 PM
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
2005-07-22, 02:34 PM
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.
2005-07-24, 08:28 PM
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 ? 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 that alters the group to be web and alters the permissions to give read write access to the group.
2007-07-18, 03:38 PM
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} |
« Next Oldest | Next Newest »
|