Terminal tool iSH under ipad

Original link: https://blog.kelu.org/tech/2023/06/07/ipad-ish.html

iOS.svg

I have been using prompt as a tool for ssh login on iOS. But it wasn’t until I used Neovim recently that I realized its problem – a q character would appear on the page periodically. It greatly affects the user experience.

After searching the Internet, I found this nice command line tool: https://github.com/ish-app/ish Official website: https://ish.app

According to the official introduction, iSH is an x86 simulator that runs a Linux shell environment locally on an iOS device.

image-20230614 PM43018693

This article briefly records the process of installing the ssh tool. As a terminal, it does not have a built-in ssh tool, which is unexpected to me.

  1. download.

    https://apps.apple.com/us/app/ish-shell/id1436902243

  2. First check the operating system information:

     cat /etc/issue cat /etc/os-release 

    IMG_5D6D89A97ABC-1

    It can be seen that the alpine system is running, and alpine is a very streamlined linux system.

  3. Install openssh on alpine

    The source management tool of alpine is apk, which can be used for software installation:

     apk update apk search openssh apk add openssh 

    IMG_2B0E88FFB193-1

  4. Finish.

    very perfect.

    IMG_6534

  5. font installation

    You can refer to this article for operation: neovim installation and usage notes

This article is transferred from: https://blog.kelu.org/tech/2023/06/07/ipad-ish.html
This site is only for collection, and the copyright belongs to the original author.