Mount SD card on boot

From Idrive
Revision as of 14:09, 28 October 2014 by Ionut (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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