what is my file system?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers what is my file system?
# 1  
Old 10-11-2002
what is my file system?

hi,

i am a total hopeless unix dummy.

i want to find out what is my sun solaris 5.8 file system.

whether it is nfs or nfs+.....

pls tell the command to verify this information.

thank you very muchSmilie
# 2  
Old 10-11-2002
they are different types of filesystems in sun solaris such as ufs, nfs disksuite and third party
filesystem such as veritas.

nfs (Network filesystem) is generlly used for sharing resources such as having a remote filesystem or remote mounted filesystem.

To find out which filesystem your system is using
you can use the df -kF command.

e.g To find out if your system is using ufs issue
df -kF ufs
this will list any ufs filesystem

To find out if your system is using nfs issue
df -kF nfs

Another way to find out what filesystem your system is using is just issue df -k this will list
all filesystem structure including mount point.

a ufs filesystem will look like /dev/dsk/c0t0d0s1
an nfs filesystem will look like servername:/home
a disksuite filesystem will look like /dev/md/c0t0d0s1
a veritas filesystem /dev/vx/c0t0d0s1
# 3  
Old 10-11-2002
If you use the "df -n" command, you can see which the type is your file system.

Like this :
terra# df -n# terra# terra
/ : ufs
/proc : proc
/dev/fd : fd
/tmp : tmpfs
/usr/local/Tivoli : vxfs
/u1/app/oracle : vxfs
/sgos/OSW/SAGRE_IN : nfs

The "df -n" command print only the FSType name. Invoked with no operands, this option prints a list of mounted file system types. This option is used only for mounted file systems. It canīt be used with the -o option.

I hope help you.

Witt
witt
# 4  
Old 10-11-2002
Re: what is my file system?

Quote:
Originally posted by champion
whether it is nfs or nfs+.....
I've been wondering what nfs+ might be. I did find this page, SUMMARY: NFS over TCP, which says "(Cecil Pang) called it NFS+". Has anyone else heard NFS over TCP called NFS+?? It may be that this is what the OP wants to determine.

Another possibility is that he wants to know if he is running version 2 or version 3 of nfs.

If the original question is either of these, the answer is the command "nfsstat -m".
# 5  
Old 10-13-2002
thanks for all the wonderful replies. u guys are just great.
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

Cloning a system via mksysb backup from one system and restore to new system

Hello All, I am trying to clone an entire AIX virtual machine to a new virtual machine including all partitions and OS.Can anyone help me on the procedure to follow? I am not really sure on how it can be done.Thanks in advance. Please use CODE tags for sample input, sample output, and for code... (4 Replies)
Discussion started by: gull05
4 Replies

2. Shell Programming and Scripting

UNIX file system to Linux file system migration

We would be migrating UNIX file system to Linux file system. We do have many directory and sub directories with files. after migrating unix to linux file system , i want to make sure all the files has been copied ? What would be the best approach to validate directory ,sub-directory and file... (1 Reply)
Discussion started by: balajikalai
1 Replies

3. HP-UX

how to mount a file system from a solaris server into an hp-ux system

Hi all I wonder if its possible to mount on a hp-ux server a file system that was previously mounted on a solaris 10 server. The LUN is on NetApp stoarge. The problem on hp-ux I cannot do pvcreate on the lun (disk) because contains data. Any help will be appreciated FR (2 Replies)
Discussion started by: fretagi
2 Replies

4. Shell Programming and Scripting

Asking user for input file location using a .sh file in windows system

Hi all, I am creating a .sh file in windows environment using notepad. i need a code which i can write in this .sh file so that it asks me for an input file stored anywhere in my C drive of my windows computer. Please help me out with this. (1 Reply)
Discussion started by: bansalpankaj88
1 Replies

5. Solaris

"file system is full up to 90% how can i set the file system to 60%"

hi every one "plz any one can give solution to my problem" my problem is my filesystem is full in os level i have to decrease it to 60% how can i? plz help me Thank you for your response (6 Replies)
Discussion started by: sivajerripothul
6 Replies

6. SCO

file system not getting mounted in read write mode after system power failure

After System power get failed File system is not getting mounted in read- write mode (1 Reply)
Discussion started by: gtkpmbpl
1 Replies

7. Solaris

why we need to mount file system other than / file system

Hi, I am new to solaris OS.I have a small question,it might be silly question or good question. My Question is Solaris is following hierarchy type of file structure,means all files are under the root file system.so Once we mount the root file system all sub folders of / ( /usr, /var ,... (7 Replies)
Discussion started by: vr_mari
7 Replies

8. UNIX for Dummies Questions & Answers

How to find a file whick is consuming larger disk space in file system

Hello, Can anybody please tell me the command to find out the filesystem or a file which is consuming larger disk space sing i want to find out the file and want to compress it please help me out any help would be appreciated (6 Replies)
Discussion started by: lokeshpashine
6 Replies

9. Programming

compare XML/flat file with UNIX file system structure

Before i start doing something, I wanted to know whether the approach to compare XML file with UNIX file system structure. I have a pre-configured file(contains a list of paths to executables) and i need to check against the UNIX directory structure. what are the various approches should i use ? I... (6 Replies)
Discussion started by: shafi2all
6 Replies

10. UNIX for Dummies Questions & Answers

how to mount a file system of a remote machine to local file system

Hi friends, In my case, there are serveral PCs running Linux in a LAN. I would like to to mount the directory /A_river of machine-A to the file system of another machine machine-B so that I can access files in that directory. I do not know how to do this. The situation is complicated by... (2 Replies)
Discussion started by: cy163
2 Replies
Login or Register to Ask a Question