Ubuntu Installation :: Java: Increase GC Overhead Limit?

Jun 15, 2010

I've run a script which I need to parse a lot of data through to a webapp.

I got this error with my ruby script, running through jruby, firing into an apache webapp:

Java/util/Array.java:#### java.lang.OutOfMemoryError: GC overhead limit exceeded (NativeException)

(Where #### was the line number)

I've looked at:

[URL]

I think it suggests I do:

Code:
-XX:+UseConcMarkSweepGC -XX:+CMSIncrementalMode
-XX:+PrintGCDetails -XX:+PrintGCTimeStamps
-XX:+CMSIncrementalPacing -XX:CMSIncrementalDutyCycleMin=0
-XX:CMSIncrementalDutyCycle=10
My java version:

Code:

java version "1.6.0_18"
OpenJDK Runtime Environment (IcedTea6 1.8) (6b18-1.8-0ubuntu1)
OpenJDK 64-Bit Server VM (build 14.0-b16, mixed mode)

Q1: How do I implement that into the java/util/Arrays.java file?

Q2: Is there a way of temporary making the Java VM/JDK have better handled GC overhead?

View 1 Replies


ADVERTISEMENT

Ubuntu Installation :: APT - Cache-Limit Increase ?

May 31, 2011

I'm recently receiving error message: Eynamic MMap ran out of room. Please increase the size of APT::Cache-Limit. Current value: 25165824. (man 5 apt.conf), E:Error occurred while processing libguile-ltdl-1 (NewFileVer1), Eroblem with MergeList /var/lib/dpkg/status, E:The package lists or status file could not be parsed or opened.'

I have tried to increase the cache by adding the line

It is apparently getting the value from elsewhere.

View 1 Replies View Related

Debian :: Increase Apt-cache Limit?

Aug 21, 2011

There I was, trying to update the package lists in a fresh install of Knoppix, when:

View 8 Replies View Related

Ubuntu Servers :: Cannot Increase Open Files Limit On 9.10 (goes Down But Not Up)?

Mar 24, 2010

This is happening on Ubuntu 9.10 serverI'm trying to increase the number of open files allowed for a user. This is for an nginx webserver where the current limit of 1024 is not enough.According to the posts I've found so far, I should be able to put lines into /etc/security/limits.conf like this;

Code:
* soft nofile 4096
* hard nofile 4096

[code]...

View 2 Replies View Related

Red Hat / Fedora :: Increase Nofile Limit For Daemon?

Mar 5, 2011

I'm looking for recommendations on how to increase the nofile limit for a daemon running as other than root. Does anyone else do this? It'd be nice if I could employ /etc/security/limits.conf.

View 2 Replies View Related

General :: Increase Stack Limit Permanently Without Restarting

Jul 20, 2011

I need to increase the default stack size on Linux. As I know there are usually two ways:

ulimit -s size
/etc/security/limits.conf

The ulimit method only works as long as I am logged in.

limits.conf will work after a restart.

Is there a possible way to increase the limit without restarting?

View 2 Replies View Related

Ubuntu Installation :: Ext4 Uses 22gb Overhead On New HDD?

Jun 21, 2010

Brand new 1.5tb hard drive was formatted using gparted in ext4. But something is using 22gb of the hard drive right off the bat.

View 4 Replies View Related

Ubuntu Multimedia :: Audio Player With Low CPU Overhead

Nov 21, 2010

audio player of the likes of RyhthmBox, but uses way less CPU? I have an older PC which runs a 667MHz CPU, and 256Mb ram. It's got Ubuntu 10.04, but RhythmBox struggles to play. Using the Top command, RhythmBox consumes 50% CPU, PulseAudio consumes 27%, X11 uses 17%, and the rest is made up of other processes. Total usage when RhythmBox plays is 98-100% CPU.

So, you can see that I really need an audio player that would use half that of RhythmBox for this PC to be effective. The PC will only ever be used as an audio playout system. I've tried Exaile, which consumes 60% CPU, and the sound simple refuses to come through. VLC doesn't even seem to want to know about it. It launches, and that's about it.

View 2 Replies View Related

Debian Installation :: Java Programm To Install And The Installer Is GUI Java Based?

Feb 18, 2011

This is my first post and I'm pretty new on Debian. I had used Ubunu for a while now and I've decided to move on Debian Squeeze.But I've one problem: I've a Java programm to install and the installer is GUI Java based. When I run the script, I've the next message:

Preparing to install. Extracting the JRE from the installer archive.Unpacking the JRE.Extracting the installation resources from the installer archive.Configuring the installer for this system's environment.Launching installer Graphical installers are not supported by the VM. The console mode will be used instead. Preparing CONSOLE Mode Installation. But this program is not able to run the installation in console mode.

I've tried to install sun-java6-jre but without success.Has anyone an idea to help me install this programm? My Configuration: Debian Squeeze 6.0 amd64.

View 13 Replies View Related

Software :: Pam_limits(sudo:session): Wrong Limit Value 'unlimited' For Limit Type 'soft'

Dec 28, 2010

my secure log is flooding with these messages..

sudo: pam_limits(sudo:session): wrong limit value 'unlimited' for limit type 'hard'
Dec 28 22:42:29 yn54 sudo: pam_limits(sudo:session): wrong limit value 'unlimited' for limit type 'soft'
Dec 28 22:42:29 yn54 sudo: pam_limits(sudo:session): wrong limit value 'unlimited' for limit type 'hard'

View 3 Replies View Related

Server :: Limit The Suphp User Memory Limit?

May 12, 2010

I have a VPS server with 512 MB memory. The php.ini is set so script memory limit = 16 MB. However, I have noticed in my top report, instances like the following:

Quote:

5484 coldclim 25 0 46476 32m 5920 R 0.0 6.4 0:00.93 php

The bold number of 6.4 is the % of sever memory this process is using. 6.4 % of 512 MB of memory is about 32 MB of memory, so it appears that this isn't being limited by php.ini. Am I correct? This leads to the next question: Is there some way to limit the amount of memory a single suphp process can use? (Basically, something like the setting in php.ini which limits suphp processes in the same way.)

View 2 Replies View Related

Software :: Monitoring Tools Which Can Listen Disks / Overhead / Cache / Memory / CPU Performance

Jul 13, 2011

I'm searching monitoring tools which can listen disks, overhead, cache, memory, cpu performance.Can anybody help me?

View 4 Replies View Related

Programming :: Does Declaring Variable Inside A Function Give An Extra Overhead On An Application

May 14, 2011

Does declaring variable inside a function give an extra overhead on an application? Would it be better to declare the variable globally and just reuse it? Example

Code:

#include <blah>
char mybuffer[2048];
int main()

[code]....

The only difference is the declaration of my variable. Since myfunction() will be called many times will it add an additional overhead if it will create mybuffer[2048] over and over?

View 5 Replies View Related

Ubuntu Multimedia :: Forcing VGA Output "on" After Boot (overhead Projector)?

Jun 23, 2010

Yesterday I was trying to connect the overhead projector to the VGA output of my laptop. The problem was that the device was connected by way of a VGA video splitter, which evidently missed some signal, and made the projector invisible to the laptop: "xrandr -v -q" told me "VGA1 disconnected".

The solution is: boot with

Code:
video=VGA-1:e
kernel boot parameter, found in the wiki and in intel linux FAQ.

It works, but it is a bit awkward to have to reboot to switch on or off the VGA output. So I suppose there is some user-space trick or utility to do this which I was unable to find.

View 2 Replies View Related

Ubuntu :: Increase Installation Size Of Wubi?

Jul 9, 2011

I am trying to install Ubuntu via Wubi on a 120GB hard drive but the max installation size is only 30GB. I can NOT use a CD/DVD or USB to boot because I get an error 'BOOTMGR is missing press CTRL + ALT + Delete to restart' I'm currently on Windows 7 and have looked into fixing that error. I have tried using a Windows 7 recovery disc and followed some guides but I can't seem to fix it. So I am left with the only option of installing Ubuntu via Wubi but I want to use the entire hard drive, and not just 30GB. So what I'm asking is if there is a way to increase the size.

View 4 Replies View Related

Ubuntu Installation :: Using Multiple HD's To Increase Server Speed?

Jan 21, 2010

I am curious if it is possible to use multiple hard drives to increase server speed. I know I could run stripped drives or RAID0, but was wondering if there is any other way to do it within Linux. My default 9.10 Server install has 3 partitions as a default. Would splitting these on three drives make it any faster?

View 3 Replies View Related

Ubuntu Installation :: Increase File System Size?

Jun 3, 2010

I downloaded ubuntu 10.04 and install it from windows vista (32 Bit) and gave it initial memory 5 GB, but after I started using it I always got a message that I have a very low memory left (16 MB only !!!) and I cannot install any updates or new applications , so is there any way I can expand the File system files without reinstall the OS again????

View 2 Replies View Related

Ubuntu Installation :: 10.04 - Increase Disk Space For Upgrade

Feb 1, 2011

I installed Ubuntu 10.04 on Windows 7 using Wubi. Then upgraded it to 10.10 and KDE. Initially while installing I alloted only a small amount of disk space. Now I need more space for Ubuntu. How can I do it without disturbing the current setup and configurations of both Windows and Ubuntu.

View 5 Replies View Related

Ubuntu Installation :: Increase The Size Of An Extended Partition?

Apr 8, 2011

I have Ubuntu 10.10 installed on my 80gb hdd, disk has following partitions :

1. /dev/sda1 = /boot (500mb)
2. /dev/sda2 = / (20000mb)
3. /dev/sda3 = linux-swap (2000mb)
4. /dev/sda4 = extended (7000mb)
5. /dev/sda5 = /home (7000mb)
6. unallocated = (40000mb)

how can i use this unallocated space to create an NTFS partition.

View 9 Replies View Related

Ubuntu Installation :: Method To Increase The Size Of The Partion?

Jul 2, 2011

While installing ubuntu alongside windows using wubi, we are allowed to have the hard disk size a maximum of 30 gb. is there some method to increase the size of the partion?

View 2 Replies View Related

Ubuntu Installation :: On Windows 30GB Hardrive Limit?

Feb 14, 2011

Is it possible to increase the size of the Hard drive to 200GB when installing Ubuntu on top of Windows. The Reason I ask it that I have a Laptop with a 500GB Hard drive, which has windows installed on it Obviously I cannot create a new Partition on this drive to do a separate install. 30GB is just to small for what I want to do on Ubuntu, I know I can access the hard drive using /host/* but that is hassle that I do not want.

View 5 Replies View Related

Ubuntu Installation :: Increase Disk Space When Installed From Windows?

Feb 28, 2010

I installed Ubuntu 9.10 from Windows 7 and given 17GB default space for Ubuntu. I installed different programs and ...now I ran out of disk space when I tried to install Oracle XE. I tried GParted from Live CD to allocate the space, but it shows the complete partition as single partition for Windows and Ubuntu of which I could not able to allocate the specific space to Ubuntu.I don't want to reinstall the Ubuntu again as there's a lot of office work has been done.

View 2 Replies View Related

Ubuntu Installation :: Increase Disk Space In / File System?

Apr 8, 2010

i just installed ubuntu 9.10 onto my windows vista laptop. i ran ubuntu update manager but it tells me i'm low on disk space. system monitor tells me that i still have 50.2 GB of space but the problem is that i only have 68 MB left in my / File System. how can i increase disk space in / File System?

View 3 Replies View Related

Fedora Installation :: Possible To Increase Size Of Partition That Is Using LVM?

Jul 2, 2009

Is it possible to increase the size of a partition that is using LVM?I have 5GB of unpartitioned and unallocated space on my disk. I wish to add this to my VG. This free space is physically before the LVM partition.Can I increase the size of the physical partition using pvresize? Or is the only way to to create a new 5GB partition, add it to the VG and allocate it to the LVs? This is not ideal as I wish to minimise the number of partitions I have on the one disk.

View 1 Replies View Related

Fedora Installation :: F12 To Increase Display Resolution?

Apr 13, 2010

Ive just installed Fedora 12, max resolution option is 800*600 can someone advise how i can adjust or improve the resolution to at least 1200*700?Hardware: HP D330m, 2.8GHZ, 700MB RAM, VGA is a Intel Extreme Graphics Display.

View 6 Replies View Related

General :: Command To Check The Java Version: Java -versionand Got :bash :java: Command Not Found?

Jul 26, 2010

I've just installed java (jre-6u21-linux-i586.bin) on Red Hat 4.4 AS and issued this command to check the java version: java -versionand got :bash :java: command not found

View 4 Replies View Related

Ubuntu Installation :: Installing 10.04 Beta 2 \ Way To Increase The Space Allocation To Root?

Apr 15, 2010

Tried installing using update-manager -d and received notification that my root does not have adequate space. Removed most of what I can and I am still short 560 mb or so. Even risking the removal of some questionable items I just don't see freeing up this much space to make it happen.Is there another way to install 10.04?Is there a way to increase the space allocation to root?Stupid question but, can I delete the image file for 2.6.31-20 without affecting the 2.6.31-20 version? Even if I can still not large enough to get to the 560 mb.

View 9 Replies View Related

Ubuntu Installation :: Cannot Increase Monitor Resolution Onboard Graphics Card?

Nov 22, 2010

I know there are many threads on similar issues but I can't find anything that will work. Not sure if I need drivers or what to do - I feel really stupid as I should be able to get this right but I am at a brick wall. Basically I have a 20inch monitor hooked up to the on-board graphics card and cannot get higher resolution than 900 x 600. It should be at 1280 by 1240. This is a brand new install with the latest Ubuntu 10. Under monitor preferences its says 'unknown' for monitor type and I don't have any driver disk for this screen but never needed one previously.

[Code]...

View 1 Replies View Related

Ubuntu Installation :: Windows - Dual Boot / Default Time Limit?

Mar 23, 2011

I was struggling how to phrase the question (in the subject) so let me clarify... I wish to install Windows 2000 and then do Ubuntu, on the same PC. I never had a dual boot before but I understand that it goes automatically (after a short time) to default Windows if Ubuntu is not chosen (on the boot up screen), correct? If so, if there's a "countdown" of sorts, is there a way to disable it? I wish to have control over that aspect, have unlimited time during that boot "choose one" screen.

View 7 Replies View Related

Fedora Installation :: Options Which Will Allow To Exceed The I386 Memory Limit?

Jun 25, 2010

I presently have Fedora 12 running on a Dell Optiplex with a Pentium 4 CPU. I want to buy a new computer, probably from Dell, I don't completely understand the options I have available for which Fedora 13 will run.I more or less understand what 64 bit means since I also have an HP with an AMD 64 bit processor. But are there other options which will allow me to exceed the i386 memory limit? How about dual processors?

I used to understand CPU architecture pretty well, but i've lost track of more recent developments. Can anyone recommend a primer of CPU types, including assoicated memory limits? Similarly, I would like to be sure that Fedora 13 will run on whatever machine I decide to get. So a list of available processors, which are equivalent to which, and which Fedora 13 has been tested on,

View 7 Replies View Related







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