- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- how can i make this kind of system?
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
05-14-2003 03:36 AM
05-14-2003 03:36 AM
--- Physical volumes ---
PV Name /dev/dsk/c3t0d0
PV Status available
Total PE 17005
Free PE 7005
i wanna build a new filesystem which is /dev/vg02/lvol2 ,it will mount on /oradata ,it is about 20G, and i wanna this filesystem isnt restricted by 2G which is the biggest file in the system, how can i do it ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 03:44 AM
05-14-2003 03:44 AM
Re: how can i make this kind of system?
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 03:46 AM
05-14-2003 03:46 AM
SolutionIt is fairly simple. I'm not sure I understand if your logical Volume has already been created or not, but in any case, from the start this is what it would look like :
#lvcreate -n lvol2 -L 20000 vg02
#newfs -F vxfs -o largefiles /dev/vg02/rlvol2
and when you mount your filesystem
# mount -o largefiles /dev/vg02/lvol2 /oradata
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 03:48 AM
05-14-2003 03:48 AM
Re: how can i make this kind of system?
#lvcreate -L 20000 /dev/vg02/lvol2
#mkfs -F vxfs -o largefiles /dev/vg02/rlvol2
#mkdir /oradata
#mount -F vxfs -o largefiles /dev/vg02/lvol2 /oradata
Make sure that you update the /etc/fstab for the new file system with the largefiles option
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 03:48 AM
05-14-2003 03:48 AM
Re: how can i make this kind of system?
lvcreate -l 7005 -n lvol2 vg02
newfs -F vxfs -v -o largefiles /dev/vg02/rlvol2
echo "/dev/vg02/lvol2 /oradata vxfs rw,nosuid,largefiles,delaylog 0 2 >> /etc/fstab
Then to test the result:
mount /oradata
This is recommended (add to fstab, then mount without the source lvol) to check the entry in fstab.
Bill Hassell, sysadmin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 03:55 AM
05-14-2003 03:55 AM
Re: how can i make this kind of system?
#lvcreate -L 20000 -n lvol2 /dev/vg02
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 03:59 AM
05-14-2003 03:59 AM
Re: how can i make this kind of system?
to do it after if you have onlineJFS installed.
note the -L option of lvcreate is MB size
The -l option is number of PE. The PE Size is by default 4M, so check it with your PVDisplay.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-14-2003 04:01 AM
05-14-2003 04:01 AM