-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathINSTALL
More file actions
33 lines (23 loc) · 1.1 KB
/
INSTALL
File metadata and controls
33 lines (23 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
LinuxOnAndroid
==============
Install
=======
There are multiple ways to install the scripts
Simplest way:
Create a folder on the sdcard and move your linux image into this folder.
Example:
$EXTERNAL_STORAGE/linux/linux.img # This is the image
sh $ESTERNAL_STORAGE/linux/install.sh # Install the scripts & mount the image
linux # Start Linux
More Complex:
Same like in simple but folder name and image name could be different.
$EXTERNAL_STORAGE/imagepath/image.img # This is the image
sh $ESTERNAL_STORAGE/imagepath/install.sh image # Install the scripts & mount the image
image # Start Linux
With config file (most flexible):
$EXTERNAL_STORAGE/imagepath/image.img # This is the image
sh $ESTERNAL_STORAGE/imagepath/install.sh linux # Install the scripts, currently it will break
nano $ANDROID_DATA/local/linuxonandroid/config.linux # Modificate the config file
img="$sdcard/imagepath/linux.img"
sh $ESTERNAL_STORAGE/imagepath/install.sh image # Reinstall the scripts & mount the image, now it will work
linux # Start Linux