Mount installation source
- Use the following mount command to mount the installation SD card.
- The character X should be replaced with the SD card device block number:
root@cl-ramdisk:~# mkdir -p /media/install && mount /dev/mmcblkXp1 /media/install
- Use the following mount command to mount the installation USB storage.
- The character X should be replaced with the USB drive letter
root@cl-ramdisk:~# mkdir -p /media/install && mount /dev/sdX1 /media/install
|
For networked installation
- Copy the content of the install directory from the unzipped Linux package to a directory exported through NFS.
- Mount the NFS share:
root@cl-ramdisk:~# ifup eth1
root@cl-ramdisk:~# mkdir -p /media/install && mount -o nolock <host ip>:/path/to/nfs/share /media/install
|