Hi!
I have openSuSE and VSFTPD installed (up and running). I have 6 users that need access to FTP server. Only authenticated access is allowed.
Question is: Is there a way to make that this 6 users have their own home folder after loggin?
Their docs needs to be separated.
This means that when user 1, after logging, goes to folder 1, user 2 goes to folder 2, etc,…
I have FilleZilla FTP SERVER on Windows that is perfect, but there is no FileZilla FTP SERVER for Linux and I need to make solution on Linux ;).
ken_yap
December 10, 2008, 1:51pm
#2
Yes you can. There are several howtos on the net. The key is the configuration line:
local_root=/home/ftp/$USER
The $USER substitution is the important bit.
Here’s a WIki with some useful docs:
viki - vsftpd Wiki - Virtual Users: Simple[en]
You will also find info there on how to set up a different authentication source than /etc/passwd. Unfortunately you will have to learn to configure vsftpd by editing the config files and running commands on the command line, AFAIK there are no YaST helpers for this.
Yes you can. There are several howtos on the net. The key is the
configuration line:
> local_root=/home/ftp/$USER
The $USER substitution is the important bit.
Here’s a WIki with some useful docs:
‘viki - vsftpd Wiki - Virtual Users: Simple[en]’
(http://viki.brainsware.org/?Virtual_Users_simple )
You will also find info there on how to set up a different
authentication source than /etc/passwd. Unfortunately you will have to
learn to configure vsftpd by editing the config files and running
commands on the command line, AFAIK there are no YaST helpers for this.
Hi
Using webmin (http://www.webmin.com/ ) may be an option.
http://articles.techrepublic.com.com/5100-10878_11-6182594.html
–
Cheers Malcolm °¿° (Linux Counter #276890 )
openSUSE 11.0 x86 Kernel 2.6.25.18-0.2-default
up 0:11, 1 user, load average: 0.14, 0.36, 0.38
GPU GeForce 6600 TE/6200 TE - Driver Version: 177.82
You were all very helpfull… Installed WEBMIN (what a great tool lol!) and VSFTPD module and made some manual entries through WEBMIN.
Everything up and running, just like I wanted…
Thank you all!!!
ken_yap:
Yes you can. There are several howtos on the net. The key is the configuration line:
The $USER substitution is the important bit.
Here’s a WIki with some useful docs:
viki - vsftpd Wiki - Virtual Users: Simple[en]
You will also find info there on how to set up a different authentication source than /etc/passwd. Unfortunately you will have to learn to configure vsftpd by editing the config files and running commands on the command line, AFAIK there are no YaST helpers for this.
which file has the line:
local_user=
ken_yap
February 5, 2009, 1:31am
#6
/etc/vsftpd.conf is where any config variables are set.