- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Find largefile support
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 03:48 PM
тАО08-11-2005 03:48 PM
Find largefile support
how to find a specific file system is created to suppport largefiles option.
Have a gud de and thanx
yogesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 03:52 PM
тАО08-11-2005 03:52 PM
Re: Find largefile support
with fstyp.
fstyp -v /dev/vg00/lvol4
or use the 'm' option to mkfs that shows which options were used to create the file system.
mkfs -m /dev/vg00/lvol4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 03:58 PM
тАО08-11-2005 03:58 PM
Re: Find largefile support
fsadm /mountpoint
will show you either largefiles or nolargefiles.
hope this helps
UNIX because I majored in cryptology...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 04:06 PM
тАО08-11-2005 04:06 PM
Re: Find largefile support
issue mount command to see options used during mount time.
[rx260-03]/ >fsadm /home
fsadm: /etc/default/fs is used for determining the file system type
largefiles
[rx260-03]/ >mount
/ on /dev/vg00/lvol3 ioerror=nodisable,log,dev=40000003 on Thu Aug 11 08:13:55 2
005
Sudeesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 05:25 PM
тАО08-11-2005 05:25 PM
Re: Find largefile support
# bdf | awk '!/Filesystem/ { print $1" "$NF }' | while read fs mount;
do
echo "${fs} - `fsadm -F $(fstyp $fs) $mount`" 2>/dev/null
done
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-11-2005 11:48 PM
тАО08-11-2005 11:48 PM
Re: Find largefile support
fsadm /mountpoint
Good Luck,