There are traces of the gnuwin32 inetutils package on the net. But it's not at the site anymore. where is it? Specifically where is the gnu telnet app for win32?
2 Answers
Inetutils has a lot of dependencies that make it hard to compile and run directly on Win32 without any POSIX layer. But you can find some of inetutils tools in other packages or use similar Microsoft Windows command line tools. Here is the list of open-source or free inetutils tools and where you can find them :
- hostname: Show or set system host name. You can find it in CoreUtils.
- logger: Send messages to system log. Not available.
- ping: Packets to network hosts. Not available but you can use Microsoft Windows ping command which is similar.
- traceroute: Trace the route to a host. Not available but you can use Microsoft Windows tracert command which is similar.
- whois: Whois user interface. You can use gnuwin32 Jwhois as a replacement.
- ftp: FTP client. Not available in gnuwin32, but you can download it from an old Emacs contrib
- tftp: TFTP client. Not available in gnuwin32, but you can use Microsoft Windows tftp command which is similar.
- rsh: Remote shell. Not available in gnuwin32, but you can use Microsoft Windows rsh command or use a port of netkit rsh for Windows Vista or 7 that don't have it.
- rlogin: Remote login. Not available as a native Win32 command line tool (you can use putty but it will not work under your window, it will create a new window)
- rcp: Copy files between machines. Not available in gnuwin32, but you can use Microsoft Windows rcp command which is similar.
- rexec: a remote execution program. Not available in gnuwin32, but you can use Microsoft Windows rexec command which is similar but is not supported anymore by Microsoft.
- talk: a communication program. Not available.
- telnet: User interface to TELNET. Not available in gnuwin32, but you can use Microsoft Windows telnet but it will not use standard input and ouput which could be problematic. You could also try dtelnet but it uses its own window. You could also have a look at telnet clients listed by Wikipedia, but they sometime use a cygwin back-end.
The other tools are daemons that you cannot find as windows native executable, but you could find equivalent of these tools :
- inetd: Interner super-server
- syslogd: system service logging faclity
- ftpd: FTP daemon
- tftpd: TFTP server
- rshd: Remote shell server
- rlogind: Remote login server
- rexecd: server for rexec
- talkd: a server for communication between users
- telnetd: Telnet server
- uucpd: Unix to Unix Copy
If you can't find what you need here, then you should try to use GNU inetutils through cygwin.

- 10,285
- 4
- 34
- 40
That's probably not very helpful, but: if you only need to find inetutils that can in some or other form run on Windows, then you can find it in Cygwin. If you are specifically looking for the gnuwin32 port, then you are out of luck I guess.

- 10,547
- 4
- 53
- 66