Brak zakładki nośnik usb w gargoyle

RAM-u nie potrzebuje zależy mi na większej ilości flash-u pozatym czy rozwiąznie z ftp powyżej które mi zaproponowałeś daje możliwość działania równolegle serwera ftp i aktywnego extroot-a?
używam opere jak wejść na mój serwer ftp z zewnetrznego IP czy mógłbyś sprawdzić u siebie czy widzisz go jest pod adresem:
178.216.40.183 opisz jak to robisz?

Wszystko działa. Ja wszedłem przez przez przeglądarkę internetową po adresie ftp://178.216.40.183.
W filezilla wpisałem adres ip i port 21 tylko.

Zadziała

Nie zgadza mi się wygląd pliku /etc/proftpd.conf w poradniku http://eko.one.pl/?p=openwrt-proftpd widok
podroździał :" Konfiguracja dla użytkowników sysytemowych" treść tego pliku wygląda inaczej.interesuje mnie co z tym plikiem zrobić i czy trzeba takiego samego jeśli konfiguruje się dostęp dla uzytkowników anonimowych bo tak to mozna rozumieć.
proftpd.conf

# 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
# "nobody" and "ftp" for normal operation and anon.
ServerName         "SIECIOWY"
ServerType         standalone
DefaultServer         on
# 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         10
# Set the user and group under which the server will run.
User            nobody
Group            nogroup
# 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
# Bar use of SITE CHMOD by default
<Limit SITE_CHMOD>
  DenyAll
</Limit>
# A basic anonymous configuration, no upload directories.  If you do not
# want anonymous users, simply delete this entire <Anonymous> section.
<Anonymous ~ftp>
  User            ftp
  Group            ftp
  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAlias         anonymous ftp
  # 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 WRITE>
    DenyAll
  </Limit>
</Anonymous>
Jeśli nie chcesz użytkowników anonimowych to z twojego pliku proftpd.conf usuwasz linię:
# A basic anonymous configuration, no upload directories.  If you do not
# want anonymous users, simply delete this entire <Anonymous> section.
<Anonymous ~ftp>
  User            ftp
  Group            ftp
  # We want clients to be able to login with "anonymous" as well as "ftp"
  UserAlias         anonymous ftp
  # 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 WRITE>
    DenyAll
  </Limit>
</Anonymous>

Wtedy wymagane jest utworzenie użytkowników systemowych. Nowych użytkowników utworzysz przez konsolę przez wpisanie polecenia:

echo "jacek:*:1000:65534:jacek:/mnt/sda1/filmy:/bin/false" >> /etc/passwd
echo "jacek:*:0:0:99999:7:::" >> /etc/shadow 
passwd jacek

1 i 2 linia tworzy użytkownika "jacek" należącego do grupy "nobody" który będzie miał dostęp do katalogu "/mnt/sda1/filmy"
3 linia to polecenie ustawienia hasła dla użytkownika "jacek"

http://eko.one.pl/?p=openwrt-proftpd
gdzie sprawdza się numer uzytkownika :

"Katalogi domowe określają gdzie będą się użytkownicy logować. Numery użytkowników (1000,1001) należy dostosować do identyfikatorów występujących już w systemie."

Poleceniem:
cat /etc/passwd

wynikiem będzie lista użytkowników. Każdy kolejny użytkownik powinien mieć ID o jeden więcej: 1000, 1001, 1002...
jacek:*:[b]1000[/b]:65534:jacek:/mnt/sda1/filmy:/bin/false

dodając użytkowników według poradnika ze stronki:
http://eko.one.pl/?p=openwrt-multiuser
co oznaczają ,Attitude Adjustment, Backfire bo nie wiem według jakiego podrozdziału mam dokonać dodawania o co tu chodzi?

Są to wersje OpenWrt.
Gargoyle to nakładka graficzna na OpenWrt.
Aktualnie jest Attitude Adjustment

czy nie bardziej korzystne byłoby coś takiego :
http://eko.one.pl/forum/viewtopic.php?id=1152