Slackware :: Total Memory Being Reported Incorrectly?

Jan 20, 2011

I'm running 13.1 on a Dell Latitude D630 with 4GB of RAM. My problem is that Slackware doesn't seem to see all of the available memory. Here are the #s being reported (just including pertinent #s rather than all output)...

Code:
free -m
total: 3546

[code]...

View 14 Replies


ADVERTISEMENT

Ubuntu Servers :: File On NFS Incorrectly Reported As Missing?

Jul 4, 2010

I have got four webservers and one fileserver, all running Karmic and kernel 2.6.31-14-generic #48-Ubuntu SMP Fri Oct 16 14:05:01 UTC 2009 x86_64 GNU/Linux.A folder on the fileserver has been exported using NFSv3 with these options: rw,async,no_subtree_check
and mounted on all four webservers with these options: efaults,rsize=32768,wsize=32768,noatimeThe webservers run Apache+PHP+APC. Some php-files include other php-files from the nfs mount, and are requested by users very frequently (~ 100 times per second). Sometimes but not always if I alter an included php-file using FTP (the FTP server is ProFTPD and runs on the fileserver), the file seems missing:user@webserver1: ~ $ ls --full-time -al /path/to/included/file.phpls: cannot access /path/to/included/file.php: No such file or directoryI can repeat this command for hours, but the file keeps missing. Until I query the directory:user@webserver1: ~ $ ls --full-time -al /path/to/included/ | grep file-rwxr-xr-x 1 1002 1002 14294 2010-07-04 21:11:30.000000000 +0200 file.php

View 2 Replies View Related

Ubuntu :: Copied Partition Using CloneZilla -- Free Space Is Reported Incorrectly

Dec 12, 2010

I recently upgraded to a bigger hard disk. I used CloneZilla to copy my 150GB ext3 /home partition on my Ubuntu system to a shiny new 800GB ext3 /home partition. However, I've filled it up to almost 150GB, and I keep getting warnings that I have only 300MB available. It looks like the free space is being reported incorrectly. GParted recognizes the size of the partition as 800GB, and Nautilus reports the same when I boot from a live CD. I've tried using tune2fs to remove the reserved blocks and e2fsck -f to fix any errors, but nothing's changed.

View 4 Replies View Related

Programming :: Write A Script That Can Show Me Total Memory Vs Used Memory?

Apr 13, 2010

How do I write a script for my Linux that can show me total memory vs used memory and have it email me results if it's over 70 percent?

View 2 Replies View Related

General :: Vmstat's Total Memory Statistic?

Sep 20, 2011

I am analyzing memory usage on a Linux system. When I run vmstat -s, I see the following:

waffleman@waffle-iron:~$ vmstat -s
3549184 K total memory
3206708 K used memory
1918012 K active memory
1037320 K inactive memory
342476 K free memory

[Code]...

I know the system has 4096 MB of RAM installed, but why does it show only 3466 MB? Can this be interpreted as total "available" memory? Perhaps the missing 630 MB is being used by the kernel and cannot paged out?

I also tried this on on an Embedded Linux system and saw a similar result. The DRAM chip has 128 MB, but only 124 MB shows up in vmstat.

View 1 Replies View Related

General :: Noticed That The Total Used Memory A Lot Higher Than Sum Of RSS?

Jul 9, 2010

i got a RHEL 5.2 machine.and i noticed that the total used memory(as shown in "free" command) is 3GB higher thanthe sum of RSS size of all processes(collected using "ps aux").i know that its not suppose to be exact because RSS counts ultiple times shared memory (so actually it suppose to be higher than the used memory).the server runs apache which runs a pretty heavy php program.my suspicion is that its memory leak?

View 14 Replies View Related

Programming :: Total Amount Of Allocated SHM Memory?

Aug 25, 2010

Is there an easy way in C to get the total amount of allocated SHM memory on a machine?

View 7 Replies View Related

General :: Calculate Total Memory Consumed By User?

Sep 20, 2010

is there a way to calculate the total memory consumed by user ?

View 12 Replies View Related

Hardware :: RHEL5.3 Is Not Showing Total Physical Memory?

Aug 27, 2010

I have rhgel5.3 installed on IBM blade server having 16 GB of physical memory. But it showing only 4GB.

#cat /proc/meminfo
#free -m
#top

[code]...

View 11 Replies View Related

General :: Find Total Memory Usage Of A Program?

Sep 22, 2010

I wrote a program that multiplies 2 matrices using multi-threads and another one using multiple processes and shared memory. Both in C.I need to find the total memory usage of these programs. I know of the top command, but when my matrices are relatively small they don't even show up on top because they complete so fast, how can I find the memory usage for these instances?Also, how can I find the total turnaround time of my programs?

View 3 Replies View Related

Server :: Find Total Apache Memory Usage?

Sep 12, 2010

Top only show the memory usage for individual processes. Apache often runs hundreds of processes, each of which may use only a small amount of memory, however the total memory consumed by all apache processes can be fairly large.Is there a way to see the total memory usage for all apache processes?

View 7 Replies View Related

Server :: Calculate The Total Amount Of Memory Used By The System?

Jul 15, 2010

I want to calculate the total amount of memory used by the system, Someone please confirm if the below formula is correct.Quote:

((memUsed-mebBuffers-memCached)*100)/memUsed => totalMemoryUsed%
Code:
free -o
total used free shared buffers cached
Mem: 8167004 8115292 51712 0 87680 1444676
Swap: 8388584 3252996 5135588
((8115292-87680-1444676)*100/8115292) => 81%

As per the above calculation 81% of memory is used.Is this correct? and if so Am I running out of memory?what is the limit in % that I should maintain for a better performance?

View 3 Replies View Related

Programming :: Write A Script To Calculate The Total Amount Of Installed Memory?

Apr 4, 2011

I am trying to write a script to calculate the total amount of installed memory to use during an anaconda kickscript, so the swap file is created at 2 x the installed memory. I so far have the amount of installed RAM DIMMS but need a way to total them up and produce a varible I can use in the pre section of the install.

Code:

dmidecode -t 17 | grep Size | awk ' { print $2 }'
Output:
2048
2048

Note: on some servers there could be from 1 DIMM up to 16 DIMMS installed so the script needs to be able to handle this. I also can not use bc as it does not exist during the install stage. I am guessing I need a while loop to do this and use expr but do not know where to start for this logic.

View 3 Replies View Related

Slackware :: Cheese-camera.c:1034: Error: (Each Undeclared Identifier Is Reported Only Once

Oct 27, 2010

I got some error in make

Code:

bash-4.1# ./configure
checking for a BSD-compatible install... /bin/ginstall -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk

[code]....

View 14 Replies View Related

Slackware :: Du: Total Does Not Match Detail?

Jan 30, 2011

Kernel: 2.6.21.5, O.S.: GNU/Linux (Slackware 12.0).du (GNU coreutils) 6.9.Sort of a stupid question, maybe. But can you explain this?

Code:
root@foo:~# du -h
8.0K ./.links

[code]....

View 2 Replies View Related

General :: Slackware Total Crash / Sort It?

May 21, 2011

I don't understand why, but my Slackware is totally crash after ~10min work. My guess is Nvidia is fault. Which logs I could see where the problem is? X (startx) work fine. My video card is: geforce 240. installed slackware 13.37 64 bit.

View 6 Replies View Related

Slackware :: Total Freeze After Installing Wicd Using Slackpkg

Nov 23, 2010

I have installed Slackware 13.1 without a problem and have a working wired ethernet connection. However I need to set up wireless but each time I try to do this using wicd I have a total system crash during the start up screens at the very last line before the welcome line appears.

Nothing works to resolve it, and I need to press and hold the start button and restart. I have checked the md5sum, installed the software again several times but the same happens each time which results in me having to reinstall.

I have installed wicd using slackpkg update, then slackpkg install wicd.

I have also tried downloading wicd from the slackware /extras folder and installing it on its own. Either way the same happens.

I have tried various manual approaches to setting up wireless following various links but again without success.

I now have a clean install again but am not wanting the same to happen.

Can anyone suggest what I might need to do?

I am using an intel Pentium 4, 2.53 ghz, 512Mb ram, GeForce4 MX 440.

View 13 Replies View Related

Slackware :: Prioritize The Use Of Physical Memory Instead Of Swap?

Oct 24, 2010

I have a system with 2G of memory and swap memory of 4G.

This is the output from :

PHP Code:

How could they do to the memory cache to be used as much? Because, occasionally, swap is used and note that the system could use the memory cache does not swap ...

Slackware current 64 multilib.

View 6 Replies View Related

Slackware :: Increase Locked Memory Available To Users?

Nov 15, 2010

I'm running Ardour, and when I launch it I get the following:

Code:
WARNING: Your system has a limit for maximum amount of locked memory!
This might cause Ardour to run out of memory before your system runs

[code]...

View 8 Replies View Related

Slackware :: Is The Next 32B - 14 - Going To Have Large Memory Capability Enabled?

Jan 4, 2011

Just wondering now I see computers everywhere with 6G of ram or more if the new 32b kernels are going to be setup for large amounts of ram or will they still need to be recompiled? Also will there be better ssd support for things like "trim"? I know you edit the fstab to get the Linux version of trim but I am just wondering if stuff like that will just be automatic or if I will continue to need to tweak. I like to tweak but sometimes its the lack of need for tweaking that makes me like slack.

View 14 Replies View Related

Slackware :: Limit For Maximum Amount Of Locked Memory?

May 9, 2011

When I run ardour sound editing I get this message , but it starts ok Your system has a limit for maximum amount of locked memory! This might cause Ardour to run out of memory before your system runs out of memory. You can view the memory limit with 'ulimit -l', and it is normally controlled by /etc/security/limits.conf

bash-4.1$ ulimit -l
64
my limits.conf is like this
audio - rtprio 99
@audio - memlock 250000

[Code]...

View 2 Replies View Related

Slackware :: Save Skype And Instant Message Logs To A Usb Memory Stick?

Apr 30, 2011

2 sets of skype logs on work PC (Windows) - and I forgot to take a copy when I finished the assignment - and on my own Slackware PC. Would be very useful to be able to have only one set (and same for instant message logs) on my usb memory stick. Is this possible?

View 1 Replies View Related

Slackware :: Mkinitrd -Warning: The Initial RAM Disk Is Too Big To Fit Between The Kernel A The 15M-16M Memory Hole"

May 7, 2011

I used mkinitrd to build an initrd from the slackware 2.6.37.6 sources. Lilo throws the following: "Warning: The initial RAM disk is too big to fit between the kernel a the 15M-16M memory hole. It will be loaded in the highest memory as though the configuration file specified "large-memory" and it will be assumed that the BIOS supports memory moves above 16M."

Also, I am running swap, / and home on an encrypted volume group. When the initrd boots (but prior to mounting the encrypted vg) I get a message saying that no modules are found-sounds like a daft question but is this expected? I expect that this is because initrd is looking for modules, but can't find them because the relevant partition isn't mounted.

View 2 Replies View Related

Ubuntu :: Hdd Size Reporting Incorrectly?

Nov 16, 2010

230Gb HD, I recently partitioned a 90Gb slice, and ran 10.10 on it for a while, but due to not using it, I fired up gparted off a live disc last night and got rid of the partition. I got Gparted to make a 5gb swap, and the rest for 10.04, all is fine, rebooted to 10.04, updated grub, it removed the entry for 10.10, but reports that my hd is only 140gb, and sda2 is a 5gb swap. What gives? Where's my disc space?

View 2 Replies View Related

General :: Dvd Drive Keep Mounting Incorrectly / Fix This?

Nov 27, 2010

Running Slackware 13.1

Whenever I insert a dvd or a cd, it automatically mounts to /media/[name], Like for example, the DVD I have in now mounts to /media/TBC3.2.0 (TBC3.2.0 is the name of the disc itself).

I'm needing this to mount to a regular point like /media/cdrom0 or whatever. How can I fix this?

View 2 Replies View Related

General :: 'who' Command Incorrectly Reporting?

Nov 4, 2010

SERVER INFO:[root@bml pts]# uname -aLinux bml.xxx.co.uk 2.4.18-6mdk #1 Fri Mar 15 02:59:08 CET 2002 i686 unknownCan someone explain exactly how 'who' builds its user list?I have a problem where it's listing a user on my server, but I can not kill them.

# [root@bml pts]# who | sort
...
simons pts/52 Nov 2 12:33 (derby1)

[code]....

View 5 Replies View Related

Networking :: Why Is NFS Reported To Be RW When It Is Really Read-only

Dec 20, 2010

I have noticed this now for the 125 time that when you mount a volume and use mount to see if it is ro or rw, it says rw, but actually is read only.

Why is mount reporting it wrong?

systema3:/vol/mysql_vo2 on /mnt/mysql2 type nfs (rw,addr=192.168.10.82)

vs

failed to change ownership of `/mnt/mysql2/.snapshot/hourly.5/v240-2-bin.058' to mysql:mysql
chown: changing ownership of `/mnt/mysql2/.snapshot/hourly.5': Read-only file system

View 3 Replies View Related

General :: Ctrl+C Incorrectly Mapped In Ubuntu 10.04 LTS?

Jul 11, 2011

I was playing around with my keyboard shortcuts and accidentally mapped a command to the Ctrl+C shortcut. Now I can't stop programs running in the terminal with Ctrl+C and I have no idea of how to restore this functionality.

View 1 Replies View Related

Ubuntu :: Disk Free Incorrectly Reporting?

Jan 24, 2010

I have an computer that mounts an external hard drive for backups. The Computer hard drive is about 110 GB; the external drive is 120 GB.

When I do a df -h it tells me there is 97% in use.

Checking the computer harddrive I am using about 52.8 GB (of the 110 GB) 501,579 items, totalling 52.8 GB (some contents unreadable)

The external drive is using roughly 49GB of the 120 GB available.

Filesystem 1K-blocks Used Available Use% Mounted on
/dev/mapper/xanadu-root
114536088 104995108 3768692 97% /
udev 1030572 328 1030244 1% /dev

[Code]....

It seems like the total % is a reflect of total space consumed calculated off of ONE of the hard drives.

View 9 Replies View Related

Ubuntu :: Firefox Incorrectly Displaying Some Characters?

Jun 23, 2010

I've been seeing things like this in Firefox since installing:

Franais
Espaol

where the is a special/accented character. I've also been seeing the in places that seem likely to have some kind of quote mark, probably curved quotes. I can see straight single and double quotes. To correct this, I've tried changing the display font and the character encoding. I've also looked at the Mozilla Add-On site to see if I could find a plug-in to fix it, to no avail.

What should I try now? Currently I'm using Liberation Sans with UTF-8. I'm a native English speaker so I need a western encoding (I think), but I'd still like other characters to display properly.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved