I’m running the basic version of OSMC on a Raspberry Pi3b. I set it up over 5 years ago with a 1TB SSD drive and it is working fine. That drive is about full so I want to upgrade it to a 2TB SSD. I assumed it would be straight forward:
- format the new SSD as exfat
- copy the old files over
- modify the /etc/fstab file to use the new SSD coordinates
- reboot and done.
But no!!! As I will document below the original fstab file, using the UUID of the 1TB SSD (UUID=“B8EB-40DC”), loaded and mounted it in the /mnt/medialib folder and OSMC was happy.
Now with the new SSD drive (UUID=“9CBC-F267”) using the modified fstab as shown below, does not mount it to /mnt/medialib, but rather to /media/MS-2TB, and then of course OSMC does not find the media content.
I’m not able to see what I’m doing wrong. Can someone be of assistance?..RDK
A. Original fstab file and system checks:
me@MyMediaServer:~$ cat /etc/fstab
/dev/mmcblk0p1 /boot vfat defaults,noatime,noauto,x-systemd.automount 0 0#/dev/mmcblk0p2 / ext4 defaults,noatime 0 0
#UUID=“9CBC-F267” /mnt/medialib exfat defaults,nofail,dmask=000,fmask=111 0 3
UUID=“B8EB-40DC” /mnt/medialib exfat defaults,nofail,dmask=000,fmask=111 0 3
me@MyMediaServer:~$ blkid
/dev/mmcblk0: PTUUID=“f3e8167c” PTTYPE=“dos”
/dev/mmcblk0p1: UUID=“31B8-68E5” TYPE=“vfat” PARTUUID=“f3e8167c-01”
/dev/mmcblk0p2: UUID=“9ae62005-25ad-436e-854e-8ca8f2f5e124” TYPE=“ext4” PARTUUID=“f3e8167c-02”
/dev/sda1: LABEL=“MS-1TB-2-21” UUID=“B8EB-40DC” TYPE=“exfat” PARTUUID=“32f37305-01”
me@MyMediaServer:~$ df -l
Filesystem 1K-blocks Used Available Use% Mounted on
devtmpfs 376680 0 376680 0% /dev
tmpfs 382312 9976 372336 3% /run
/dev/mmcblk0p2 15023024 2085800 12151048 15% /
tmpfs 382312 0 382312 0% /dev/shm
tmpfs 5120 0 5120 0% /run/lock
tmpfs 382312 0 382312 0% /sys/fs/cgroup
/dev/sda1 976759808 917709056 59050752 94% /mnt/medialib
/dev/mmcblk0p1 244988 29990 214999 13% /boot
tmpfs 76460 0 76460 0% /run/user/1001
B. Modified fstab file and system checks:
me@MyMediaServer:~$ cat /etc/fstab
/dev/mmcblk0p1 /boot vfat defaults,noatime,noauto,x-systemd.automount 0 0#/dev/mmcblk0p2 / ext4 defaults,noatime 0 0
UUID=“9CBC-F267” /mnt/medialib exfat defaults,nofail,dmask=000,fmask=111 0 3
#UUID=“B8EB-40DC” /mnt/medialib exfat defaults,nofail,dmask=000,fmask=111 0 3
me@MyMediaServer:~$ blkid
/dev/mmcblk0: PTUUID=“f3e8167c” PTTYPE=“dos”
/dev/mmcblk0p1: UUID=“31B8-68E5” TYPE=“vfat” PARTUUID=“f3e8167c-01”
/dev/mmcblk0p2: UUID=“9ae62005-25ad-436e-854e-8ca8f2f5e124” TYPE=“ext4” PARTUUID=“f3e8167c-02”
/dev/sda1: LABEL=“MS-2TB” UUID=“9CBC-F267” TYPE=“exfat” PARTUUID=“99e5aa01-01”
me@MyMediaServer:~$ df -l
Filesystem 1K-blocks Used Available Use% Mounted on
devtmpfs 376680 0 376680 0% /dev
tmpfs 382312 5192 377120 2% /run
/dev/mmcblk0p2 15023024 2085784 12151064 15% /
tmpfs 382312 0 382312 0% /dev/shm
tmpfs 5120 0 5120 0% /run/lock
tmpfs 382312 0 382312 0% /sys/fs/cgroup
/dev/sda1 1953512448 918204416 1035308032 48% /media/MS-2TB
/dev/mmcblk0p1 244988 29990 214999 13% /boot
tmpfs 76460 0 76460 0% /run/user/1001


