General

Auto Update WordPress Without FTP

upgrade plugins without ftp credentials.

wp-config.php:
define('FS_METHOD','direct');

By WladyX on 27 August, 2010 | Apache, General, Wordpress | A comment?

SSH Port Forwarding

ssh -L 8888:www.linuxhorizon.ro:80 user@computer -N

   +----------+<--port 22-->+----------+<--port 80-->o-----------+
   |SSH Client|-------------|ssh_server|-------------|   host    |
   +----------+             +----------+             o-----------+
  localhost:8888              computer      www.linuxhorizon.ro:80

other example:
ssh -R 28:10.10.10.8:25 -R 29:10.10.10.1:25 root@server.ro -N

source1 source2

Check your Laptop Battery status from the command line

acpi

source

By WladyX on 25 August, 2010 | General | A comment?

How to set an automatic mechanical watch

Smplayer sub settings

By WladyX on 2 August, 2010 | General, Style | A comment?

HP-UX NFS mount

#showmount -e server -> To know the filesystem exported by that server and to whom.
#showmount -a server -> To list the clients currently mounted the exported filesystem.
mount -F nfs server:/exp_imp/exp/bdd1 /mnt/bdd1

link1 link2

By WladyX on 9 July, 2010 | General, HP-UX | A comment?

MySQL Cheat Sheet

By WladyX on 7 July, 2010 | General | A comment?

How to Remove left Sidebar in Google search

By WladyX on 14 May, 2010 | Firefox, General, Link | A comment?

How To Select The Splash Screen in Ubuntu Lucid

sudo update-alternatives --config default.plymouth

source

By WladyX on 7 May, 2010 | General, Style, Ubuntu | A comment?

extract multiple archives in different folders

#!/bin/bash

for i in $(find $(pwd) -name '*.rar')
do
cd $(dirname $i)
unrar e $i
done

source