<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.7.1" -->
<rss version="0.92">
<channel>
	<title>Technoblog.org</title>
	<link>http://technoblog.org</link>
	<description>Technoblogging</description>
	<lastBuildDate>Fri, 03 Jul 2009 08:13:11 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Configure apt-get to use a proxy (Ubuntu)</title>
		<description>Open the following configuration file: /etc/apt/apt.conf.d/70debconf

And add:
Acquire::http::proxy "http://&#60;IP_TO_PROXY&#62;:&#60;Proxy_Port_WEB&#62;";
Acquire::ftp::proxy "ftp://&#60;IP_TO_PROXY&#62;:&#60;Proxy_Port_FTP&#62;";

If authentication is required, add this instead

Acquire::http::proxy "http://&#60;username&#62;:&#60;password&#62;@&#60;IP_TO_PROXY&#62;:&#60;Proxy_Port_WEB&#62;";
Acquire::ftp::proxy "ftp://&#60;username&#62;:&#60;password&#62;@&#60;IP_TO_PROXY&#62;:&#60;Proxy_Port_FTP&#62;";

&#60;IP_TO_PROXY&#62; = The IP address of the proxy, e.g.: 192.168.1.10
&#60;Proxy_Port_WEB&#62; = The proxy web port, e.g.: 8080
&#60;Proxy_Port_FTP&#62; = The proxy ftp port, e.g.: 2121

If authentication:
&#60;username&#62; and &#60;password&#62; (doh, no need to explain).

Done! </description>
		<link>http://technoblog.org/2009/07/configure-apt-get-to-use-a-proxy-ubuntu/</link>
			</item>
	<item>
		<title>Windows 7 RC1 and Trend Micro OfficeScan 10</title>
		<description>Don't try it. It will install. But it slows the system down. Really, it took me 25 minuts to log in. 10 minuts to just write the password.

I will try to find a workaround and share it. If anyone finds a solution, feel free to leave a commen! </description>
		<link>http://technoblog.org/2009/05/windows-7-rc1-and-trend-micro-officescan-10/</link>
			</item>
	<item>
		<title>Trend Micro Product Documentation</title>
		<description>A collection of links to Trend Micro Product documentation for the following products:

Trend Micro Control Manager 5.0 (TMCM 5.0)
Trend Micro OfficeScan 8.0 (OSCE 8.0)
InterScan Mail Security Suite 7.0 (IMSS 7.0)
InterScan Mail Security Virtual Appliance 7.0 (IMSVA 7.0)
InterScan Web Security Suite 3.1 (IWSS 3.1)
InterScan Web Security Virtual Appliance 3.1 (IWSVA 3.1)
ScanMail ...</description>
		<link>http://technoblog.org/2009/05/trend-micro-product-documentation/</link>
			</item>
	<item>
		<title>Howto: Reset password Trend Micro Control Manager 5.0</title>
		<description>Forgot the password to you root/admin account to Trend Micro Control Manager 5.0 (TMCM)?

How to reset the password to one of your Trend Micro Control Manager 5.0 accounts:

1. Stop the TMCM services:
2. Launch the SQL Server manager of choice.
3. Open the "tb_Account" table of your Trend Micro Control Manager database.
4. ...</description>
		<link>http://technoblog.org/2009/04/howto-reset-password-trend-micro-control-manager-50/</link>
			</item>
	<item>
		<title>How to restart the management service in VMware ESX 3.5</title>
		<description>How to restart the management on a VMware ESX 3.5:
SSH to the vmware-esx box and do a:
sudo service mgmt-vmware stop
sudo service mgmt-vmware start
or a:
service mgmt-vmware restart

or as root just:
service mgmt-vmware stop
service mgmt-vmware start
or:
service mgmt-vmware restart

This would be the solution if you can't connect to the box using VMware Infrastructure Client, ...</description>
		<link>http://technoblog.org/2009/04/how-to-restart-the-management-service-vmware-esx-35/</link>
			</item>
	<item>
		<title>How to kill a stuck or hung VM (VMware ESX 3.5)</title>
		<description>There are many different ways to kill a stuck or hung VM, but for now, I will present two alternatives.

First try to run:
vmware-cmd /vmfs/volumes/&#60;name_of_datastorage&#62;/&#60;vmname&#62;/&#60;vmname&#62;.vmx stop hard

If this for some reasons doesnt work (like me accidentaly deleting the .vmx file), you can try the
following:

1. Run the following command (to get a ...</description>
		<link>http://technoblog.org/2009/01/how-to-kill-a-stuck-or-hung-vm-vmware-esx-35/</link>
			</item>
	<item>
		<title>ESX 3.x and ESXi 3.x command line guide</title>
		<description>While googling around for some documentation of some ESX specific commands, I discovered this command line reference guide for ESX 3.x and ESXi 3.x , written by B2V.

Its worth taking a look at. </description>
		<link>http://technoblog.org/2009/01/esx-3x-and-esxi-3x-command-line-guide/</link>
			</item>
	<item>
		<title>Howto: enable ssh on ESXi 3.5</title>
		<description>By default, ssh access is disabled on VMware ESXi 3.5, so how do i enable ssh on VMware ESXi 3.5?

First, get shell access on the console: Howto: ESXi shell access

Then:

1. Type "vi /etc/inetd.conf" and press "enter".

2. Locate the line that starts with "#ssh     stream  tcp     nowait  root    /sbin/dropbearmulti......."

3. Move the ...</description>
		<link>http://technoblog.org/2008/10/howto-enable-ssh-on-esxi-35/</link>
			</item>
	<item>
		<title>VMware releases patches</title>
		<description>VMWare just released new patches for VMware ACE, Player, Server and Workstation. The new versions are VMware ACE 2.0.5, VMware Player 2.0.5, VMware Server 1.0.7 and VMware Workstation 6.0.5.

They are trying to patch 3 security issues in VMware Ace, Player and Workstation, and 4 other security issues in VMware server. ...</description>
		<link>http://technoblog.org/2008/09/vmware-releases-patches/</link>
			</item>
	<item>
		<title>Howto: ESXi shell access</title>
		<description>How to get shell access to your VMWare ESXi server?
By default the VMWare ESXi server don't offer shell access (through the menu).
But by doing the following, you will be able to access the shell (although its limited):

1. Hook up a screen and a keyboard to the VMWae ESXi server.
2. Press ...</description>
		<link>http://technoblog.org/2008/08/howto-esxi-shell-access/</link>
			</item>
</channel>
</rss>
