59 lines
1.2 KiB
Markdown
59 lines
1.2 KiB
Markdown
### 방법1
|
|
>https://blog.naver.com/PostView.naver?blogId=wonjinho81&logNo=222597996987&categoryNo=0&parentCategoryNo=0&viewDate=¤tPage=1&postListTopCurrentPage=1&from=postView
|
|
|
|
|
|
### 방법2
|
|
1. Termux 외장 메모리 접근 권한주기
|
|
> termux-setup-storage
|
|
|
|
2. Termux 업데이트
|
|
> apt -y update && apt-get upgrade
|
|
|
|
### ※※※ AnLinux 앱으로 설치시 3번부터 생략 ※※※
|
|
|
|
3. Linux 설치 준비
|
|
> apt-get wget openssl-tool proot tar -y
|
|
|
|
4. 작업 내용 초기화
|
|
> hash -r
|
|
|
|
5. 각 배포판 설치
|
|
> wget https:// ...
|
|
- Ubuntu
|
|
```
|
|
pkg install wget openssl-tool proot -y && hash -r && wget https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/Ubuntu/ubuntu.sh && bash ubuntu.sh
|
|
```
|
|
|
|
- CentOS
|
|
``` ClipBoard
|
|
https://raw.githubusercontent.com/EXALAB/AnLinux-Resources/master/Scripts/Installer/CentOS/centos.sh
|
|
```
|
|
|
|
6. 설치 확인
|
|
> ls
|
|
|
|
7. bash ?
|
|
> bash [파일명].sh
|
|
|
|
8. 실행
|
|
> ./start-centos.sh
|
|
|
|
- 설치한 리눅스 업데이트
|
|
> (CentOS) : yum update && yum upgrade
|
|
> (Ubuntu) : apt-get update && apt-get upgrade
|
|
|
|
|
|
### 방법3
|
|
```Shell
|
|
|
|
termux-setup-storage
|
|
|
|
apt install proot-distro
|
|
|
|
proot-distro list
|
|
|
|
proot-distro install ubuntu, debian
|
|
|
|
proot-distro login ubuntu
|
|
|
|
``` |