Sponsored Content
Full Discussion: Supported filesystem
Operating Systems Solaris Supported filesystem Post 302893513 by jlliagre on Wednesday 19th of March 2014 02:50:11 PM
Old 03-19-2014
You might look to "fsstat -F" output which will give you at least the names of supported bundled file systems. I'm not sure external ones like vxfs or samfs will show up there though.
 

9 More Discussions You Might Find Interesting

1. Solaris

Filesystems Supported by Solaris

Could someone please tell me which filesystems are supported by Solaris? I am specifically interested in ext2, ext3, and XFS. Is XFS included in a standard Solaris distro? Are ext2 and ext3 only supported in Read-Only using lxrun? Thanks. (1 Reply)
Discussion started by: Ralph Armstrong
1 Replies

2. HP-UX

RMB supported?

Hi, I would like to know if there are any particular sites I can go to in order to findout what programs are supported in UNix OS version 11i. PArticularly if Hp Basic is supported in this new Unix version 11i. Thank you very much. (1 Reply)
Discussion started by: huhuloa
1 Replies

3. AIX

Is Tomcat 4.1.24 supported on AIX 5.3 TL 7?

I am trying to upgrade JDK to 1.5 on AIX 5.3 TL 02, but get an error to upgrade AIX to TL 07. Tomcat 4.1.24 is installed. Just wondering if the the AIX upgrade to TL 07 will have any effect to Tomcat? Help is appreciated (1 Reply)
Discussion started by: aajmani
1 Replies

4. Solaris

Filesystem - error when extend the filesystem

Hi all, currently , my root filesystem already reach 90 ++% I already add more cylinder in the root partition as below Part Tag Flag Cylinders Size Blocks 0 root wm 67 - 5086 38.46GB (5020/0/0) 80646300 1 swap wu 1 - ... (11 Replies)
Discussion started by: SmartAntz
11 Replies

5. UNIX for Dummies Questions & Answers

hwo to find shared filesystem and local filesystem in AIX

Hi, I wanted to find out that in my database server which filesystems are shared storage and which filesystems are local. Like when I use df -k, it shows "filesystem" and "mounted on" but I want to know which one is shared and which one is local. Please tell me the commands which I can run... (2 Replies)
Discussion started by: kamranjalal
2 Replies

6. Solaris

Solaris Filesystem vs. Windows FileSystem

Hi guys! Could you tell me what's the difference of filesystem of Solaris to filesystem of Windows? I need to compare both. I have read some over the net but it's so much technical. Could you explain it in a more simpler term? I am new to Solaris. Hope you help me guys. Thanks! (4 Replies)
Discussion started by: arah
4 Replies

7. AIX

Mount Filesystem in AIX Unable to read /etc/filesystem

Dear all, We are facing prolem when we are going to mount AIX filesystem, the system returned the following error 0506-307The AFopen call failed : A file or directory in the path name does not exist. But when we ls filesystems in the /etc/ directory it show -rw-r--r-- 0 root ... (2 Replies)
Discussion started by: m_raheelahmed
2 Replies

8. Solaris

Multiple keyboard not supported

Please help me. im using sunos 5.8 when i plug in USB barcode scanner linear. the error message shows "Consconfig_docf: multiple keyboards not supported" then i tried plug it in where my working keyboard(usb). the barcode scanner working normally. im now working and im the system... (0 Replies)
Discussion started by: jakexabad
0 Replies

9. AIX

Perl 5.10 supported by AIX 6.1?

Hi, Perl 5.10 supported by AIX 6.1? Is there any official link from where we can find more details on the packages that are supported by each AIX versions? Thanks, Sreenadh (1 Reply)
Discussion started by: sreenadhmenon
1 Replies
GETFSSTAT(2)							System Calls Manual						      GETFSSTAT(2)

NAME
getfsstat - get list of all mounted filesystems SYNOPSIS
#include <sys/param.h> #include <sys/mount.h> int getfsstat(buf,bufsize,flags) struct statfs *buf; int bufsize; int flags; DESCRIPTION
Getfsstat() returns information about all mounted filesystems. Buf is a pointer to statfs structures defined as follows: #define MNAMELEN 90 /* length of buffer for returned name */ struct statfs { short f_type; /* type of filesystem (see below) */ short f_flags; /* copy of mount flags */ short f_bsize; /* fundamental file system block size */ short f_iosize; /* optimal transfer block size */ long f_blocks; /* total data blocks in file system */ long f_bfree; /* free blocks in fs */ long f_bavail; /* free blocks avail to non-superuser */ ino_t f_files; /* total file nodes in file system */ ino_t f_ffree; /* free file nodes in fs */ u_long f_fsid[2]; /* file system id */ long f_spare[4]; /* spare for later */ char f_mntonname[MNAMELEN]; /* mount point */ char f_mntfromname[MNAMELEN]; /* mounted filesystem */ }; /* * File system types. - Only UFS is supported so the other types are not * given. */ #define MOUNT_NONE 0 #define MOUNT_UFS 1 /* Fast Filesystem */ Fields that are undefined for a particular filesystem are set to -1. The buffer is filled with an array of fsstat structures, one for each mounted filesystem up to the size specified by bufsize. If buf is given as NULL, getfsstat() returns just the number of mounted filesystems. Normally flags is currently unused. In 4.4BSD systems the usage is specified as MNT_WAIT. If flags is set to MNT_NOWAIT, getfsstat() will return the information it has available without requesting an update from each filesystem. Thus, some of the information will be out of date, but getfsstat() will not block waiting for information from a filesystem that is unable to respond. RETURN VALUES
Upon successful completion, the number of fsstat structures is returned. Otherwise, -1 is returned and the global variable errno is set to indicate the error. ERRORS
Getfsstat() fails if one or more of the following are true: [EFAULT] Buf points to an invalid address. [EIO] An I/O error occurred while reading from or writing to the filesystem. SEE ALSO
statfs(2), fstab(5), mount(8) HISTORY
The getfsstat function first appeared in 4.4BSD. 4.4 Berkeley Distribution December 24, 1995 GETFSSTAT(2)
All times are GMT -4. The time now is 01:14 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy