remove pv from vg without varyoff


 
Thread Tools Search this Thread
Operating Systems AIX remove pv from vg without varyoff
# 1  
Old 12-28-2010
remove pv from vg without varyoff

hi,

I've a little problem...
I'm on aix 5.3TL9. I've a Vg with 5 pv, 90% of this vg was used by a FS, which has been removed.

Can i remove some PV from VG without umount other FS? How?

Thanks,
# 2  
Old 12-28-2010
reducevg

If there aren't any PP in use on the drive then just do:
Code:
reducevg VGname hdisk##

Also see: man reducevg
HTH
# 3  
Old 12-28-2010
Thanks for your answer, but it would be too much easy... Smilie
Code:
PV_NAME           PV STATE          TOTAL PPs   FREE PPs    FREE DISTRIBUTION
hdisk30           active            1399        1395        280..280..279..280..276
hdisk5            active            199         199         40..40..39..40..40
hdisk2            active            199         199         40..40..39..40..40
hdisk14           active            105         105         21..21..21..21..21
hdisk15           active            919         919         184..184..183..184..184
hdisk22           active            99          99          20..20..19..20..20
hdisk21           active            99          99          20..20..19..20..20
hdisk11           active            99          99          20..20..19..20..20

disk wanted to be remove is hdisk30...of course...
Is it possible to move data to hdisk 11,21 or 22?

Last edited by Scott; 12-28-2010 at 01:41 PM.. Reason: Please use code tags
# 4  
Old 12-28-2010
try migratepv

If I'm reading your output correctly, you have 1399 PP's on hdisk30 and 1395 of them are free. If that's right then all you have to do is move the PPs over to any of the other disks in the VG that have enough free space on them.

Code:
# migratepv hdisk30 hdisk11
# reducevg VGname hdisk30

# 5  
Old 12-28-2010
Well... finally it was easy...
I thought migratepv was for migrate pv between vg... i'ven't understood man ^^

Thx a lot Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Bash to remove find and remove specific extension

The bash below executes and does find all the .bam files in each R_2019 folder. However set -x shows that the .bam extension only gets removed from one .bam file in each folder (appears to be the last in each). Why is it not removing the extension from each (this is $SAMPLE)? Thank you :). set... (4 Replies)
Discussion started by: cmccabe
4 Replies

2. UNIX for Beginners Questions & Answers

How to remove /*...*/ ?

Sample code from apple's xnu code: struct radix_node { struct radix_mask *rn_mklist; /* list of masks contained in subtree */ struct radix_node *rn_parent; /* parent */ short rn_bit; /* bit offset; -1-index(netmask) */ char rn_bmask; /* node: mask for bit test*/ u_char rn_flags; /*... (5 Replies)
Discussion started by: cmdcmd
5 Replies

3. Post Here to Contact Site Administrators and Moderators

Please remove this post/remove information from it

In this thread: /shell-programming-and-scripting/255687-organizing-text-file-capital-names-capital-word-capital-word.html (sorry i cant use links) that is not an example, those are real students names with real student login id's for the college i am attending and i am on that list. Please... (3 Replies)
Discussion started by: throwawayacc
3 Replies

4. AIX

Need to remove (LP)PP

Had increased FS system size (sample_lv) on particular disks hdisk189 hdisk190 in a shared FS but unfortunately given addnl size occupies the space on other disks hdisk78 hdisk40 too In case, need to remove the addnl lv size occupied on hdisk78 hdisk40. How to achieve it. Pls advice. ... (3 Replies)
Discussion started by: ksgnathan
3 Replies

5. Red Hat

Remove

Hi guys, I need to write a script so that when i execute the "rm" command, the file mentioned need to be copied to other folder and then be deleted. this should be done in back ground. can you please help me out?? (1 Reply)
Discussion started by: rajeshb6
1 Replies

6. Shell Programming and Scripting

remove brackets and put it in a column and remove repeated entry

Hi all, I want to remove the remove bracket sign ( ) and put in the separate column I also want to remove the repeated entry like in first row in below input (PA156) is repeated ESR1 (PA156) leflunomide (PA450192) (PA156) leflunomide (PA450192) CHST3 (PA26503) docetaxel... (2 Replies)
Discussion started by: manigrover
2 Replies

7. Shell Programming and Scripting

How to remove ^I ?

not sure what is this but any can help me delete this ^I cat -A file.txt CLAS^I^I|890^I|7,10,12,341,305,308,29,54^M$ LCLS^I^I|891^I|7,10,12,341,305,308,29,54^M$ MURB^I^I|892^I|7,10,12,341,305,308,29,54^M$ LATI^I^I|893^I|7,10,12,341,305,308,29,54^M$ i want to remove the ^I^I... (2 Replies)
Discussion started by: posner
2 Replies

8. Shell Programming and Scripting

remove with [0-9]

My file has varied width references: width=10% style=width:5% width:1506% width:99.58% so I'm trying clear all the width calls with one procedure: 's/width= *%//' and 's/width=*%//'but neither is working. (6 Replies)
Discussion started by: dba_frog
6 Replies

9. Shell Programming and Scripting

remove me!

Clicked on post twice, sorry: https://www.unix.com/shell-programming-scripting/147954-grep-fixed-string-regex.html#post302469753 (1 Reply)
Discussion started by: teresaejunior
1 Replies

10. UNIX for Dummies Questions & Answers

smitty, remove user, remove directory as well..

hi, i am on aix. i used smitty to remove a user.. but then found that its directory still exists.... so i have to remove the directory manually... am i doing it the right way? (2 Replies)
Discussion started by: yls177
2 Replies
Login or Register to Ask a Question