Answer the question
In order to leave comments, you need to log in
Should I install Win Ser 2012 on bare metal or on VMWare?
There is Dell PE R210-II (Xeon E3-1240V2, 2x2TB SATA 7200 (combined in raid 1), RAM 4 GB). Introduced as storage for the "My Documents" folder of 60 AD 2003 users (terminal server and AD server are two other machines). That is, Dell's task is only to store (well, process) user files.
I can’t decide: put Windows on bare metal or still install VMWare ESXi and roll Windows onto it, allocating 2GB of RAM to it, and leave the rest of the memory for deployment in the future of some other virtual machine that does not require a lot of resources.
How much, in general, does the performance of a virtual machine on VMWare fall on average, compared to the same machine, but on bare metal?
Answer the question
In order to leave comments, you need to log in
Do it by analogy
<?
///***Developed by invisible ICQ: 7773296 ***///
///Настройки скрипта
$tok = '00000000000000000000000000000000000'; ///Токен
$myid = '0000000'; ///Мой ID
$myidgr = '0000000'; ///ID или домен группы - паблика
$imga = 'http://milylibka.ru/wp-content/gallery/svidaniya/azov_tandem_yo.jpg'; ///Картинка для постинга
///Получаем разрешение на загрузку картинки Вконтакте
$dl = file_get_contents("https://api.vk.com/method/photos.getWallUploadServer?group_id=$myidgr&access_token=$tok");
$dl = json_decode($dl); ///Декодируем json
$dl = $dl->response->upload_url; ///Получаем ссылку загрузки от Вконтакте
$file = new CURLFile(realpath("$imga")); ///Загружаем картинку
$ch = curl_init($dl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, array(
'photo' => $file
));
$data = curl_exec($ch);
curl_close($ch);
///Получаем данные для сохранения картинки
$fot = $data; ///Получаем данные из массива
$fot = json_decode($data); ///Декодируем json
$fot = $fot->photo; ///Получаем данные из массива
$hash = json_decode($data); ///Декодируем json
$hash = $hash->hash; ///Получаем данные из массива
$serv = json_decode($data); ///Декодируем json
$serv = $serv->server; ///Получаем данные из массива
///Сохраняем фото на сервер Вконтакте
$result = file_get_contents("https://api.vk.com/method/photos.saveWallPhoto?group_id=$myidgr&hash=$hash&server=$serv&photo=$fot&access_token=$tok");
$fok = json_decode($result); ///Декодируем json
$fok = $fok->response->id; ///Получаем данные из массива
///Вырезаем данные из информации после сохранения на сервер (Использовать если не работает переменная $result)
$fok = substr($result, strpos($result,'"id":"')+6, strlen($result)); ///Отрезаем начало до photo
///Создаем сообщение на стену
$result1 = file_get_contents("https://api.vk.com/method/wall.post?owner_id=-$myidgr&attachments=$fok&access_token=$tok"); ///Ставим "-" перед перемнной $myidgr если выкладываем на стену сообщества
///***Developed by invisible ICQ: 7773296 ***///
?>
The drop in performance for VMWare is about 5% (but this is my IMHO, and my own observations). Slightly worse for XEN. The fall is strongly felt when using HV.
It all depends on what component what load. If memory and percent are given to the virtual machine with practically no overhead, then here is the network and, worse, the disks are given through a tangible layer.
It is more difficult to administer a "clean" server if there is no IPMI \ iLo nearby. Well, you don’t have enough memory to directly “have fun” with virtualization. I don't think the game is worth the candle.
I recommend the free absolutely hyper-v server 2012r2. Without gui, but Windows on Windows virtualization works much better. The image can be found in msdn, the installation is familiar. Admin via powershell. The beauty.
Unless other versions of guest OSes are planned, of course. Although Linux already feels quite good on hyper vi.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question