46

Is there a way to find out which partition a directory is located in?

I know I can use df to list partitions and mount points but I need to be able to find out which partition any directory is located in with a simple command.

BE77Y
  • 2,577
  • 3
  • 17
  • 23
Camsoft
  • 911
  • 4
  • 12
  • 21

3 Answers3

52
df -h .

gives you:

$ df -h .
Filesystem     Size   Used  Avail Capacity  Mounted on
/dev/disk0s2  1.4Ti  390Gi  1.0Ti    28%    /

so you have 'mounted on' for that dir

rytis
  • 2,324
  • 1
  • 18
  • 13
1

take a look at this post on serverfault. it should give you all the information you need.

Christian
  • 4,645
  • 2
  • 23
  • 27
  • 3
    It's recommended to copy the information to your post rather than referring to another page. – l0b0 Apr 24 '13 at 07:58
1
[rajat@rajat ~]$ df -HT

Filesystem    Type     Size   Used  Avail Use% Mounted on
/dev/sda6     ext4      22G   7.4G    14G  36% /
tmpfs        tmpfs     1.1G   349k   1.1G   1% /dev/shm
/dev/sda1     ext3     200M    53M   137M  28% /boot

[rajat@rajat ~]$ df -h
Filesystem            Size  Used Avail Use% Mounted on
/dev/sda6              20G  6.9G   13G  36% /
tmpfs                 987M  340K  986M   1% /dev/shm
/dev/sda1             190M   50M  131M  28% /boot

cd /dev/sda
Andrew Williams
  • 667
  • 8
  • 20
Rajat
  • 3,329
  • 21
  • 29