Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
mscom_linux_setup [2014/04/03 15:07] beckmanf created |
mscom_linux_setup [2014/05/14 10:13] (current) beckmanf typo defaults |
||
|---|---|---|---|
| Line 13: | Line 13: | ||
| <code> | <code> | ||
| - | sudo apt-get install git iperf wireshark gnuplot tftp ethtool | + | sudo apt-get install git iperf wireshark gnuplot tftp ethtool tftpd-hpa |
| + | </code> | ||
| + | |||
| + | For the tftp daemon, change the setting of TFTP_OPTIONS in the file | ||
| + | |||
| + | <code> | ||
| + | /etc/default/tftpd-hpa | ||
| + | </code> | ||
| + | |||
| + | to <code> TFTP_OPTIONS="--secure --create" </code>. Then change the owner of the tftp directory | ||
| + | |||
| + | <code> | ||
| + | sudo chown tftp:tftp /var/lib/tftpboot | ||
| + | </code> | ||
| + | |||
| + | Starting and stopping of the tftp server is done with | ||
| + | |||
| + | <code> | ||
| + | sudo service tftpd-hpa start | ||
| + | sudo service tftpd-hpa stop | ||
| </code> | </code> | ||