<div dir="ltr">Recently we got some error say 'pvcreate: command not found error' in our init script. Turns out to be the pvcreate, and other commands like vgcreate, are just sym links to the command 'lvm'. <br>And the symlink at the init script phase are not available yet. <br><br>Actually, pvcreate, pvremove, lvdisplay, pvdisplay are all just symlinks to lvm. <br>seems it directly links to a subcommand, <br>such as 'pvcreate' is equivalent to 'lvm pvcreate'.<br><br>Is there documentation about how these symlinks works? such as how they are generated etc. Like a link to the source repo,<br><br>is it safe to replace pvcreate with 'lvm pvcreate' in my script?</div>