Search found 193 matches

by KermitDaFragger
2013/04/07 23:17:05
Forum: CentOS 6 - General Support
Topic: RSS memory not tallying with Java Heap
Replies: 5
Views: 1167

RSS memory not tallying with Java Heap

Like TrevorH said the RSS of the JVM process is not going to be the size of the heap because the heap is just the amount of memory available for Java objects. Also the JVM might not return the memory to the system (which the GC reclaimed) if it sees the application keeps requesting memory for new ob...
by KermitDaFragger
2013/02/17 20:14:15
Forum: CentOS 6 - Software Support
Topic: How To Improve Java App's Font Rendering?
Replies: 3
Views: 1143

How To Improve Java App's Font Rendering?

Thats kinda weird since as you state yourself RSSOwl uses SWT which is just a (thin) Java layer around GTK. I'm running Eclipse on CentOS 6.3 and my font rendering is the same as on Fedora 17. Since RSSOwl is also based on the Eclipse platform that makes it even weirder. Maybe RSSOwl uses an older S...
by KermitDaFragger
2013/02/17 20:08:19
Forum: CentOS 6 - Security Support
Topic: GUI Login Warning Banner
Replies: 3
Views: 7307

GUI Login Warning Banner

The program which (by default) displays the GUI login is called GDM (Gnome Display Manager). Knowing what it is called should make your search easier :-) . You can find various instructions on the net how to do it. Here for example: http://www.cyberciti.biz/tips/howto-unix-linux-change-gnome-login-b...
by KermitDaFragger
2012/08/25 10:06:20
Forum: CentOS 6 - General Support
Topic: How do I change freenx username?
Replies: 2
Views: 550

How do I change freenx username?

What are you trying to accomplish ? FreeNX doesn't do any authentication by itself by default; Thats all done by PAM (unless you disabled PAM support).

EDIT: Just realized something...
by KermitDaFragger
2012/08/21 21:12:32
Forum: CentOS 6 - Security Support
Topic: Anyone can recommend good Stronswan tutorial?
Replies: 2
Views: 2989

Re: Anyone can recommend good Stronswan tutorial?

The StrongSwan testcases provide hundreds of ready to use examples: [url=http://www.strongswan.org/uml-testresults.html]strongSwan UML Tests[/url]. Just click on the type of setup you want an example of. For example ikev2 -> rw-cert to get all configuration files for an IKEv2 Roadwarrior setup which...
by KermitDaFragger
2012/08/21 21:05:11
Forum: CentOS 6 - General Support
Topic: How do I backup entire system
Replies: 6
Views: 9592

Re: How do I backup entire system

Making snapshots and backups with LVM is described [url=http://tldp.org/HOWTO/LVM-HOWTO/snapshots_backup.html]here[/url]. Backuping VM's by LVM snapshots is a good option. Altough it depends on what is running inside those VM's. Backuping DB's via snapshot is probably a bad idea (unless you use some...
by KermitDaFragger
2012/08/19 19:59:31
Forum: CentOS 6 - General Support
Topic: How do I backup entire system
Replies: 6
Views: 9592

Re: How do I backup entire system

Well you could make a snapshot with LVM and make a copy of that. Just make sure that stuff like /proc /sys /tmp and /var/tmp aren't backupped. However I would advise against copying everything for the following reasons: 1. Databases (PostgreSQL / MySQL) etc. will probably have to be shut down (or in...
by KermitDaFragger
2012/08/18 09:51:45
Forum: CentOS 6 - Security Support
Topic: Selinux and CVS-Server has sec access problems
Replies: 2
Views: 3249

Selinux and CVS-Server has sec access problems

Have you checked the SELinux log file "/var/log/audit/audit.log" to determine if and why SELinux blocks access to that file ?
by KermitDaFragger
2012/08/18 09:49:17
Forum: CentOS 6 - Networking Support
Topic: Two servers on the same network can't ping each other
Replies: 2
Views: 3521

Two servers on the same network can't ping each other

If you remove all the relevant information out of your post its going to be hard for us to help you :-) Please provide the (unredacted) output of "route -n", "arp -n", "brctl show" and "ifconfig". If those only contain private IP addresses (172.16, 192.168, etc.) there is not much point in obscuring...
by KermitDaFragger
2012/08/18 09:43:05
Forum: CentOS 5 - General Support
Topic: How much resourched does "ip_forward" takes?
Replies: 2
Views: 494

How much resourched does "ip_forward" takes?

[quote] I want to reroute certain IP's to a different server. [/quote] Do you really mean entire IP's or do you mean specific ports of certain IP's ? If you want to "hijack" a couple of ports from certain IP's then you could forward them. However I would advise doing this on a central firewall / rou...