Linux

如何在 suse 11sp3 x64 中每次重新啟動後設置 telnet 啟動

  • August 9, 2013

我在 sles 11sp3x64 上使用 telnet 時遇到問題,如果我重新啟動機器 telnet 服務不會自動啟動。我再次必須手動重新啟動服務。有什麼方法可以在每次重啟後自動啟動。

謝謝,

試試這個:

在 xinetd 中啟用 telnetd。這可以通過編輯 /etc/xinetd.conf 並將 disabled = yes 更改為 disabled = no 或使用以下命令手動完成:chkconfig telnetd on

如果 xinetd 尚未執行,請啟動它。/etc/init.d/xinetd 啟動

確保 xinetd 在引導時自動啟動 chkconfig xinetd on

或者您可以在 /etc/rc.local 文件中添加一個條目。該文件中的任何命令都會在啟動過程結束時執行。所以你可以把這一行: /etc/init.d/telnetd start 在 /etc/rc.local 的末尾

引用自:https://serverfault.com/questions/529821