Ayuda con PROFTPD ¡ SOLUCIONADO !

resulta que quiero montar un servidor ftp en ubuntu, instale el proftpd y creando usuarios, manteniendo los directorios de ftp predeterminados, me funciona todo bien.
Pero al querer usar una carpeta alojada en el segundo hdd que tengo, no me funciona.
He buscado por todo google durante casi ya 2 días, pero no encuentro solución a mi problema.
Espero que alguien me podría ayudar con ello.

Poder usar una carpeta que esta alojada en el segundo hdd (/dev/sdb), como carpeta ftp.

No soy muy entendido en linux, solo llevo unos 4 días, así que si podría ser que las explicaciones fueran como para tontos, >.<

muchas gracias.

EDIT:
Al final lo consegui... tenia el segundo hdd en ntfs y por eos no m e lo reconocia del todo para la ftp.
Formatearlo y dar formato ext3 y va genial, sin problemas.
que es lo que tienes en el fichero de configuracion?

seria cuestion de agregar unas cuantas lineas. Si lo pegas te intento ayudar, pero tengo algo olvidado la configuracion del proftpd.

Seguramente tengas alguna "etiqueta" directory que hara referencia solo a alguna parte
Aqui esta la configuracion del proftpd.
Espero que eso ayude.

ServerType standalone
DefaultServer on
Umask 022
ServerName "---"
ServerIdent on "---"
ServerAdmin email@example.org
IdentLookups off
UseReverseDNS off
Port 21
PassivePorts 49152 65534
#MasqueradeAddress None
TimesGMT off
MaxInstances 30
MaxLoginAttempts 3
TimeoutLogin 300
TimeoutNoTransfer 120
TimeoutIdle 120
DisplayLogin welcome.msg
DisplayChdir .message
User nobody
Group nobody
DirFakeUser off nobody
DirFakeGroup off nobody
DefaultTransferMode binary
AllowForeignAddress off
AllowRetrieveRestart on
AllowStoreRestart on
DeleteAbortedStores off
TransferRate RETR 220
TransferRate STOR 250
TransferRate STOU 250
TransferRate APPE 250
SystemLog /var/log/secure
RequireValidShell off
<IfModule mod_tls.c>
TLSEngine off
TLSRequired off
TLSVerifyClient off
TLSProtocol SSLv23
TLSLog /var/log/proftpd_tls.log
TLSRSACertificateFile /etc/gadmin-proftpd/certs/cert.pem
TLSRSACertificateKeyFile /etc/gadmin-proftpd/certs/key.pem
TLSCACertificateFile /etc/gadmin-proftpd/certs/cacert.pem
TLSRenegotiate required off
</IfModule>
<IfModule mod_ratio.c>
Ratios off
SaveRatios off
RatioFile "/restricted/proftpd_ratios"
RatioTempFile "/restricted/proftpd_ratios_temp"
CwdRatioMsg "Please upload first!"
FileRatioErrMsg "FileRatio limit exceeded, upload something first..."
ByteRatioErrMsg "ByteRatio limit exceeded, upload something first..."
LeechRatioMsg "Your ratio is unlimited."
</IfModule>
<Limit LOGIN>
AllowUser prueba
DenyALL
</Limit>

<Anonymous /media/Servidor 2009/FTP/pruebar>
User prueba
Group ftp
AnonRequirePassword on
MaxClients 5 "The server is full, hosting %m users"
DisplayLogin welcome.msg
<Limit LOGIN>
Allow from all
Deny from all
</Limit>
AllowOverwrite on
<Limit LIST NLST STOR STOU APPE RETR RNFR RNTO DELE MKD XMKD SITE_MKDIR RMD XRMD SITE_RMDIR SITE SITE_CHMOD SITE_CHGRP MTDM PWD XPWD SIZE STAT CWD XCWD CDUP XCUP >
AllowAll
</Limit>
<Limit NOTHING >
DenyAll
</Limit>
</Anonymous>
2 respuestas