Confirm that the module is not installed in the admin panel remove traces of the module from the config table. SELECT * FROM ycsoftware.config where name like '%button%' Remove the files from the modules folder
Unhide the Library Folder MacOS
This will unhide the library folder for user ycsoftware.
chflags nohidden /Users/ycsoftware/Library
List of all Visual Foxpro file extensions
Move or change the permissions of all files including hidden files in Bash
shopt manual :
dotglob
If set, Bash includes filenames beginning with a ‘.’ in the results of filename expansion.
Step 1
Run this command first
shopt -s dotglob
Step 2
Run your command
mv * /newlocation
REFERENCE
http://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html
Failed to Deploy OVF package: The task was canceled by a user
Step 1
Open the ovf file in notepad
Step 2
Remove the CD-ROM item lines from the ovf file. For some reason, the CD-ROM directives are the ones causing the issue.
You can always add a new CD-ROM after the machine is created.
I do not quite have time to find out the real problem but when i do, i will go back and edit this post.
<Item ovf:required="false"> <rasd:AddressOnParent>0</rasd:AddressOnParent> <rasd:AutomaticAllocation>false</rasd:AutomaticAllocation> <rasd:ElementName>CD-ROM 1</rasd:ElementName> <rasd:InstanceID>9</rasd:InstanceID> <rasd:Parent>4</rasd:Parent> <rasd:ResourceSubType>vmware.cdrom.iso</rasd:ResourceSubType> <rasd:ResourceType>15</rasd:ResourceType> <vmw:Config ovf:required="false" vmw:key="connectable.allowGuestControl" vmw:value="true" /> </Item>
Step 3
Also remove the .mf file. This file is used for integrity check.
Step 4
Now you should be able to deploy your OVF file.

