Make_recovery HP-UX 10.20


 
Thread Tools Search this Thread
Operating Systems HP-UX Make_recovery HP-UX 10.20
# 15  
Old 03-08-2013
Just checked, depending of how it was installed OnlineJFS may not show up with the given command, only when you try... If You have a GUI then as root try to launch sam:
sam & go to disks and filesystems, choose logical volumes, and click on lvol9 then in the top menubar choose Action-> Increase size and int the new window enter 500

What happens?
# 16  
Old 03-08-2013
I know how to interrupt the Autoboot, and change the Mode Configuration from 'OEM' to 'USER'. I don't know what X11 is, or how to check it.Smilie And the third sentence you've got me completely lostSmilie
# 17  
Old 03-08-2013
X11 is the unix graphical environment (windowing system...).
I have no idea what a 743 looks like only that it used similar boards and CPU as 712/715 that I had long ago... (but never migrated to 10.20 and left them in 9.5...)
So I should ask more: What kind of terminal are you working on...

Addendum:
What I wanted to know is can you execute the above, and if so what happend (did the system complain or did it do what was asked ( LVM extension...)

If you dont have GUI (yes pretty colors X system...) then we are to do all in command line from the console as root...

Last edited by vbe; 03-08-2013 at 08:57 AM.. Reason: typos... Addendum
# 18  
Old 03-08-2013
Okay I've tried to increase the size using sam, but it requires the services to be stopped, and the guys here will only allow me to try that on Monday.
Check out this link for the 743 board: Agilent / HP 743 - In Stock, We Buy Sell Repair, Price Quote
# 19  
Old 03-08-2013
OK so you have seen what you can do then... If you had OnlineJFS it would have done the job...
Did you use sam in graphic mode or was it a vague txt gui?

I will explain a bit more:
You could have from command line as root extended the logical volume:
Code:
lvextend -L 500 /dev/vg00/lvol9

but to increase the filesystem's size you are to have nobody using it in order to unmount it, only problem is many things use /var especially all the logging systems in /var/adm so the only chance it to go single user ( boot and no filesystem mounted or just /...) mount what you need : / , /stand should be there, /usr for the commands but you cannot use sam anymore because sam uses /var...
Either you go savage way like init s
then
Code:
umount /var 
#or 
umount /dev/vg00/lvol9
# then extend the filesystem:
extendfs /dev/vg00/rlvol9   # Very important the "r" for raw device
# then lazy way to mount all:
mount -a
#now save the configuration:
vgcfgbackup vg00

I think I havent forgotten anything, but its difficult to imagine like the in front of a PC what you are to do on a box ..

Reboot or check behaviour :
Code:
init 2
init 3

Dont think you use 4 ( but I do... so check in /etc/inittab : the init default value...)

Last edited by vbe; 03-08-2013 at 09:22 AM..
# 20  
Old 03-08-2013
Looks good, will try it out. At which point would I specify the size 500? Or should I use
Code:
 
lvextend -L 500 /dev/vg00/lvol9

# 21  
Old 03-08-2013
lvextend add physical extents (imagine pseudo disk blocks...) -L is to give the new size in MB...
here it can be done with sam but sam will complain because sam automatcally after will try to extend the filsystem which it can not...
Dont remember what happens after, mind you you can try... it wont brake anything...
It may show the logical volume size with the new size... in which case that part is done...
You can type the command now also...

you can give a new size to extendfs but I find it silly since what ever space you leave you cannot use it... only to extend the existing... not giving a size will make extendfs use all it finds... but remember umount first then usr raw device!
Good luck!

Looked at you link... Is this mounted in a rack? how is the disk connected? behind on the scsi 68pin? what is it used for?
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. HP-UX

Make_Recovery Question Urgent Plse Respond

I have a make_recovery tape, if I restore the VG00 volume group using this, will my other volume groups still be ok after the restore(I have 7 data volume groups) I used make_recovery -A to create the tape I have a HP9000 HP-UX 11 An internal disk is failing, the other volume groups are on... (3 Replies)
Discussion started by: rees_a
3 Replies

2. HP-UX

Problems restoring Ignite make_recovery DAT backups

Can anyone help with an HP Ignite problem please !! We currently have 2 servers running HP-UX B.11.00 connected together and using a high availability cluster (serviceguard) running one package. Each of the servers have 2 mirrored local disks. (also installed HP OpenviewDM B.05.03, Oracle 8.0.5,... (7 Replies)
Discussion started by: clivethegadget
7 Replies

3. HP-UX

HPUX make_recovery

I'm attempting to do a make_recovery on my HPUX box. My question revolves around the number of device files I have for my tape drive and what each one is intending for and which I should use. Some examples of my devices include 1m, 1mb, 1mnb, 2m, 2mb, 2mn, 2mnb, C1t0d0best, C1t0d0dds, &... (4 Replies)
Discussion started by: gonzotonka
4 Replies

4. UNIX for Dummies Questions & Answers

aix mksysb , hpux make_recovery sun?

hi, for aix and hpux, we have both mksysb and make_recovery for restoring to the former state after it was crashed. is there any equivalent to sun? any pointers will be appreciated. thanks (8 Replies)
Discussion started by: yls177
8 Replies
Login or Register to Ask a Question