Let me explain what I want to do first since the title might be misleading.
I want to launch a GUI on my local environment that belongs to a remove server.
For example, there are times on which it’s easier changing a setting via a GUI rather than the command line.
An easy way to achieve this safe[……]
Load LVM partition manually
Sometimes you have to load a LV (logic volume) that is “not part of the main file system”.
Other times you might have to mount a LV from a live CD, maybe to recover some data or a system that is not booting anymore (which is my case right now).
In both cases it needs to be done manually.
Instal[……]
IDE Netbeans 7.0 is out: PHP, Java SE/EE and C/C++
Netbeans 7 is out. I’ve been using it for PHP, at work as well as at home, for almost two years and I have to say that it has become by far my favourite PHP IDE.
The Netbeans IDE is a project started in 1996 for Java. PHP support started since version 6.5 (late 2008). Since then, version after ve[……]
Linux: How to forward system emails
Every time Linux generates a system email it sends it to the root user.
I don’t normally check that email so I needed to send it to another email address.
The simplest way I found to do this is creating a hidden file called “.forward” in /root/ and add my email address to it. Nothing else!
If y[……]
Mediawiki: disable account creation
When you install MediaWiki it allows new accounts creation out of the box.
This is not always the behaviour I want. Unfortunately there isn’t an option to disable it from the classic menu “my preferences”.
In fact, to disable it, a line of code needs to be added in the configuration file “LocalS[……]
How to configure sendmail as a SMART HOST
Sometimes I need to test the email functionality of a php website on my local machine. The best and easiest (to configure) way I found so far is using sendmail as smart host.
A smart host is a software which allows an SMTP server to route email to an intermediate mail server rather than directly to[……]
How to install “as many Operating Systems as you want” in one machine
Do you often have the need, or want the pleasure, to try a new operating system?
Do you prefer using a “real machine” rather than creating a virtual one (like VMware or Virtualbox for instance)?
Have you got a spare machine for this purpose?
Ok, if you responded “Yes” to all the above, please rea[……]
How to ssh to a server without password
Connecting to a Linux box with an algorithm for public-key cryptography like RSA is, firstly, more secure and, secondly, more convenient.
More secure because, as the Ubuntu documentation sais: “Key-based authentication is the most secure of several modes of authentication usable with OpenSSH, suc[……]
How to create a simple WordPress Child Theme
There is a right and wrong way of editing a WordPress theme. If you modify the original one, every time there is an update all your changes will be lost. Yes, you guessed it. This is the wrong way!
Since WordPress 3.0 child themes are extremely easy to implement.
What are child themes?
As Wordp[……]
Sharing Internet connection trough an ethernet card with Ubuntu
If you have more than one network card (eg: wireless and ethernet like in a normal laptop) you can decide to share your Internet connection with another computer via the ethernet cable.
“When should I need such a thing?” you say. I know, I know… let me explain. :-)
For example the other day I[……]