#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
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.
# 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';
sudo gedit /etc/default/grubGRUB_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-grub2Now edit the grub once again and remove the word profile that we added. Update grub(sudo update-grub2) and then reboot. source
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