basic question about disk usage

how to i find out the disk usage on a server.
say in windows examples its like C:/ D:/ and checking out the disk space.
how can i find in Unix.

can i just use df -k

du - estimate file space usage
e.g.
$ du -sh ~
370M /home/Alexander

Hi,

Some basic commands,

lspv = to find out how many hddisk u have
lsvg -L vg = to find out total size + free size + etc, etc
df -g/k = to find out the size, % used for your filesystem

RaYbAkH

I personally like the df -m as it shows each filesystem and how much total space, and free space you have and shows it in MB. I believe the -m is available on 5.2 or newer but could be wrong.

outta.