How to move the entire system to a new larger drive?


 
Thread Tools Search this Thread
Operating Systems HP-UX How to move the entire system to a new larger drive?
# 8  
Old 03-14-2012
You are doomed...
There is no pvextend .. but there is a
Code:
  pvchange -x y /dev/dsk/c0t0d0

Give the correct value of the disk... block device ( no rdsk...)
e.g.
Code:
aph:/home/vbe $ vgdisplay -v vg00|grep dsk
   PV Name                     /dev/dsk/c0t5d0
   PV Name                     /dev/dsk/c0t8d0

then use the returned value e.g /dev/dsk/c0t5d0
and see using pvdisplay what it changes...
I promise nothing... because I see no way how to extend PE and this option of pvchange I never had to use... The idea is vg00 has max PE /pv of 2000 meaning that if we can extend we should be able to reach almost 8 GB...
Have you looked at your make_recovery man pages?
Do you have a DAT unit to use?
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Need help to move .csv file from UNIX path to windows shared drive or c:\ drive

Hi Guys, Can any one help me on this. I need help to move .csv/.xls file from unix path to windows shared drive or c:\ drive? Regards, LKR (1 Reply)
Discussion started by: lakshmanraok117
1 Replies

2. UNIX for Dummies Questions & Answers

Solaris 2.6 - Duplicate Filesystem to a larger slice(same drive)

One of our production systems has a slice called "oldslice" that periodically runs low on space during normal operation. We have minimum requirements for online data retention, and whoever sized this slice didn't give it much wiggle room, so it periodically runs low on space. I'm getting tired of... (1 Reply)
Discussion started by: the.gooch
1 Replies

3. Solaris

fsck entire hard drive?

ho do you check filesystem on entire hard disk? (9 Replies)
Discussion started by: orange47
9 Replies

4. UNIX for Dummies Questions & Answers

How to move a directory from thumb drive to mac?

I do some scripting during lunch on the macbookpro at work. I have the necessary folders on a thumb drive from my mac at home, and move them with the mv command to the mbpro so I don't have to change the script itself to access the necessary files on the thumb drive, and then change the code again... (13 Replies)
Discussion started by: Straitsfan
13 Replies

5. Shell Programming and Scripting

Search entire system for files containing certain word(s)

I am trying to create a script that will report (email and ftp results) on any file, system wide, that has the word password= in it. (and any variation of password=). Basicaly looking for any plain text passwds. I figured the easiest way would be like this...... for i in `cat find-pw.dat` do... (6 Replies)
Discussion started by: theninja
6 Replies

6. Solaris

Directory size larger than file system size?

Hi, We currently have an Oracle database running and it is creating lots of processes in the /proc directory that are 1000M in size. The size of the /proc directory is now reading 26T. How can this be if the root file system is only 13GB? I have seen this before we an Oracle temp file... (6 Replies)
Discussion started by: sparcman
6 Replies

7. Solaris

move DVD drive between domains in M5000

Hi, I 've a M5000 system with 2 domains configured on it. How can i move the DVD from one domain to the other ? so that i can access the drive in the second domain. cfgdevice -l does not work on M5000 (6 Replies)
Discussion started by: fugitive
6 Replies

8. UNIX for Dummies Questions & Answers

How to find a file whick is consuming larger disk space in file system

Hello, Can anybody please tell me the command to find out the filesystem or a file which is consuming larger disk space sing i want to find out the file and want to compress it please help me out any help would be appreciated (6 Replies)
Discussion started by: lokeshpashine
6 Replies

9. Solaris

how to restore an entire system from a tar file?

Hi folks, I have an image backup of an entire file system (Solaris 9 on N240) on a tar file. How can I use this tar file to retore my system? Thanks, omd (1 Reply)
Discussion started by: omd
1 Replies
Login or Register to Ask a Question
uname(2)							System Calls Manual							  uname(2)

NAME
uname(), setuname() - get information about computer system; set node name (system name) SYNOPSIS
DESCRIPTION
uname() The system call places information identifying the computer system in the structure pointed to by name. The structure, defined in is set up as follows: Each field is a null-terminated string. The field contains the name of the operating system, on standard HP-UX systems. The field contains the name by which the computer system is known in a communications network. The field contains the release identifier of the operating system, such as The field contains additional information about the operating system. This value can change in future releases. The first character of the field identifies the license level: Two-user system 16-user system 32-user system 64-user system 8-user system 128-user, 256-user, or unlimited-user system The field contains the hardware and model identifiers of the computer system. On this field always returns The field contains a unique identification number within that class of hardware, possibly a hardware or software serial number. This field contains a null string if there is no identification number. On systems this number may not be unique. To get a unique id, use the option of setuname() The system call sets the node name (system name), as returned in the field of the structure, to name, which has a length of namelen charac- ters. This is usually executed by at system boot time. Names are limited to 1 characters; is defined in Security Restrictions The actions associated with this system call require the privilege Processes owned by the superuser have this privilege. Processes owned by other users may have this privilege, depending on system configuration. See privileges(5) for more information about privileged access on systems that support fine-grained privileges. RETURN VALUE
and return the following values: Successful completion. n is a nonnegative value. Failure. is set to indicate the error. The function may return truncated results when the non-expanded version of the structure is used. See ERRORS
If or fails, is set to one of the following values. name points to an illegal address. The reliable detection of this error is implementation dependent. was attempted by a process lacking appropriate privileges. This error may be detected and indicates that the structure version used does not accommodate the full values of one or more fields. WARNINGS
returns one of two versions of the structure: o HP-UX compatible version (compatible with all HP-UX versions) o Expanded version of the structure which can accommodate larger values. The compatible structure is used by default. To use the expanded structure, see nodehostnamesize(5). If the administrator has configured a node name with a length larger than 8 bytes, the compatible version of the structure, as returned by contains just the first 8 bytes (plus null) in the field. In a future release the field will not contain any data bytes if the entire node name cannot fit. Setting a node name of more than 8 bytes with is only possible with the appropriate configuration options enabled. It is strongly recom- mended that all related documentation be completely understood before setting a larger node name. A node name larger than 8 bytes can cause anomalous behavior or failure in applications which use the command or the system function to access the name. It is recommended that, whenever possible, programs use the host name as returned by the function rather than the field. It can be given a sufficiently large buffer to avoid truncation issues. See gethostname(2) for more information. AUTHOR
was developed by AT&T and HP. SEE ALSO
hostname(1), uname(1), setuname(1M), gethostname(2), sethostname(2), nodehostnamesize(5), privileges(5). STANDARDS CONFORMANCE
uname(2)