[Bug]: 6 TB Drive Only Shows 85.2 GB Upon Connection #175
-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments
-
What is the backing filesystem that is used on /dev/sdb? Are there really not any partitions? The only thing I can immediately think of is that samba is incorrectly interpreting the free space due to the filesystem but it's hard to say. |
Beta Was this translation helpful? Give feedback.
-
There is only one partition, it is an |
Beta Was this translation helpful? Give feedback.
-
Ah! I missed a small but very important detail. You're setting
to:
Otherwise, it's detecting the amount of free space on the disk where Docker is and it will be storing data inside the container, not on a persistent volume. |
Beta Was this translation helpful? Give feedback.
-
#144 from earlier this morning added detection for what filesystems are found in the subdirectories under |
Beta Was this translation helpful? Give feedback.
-
Example output:
|
Beta Was this translation helpful? Give feedback.
Ah! I missed a small but very important detail. You're setting
TM_USERNAME=jason
which means that your persistent data path is actually/opt/jason
in the container. Update your volume from:to:
Otherwise, it's detecting the amount of free space on the disk where Docker is and it will be storing data inside the container, not on a persistent volume.