import disk in HP-UX 1020


 
Thread Tools Search this Thread
Operating Systems HP-UX import disk in HP-UX 1020
# 1  
Old 02-13-2002
import disk in HP-UX 1020

Hi,
is it possible to import a disk into a system, and to mount it without overwriting all data on this disk?
thanks
# 2  
Old 02-13-2002
It depends on how the disk was written. If it's a LVM disk created on another HP-UX system, yes, you can use vgimport to do this.
# 3  
Old 02-13-2002
Pb with the disk to import

Thank you for the reply,
In fact, the disk I want to import has an inittab probleme. Then, I can't boot on it. I would like to mount this disk in another server (HP-UX 1020) to repair it.
I think I can only use vgimport if I made a map file in the disk to import.
Smilie
# 4  
Old 02-13-2002
Re: Pb with the disk to import

Quote:
Originally posted by Olivier
I think I can only use vgimport if I made a map file in the disk to import.
Smilie
That's not true. If you gave the volume group screwy names like /dev/vg00/lvol_this and /dev/vg00/lvol_that then you will need that map file to preserve the names. Without a map file, LVM will just use /dev/vg00/lvol0 and /dev/vg00/lvol1. Even if you used the default names, without a map file, LVM may get them mixed up and, for example, switch lvol0 and lvol1. But the mixup in logical volume names is the only problem with importing without the map file.

But anyway, I think that you should be able to boot straight into single user mode even with a screwed up inittab. Interrupt the boot process, boot from the primary path, choose to interact with ISL, and then type "hpux -is".
# 5  
Old 02-13-2002
I've only tryed it

Thanks,

I've only tried hpux -is but at the boot I have the message :
"It was impossible for the kernel to find a process".
I have it since I've changed the inittab.

Ok, I'll try the vgimport.
Smilie
# 6  
Old 02-13-2002
Commands for import

Ok,
My server has 2 vg : vg00 and vg02.

I think I have to strike:
# for create dir:
mkdir /dev/vgdata

# I found this command but I don't know what that mean and #what it is use for:
mknod /dev/vgdata/group c 64 Ox02000

# the import command:
vgimport -v /dev/vgdata /dev/dsk/c0t10d0

# activate the volume group
vgchange -a y /dev/vgdata

Can you tell me if there is a mistake?
# 7  
Old 02-13-2002
Every volume group must have a unique group file. You need to look at all (well, both) of your pre-existing group files and make sure that the minor number is different. I would expect that vg02 may already have a group with 0x020000, if so, you must pick 0x030000 or 0x010000 or whatever. And notce that the minor number has zeros, you show a leading capital O. And there are 4 trailing zeroes, not three as you show.

Do a "ls -l /dev/vg*/group" after your mknod to be sure that you have it right.

I would then use the preview option first:
vgimport -p -v ...
This won't change anything but will detect almost any errors. If that looks good, then do the real vgimport.

Then vgchange looks good.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

How to clear a removed single-disk pool from being listed by zpool import?

On an OmniOS server, I removed a single-disk pool I was using for testing. Now, when I run zpool import it will show it as FAULTED, since that single disk not available anymore. # zpool import pool: fido id: 7452075738474086658 state: FAULTED status: The pool was last... (11 Replies)
Discussion started by: priyadarshan
11 Replies

2. Slackware

Hp 1020 laser jet Printer doesn't work on slackware 13.1

when i attach HP 1020 leaser jet printer on slackware 13.1 via usb port it detects and display message "Ready to print", in printing window (start->setting->printing) it detects & its properties(Printer->properties) is Description : Hewlett-Packard HP LaserJet 1020 Location : Divya Device... (0 Replies)
Discussion started by: hitlar
0 Replies

3. Shell Programming and Scripting

export / import

I have a calling script which consists of calls to other scripts via the sh command. ie vi callscript.sh sh smallscript1.sh extra unix commands sh smallscript2.sh exit In smallscript1, I prompt for a filename, which I handle via :- read f1 export f1 I then need... (5 Replies)
Discussion started by: malts18
5 Replies

4. Shell Programming and Scripting

Problem with awk awk: program limit exceeded: sprintf buffer size=1020

Hi I have many problems with a script. I have a script that formats a text file but always prints the same error when i try to execute it The code is that: { if (NF==17){ print $0 }else{ fields=NF; all=$0; while... (2 Replies)
Discussion started by: fate
2 Replies

5. Solaris

How to import the new service

Hi How to import the new service which i created without root permission. As well how we can set the uid in service. When i import i got the following error, svccfg import /var/svc/manifest/site/newservice.xml svccfg: Could not create temporary service "TEMP/site/newservice"... (6 Replies)
Discussion started by: kalpeer
6 Replies

6. Shell Programming and Scripting

Import variable

Can i import a value of a variable in a different related script. (2 Replies)
Discussion started by: manish.s
2 Replies

7. Shell Programming and Scripting

exceptions in import

Hello, I want to import an Oracle database file on my fresh DB, bought before successfully with exp command. But is it possible to import some tables from the dmp file, because they are too large and it's so long !? I didn't find any option in imp command to make exception on certain tables...... (1 Reply)
Discussion started by: madmat
1 Replies

8. UNIX for Dummies Questions & Answers

import

Dear All, If while the databsae was shut down, an import command has been done. Will the import result will return 1? Best Regards, Omran (1 Reply)
Discussion started by: omran
1 Replies

9. Shell Programming and Scripting

import

i'm importing tables to oracle 7, but sometimes import give me warnings (not failures) how can i rollback the whole imported tables if warnings occured please advise thanx (2 Replies)
Discussion started by: omran
2 Replies

10. UNIX for Dummies Questions & Answers

Serius ERROR on HPUX 1020

-Here's the funny thing - I have an old HPUX1020 D270 also known as "grandfather" Everything was all right until today... The users began to work as usual. Suddenly The server "kicked" out the users, and when trying to login back - The server returned with 2 different error mesgs: one is... (7 Replies)
Discussion started by: sunbird
7 Replies
Login or Register to Ask a Question