https://github.com/pome-ta/mobilecodingnotes
https://github.com/pome-ta/mobilecodingnotes
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pome-ta/mobilecodingnotes
- Owner: pome-ta
- License: mit
- Created: 2022-10-02T08:12:00.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-10T07:58:30.000Z (about 2 years ago)
- Last Synced: 2025-02-16T20:32:58.641Z (11 months ago)
- Language: Vim Script
- Size: 81.1 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mobileCodingNotes
## a-shell
[holzschu/a-shell: A terminal for iOS, with multiple windows](https://github.com/holzschu/a-shell)
### `pkg` コマンド
```
~/Documents/bin
```
bin ディレクトリがない場合は作成する
`~/Documents` 上で
```
mkdir bin
```
```
pkg install git
```
入ったかの確認は
```
pkg list
```
## iSH
[ish-app/ish: Linux shell for iOS](https://github.com/ish-app/ish)
### Setting
インストールとかdotfiles とか
```
apk update
```
```
apk upgrade
```
[Running in background · ish-app/ish Wiki](https://github.com/ish-app/ish/wiki/Running-in-background)
```
cat /dev/location > /dev/null &
```
#### タイムゾーン
```
apk add tzdata
```
```
cp /usr/share/zoneinfo/Asia/Tokyo /etc/localtime
```
#### `apk info`
```
musl
alpine-baselayout
alpine-keys
apk-tools
scanelf
musl-utils
libc-utils
busybox
libcrypto1.1
libssl1.1
ca-certificates-bundle
libretls
ssl_client
zlib
tzdata
```
#### `add` したもの
- zsh
- python3
- py3-pip
- git
- vim
- nodejs
- npm
- neovim
node : `v14.20.0`
動かない、v12 だと動いてた記事がある
npm もだめかもね
#### zsh にする
dotfile 書く
```
apk add zsh
```