- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- install new HDD
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
06-05-2008 05:34 AM
06-05-2008 05:34 AM
I want to install new hdd in my server rp7420 with hp-ux 11iv1
i need the steps to install these HDD and create the vg , lv and mount it.
thanks for all
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 05:37 AM
06-05-2008 05:37 AM
Re: install new HDD
please give more information regarding u enviroment i mean u are using any storage like eva, xpstorage etc..
u want to replace the existing disk(faulty with new one) or u want to add disk physically please reply all these
sajjad
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 05:41 AM
06-05-2008 05:41 AM
Re: install new HDD
2) Check the "Managing Systems and Workgroups
A Guide for HP-UX System Administrators" manual here:
HTML - http://docs.hp.com/en/B2355-90950/index.html
PDF - http://docs.hp.com/en/B2355-90950/B2355-90950.pdf
Check "Chapter 6 Administering a System: Managing Disks and Files" here:
http://docs.hp.com/en/B2355-90950/ch06.html
I'm not giving you the exact steps because part of being a good sys admin is knowing where to find information about things you don't know.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-05-2008 08:50 PM
06-05-2008 08:50 PM
SolutionIt is very very simple process.
put the new disk in the server properly,
run
ioscan -fnCdisk
insf
check the newely install disk path like (/dev/dsk/cxtxd0)
create the file system with
mkdir /dev/vgname
cd /dev/vgname
check the minor no with ll /dev/*/group
take the next no and create the node file
mknod group c 64 0x000000
check with ll weather the group file is created.
then create the vg with
vgcreate /dev/vgname /dev/dsk/cxtxd0
create the lv with
lvcreate -L size -n lvname /dev/vgname
create the file system
newfs -f vxfs -o largefiles /dev/vgname/rlvname
create the mount point
mkdir test
mount the same with
mount /dev/vgname/lvname /mountpoint name
make the entry in /etc/fstab
Thanks,
Avinash
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2008 12:44 AM
06-09-2008 12:44 AM
Re: install new HDD
avinash reply is what i need