Sponsored Content
Operating Systems AIX Problem in increasing filesystem Post 302898744 by Mistrblank on Wednesday 23rd of April 2014 01:47:24 PM
Old 04-23-2014
Quote:
Just i have decreased the FS to 1 gb so that all the freep pps's have bee shown then i increased to 255Gb leaving 1 pp free for loglv thanks once again...
I'd highly recommend creating your jfs2 filesystems with the "-a logname=INLINE" option and avoid the messes caused by separate loglv.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Increasing filesystem space

Now, i know a ufs file system can be increased using mkfs but hwo do I take space from a file system and add it to another file system? at my job here, that seems to be possible because I see request on it almost every day. what is the exact command to do this and does the system need to be... (1 Reply)
Discussion started by: TRUEST
1 Replies

2. AIX

Increasing the FileSystem Size

Hi Everybody, I have AIX 4.3 and I have a FileSystem with 400GB size, which called /db/run. Because of grow up of the application's data, more storage has been added 200GB. To add this space without affecting the application & the application's requirements, I have to add this 200GB to the existed... (9 Replies)
Discussion started by: aldowsary
9 Replies

3. Solaris

need help Filesystem Problem

hi expert, please help have a problem with my new Sun Solaris server V890 after power on and booted into the os i had get this error messages below : * no command can use except "cd" Boot device: root-disk File and args: SunOS Release 5.8 Version Generic_117350-34 64-bit Copyright... (7 Replies)
Discussion started by: bucci
7 Replies

4. AIX

Does HACMP have bugs increasing filesystem or Logical volumes

Hello, Does HACMP have bugs ? I have version 5.4 on AIX 6.1 and when I try to increase filesystem space or logical volume partitions which are under HACMP VG it gives me error: # lsvg rootvg pr0oravg px0oravg pb0oravg pr0sapvg px0sapvg pb0sapvg pr1_pr2_vg pr2_px1_vg # #... (11 Replies)
Discussion started by: filosophizer
11 Replies

5. AIX

Increasing ./usr or any filesystem

Hi guys, I want to increase my ./usr or just one path in my aix6.1 machine. currently if I # lsvg rootvg VOLUME GROUP: rootvg VG IDENTIFIER: 00f6126500004c00000 0012aef0c9035 VG STATE: active PP SIZE: 128... (2 Replies)
Discussion started by: pilotHans
2 Replies

6. UNIX for Dummies Questions & Answers

hwo to find shared filesystem and local filesystem in AIX

Hi, I wanted to find out that in my database server which filesystems are shared storage and which filesystems are local. Like when I use df -k, it shows "filesystem" and "mounted on" but I want to know which one is shared and which one is local. Please tell me the commands which I can run... (2 Replies)
Discussion started by: kamranjalal
2 Replies

7. Solaris

Problem mounting iscsi filesystem

Hi, I have a strange problem with iscsi. My vfstab entry looks like this: /dev/md/dsk/d100 /dev/md/rdsk/d100 /zones/ssapp0895v01 ufs 2 iscsi - After rebooting, the filesystem gets mounted with the option "nosetuid". I believe the default should be "suid" /zones/ssapp0895v01 on... (0 Replies)
Discussion started by: alvaro66
0 Replies

8. AIX

Mount Filesystem in AIX Unable to read /etc/filesystem

Dear all, We are facing prolem when we are going to mount AIX filesystem, the system returned the following error 0506-307The AFopen call failed : A file or directory in the path name does not exist. But when we ls filesystems in the /etc/ directory it show -rw-r--r-- 0 root ... (2 Replies)
Discussion started by: m_raheelahmed
2 Replies

9. AIX

Problem with filesystem created after HACMP was shut down

There is a shared volume group connected to two AIX systems A and B on a shared storage. The shared volume group was regularly attached to the system A and in case of a system A crash, the system B should take over the shared volume group and resources on it. Resources on the shared storage:... (1 Reply)
Discussion started by: yamanu
1 Replies

10. Hardware

Increasing the filesystem size

Hi Guys We have a VM machine, now I want to increase the size of the filesystem. We are running RHEL6 O/S. I have filesystem that is 500GB I want to increase that filesystem to 1.5 TB. The guy who manages the VM increased the size on the VM machine, now how do I make sure that the... (7 Replies)
Discussion started by: Phuti
7 Replies
bee(n)								    BitTorrent								    bee(n)

__________________________________________________________________________________________________________________________________________________

NAME
bee - BitTorrent Serialization Format Encoder/Decoder SYNOPSIS
package require Tcl 8.4 package require bee ?0.1? ::bee::encodeString string ::bee::encodeNumber integer ::bee::encodeListArgs value... ::bee::encodeList list ::bee::encodeDictArgs key value... ::bee::encodeDict dict ::bee::decode string ?endvar? ?start? ::bee::decodeIndices string ?endvar? ?start? ::bee::decodeChannel chan -command cmdprefix ?-exact? ?-prefix data? cmdprefix eof token cmdprefix error token message cmdprefix value token value ::bee::decodeCancel token ::bee::decodePush token string _________________________________________________________________ DESCRIPTION
The bee package provides de- and encoder commands for data in bencoding (speak 'bee'), the serialization format for data and messages used by the BitTorrent application. PUBLIC API
ENCODER The package provides one encoder command for each of the basic forms, and two commands per container, one taking a proper tcl data struc- ture to encode in the container, the other taking the same information as several arguments. ::bee::encodeString string Returns the bee-encoding of the string. ::bee::encodeNumber integer Returns the bee-encoding of the integer number. ::bee::encodeListArgs value... Takes zero or more bee-encoded values and returns the bee-encoding of their list. ::bee::encodeList list Takes a list of bee-encoded values and returns the bee-encoding of the list. ::bee::encodeDictArgs key value... Takes zero or more pairs of keys and values and returns the bee-encoding of the dictionary they form. The values are expected to be already bee-encoded, but the keys must not be. Their encoding will be done by the command itself. ::bee::encodeDict dict Takes a dictionary list of string keys and bee-encoded values and returns the bee-encoding of the list. Note that the keys in the input must not be bee-encoded already. This will be done by the command itself. DECODER The package provides two main decoder commands, one for decoding a string expected to contain a complete data structure, the other for the incremental decoding of bee-values arriving on a channel. The latter command is asynchronous and provides the completed decoded values to the user through a command callback. ::bee::decode string ?endvar? ?start? Takes the bee-encoding in the string and returns one decoded value. In the case of this being a container all contained values are decoded recursively as well and the result is a properly nested tcl list and/or dictionary. If the optional endvar is set then it is the name of a variable to store the index of the first character after the decoded value into. In other words, if the string contains more than one value then endvar can be used to obtain the position of the bee-value after the bee-value currently decoded. together with start, see below, it is possible to iterate over the string to extract all con- tained values. The optional start index defaults to 0, i.e. the beginning of the string. It is the index of the first character of the bee-encoded value to extract. ::bee::decodeIndices string ?endvar? ?start? Takes the same arguments as ::bee::decode and returns the same information in endvar. The result however is different. Instead of the tcl value contained in the string it returns a list describing the value with respect to type and location (indices for the first and last character of the bee-value). In case of a container the structure also contains the same information for all the embedded values. Formally the results for the various types of bee-values are: string A list containing three elements: o The constant string string, denoting the type of the value. o An integer number greater than or equal to zero. This is the index of the first character of the bee-value in the input string. o An integer number greater than or equal to zero. This is the index of the last character of the bee-value in the input string. Note that this information is present in the results for all four types of bee-values, with only the first element changing accord- ing to the type of the value. integer The result is like for strings, except that the type element contains the constant string integer. list The result is like before, with two exceptions: One, the type element contains the constant string list. And two, the result actually contains four elements. The last element is new, and contains the index data as described here for all elements of the bee-list. dictionary The result is like for strings, except that the type element contains the constant string dict. A fourth element is present as well, with a slightly different structure than for lists. The element is a dictionary mapping from the strings keys of the bee-dictionary to a list containing two elements. The first of them is the index information for the key, and the second ele- ment is the index information for the value the key maps to. This structure is the only which contains not only index data, but actual values from the bee-string. While the index information of the keys is unique enough, i.e. serviceable as keys, they are not easy to navigate when trying to find particular element. Using the actual keys makes this much easier. ::bee::decodeChannel chan -command cmdprefix ?-exact? ?-prefix data? The command creates a decoder for a series of bee-values arriving on the channel chan and returns its handle. This handle can be used to remove the decoder again. Setting up another bee decoder on chan while a bee decoder is still active will fail with an error message. -command The command prefix cmdprefix specified by the required option -command is used to report extracted values and exceptional situations (error, and EOF on the channel). The callback will be executed at the global level of the interpreter, with two or three arguments. The exact call signatures are cmdprefix eof token The decoder has reached eof on the channel chan. No further invocations of the callback will be made after this. The channel has already been closed at the time of the call, and the token is not valid anymore as well. cmdprefix error token message The decoder encountered an error, which is not eof. For example a malformed bee-value. The message provides details about the error. The decoder token is in the same state as for eof, i.e. invalid. The channel however is kept open. cmdprefix value token value The decoder received and successfully decoded a bee-value. The format of the equivalent tcl value is the same as returned by ::bee::decode. The channel is still open and the decoder token is valid. This means that the callback is able to remove the decoder. -exact By default the decoder assumes that the remainder of the data in the channel consists only of bee-values, and reads as much as possible per event, without regard for boundaries between bee-values. This means that if the the input contains non-bee data after a series of bee-value the beginning of that data may be lost because it was already read by the decoder, but not processed. The -exact was made for this situation. When specified the decoder will take care to not read any characters behind the cur- rently processed bee-value, so that any non-bee data is kept in the channel for further processing after removal of the decoder. -prefix If this option is specified its value is assumed to be the beginning of the bee-value and used to initialize the internal decoder buffer. This feature is required if the creator of the decoder used data from the channel to determine if it should create the decoder or not. Without the option this data would be lost to the decoding. ::bee::decodeCancel token This command cancels the decoder set up by ::bee::decodeChannel and represented by the handle token. ::bee::decodePush token string This command appends the string to the internal decoder buffer. It is the runtime equivalent of the option -prefix of ::bee::decodeChannel. Use it to push data back into the decoder when the value callback used data from the channel to determine if it should decode another bee-value or not. FORMAT DEFINITION
Data in the bee serialization format is constructed from two basic forms, and two container forms. The basic forms are strings and integer numbers, and the containers are lists and dictionaries. String S A string S of length L is encoded by the string "L:S", where the length is written out in textual form. Integer N An integer number N is encoded by the string "iNe". List v1 ... vn A list of the values v1 to vn is encoded by the string "lBV1...BVne" where "BVi" is the bee-encoding of the value "vi". Dict k1 -> v1 ... A dictionary mapping the string key ki to the value vi, for i in 1 ... n is encoded by the string "dBKiBVi...e" for i in 1 ... n, where "BKi" is the bee-encoding of the key string "ki". and "BVi" is the bee-encoding of the value "vi". Note: The bee-encoding does not retain the order of the keys in the input, but stores in a sorted order. The sorting is done for the "raw strings". Note that the type of each encoded item can be determined immediately from the first character of its representation: i Integer. l List. d Dictionary. [0-9] String. By wrapping an integer number into i...e the format makes sure that they are different from strings, which all begin with a digit. EXAMPLES
BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category bee of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. KEYWORDS
BitTorrent, bee, bittorrent, serialization, torrent CATEGORY
Networking COPYRIGHT
Copyright (c) 2004 Andreas Kupries <andreas_kupries@users.sourceforge.net> bee 0.1 bee(n)
All times are GMT -4. The time now is 10:00 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy