Sponsored Content
Full Discussion: vxfs free space?
Operating Systems Solaris vxfs free space? Post 302274449 by itik on Wednesday 7th of January 2009 03:18:33 PM
Old 01-07-2009
you can query with

vxassist -g vol_group maxsize

Maximum volume size: 285112320 (149000Mb)

it means there's available 149G
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Device Free Space

Hi, I've tried to find answer to this question in the forums but i haven't found it. How can i know the space left in my devices (tape, disk, floppy, etc...)? It is very important to know at least the free space in the TAPE device. Can someone help? Thanx in advance. Jorge (1 Reply)
Discussion started by: jorge.ferreira
1 Replies

2. Solaris

free space, associated by filesystem name...

is there a command that will display amount of free space...associated by filesystem name? # df /home /home (/dev/dsk/c1t0d0s3 ): 8069326 blocks 487280 files HP has bdf: bdf /home Filesystem kbytes used ... (2 Replies)
Discussion started by: mr_manny
2 Replies

3. Solaris

how to get the more memory free space (see memory free column)

Hi all, Could please let me know how to get the more memory free space (not added the RAM) in local zone. -bash-3.00# vmstat 2 5 kthr memory page disk faults cpu r b w swap free re mf pi po fr de sr s0 s1 s1 s1 in sy cs us sy... (3 Replies)
Discussion started by: murthy76
3 Replies

4. Red Hat

Free space of HDD ?

Friends , Using which command I can see the free space or usage of the Total HDD in Linux RHEL ? suppose Imy HDD is 10GB space . I have to insall RHEL 5 using 6 GB space . Now i have 4 GB space free in my total HDD . Now using which cammand I see this 4 GB free space ? Wating for kind... (7 Replies)
Discussion started by: shipon_97
7 Replies

5. UNIX for Dummies Questions & Answers

free space, used space in ftp

Is possible to see how much available space there is on a ftp server and how much is used through ftp ? how ? free space: used space: thanks (1 Reply)
Discussion started by: aneuryzma
1 Replies

6. Shell Programming and Scripting

Calculate total space, total used space and total free space in filesystem names matching keyword

Good afternoon! Im new at scripting and Im trying to write a script to calculate total space, total used space and total free space in filesystem names matching a keyword (in this one we will use keyword virginia). Please dont be mean or harsh, like I said Im new and trying my best. Scripting... (4 Replies)
Discussion started by: bigben1220
4 Replies

7. AIX

Moving free space from one LV to another LV

in the same VG? Is there a way we can do this? We basically have a test server that used to be a production server. Now the newly created test directories have run out of space and the old production directories have alot of free space. Can we transfer that free space over? If so how? Have... (2 Replies)
Discussion started by: NycUnxer
2 Replies

8. Shell Programming and Scripting

Free space at disk

Hi, I would like to create the new file system(mount point) in our unix server. before that i would like to know the total free space available in /home directory. Can you please let me know, how to find free space available for new filesystem? Be careful with your spelling and... (2 Replies)
Discussion started by: koti_rama
2 Replies

9. Solaris

No space left on device but free space and inodes are available...

hi guys, me again ;) i recently opened a thread about physical to zone migration. My zone is mounted over a "bigger" LUN (500GB) and step is now to move the old files, from the physical server, to my zone. We are talking about 22mio of files. i used rsync to do that and every time at... (8 Replies)
Discussion started by: beta17
8 Replies

10. Fedora

Need to incrwase PHYSICAL VOLUME space on hard drive with free space on it

Hi, I run Fedora 17. I created a physical volume of 30GB on a disk with 60GB of space so there is 30GB of free space. On the physical volume, I created my volume group and logical volumes. I assigned all the space in the physical volume to my volume group. I need to add the 30GB of free space... (1 Reply)
Discussion started by: mojoman
1 Replies
Channel(3pm)						User Contributed Perl Documentation					      Channel(3pm)

NAME
Coro::Channel - message queues SYNOPSIS
use Coro; $q1 = new Coro::Channel <maxsize>; $q1->put ("xxx"); print $q1->get; die unless $q1->size; DESCRIPTION
A Coro::Channel is the equivalent of a unix pipe (and similar to amiga message ports): you can put things into it on one end and read things out of it from the other end. If the capacity of the Channel is maxed out writers will block. Both ends of a Channel can be read/written from by as many coroutines as you want concurrently. You don't have to load "Coro::Channel" manually, it will be loaded automatically when you "use Coro" and call the "new" constructor. $q = new Coro:Channel $maxsize Create a new channel with the given maximum size (practically unlimited if "maxsize" is omitted). Giving a size of one gives you a traditional channel, i.e. a queue that can store only a single element (which means there will be no buffering, and "put" will wait until there is a corresponding "get" call). To buffer one element you have to specify 2, and so on. $q->put ($scalar) Put the given scalar into the queue. $q->get Return the next element from the queue, waiting if necessary. $q->shutdown Shuts down the Channel by pushing a virtual end marker onto it: This changes the behaviour of the Channel when it becomes or is empty to return "undef", almost as if infinitely many "undef" elements have been put into the queue. Specifically, this function wakes up any pending "get" calls and lets them return "undef", the same on future "get" calls. "size" will return the real number of stored elements, though. Another way to describe the behaviour is that "get" calls will not block when the queue becomes empty but immediately return "undef". This means that calls to "put" will work normally and the data will be returned on subsequent "get" calls. This method is useful to signal the end of data to any consumers, quite similar to an end of stream on e.g. a tcp socket: You have one or more producers that "put" data into the Channel and one or more consumers who "get" them. When all producers have finished producing data, a call to "shutdown" signals this fact to any consumers. $q->size Return the number of elements waiting to be consumed. Please note that: if ($q->size) { my $data = $q->get; ... } is not a race condition but instead works just fine. Note that the number of elements that wait can be larger than $maxsize, as it includes any coroutines waiting to put data into the channel (but not any shutdown condition). This means that the number returned is precisely the number of calls to "get" that will succeed instantly and return some data. Calling "shutdown" has no effect on this number. AUTHOR
Marc Lehmann <schmorp@schmorp.de> http://home.schmorp.de/ perl v5.14.2 2012-04-13 Channel(3pm)
All times are GMT -4. The time now is 04:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy