Contribute
Register

UniBeast apfs.efi error

Status
Not open for further replies.
Joined
Apr 14, 2018
Messages
2
CPU
i7 4790
Graphics
gtx 1060
im have trouble partitioning the disk in the terminal
i write everything it said in the thread but when i enter sudo diskutil partitionDisk /dev/disk2 GPT JHFS+Anon R
i get the error Incorrect number of arguments to form valid triplets, or syntax error in arguments preceding triplets can anyone help
 
im have trouble partitioning the disk in the terminal
i write everything it said in the thread but when i enter sudo diskutil partitionDisk /dev/disk2 GPT JHFS+Anon R
i get the error Incorrect number of arguments to form valid triplets, or syntax error in arguments preceding triplets can anyone help

There is a space missing after JHFS+
BAD : sudo diskutil partitionDisk /dev/disk2 GPT JHFS+Anon R
GOOD: sudo diskutil partitionDisk /dev/disk2 GPT JHFS+ Anon R
 
There is a space missing after JHFS+
BAD : sudo diskutil partitionDisk /dev/disk2 GPT JHFS+Anon R
GOOD: sudo diskutil partitionDisk /dev/disk2 GPT JHFS+ Anon R
There is a space in the label as well so the argument needs to be quoted or the space escaped with a backslash.

diskutil erasedisk JHFS+ 'Anon R' /dev/disk2
 
There is a space in the label as well so the argument needs to be quoted or the space escaped with a backslash.

diskutil erasedisk JHFS+ 'Anon R' /dev/disk2

Nope, the R is not part of the volume name (yes syntax is odd)
 
sudo diskutil partitionDisk /dev/disk2 GPT JHFS+ 'Your USB Name' R

if you have spacing when naming the USB use single quotes ' ' just like above.
 
Status
Not open for further replies.
Back
Top