AIX JFS2 content


 
Thread Tools Search this Thread
Operating Systems AIX AIX JFS2 content
Prev   Next
# 1  
Old 08-02-2012
AIX JFS2 content

Hello!

I have a LPAR with 51GB RAM

topas shows 21% of memory for client pages (~11Gb)
svmon -G show 2906772 client pages in use (~11Gb)

but then i try to investigate per process client memory usage
Code:
svmon -P -O filtertype=client

and summarize inuse column, i get only 347880 pages total(~1,3Gb)

there is difference or what did i do wrong?
Thanks in advice

Last edited by sys; 08-02-2012 at 07:24 AM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

AIX Delete all mbox content

Hi, How to Delete all mbox content in AIX? Thanks. (2 Replies)
Discussion started by: big123456
2 Replies

2. AIX

Has anyone created JFS2 file system on a USB drive attached to AIX server?

We have an IBM Power 710. It has a USB port on the front. I have done some searching and see that there is information out there on how to create a JFS2 file system on USB drives. A few have commented that they would not recommend it, if the server is important, may crash the server... Just... (0 Replies)
Discussion started by: mbenedi
0 Replies

3. AIX

Creating AIX LV VG and JFS2 issues?

Can someone please help me understand what it is I am doing incorrectly? I have 22 PVs (disks) assigned to a VG, the stats on the disks: # lspv hdisk1 PHYSICAL VOLUME: hdisk1 VOLUME GROUP: vg_usr1 PV IDENTIFIER: 0000150179158027 VG IDENTIFIER ... (3 Replies)
Discussion started by: c3rb3rus
3 Replies

4. AIX

Jfs and jfs2

Hi all, Can anyone define the difference between jfs and jfs2 filesystem as well as usage of jfs log files.... Thanks.... (7 Replies)
Discussion started by: sumathi.k
7 Replies

5. AIX

Dynamic $PS1 content on AIX 4.2 ?

I am trying to set a dynamic PS1 that will change its content no matter what the user does. But I am finding that the shell variables I put in it do not get refreshed. One simple example of what I mean : PS1="$HOSTNAME:$USER $PWD > " if the user changes directory, the PWD variable is not... (2 Replies)
Discussion started by: Browser_ice
2 Replies

6. AIX

jfs2 - cannot shrink filesystem

Hi, is anyone aware about filesystem size restrictions on AIX? And does anyone know a solution for below problem? I have 2 boxes attached to EMC Raid5 storage, both have huge /optware/oracle/oradata filesystems - 4.5 and 2.5 TB in size, nothing is striped or in any other way restricted. Due to... (11 Replies)
Discussion started by: zxmaus
11 Replies

7. UNIX for Advanced & Expert Users

AIX 5.2 using jfs2 file system

We are using AIX 5.2 using jfs2 almost all excpt one mount. Is it possible for a non root user id to mount one file system without journaling turned on, perform some activities and then remount (un-mount and mount) the same file system again. Please advise if this is possible Thanks (2 Replies)
Discussion started by: jerardfjay
2 Replies

8. AIX

(URGENT) Mounting JFS2 FileSystem on AIX 4.3

Hi Every body, I created Volume Group & FileSystem of type JFS2 with size 1.3 TB on AIX 5.2. I want to import this VG on another system AIX 4.3. It is imported successfully & I can varyon the VG but unfourtantly I couldn't mount the FileSystem. Is it possible to mount a JFS2 FileSystem on AIX... (3 Replies)
Discussion started by: aldowsary
3 Replies

9. AIX

JFS and JFS2

hi all, can sumbody give me a link which gives the basic layout of JFS, JFS2 and the veritas file system. and i also want to know about the data structures used in this filsystem thanx in advance (0 Replies)
Discussion started by: anwerreyaz
0 Replies

10. UNIX for Advanced & Expert Users

jfs (jfs2) for AIX versus Veritas

Hi there, Can anyone tell me the advantages that jfs has over Veritas (if any)?? Cheers. (5 Replies)
Discussion started by: rich
5 Replies
Login or Register to Ask a Question
sasl_client_init(21 June 2001)											    sasl_client_init(21 June 2001)

NAME
sasl_client_init - SASL client authentication initialization SYNOPSIS
#include <sasl/sasl.h> int sasl_client_init(const sasl_callback_t *callbacks); DESCRIPTION
sasl_client_init() initializes SASL. It must be called before any calls to sasl_client_start. This call initializes all SASL client drivers (e.g. authentication mechanisms). These are usually found in the /usr/lib/sasl directory but the directory may be overriden with the SASL_PATH enviornment variable. callbacks specifies the base callbacks for all client connections. See the sasl_callbacks man page for more information RETURN VALUE
sasl_client_init returns an integer which corresponds to one of the following codes. SASL_OK is the only one that indicates success. All others indicate errors and should either be handled or the authentication session should be quit. ERRORS
SASL_OK Success SASL_BADVERS Mechanism version mismatch SASL_BADPARAM Error in config file SASL_NOMEM Not enough memory to complete operation CONFORMING TO
RFC 2222 SEE ALSO
sasl(3), sasl_callbacks(3), sasl_client_new(3), sasl_client_start(3), sasl_client_step(3) SASL man pages SASL sasl_client_init(21 June 2001)