Difference between revisions of "Mount SD card on boot"
Jump to navigation
Jump to search
(Created page with "In order to mount the storage SD card on boot you need to do the following steps: * Create the /mnt/sdcard directory mkdir -p /mnt/sdcard * Open /etc/fstab with vi or another...") |
(No difference)
|
Latest revision as of 14:09, 28 October 2014
In order to mount the storage SD card on boot you need to do the following steps:
- Create the /mnt/sdcard directory
mkdir -p /mnt/sdcard
- Open /etc/fstab with vi or another text editor and copy the following line at the end of the file (DO NOT MODIFY ANYTHING ELSE IN THE FILE!):
/dev/mmcblk1p1 /mnt/sdcard auto defaults 0 0