- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Create a filesystem
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
Forums
Discussions
Discussions
Discussions
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
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
07-08-2002 12:23 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 12:27 PM
07-08-2002 12:27 PM
Re: Create a filesystem
You have 2441 free Physical extents (PE) on each disk. Assuming that you would want to mirror your new filesystem, you have (with 4MB extents), 2441*4*1024 bytes available for new filesystems. Does that answer your question?
Regards!
...JRF...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 12:37 PM
07-08-2002 12:37 PM
Re: Create a filesystem
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 12:39 PM
07-08-2002 12:39 PM
Re: Create a filesystem
you have 4882 PE's available, and the PE size is 4MB,
Free PE 4882
PE Size (Mbytes) 4
So you can have a filesystem of size = 4882 * 4MB
If you want to have a mirror of this filesystem, the filesystem size will be halved, so you can have a 2441 * 4MB mirrored filesystem.
The max filesystem size that you can create on an hp server is 1TB,
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90742/B2355-90742_top.html&con=/hpux/onlinedocs/B2355-90742/00/00/16-con.html&toc=/hpux/onlinedocs/B2355-90742/00/00/16-toc.html&searchterms=filesystem%20size&queryid=20020708-134823
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 12:58 PM
07-08-2002 12:58 PM
Solutionmaybe you just want to know the commands? It's not clear from the question.
First, create a new logical volume (LV):
lvcreate -L
e.g.
lvcreate -L 2000 -n oracle1 /dev/vg00
which creates a 2 GB volume named /dev/vg00/oracle1 and /dev/vg00/roracle1;
then mirror this LV (since all your other LV's are mirrored, I assume you want to mirror this one too):
lvextend -m 1 /dev/vg00/oracle1
(this creates one mirror, by default on another physical disk)
and now create a new filesystem on this LV (I assume a VxFS):
newfs -F vxfs /dev/vg00/roracle1
and mount it.
The max. supported filesystem size is 128 GB (as far as I remember for 11.0), although I've heard that it may be even larger, but unsupported).
Regards
uli
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2002 01:12 PM
07-08-2002 01:12 PM
Re: Create a filesystem
How can I to create a filessystem whith disk mirroring (commands), and Which is the the size max off a filesystem?
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-09-2002 04:56 AM
07-09-2002 04:56 AM
Re: Create a filesystem
2441*4*1024 = 9998336 That is 9,998,336 GB
The way to create this file system is
lvcreate -n lv## /dev/vg00
lvextend -l 2441 /dev/vg00/lv##
lvextend -m 1 /dev/vg00/lv##
newfs -F vxfs -o largefiles /dev/vg00/rlv##
I hope this answers your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 01:47 AM
07-10-2002 01:47 AM
Re: Create a filesystem
The maximum of the filesystem you already got.
For creating, adding to fstab-file and mounting do the following:
lvcreate -L
newfs -F vxfs /dev/vg00/r
mkdir
vi /etc/fstab
Add the following line: /dev/vg00/
chmod
chown
mount -a #mounts all not yet mounted file systems described in fstab
And off course if you do not want to do it by command-line, just use SAM.
I hope this will help you,
Regards BB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2002 01:53 AM
07-10-2002 01:53 AM
Re: Create a filesystem
if you are wondering about the maximum size of a file system, here it is:
vxfs: 2 Terrabytes
hfs: 128 GB
The rest of your question should have been answered allready.
Allways stay on the bright side of life!
Peter