vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi, If I want to install a TFTP server daemon on a Fedora, should I use yum or download rpm from the www? I have tried yum, yum install tftp-server. The yum installation is completed, but I cannot tftp to the server. The service --status-all doesnt show that the tftp-server service is running. |
| |||
| Hi, If I want to install a TFTP server daemon on a Fedora, should I use yum or download rpm from the www? I have tried yum, yum install tftp-server. The yum installation is completed, but I cannot tftp to the server. The service --status-all doesnt show that the tftp-server service is running. If I install the rpm, there are a lot of pre-requisites that are hard to handle. Is there any way to make it easier? Thanks |
| |||
| In comp.os.linux.setup a <a@mail.com>: > Hi, > If I want to install a TFTP server daemon on a Fedora, should I use yum or > download rpm from the www? > I have tried yum, yum install tftp-server. The yum installation is > completed, Good! > but I cannot tftp to the server. The service --status-all doesnt Why should you? Edit "/etc/xinetd.d/tftp" and look for the line: disable = yes Change this line to: disable = no Restart "xinetd" and xinetd should start tftpd on request. Be sure to allow "/etc/hosts.allow" the service to hosts you want. 'man 5 hosts_access' if in doubt. [..] Good luck -- Michael Heiming (X-PGP-Sig > GPG-Key ID: EDD27B94) mail: echo zvpunry@urvzvat.qr | perl -pe 'y/a-z/n-za-m/' #bofh excuse 267: The UPS is on strike. |
| ||||
| Michael Heiming wrote: > Why should you? Edit "/etc/xinetd.d/tftp" and look for the line: > > disable Â*Â*Â*Â*Â*Â*Â*Â*= yes > > Change this line to: > > disable Â*Â*Â*Â*Â*Â*Â*Â*= no > > Restart "xinetd" and xinetd should start tftpd on request. Be > sure to allow "/etc/hosts.allow" the service to hosts you want. > > 'man 5 hosts_access' if in doubt. Or even easier: chkconfig tftp on service xinetd reload -- Regards, ToreS |