Sponsored Content
Operating Systems AIX Probléme pour agrandir LV et FS Post 302482851 by shockneck on Wednesday 22nd of December 2010 05:26:24 PM
Old 12-22-2010
Breaking a Big VG with Factor 3 does not look like thorough planning... With such a 'naturally' grown VG you must be prepared to take into consideration that sth. in the VG/LV structure simply broke especially if that was not a Big VG right from the beginning. What you should do: run a
# varyonvg sybasevg01
then try extending the LV again.

What you could do if it still fails after the varyonvg: change sth. in the LV properties to rewrite the VGDAs e.g. change the inter-policy from minimum to maximum
# chlv -ex -u42 -x1856 <yourlv>
and try the extension again.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

let probleme

Hi! I have a script shell and I must do a calculation: let c=7/4 echo $c => 1 :( and me I want 1,75 Is it possible to find 1,75 in shell? Thinks! (10 Replies)
Discussion started by: Castelior
10 Replies

2. UNIX for Advanced & Expert Users

Probleme With DVD Writer

I Use mkcd for save same directories into DVD, But the commande not complete succefuly mkcd -r directorie_i_whish_save -d /dev/cd1 please it is very urgent thank you :confused: :confused: (1 Reply)
Discussion started by: mktahar
1 Replies

3. AIX

Probleme with DVD Writer

I can write into DVD? I have USE "MKCD" command mkcd -r directorie -d /dev/cd1 please help me it s urgent (2 Replies)
Discussion started by: mktahar
2 Replies

4. IP Networking

Route add probleme

I have a system that i want to reach via a vpn created vi a fierwall.The fierwall in an other system. The ip i am trying to get to is 172.16.4.48 I need to get to it via the hme1 interface. The vpn gateway has this ip 172.30.50.1 I need to clean up the routing table and make this work; or is it... (5 Replies)
Discussion started by: waterboy
5 Replies

5. UNIX for Advanced & Expert Users

[ Environment Variable ] Probleme with export JAVA_HOME

Hi, I want to create a new environment variable (JAVA_HOME), but when I open a new shell this varible is delete... to create the variable I do : export JAVA_HOME=/usr/java/jdk and I verify with : echo $JAVA_HOME and it's work... But When I open a new shell this variable is forget... ( It... (2 Replies)
Discussion started by: marcel_kobain
2 Replies

6. Filesystems, Disks and Memory

probléme de montage de clé usb

hi i'm trying to mount my usb device in fedora 7(vmware) i use the comand: mount /sda1 /mnt but when i go to /mnt i find the content of the folder /boot. can u tell me what's the problem? (2 Replies)
Discussion started by: jalil smail
2 Replies

7. Solaris

Probleme avec SVM

Bonjour, J'ai ajouté par erreur à un sous mirroir des disques de cette facon : metattach d53 c2t90d0s0 c2t90d1s0 ... alors que j'aurais du faire un stripe par disque (comme ça) : metattach d53 c2t90d0s0 metattach d53 c2t90d1s0 .. Derriere, j'ai fais un growfs -M du FS pour l'aggrandir et... (1 Reply)
Discussion started by: phil.nakache
1 Replies

8. Linux

Problème d'interface réseau

bonjour, j'ai un serveur Linux ayant 2 interfaces eth0 et eth1. j'ai configuré deux adresses IP de deux réseaux différents sur les 2 interfaces, et je les ai connecté sur 2 commutateurs différents. l'adresse IP de eth0 répond sans problème au ping des équipement de son réseau d'appartenance, malheureusement cela... (1 Reply)
Discussion started by: cerco
1 Replies
Net::Bonjour(3pm)					User Contributed Perl Documentation					 Net::Bonjour(3pm)

NAME
Net::Bonjour - Module for DNS service discovery (Apple's Bonjour) SYNOPSIS
use Net::Bonjour; my $res = Net::Bonjour->new(<service>[, <protocol>]); $res->discover; foreach my $entry ( $res->entries ) { printf "%s %s:%s ", $entry->name, $entry->address, $entry->port; } Or the cyclical way: use Net::Bonjour; my $res = Net::Bonjour->new(<service>[, <protocol>]); $res->discover; while ( 1 ) { foreach my $entry ( $res->entries ) { print $entry->name, " "; } $res->discover; } DESCRIPTION
Net::Bonjour is a set of modules that allow one to discover local services via multicast DNS (mDNS) or enterprise services via traditional DNS. This method of service discovery has been branded as Bonjour by Apple Computer. Base Object The base object would be of the Net::Bonjour class. This object contains the resolver for DNS service discovery. Entry Object The base object (Net::Bonjour) will return entry objects of the class Net::Bonjour::Entry. METHODS
new([<service>, <protocol>, <domain>]) Creates a new Net::Bonjour discovery object. First argument specifies the service to discover, e.g. http, ftp, afpovertcp, and ssh. The second argument specifies the protocol, i.e. tcp or udp. The default protocol is TCP. The third argument specifies the discovery domain, the default is 'local'. If no arguments are specified, the resulting Net::Bonjour object will be empty and will not perform an automatic discovery upon creation. all_services([<domain>]) Returns an array of new Net::Renedezvous objects for each service type advertised in the domain. The argument specifies the discovery domain, the default is 'local'. Please note that the resulting Net::Bonjour objects will not have performed a discovery during the creation. Therefore, the discovery process will need to be run prior to retriving a list of entries for that Net::Bonjour object. domain([<domain>]) Get/sets current discovery domain. By default, the discovery domain is 'local'. Discovery for the 'local' domain is done via MDNS while all other domains will be done via traditional DNS. discover Repeats the discovery process and reloads the entry list from this discovery. entries Returns an array of Net::Renedezvous::Entry objects for the last discovery. protocol([<protocol>]) Get/sets current protocol of the service type, i.e. TCP or UDP. Please note that this is not the protocol for DNS connection. service([<service type>]) Get/sets current service type. shift_entry Shifts off the first entry of the last discovery. The returned object will be a Net::Bonjour::Entry object. EXAMPLES
Print out a list of local websites print "<HTML><TITLE>Local Websites</TITLE>"; use Net::Bonjour; my $res = Net::Bonjour->new('http'); $res->discover; foreach my $entry ( $res->entries) { printf "<A HREF='http://%s%s'>%s</A><BR>", $entry->address, $entry->attribute('path'), $entry->name; } print "</HTML>"; Find a service and connect to it use Socket; use Net::Bonjour; my $res = Net::Bonjour->new('custom'); $res->discover; my $entry = $res->shift_entry; socket SOCK, PF_INET, SOCK_STREAM, scalar(getprotobyname('tcp')); connect SOCK, $entry->sockaddr; print SOCK "Send a message to the service"; while ($line = <SOCK>) { print $line; } close SOCK; Find all service types and print. use Net::Bonjour; foreach my $res ( Net::Bonjour->all_services ) { printf "%s (%s) ", $res->service, $res->protocol; } Find and print all service types and entries. use Net::Bonjour; foreach my $res ( Net::Bonjour->all_services ) { printf "-- %s (%s) --- ", $res->service, $res->protocol; $res->discover; foreach my $entry ( $res->entries) { printf " %s (%s:%s) ", $entry->name, $entry->address, $entry->port; } } SEE ALSO
Net::Bonjour::Entry COPYRIGHT
This library is free software and can be distributed or modified under the same terms as Perl itself. Bonjour (in this context) is a trademark of Apple Computer, Inc. AUTHORS
The Net::Bonjour module was created by George Chlipala <george@walnutcs.com> perl v5.10.0 2009-02-28 Net::Bonjour(3pm)
All times are GMT -4. The time now is 06:38 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy