swap displays differently


 
Thread Tools Search this Thread
Operating Systems Solaris swap displays differently
# 1  
Old 11-06-2008
swap displays differently

A new x86 server was installed with 16G of memory. The swap space assigned in the prtvtoc is also 16G. But after the installation of the OS and verifying, noticed df -k output for swap shows as 30G. Other systems do not have this characteristic. Whats wrong in here?Smilie
# 2  
Old 11-06-2008
Hello,

Can you post "swap -s" output?
# 3  
Old 11-06-2008
Nothing wrong. swap can mean different things depending on the context.

30 GB is the size of the virtual memory available which includes both real memory (RAM) and disk space (swap area).
# 4  
Old 11-06-2008
hi vimes, i don have the access to system at the moment will see to get the output.
jlliagre, I did explain the same to my client but he was not satisfied with my answer.. I also checked across the other systems and did compare...
if the prtvtoc is configured with 16G, the df -k output for swap is also around 16G, which mounts on /tmp, /var/run , /etc/svc/volatile..

But on this system, swap for /tmp, /var/run , /etc/svc/volatile shows around 30G.. That's why feeling wierd..Smilie
# 5  
Old 11-06-2008
There is no "df -k" report for the swap space as the swap space isn't mounted and isn't a filesystem anyway.

What you see are filesystems using the virtual memory as back-end, kind of RAM-Disks. These filesystems size reports are documented to be of limited accuracy. They might also have been mounted with the "size=xxx" option to limit tmpfs resource usage.

If you want to retrieve information about the virtual memory usage and the swap area size, "swap -s" and "swap -l" are the right commands.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

'Connect' behaves differently on Solaris 11

Our application fails to run successfully on Solaris 11. The same works fine in Solaris 10. Due to which we are unable to migrate to Solaris 11. The app basically involves forking a child process, which finally connects with parent process. But on Solaris 11, it is unable to connect with parent... (0 Replies)
Discussion started by: wini008
0 Replies

2. Shell Programming and Scripting

Why awk perform differently when using variable?

Hi Gurus, I hit a hard block in my script. when using awk command with variable, I got different result. Please see below: my test file as below: $ cat demofile.txt filename-yyyy-abcd filename-xxx-week-pass filename-xxx-week-run for testing purpose, I put 3 awk command in one script.... (7 Replies)
Discussion started by: ken6503
7 Replies

3. Solaris

Explain the output of swap -s and swap -l

Hi Solaris Folks :), I need to calculate the swap usage on solaris server, please let me understand the output of below swap -s and swap -l commands. $swap -s total: 1774912k bytes allocated + 240616k reserved = 2015528k used, 14542512k available $swap -l swapfile dev swaplo... (6 Replies)
Discussion started by: seenuvasan1985
6 Replies

4. HP-UX

Swap device file and swap sapce

Hi I have an integrity machine rx7620 and rx8640 running hp-ux 11.31. I'm planning to fine tune the system: - I would like to know when does the memory swap space spill over to the device swap space? - And how much % of memory swap utilization should be specified (swap space device... (6 Replies)
Discussion started by: lamoul
6 Replies

5. UNIX for Dummies Questions & Answers

formatting differently in last loop

hi. i'm trying to create a list users that is formatted for an SQL query. it should take the form: 'user1', 'user2', 'user3'as you can see, there is no comma after the last value. could someone help me revise my code to do this? while read user; do print "'"$userid"'," >>... (3 Replies)
Discussion started by: ankimo
3 Replies

6. Shell Programming and Scripting

Why does IF loop behave differently in different shells

Hi , I have a script that compares two string and prints the larger string , This is an extract of a biggers script that i have. #! /bin/ksh DT_STRING_CMP=20081221223440 DT_STRING=20071221223440 if ; then echo "20081221223440" fi echo... (5 Replies)
Discussion started by: amit1_x
5 Replies

7. Shell Programming and Scripting

Why does IF loop behave differently in different shells

Hi , I have a script that compares two string and prints the larger string , This is an extract of a biggers script that i have. #! /bin/ksh DT_STRING_CMP=20081221223440 DT_STRING=20071221223440 if ; then echo "20081221223440" fi echo... (1 Reply)
Discussion started by: amit1_x
1 Replies

8. Solaris

Swap config - Mirror swap or not?

Hello and thanks in advance. I have a Sun box with raid 1 on the O/S disks using solaris svm. I want to unmirror my swap partition, and add the slice on the second disk as an additional swap device. This would give me twice as much swap space. I have been warned not to do this by some... (3 Replies)
Discussion started by: BG_JrAdmin
3 Replies

9. Shell Programming and Scripting

Script behaving differently in Crontab..

Hi, I wrote a script to stop a process,truncate its log files and re-start the process... We are using Progress Software in Unix ( Sun Sparc) When ever I start this progress program , it should kick off a C pgm in the background.. The script work perfectly fine when I run it from command... (4 Replies)
Discussion started by: newtoxinu
4 Replies

10. Shell Programming and Scripting

Why does cron run this differently?

test.ksh =================== #!/usr/bin/ksh APPLICATION=hr_app APPLICATION_UPPER=`echo $APPLICATION | tr ` echo $APPLICATION_UPPER > /tmp/test.txt echo $APPLICATION >> /tmp/test.txt which tr >> /tmp/test.txt =================== When I run this from the shell: /home/natter> more... (6 Replies)
Discussion started by: natter
6 Replies
Login or Register to Ask a Question