How to mount an SD card? - Printable Version +- PINE64 (https://forum.pine64.org) +-- Forum: PinePhone (https://forum.pine64.org/forumdisplay.php?fid=120) +--- Forum: PinePhone Software (https://forum.pine64.org/forumdisplay.php?fid=121) +---- Forum: Mobian on PinePhone (https://forum.pine64.org/forumdisplay.php?fid=139) +---- Thread: How to mount an SD card? (/showthread.php?tid=10661) |
How to mount an SD card? - gizmuth - 07-14-2020 I have an sd card I would like to mount but dont want to ruin what has been an excellent few weeks with Mobian by making a mess of my fstab, can someone give me some advice? I have the uuid Im just not sure what I need to have in my fstab to get it to mount. The purpose of the sd card is for extra storage(and maybe a swap partition? I heard it might help the pinephone run a little smoother) RE: How to mount an SD card? - a-wai - 07-14-2020 Just have a look at /media/mmcblk0p*, your SD card should be automatically mounted RE: How to mount an SD card? - antiX-Dave - 07-14-2020 As a-wai states, it should be automatically mounted for extra storage. I do have the mounting handled in fstab, rather than the normal automatically to /media As an example /etc/fstab Code: UUID=(UUID_OF_DATA_PARTITION) /mnt/sdcard ext2 defaults 0 0 The uuid strings I used came from the output of blkid which was redirected out to the fstab file via >>. Then opened /etc/fstab in nano, removed the quotes and added the ending bits to make it a valid fstab entry. The below is an example of the commands. Please DO NOT copy and paste them. Code: umount /dev/mmcblk0p1 RE: How to mount an SD card? - spaetz - 07-15-2020 (07-14-2020, 02:45 AM)a-wai Wrote: Just have a look at /media/mmcblk0p*, your SD card should be automatically mounted Or do a Code: df RE: How to mount an SD card? - a-wai - 07-15-2020 Except it's mounted "on demand" (i.e. only when accessed), so you might not see it in df |