Hallo liebe Ubuntu-Spezialisten,
für das UPGRADE meines IGEL (Thin Client) muss ich einen eigenen FTP-Server haben. Eigentlich sollte das kein Problem sein. vsftpd Scheint ja simpel einzurichten zu sein.
Leider bekomme ich folgende Fehlermeldung
500 OOPS: vsftpd: refusing to run with writable root inside chroot()
Die Suche mit Google bringt mich zu dieser Seite: http://askubuntu.com/questions/128180/vsftpd-stopped-working-after-update Leider bleibt die Fehlermeldung die selbe.
Da der Server nur temporär (für das Update des IGEL) laufen wird, brauche ich keine große Sicherheit. Hier meine aktuelle CONFIG
# Example config file /etc/vsftpd.conf # # The default compiled in settings are fairly paranoid. This sample file # loosens things up a bit, to make the ftp daemon more usable. # Please see vsftpd.conf.5 for all compiled in defaults. # # READ THIS: This example file is NOT an exhaustive list of vsftpd options. # Please read the vsftpd.conf.5 manual page to get a full idea of vsftpd's # capabilities. # # # Run standalone? vsftpd can run either from an inetd or as a standalone # daemon started from an initscript. listen=YES # # Run standalone with IPv6? # Like the listen parameter, except vsftpd will listen on an IPv6 socket # instead of an IPv4 one. This parameter and the listen parameter are mutually # exclusive. #listen_ipv6=YES # # Allow anonymous FTP? (Beware - allowed by default if you comment this out). anonymous_enable=NO # # Uncomment this to allow local users to log in. # local_enable=YES # # Uncomment this to enable any form of FTP write command. write_enable=NO # # Default umask for local users is 077. You may wish to change this to 022, # if your users expect that (022 is used by most other ftpd's) #local_umask=022 # # Uncomment this to allow the anonymous FTP user to upload files. This only # has an effect if the above global write enable is activated. Also, you will # obviously need to create a directory writable by the FTP user. #anon_upload_enable=YES # # Uncomment this if you want the anonymous FTP user to be able to create # new directories. #anon_mkdir_write_enable=YES # # Activate directory messages - messages given to remote users when they # go into a certain directory. dirmessage_enable=YES # # If enabled, vsftpd will display directory listings with the time # in your local time zone. The default is to display GMT. The # times returned by the MDTM FTP command are also affected by this # option.
Was habe ich falsch, dass die Fehlermeldung nicht verschwindet?
Vielen Dankf für eure Hilfe Christian KLein