Eclipse & SVN on Linux : How to add files to ignore list automatically

First of all you need to create a new file on the root of the project with the list of file to ignore like the following (this is a typical list of file that we need to exclude from an Eclipse project) target target/** bin bin/** .classpath .project .settings and after on the console (shell) [...]

Opening ports using iptables

To open a port by using iptables you can use the iptables command, assume for example that you want to open port 25, you have to issue on the shell the following command iptables -I INPUT -p tcp –dport 25 -j ACCEPT where -I instruct to not add the rulle after the deny all rule [...]

Continue to run script even when closing a remote shell

When you run a remote shell (for example putty) and you start a remote cli program (e.g. tomcat, servicedesk, jboss and so on) when you close the remote shell normally they would terminate. To avoid this situation you can try to run the program in background (adding & at the end of the command or [...]

How to mount LVM partition on Ubuntu

Mounting is an easy process to do, provided the filesystem type you are using is supported. What happen when you have an LVM formatted disk, and you need to mount it because the disk cannot be booted and a hell lot of valuable data kept inside?? Do not worry, because the solution is here……. 1. [...]

How to generate an SSH key on Windows using PuTTY?

You can generate an SSH key on Windows using the PuTTY SSH client. You can download PuTTY for free from this URL. To generate a key with PuTTY, you should: 1. Download and start the puttygen.exe generator. 2. In the “Parameters” section choose SSH2 DSA (if your server uses RSA you have to choose SSH2 [...]

Follow

Get every new post delivered to your Inbox.