I am trying to create a virtual disk:
vmkfstools –c 100G –d eagerzeroedthick –a lsilogic xyz.vmdkI tried to execute this command inside xyz folder of data center (on a ESXI server). It keeps raising error and shows me help:
"Extra arguments at the end of the command line."Any idea, what am I doing wrong? Is there any alternative to vmkfstools tool that I can use? Thanks in advance!
1 Answer
The problem is due to the "–" characters which are not ASCII dashes (decimal 45):
$ printf "%d\n" "'-" 45This may happen when you copy commands from e.g. a blog post.