Give the command to display space usage on the UNIX file system.

Answers were Sorted based on User's Feedback



Give the command to display space usage on the UNIX file system...

Answer / mahesh

df -k .

Is This Answer Correct ?    37 Yes 4 No

Give the command to display space usage on the UNIX file system...

Answer / sasmita

du
its used 2 check d space used in bytes...

df command is used 2 check d free space available in ur file
system in Blocks

Is This Answer Correct ?    11 Yes 0 No

Give the command to display space usage on the UNIX file system...

Answer / satya

du---is the command which is used for checking the disk
usage in unix.

Is This Answer Correct ?    7 Yes 1 No

Give the command to display space usage on the UNIX file system...

Answer / puneet

df -v /export/home/b2bftp(path)

Is This Answer Correct ?    3 Yes 0 No

Give the command to display space usage on the UNIX file system...

Answer / bhaskar

df -h

Is This Answer Correct ?    4 Yes 2 No

Give the command to display space usage on the UNIX file system...

Answer / vivek nagarajan

You can use
df or
dfspace or
du

Is This Answer Correct ?    2 Yes 0 No

Give the command to display space usage on the UNIX file system...

Answer / chitra

df -mk or df -h will do

d stands for disk
f stands for free

Is This Answer Correct ?    4 Yes 3 No

Give the command to display space usage on the UNIX file system...

Answer / rohan satpute

1. df -k
2. df -h
3. du -sk [Directory name]
4. du -sh [Directory name]

Is This Answer Correct ?    2 Yes 1 No

Give the command to display space usage on the UNIX file system...

Answer / jatanig

du -h /dev/filename (filename is the name of the file like
sda and hda)

d -disk
u -usage
-h -human-readable

Is This Answer Correct ?    1 Yes 0 No

Give the command to display space usage on the UNIX file system...

Answer / deepika dadhich

du -a

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Unix Commands Interview Questions

What do chmod command do?

0 Answers  


Explain the steps that a shell follows while processing a command.

0 Answers  


what is the meaning of this command rm -rf / what will it do ?

5 Answers   Altair,


what is the command to find out the difference between files and folders?

6 Answers  


How do you execute a UNIX command in the background?

6 Answers  






what is the difference between npar and vpar in HP-UX?

1 Answers   CSC,


what does a process mean?

5 Answers   Infosys,


When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:

0 Answers  


What is the difference between pipe (|) and tee command in unix

14 Answers   Cap Gemini, TCS,


What is the different between UNIX command and UNIX shell script?

2 Answers  


what are filters?

6 Answers  


how to remotely move a file ??? that mean how to move a file one machine to another machine ???

10 Answers   Altair,


Categories