ProFTPd настройка папок для скачки закачки... [SOLVED]

Ситуация такая: есть ftp-сервер на базе ProFTPd, хочется организовать следующие функции:
1) Доступ к серверу анонимных пользователей с возможностью просмотра папки "A" и записи в папку "B".
2) Доступ к серверу авторизованных пользователей (пользователи чья учетная запись есть на сервере) с возможностью просмотра своей домашней папки - /home/????, просмотру и записи в папку "A", просмотру и записи в папку "B".
Я попробовал сделать так...

# This is a basic ProFTPD configuration file (rename it to
# 'proftpd.conf' for actual use. It establishes a single server
# and a single anonymous login. It assumes that you have a user/group
# "proftpd" and "ftp" for normal operation and anon.
ServerName "jazz_FTP_bass"
ServerType standalone
DefaultServer on
RequireValidShell off
AuthPAM off
AuthPAMConfig ftp
TimeoutLogin 120
TimeoutIdle 600
TimeoutNoTransfer 900
TimeoutStalled 3600
UseReverseDNS off
# Port 21 is the standard FTP port.
Port 21
# Don't use IPv6 support by default.
UseIPv6 off
# Umask 022 is a good standard umask to prevent new dirs and files
# from being group and world writable.
Umask 022
# To prevent DoS attacks, set the maximum number of child processes
# to 30. If you need to allow more than 30 concurrent connections
# at once, simply increase this value. Note that this ONLY works
# in standalone mode, in inetd mode you should use an inetd server
# that allows you to limit maximum number of processes per service
# (such as xinetd).
MaxInstances 30
# Set the user and group under which the server will run.
User ftp
Group ftp
# To cause every FTP user to be "jailed" (chrooted) into their home
# directory, uncomment this line.
#DefaultRoot ~
# Normally, we want files to be overwriteable.
AllowOverwrite on
DefaultRoot ~ users
# Bar use of SITE CHMOD by default
(Limit LOGIN)
Order allow,deny
AllowAll
(/Limit)
(GLOBAL)
AllowOverwrite yes
IdentLookups off
(/GLOBAL)
# A basic anonymous configuration, no upload directories. If you do not
# want anonymous users, simply delete this entire section.
(Anonymous /home/ftp)
User ftp
Group ftp
# We want clients to be able to login with "anonymous" as well as "ftp"
UserAlias anonymous ftp
RequireValidShell no
# Limit the maximum number of anonymous logins
MaxClients 10
# We want 'welcome.msg' displayed at login, and '.message' displayed
# in each newly chdired directory.
DisplayLogin welcome.msg
DisplayChdir .message
# Limit WRITE everywhere in the anonymous chroot
(Limit CWD DIRS READ LIST)
AllowAll
(/Limit)
(Limit WRITE)
DenyAll
(/Limit)
(Directory /mnt/mobilerack/upload/*)
(Limit READ RETR GET WRITE STOR CWD MKD RMD DELE)
AllowAll
(/Limit)
(Limit READ)
AllowAll
(/Limit)
(/Directory)
(/Anonymous)

Иначе говоря при подключении все пользователи видят свою папку, те кто вошли анонимно видят папку /home/ftp/, в пользовательских папках лежат личные файли пользователей и они чужие не видят, а общие папки лежат совсем в другом месте, но у каждого пользователя в домашней папке есть ссылка на общую. Так вот проблемма в том, что не видно этой самой ссылки.

Попробовать mount --bind ?

Попробовать mount --bind ?

Большое спасибо. Помогло.

Большое спасибо. Помогло.

Не надо бояться, что жизнь закончится - надо бояться, что она не начнется!

А куда прописывать mount ???

А куда прописывать mount ???

Настройки просмотра комментариев

Выберите нужный метод показа комментариев и нажмите "Сохранить установки".