I hereby claim:
- I am vg on github.
- I am vg (https://keybase.io/vg) on keybase.
- I have a public key whose fingerprint is 39F7 322E 8F6E CB19 5723 7E30 38FA 2F16 93E2 777B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
There aren't many tutorials about this, the only tutorials I've found were about passing through entire PCIe cards to VMs, or refered to old ESXI versions (below 6.5) that used a more comprehensive desktop client instead of the web app. In v6.5, the web app was introduced and the desktop client was deprecated. You used to be able to setup RDMs in the desktop client, but with the introduction of the web console, this is no longer the case. This tutorial shows you how to pass SATA HDDs to the virtual machine on VMWare ESXI 6.5. This tutorial is partially based on VMWare's own KB and the now deprecated Forza IT blog post.
We attach the SATA HDDs as a RDM (Raw Device Mapper) into an existing virtual disk in the command line, then on the web app
| |=-----------------------------------------------------------------------=| | |
| |=----------------------------=[ BootChess ]=----------------------------=| | |
| |=-----------------------------------------------------------------------=| | |
| |=------------------------=[ by Baudsurfer/rsi ]=------------------------=| | |
| |=-----------------------------------------------------------------------=| | |
| 1 - Introduction | |
| 1.1 - Why make tiny programs ? | |
| 1.2 - Proving know-how remains valued | 
| #!/bin/bash | |
| # | |
| # Credits to fuckbecauseican5 from https://www.reddit.com/r/hackintosh/comments/4s561a/macos_sierra_16a238m_install_success_and_guide/ | |
| # Adapted to work with the official image available into Mac App Store | |
| # | |
| # Enjoy! | |
| hdiutil attach /Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app | |
| hdiutil create -o /tmp/Sierra.cdr -size 7316m -layout SPUD -fs HFS+J | |
| hdiutil attach /tmp/Sierra.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/install_build | 
| #!/usr/bin/env python | |
| from __future__ import print_function | |
| import json | |
| import logging | |
| from urllib2 import Request, urlopen, URLError, HTTPError | |
| from base64 import b64decode | 
| keystone | |
| -------- | |
| keystone tenant-list | |
| openstack project list | |
| keystone tenant-create --name <tenant-name> --description <tenant-desc> --enabled true | |
| openstack project create <project-name> --description <project-desc> --enable | |
| keystone user-create --name <user-name> --tenant <tenant-name> --pass <user-password> --email <user-email> --enabled true | 
I hereby claim:
To claim this, I am signing this object:
| main(argc, argv) | |
| int argc; | |
| char *argv[]; | |
| { | |
| int i; | |
| argc--; | |
| for(i=1; i<=argc; i++) | |
| printf("%s%c", argv[i], i==argc? '\n': ' '); | |
| } |