mount the VMWare tools CDROM
rpm -ivh /mnt/VMwareTools-*.i386.rpm
vmware-config-tools.pl
or like this
mount -t cifs //192.168.1.67/E/Tunes /mp3/flx -o user=Guest,pass=smb
yum whatprovides libstdc++.so.5
yum install compat-libstdc++-33
dpkg-reconfigure dash and select No
apt-get install rpm gawk libstdc++5
For 64-bit Ubuntu:
Download it from here: http://ppa.launchpad.net/jason-scheunemann/ppa/ubuntu/pool/main/lib3/lib32stdc++5/
OR
/etc/apt/sources.list:
deb http://ppa.launchpad.net/jason-scheunemann/ppa/ubuntu lucid main
deb-src http://ppa.launchpad.net/jason-scheunemann/ppa/ubuntu lucid main
sudo wget -q 'http://keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0x932062C9CD30EE56' -O - | sudo apt-key add -
key:
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: SKS 1.0.10
mI0ESiwJ/gEEAKwjPnTYY8xmGcxb5RuhZUE4U9QS8lOX333zpaf1pnvQ0kTFtJ9BTwgBBDgf
Q3DGYQeDlDuhRI7e9I9J1Lg0B6Vq8QnM58FyuyEA/Ft4iZ2LDiiuCHu8q3rhu8u/nxD9oAO5
1dO2WWl/SNiH7ka4/mNpNoWj2cGv39CB7l7HbiX/ABEBAAG0GkxhdW5jaHBhZCBQUEEgZm9y
IGZseWd1eTk3iLYEEwECACAFAkosCf4CGwMGCwkIBwMCBBUCCAMEFgIDAQIeAQIXgAAKCRCT
IGLJzTDuVttDA/0SFhtddgR2ybUhZ0GEskX5FDGJUe2yYP6MV/MgNTIs5RGco3oVTZMvG8mT
gOAAa+q32fWvyfXJ7M7zdWMkd+2s/Zr16OGZeLocro3YKPZRXL3TBlHfr7QVtdh3Tu09QCIi
qBBIrM9o4Mukdkb2aXvnBcvJxWCLPGRcnbjPAWaR4A==
=8CQP
—–END PGP PUBLIC KEY BLOCK—–
sudo apt-get update&&sudo apt-get install lib32stdc++5
For 32bit:
wget http://ftp.wxs.ro/wladyx/libstdc++5_3.3.6-20_i386.deb
If you need storage for your VMs larger than 256GB, you have to removed (delete) your datastore, then re-add it with a larger block size. Keep in mind that deleting a datastore will delete any data on that datatstore as well, so if you have VMs, etc. on it you’ll need to migrate them off the datatsore.
1MB = 256GB
2MB = 512GB
4MB = 1TB
8MB = 2TB
sudo add-apt-repository ppa:tiheum/equinox
sudo apt-get update
sudo apt-get install gtk2-engines-equinox equinox-theme
zmtlsctl [mode]
http – http only, the user would browse to http://zimbra.domain.com
https – https only, the user would browse to https://zimbra.domain.com http:// is denied.
both – A user can go to http:// or https:// and will keep that mode for their entire session.
mixed – If the user goes to http:// it will switch to https:// for the login only, then will revert to http:// for normal session traffic. If they browse to https:// then they will stay https://
redirect – Like mixed if the user goes to http:// it will switch to https:// but they will stay https:// for their entire session.
sudo update-alternatives --config x-cursor-theme
sudo add-apt-repository ppa:sevenmachines/flash
sudo apt-get update
sudo apt-get install flashplugin64-installer
Gentoo:
create a self-signed private certificat /etc/ssl/private/pure-ftpd.pem:
mkdir -p /etc/ssl/private
openssl req -x509 -nodes -newkey rsa:1024 -keyout /etc/ssl/private/pure-ftpd.pem -out /etc/ssl/private/pure-ftpd.pem
/etc/conf.d/pure-ftpd:
MISC_OTHER="-Y 2"
“-Y 0″, support for SSL/TLS is disabled. This is the default.
“-Y 1″, clients can connect either the traditional way or through an SSL/TLS layer.
“-Y 2″, cleartext sessions are refused and only SSL/TLS compatible clients are accepted
Ubuntu:
echo 1 > /etc/pure-ftpd/conf/TLS
mkdir -p /etc/ssl/private/
openssl req -x509 -nodes -days 7300 -newkey rsa:2048 -keyout /etc/ssl/private/pure-ftpd.pem -out /etc/ssl/private/pure-ftpd.pem
StartSSL cert:
cd
wget http://www.startssl.com/certs/ca.pem
wget http://www.startssl.com/certs/sub.class1.server.ca.pem
cat www.key www.crt sub.class2.server.ca.pem ca.pem > /etc/ssl/private/pure-ftpd.pem