2010 July

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?

Firefox | Loading Throbber Nr. 1

By WladyX on | Firefox, Link, Style | A comment?

Gitso

Gitso is a frontend to reverse VNC connections. It is meant to be a simple two-step process that connects one person to another’s screen. First, the support person offers to give support. Second, the person who needs help connects and has their screen remotely visible. Because Gitso is cross-platform (Linux, OS X and Windows) and uses a reverse VNC connection, it greatly simplifies the process of getting support.

link

By WladyX on 8 July, 2010 | Cool Apps, Link | A comment?

Roundcube postfixadmin password

# grep password roundcubemail/config/main.inc.php
$rcmail_config['plugins'] = array('password');


# vim roundcubemail/plugins/password/config.inc.php
$rcmail_config['password_db_dsn'] = 'mysql://postfixadmin:passw0rd@localhost/postfix';
$rcmail_config['password_query'] = 'UPDATE mailbox SET password=%c WHERE username=%u';

source

By WladyX on | Mail | 1 comment

Tab Mix Plus Progressbar: Strip At Top

By WladyX on 7 July, 2010 | Firefox, Link, Style | A comment?

MySQL Cheat Sheet

By WladyX on | General | A comment?

How to speed up boot of Ubuntu 10.04 Lucid Lynx

sudo gedit /etc/default/grub
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release  -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet profile"
GRUB_CMDLINE_LINUX=""

sudo update-grub2

Now edit the grub once again and remove the word profile  that we added. Update grub(sudo update-grub2) and then reboot.

source
By WladyX on 6 July, 2010 | Ubuntu | 1 comment

Ubuntu Automatic Updates

sudo apt-get install unattended-upgrades update-notifier-common

/etc/apt/apt.conf.d/50unattended-upgrades:

Unattended-Upgrade::Allowed-Origins {
"Ubuntu lucid-security";
// "Ubuntu lucid-updates";
};

/etc/apt/apt.conf.d/10periodic:

APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Download-Upgradeable-Packages "1";
APT::Periodic::AutocleanInterval "7";
APT::Periodic::Unattended-Upgrade "1";

Also check:

cat /etc/apt/apt.conf.d/20auto-upgrades
APT::Periodic::Update-Package-Lists “1″;
APT::Periodic::Unattended-Upgrade “1″;

log: /var/log/unattended-upgrades
source

By WladyX on 2 July, 2010 | Scripts, Security, Ubuntu | A comment?