Reading the output of df command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Reading the output of df command
# 1  
Old 03-12-2007
Reading the output of df command

Can any body please explain the following df command to me:
Code:
filesystem          kbytes   used     avail    capacity  mounted on
/dev/root           6474195  2649052  3825143  41%       /
/dev/stand          24097    5757     18340    24%       /stand
/proc               0        0        0         0%       /proc
/dev/fd             0        0        0         0%       /dev/fd
/dev/_tcp           0        0        0         0%       /dev/_tcp
/dev/dsk/c0b0t0d0s4 10241437 4888422  5353015  48%       /home
/dev/dsk/c0b0t1d0sc 17422492 12267268 5155224  71%       /home2
/processorfs        0        0        0         0%       /system/processor
/.NetWare           0        0        0         0%       /.NetWarep

How many harddrives I have? and whats their type(IDE or SCSI)?

Thanks in advance.
# 2  
Old 03-12-2007
Could you post some details about your OS? What version and such? Basically, the output of uname -a would be nice.
# 3  
Old 03-12-2007
Quote:
Originally Posted by blowtorch
Could you post some details about your OS? What version and such? Basically, the output of uname -a would be nice.
Code:
UnixWare unix1 5 7.1.1 i386 x86at SCO UNIX_SVR5

# 4  
Old 08-05-2007
No reply to this query for long time.
# 5  
Old 08-05-2007
Please read the rules of the forum ! Smilie

Quote:
(4) Do not 'bump up' questions if they are not answered promptly.
https://www.unix.com/unix-for-dummies...om-forums.html
# 6  
Old 08-05-2007
Quote:
Originally Posted by matrixmadhan
Please read the rules of the forum ! Smilie



https://www.unix.com/unix-for-dummies...om-forums.html
Sorry if I have voilated any rule but I have reminded about this query after 8 months and I apologize if its considered as bump as well.
# 7  
Old 08-05-2007
Nervous,
The best way to have an explanation of a unix command in a specific system is:
Code:
man command

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Insert title as output of command to appended file if no output from command

I am using UNIX to create a script on our system. I have setup my commands to append their output to an outage file. However, some of the commands return no output and so I would like something to take their place. What I need The following command is placed at the prompt: TICLI... (4 Replies)
Discussion started by: jbrass
4 Replies

2. Shell Programming and Scripting

Reading output returned to OS from java program.

I am writing one shell script in which there is one Java program call. I want to stop execution of shell script ahead of java program if the java program returns 1 . How to read that value of java program from OS ? (3 Replies)
Discussion started by: ParthThakkar
3 Replies

3. Shell Programming and Scripting

Error in reading the output from command

I getting error as test1.sh: syntax error at line 3: `do' unexpected while i was trying to run below code.. What was going wrong here? find /usr/tmp/SB/reports/ -type f -name *.rdf |read file;do echo "Copying $file to /usr/tmp/SB1" done (1 Reply)
Discussion started by: millan
1 Replies

4. UNIX for Dummies Questions & Answers

Reading from Screen/Standard Output

Is it possible to read from the screen or standard output? If so, may I know how I can do this? For example, I have an application running which prints out the following on the screen: Starting tools from .image-tools... imagecontrol_1: SECS/GEM-capable version is running done cindy@pgunix... (2 Replies)
Discussion started by: sippingsoda
2 Replies

5. UNIX for Dummies Questions & Answers

Help with reading link output

Hello folks; I have a script uses wget to query a link to get the temperature from sensor then email the results to me. Here's the script: "wget -q http://server/temp -O - | mail -s "Temp Update" moe@ocd.com" normally the output from using wget looks like this: Lab_1|69.8 | ... (8 Replies)
Discussion started by: Katkota
8 Replies

6. Shell Programming and Scripting

Reading PL/SQL output online from perl??

Hi there, I got this situation at job. First i have a Perl script that connect to Oracle 10g and execute a package. That package execute severals transactions and must generate log about process status each interval of time. What i'm doing now is saving the plsql package log in an auxiliar... (4 Replies)
Discussion started by: jparra
4 Replies

7. UNIX for Dummies Questions & Answers

Command display output on console and simultaneously save the command and its output

Hi folks, Please advise which command/command line shall I run; 1) to display the command and its output on console 2) simultaneous to save the command and its output on a file I tried tee command as follows; $ ps aux | grep mysql | tee /path/to/output.txt It displayed the... (7 Replies)
Discussion started by: satimis
7 Replies

8. Shell Programming and Scripting

reading ps command's output line by line

hi; as a pseudo; while read psLine do myFunc $psLine done < ps i don't want to redirect ps command's to a file. in fact, my problem is "how can i read stdout line by line in bash, sed, awk or any?" thanks, (5 Replies)
Discussion started by: s. murat
5 Replies

9. Shell Programming and Scripting

reading command output from shell script

Hi List, How to read the output of a command executed from a script. For ex. sample_scritp.sh ------------- useradd testuser1 password testuser1 .... ..... -------------- This prompts for "password", and "confirm password", for which i need to give the values from script. Can... (4 Replies)
Discussion started by: sri b
4 Replies

10. Programming

Reading console output

I am writing a program that uses system() to pass commands to the command interpreter. Is there a way to read the output that the commands produce? (1 Reply)
Discussion started by: Blaster999
1 Replies
Login or Register to Ask a Question