sudo gedit /etc/vmware/config
and add this line
xkeymap.nokeycodeMap = true
You will need to close down vmware and restart to make the change take effect
sudo gedit /etc/vmware/config
xkeymap.nokeycodeMap = true
If you have your own domain then it is probably better to use sendmail to send mails direct rather than relaying mail via the Big G
sudo apt-get remove sendmail
sudo apt-get install ssmtp mailutils
sudo vi /etc/ssmtp/ssmtp.conf
mailhub = smtp.gmail.com:587
rewritedomain = tuxnetworks.com
AuthUser=myusername@gmail.com
AuthPass=mypassword
UseSTARTTLS=YES
UseTLS=YES
You should replace "tuxnetworks.com" with your own domain as well as provide the details for your GMail account. Using 'myusername' and 'mypassword' is a recipe for FAIL
mail -s "test config" myusername@gmail.com
tail -f /var/log/mail.log
#
# Config file for sSMTP sendmail
#
# The person who gets all mail for userids < 1000
# Make this empty to disable rewriting.
root=postmaster
AuthUser=myusername@gmail.com
AuthPass=mypassword
UseSTARTTLS=YES
UseTLS=YES
# place where the mail goes. The actual machine name is required no
# MX records are consulted. Commonly mailhosts are named mail.domain.com
mailhub=smtp.gmail.com
# Where will the mail seem to come from?
rewriteDomain=tuxnetworks.com
# The full hostname
hostname=myserver.tuxnetworks.com
# Are users allowed to set their own From: address?
# YES - Allow the user to specify their own From: address
# NO - Use the system generated From: address
FromLineOverride=yes
sudo vi /etc/udev/rules.d/70-persistent-net.rules
# PCI device 0x14e4:0x1659 (r8169)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:1c:c0:db:32:e7", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
case $TERM in
(xterm*)
PROMPT_COMMAND='echo -ne "\033]0;${USER}($(id -ng))@${HOSTNAME}:
${PWD}\007"'
;;
esac