2015년 8월 12일 수요일

Virtual machine files on ESXi 6.0


A configuration file(.vmx), like a memory, cpu etc.
One or more virtual disk files(.vdmk and -flat.vdmk)
Vmdk files are saved disk information and path etc.
A file containing the virtual machine's BIOS settings(.nvram)
A virtual machine's current log file(.log)
Swap files(.vswp)
A snapshot description file(.vmsd)

A virtual machine template configration file(.vmtx)

Monster Hunter X PV


2015년 8월 10일 월요일

HP DL 380, 360 CPU Types and Specifications


You can use Number of processors 1 or 2 and use maximum 1.5TB Memory.

2015년 7월 20일 월요일

How to connect VPN using Windows7

Click network and sharing center in control panel


Click set up a new connection or network


select connection to a workplace


use my internet connection



Enter your VPN server IP or FQDN


Enter your access ID and passcode, F/W access ID and passcode



After a few minutes you can see vpn network connection in control panel

2015년 7월 14일 화요일

How to reset VMware ESXi Trial

Login to ESXi through SFTP or SSH like Filezilla, putty

Remove the following two files or replace if you have early version files when you installed VMware trial.

/etc/vmware/vmware.lic
/etc/vmware/license.cfg



and Reboot server

2015년 7월 10일 금요일

Restore the Unread Mail folder in Outlook

Restore the Unread Mail folder


The Unread Mail folder is a default Outlook Search Folder. If deleted, you can create it again.
  1. In Mail, on the Folder tab, in the New group, click New Search Folder.
Keyboard shortcut    To create a new Search Folder, press CTRL+SHIFT+P.
  1. In the Reading Mail section, click Unread Mail.
  2. Click OK.

Make Category in Blogger


Setting>layout>add gadget>HTML/JAVAscript

Copy and paste following script and edit red text you want to change categories
you also have to edit your blogger URL


--------------------------------

<div id='category' class='G1s'>



<li class='categoryl2'>
    <a id='category-Microsoft' href='/search/label/Microsoft?max-results=1'>Microsoft</a></li>

<li class='categoryl2'>
    <a id='category-VMware' href='/search/label/VMware?max-results=1'>VMware</a></li>

<li class='categoryl2'>
<a id='category-DailyLife' href='/search/label/DailyLife?max-results=1'>DailyLife</a></li>

<li class='categoryl2'>
<a id='category-Travel' href='/search/label/Travel?max-results=1'>Travel</a></li>

<li class='categoryl2'>
<a id='category-ETC' href='/search/label/ETC?max-results=1'>ETC</a></li>

<script>
 function Category(id, label, name){
  this.a = document.getElementById(id);
  this.label = label;

  var script = document.createElement('script');
  script.type = 'text/javascript';
  script.charset = 'utf-8';
  script.src = home + '/feeds/posts/summary/-/' + label + '?max-results=1&alt=json-in-script&callback=' + name +'.pong';
  document.getElementsByTagName('head')[0].appendChild(script);
 
  this.pong = function(cfeed){
   var cnt = cfeed.feed.openSearch$totalResults.$t;
   this.a.innerHTML = this.a.innerHTML + '(' + cnt + ')';
  };
 }

 var home = 'http://doublegoldentooth.blogspot.kr/';

var Microsoft = new Category('category-Microsoft','Microsoft','Microsoft');

var VMware = new Category('category-VMware','VMware','VMware');

var DailyLife = new Category('category-DailyLife','DailyLife','DailyLife');
var Travel= new Category('category-Travel','Travel','Travel');
var ETC= new Category('category-ETC','ETC','ETC');


</script></div>

-------------------------------------