Can they put telnet back in?
People who do work in the terminal sometimes have to check if something is running manually...
nc
(netcat) is the industry standard replacement for telnetCan they put telnet back in?
People who do work in the terminal sometimes have to check if something is running manually...
nc
(netcat) is the industry standard replacement for telnetIf there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
Yeah, agreed here. Really wish that the iPad had a terminal app. It’s honestly a simpler and faster way to do many things.
Being really, really pedantic - Unix is (now) a set of standards for APIs, libraries, user utilities and command line tools, file organisation etc. along with a commercial certification and trademark licensing scheme, that can be implemented by a whole range of otherwise quite different OSs, whereas Linux technically refers to a specific OS kernel that is commonly combined with the GNU tools and a bunch of other GPL-licensed projects to make a range of Unix-like OS "distributions" (including Android).Being really pedantic for a sec: Linux isnt unix-based, it’s unix-like, and macos isnt unix-based, it’s actually unix
There are many terminal apps, and many of them run on both Linux and macOS.Which is better, macOS Terminal or Linux Terminal? Or are they the same thing?
...and AFAIK the only reason that GNU/Linux is not Unix is that the Open Systems Unix certification/licensing procedure (a) costs money and (b) a distro that contained claims to be "Unix" couldn't be re-distributed as required by the GPL. In reality, "Linux" feels more like using a traditional Unix system than MacOS.
Close.macOS is like Linux unix based
Can they put telnet back in?
People who do work in the terminal sometimes have to check if something is running manually...
I still have to temporarily enable unencrypted connections for testing sometimes.Back in the day, you could telnet directly to port 80 on a server and issue HTTP requests and view the responses by hand. It blew people's minds, they looked at you like you were Neo seeing the Matrix directly.
But now all web traffic has moved into HTTPS, so you can't just telnet any more. Browsers have integrated debugging consoles that let you look at the requests in full detail. Even most mail servers have moved from non-encrypted to encrypted ports. So, I haven't had the need to telnet in a decade.
macOS is actually derived from BSD Unix so it probably is closer to current BSB derivatives than it is to Linux. That said, Linux was created as an open source replacement for Unix so they are quite similar.macOS is like Linux unix based, so the terminals are similar (though still different).
I know you've gotten a couple suggestions already but I just wanna throw Prompt 3 out there too, works well for me.If there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
I use Termius for remote management. Both on macOS as on iPadOS.If there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
I still have to temporarily enable unencrypted connections for testing sometimes.
Telnet is a critical tool for me. I've been installing it with brew for years now.
Oh, and you can still spoof a connection to most SMTP servers by telnetting to port 25. Not useful for relay, but you can typically send mail to local users with it. That's also incredibly useful for testing.
> openssl s_client -connect macrumors.com:443 2025-06-17 13:22:21
Connecting to 2606:4700:10::ac43:1682
CONNECTED(00000005)
depth=2 C=US, O=Google Trust Services LLC, CN=GTS Root R4
verify return:1
depth=1 C=US, O=Google Trust Services, CN=WE1
verify return:1
depth=0 CN=macrumors.com
verify return:1
---
..... lots of info removed .....
---
New, TLSv1.3, Cipher is TLS_AES_256_GCM_SHA384
Protocol: TLSv1.3
Server public key is 256 bit
This TLS version forbids renegotiation.
Compression: NONE
Expansion: NONE
No ALPN negotiated
Early data was not sent
Verify return code: 0 (ok)
---
GET /
---
Post-Handshake New Session Ticket arrived:
SSL-Session:
.... lots of info removed ....
---
read R BLOCK
<html>
<head><title>400 Bad Request</title></head>
<body>
<center><h1>400 Bad Request</h1></center>
<hr><center>cloudflare</center>
</body>
</html>
closed
If there is one thing I'd have really have liked to have seen with iPadOS 26 is Terminal - even if the session was chrooted and privileged commands were not possible. Just having access to basic Unix/Linux/GNU utilities would be incredibly useful for me as a sysadmin when accessing remote servers.
What is it about Kitty that would be difficult to challenge? I'm not trying to argue. I genuinely don't know and am curious. I've tried Kitty before, but found the configuration annoying, so I typically use either use iTerm2 or Warp. What are Kitty's killer features?Seems too little too late to challenge Kitty
Close.
macOS sprung from NextStep (which is why so many calls had "NS" in the name), which was based (among other things) on BSD Unix. So, macOS is a direct descendant of Unix.
Linux is what happened when someone wanted Unix but didn't want to deal with ATT.