Yes, please. I'm a Windows IT Pro (and reasonably technically competent) but with virtually no knowledge of *nix, apart from what I can remember from Uni, [cough-cough] years ago. I've ordered the Debian book recommended in one of the beginner stickies, here, but that's a week away, and I have time to play atm.There are more complicated things about mounting partitions - do you want to know about these?
Code: Select all
sudo fdisk -lCode: Select all
Device Boot Start End Sectors Size Id Type
/dev/mmcblk0p1 8192 287109 278918 136.2M e W95 FAT16 (LBA)
/dev/mmcblk0p2 294912 30638079 30343168 14.5G 85 Linux extended
/dev/mmcblk0p3 30638080 30703615 65536 32M 83 Linux
/dev/mmcblk0p5 303104 425983 122880 60M c W95 FAT32 (LBA)
/dev/mmcblk0p6 434176 30638079 30203904 14.4G 83 Linux
Code: Select all
mount | grep /dev/mmcCode: Select all
sudo mkdir /media/pi/data
sudo mount /dev/mmcblk0pX /media/pi/dataCode: Select all
Device Boot Start End Sectors Size Id Type
/dev/mmcblk0p1 8192 2357421 2349230 1.1G e W95 FAT16 (LBA)
/dev/mmcblk0p2 2357422 15523839 13166418 6.3G 85 Linux extended
/dev/mmcblk0p5 2359296 2424829 65534 32M 83 Linux
/dev/mmcblk0p6 2424832 2553855 129024 63M c W95 FAT32 (LBA)
/dev/mmcblk0p7 2555904 14467069 11911166 5.7G 83 Linux
/dev/mmcblk0p8 14467072 15515647 1048576 512M 83 Linux
in your case, /dev/mmcblk0p8 is the Data partition you are looking for (with its 512MByte).ssg wrote:Thanks for the reply and the link. I'd almost forgotten about MBRs - everything I've used has been virtualized for years, first through RAID and later through VMware/Hyper-V and SANs.
The NOOBS partitioning docs were particulary useful but I think https://github.com/raspberrypi/noobs/wi ... -explained needs updating. On my newly-built v1.5 machine, it looks like this:If I'm reading that correctly, Settings is now inside the extended partition as Op5 rather than at the end of the disk as a primary partition Op3.Code: Select all
Device Boot Start End Sectors Size Id Type /dev/mmcblk0p1 8192 2357421 2349230 1.1G e W95 FAT16 (LBA) /dev/mmcblk0p2 2357422 15523839 13166418 6.3G 85 Linux extended /dev/mmcblk0p5 2359296 2424829 65534 32M 83 Linux /dev/mmcblk0p6 2424832 2553855 129024 63M c W95 FAT32 (LBA) /dev/mmcblk0p7 2555904 14467069 11911166 5.7G 83 Linux /dev/mmcblk0p8 14467072 15515647 1048576 512M 83 Linux