{"id":113,"date":"2013-02-13T08:03:22","date_gmt":"2013-02-13T08:03:22","guid":{"rendered":"http:\/\/toolbox.pingvinfeszek.hu\/?p=113"},"modified":"2013-02-13T08:03:46","modified_gmt":"2013-02-13T08:03:46","slug":"proftpd-error-in-ubuntu-12-04-solution","status":"publish","type":"post","link":"https:\/\/wp.gaborhargitai.hu\/proftpd-error-in-ubuntu-12-04-solution\/","title":{"rendered":"ProFTPd error in Ubuntu 12.04 – solution!"},"content":{"rendered":"
By default, the installed package refused to start, because of missing files.\u00a0So I had to do the following to resolve the missing links:<\/p>\n
<\/p>\n
First, create a symbolic link<\/strong> to the already existing file:<\/p>\n \u00a0ln -s ‘\/usr\/sbin\/proftpd’ ‘\/usr\/sbin\/in.ftpd’<\/p><\/blockquote>\n <\/p>\n Second, let’s tell inetd<\/strong> where to look for the service program, edit yours as follows (the default location is at \/etc\/inetd.conf<\/strong>):<\/p>\n ftp \u00a0 \u00a0 stream \u00a0tcp \u00a0 \u00a0 nowait \u00a0root \u00a0 \u00a0\/usr\/sbin\/tcpd \u00a0\/usr\/sbin\/proftpd<\/p><\/blockquote>\n <\/p>\n After that, let’s restart the service altogether:<\/p>\n service proftpd restart<\/p><\/blockquote>\n <\/p>\n