Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)VM

Unofficial VMware Community

Members
88
Posts
2
Active Today
1
Created
2 yr. ago
  • vmware @lemmy.ca
    nixx @lemmy.ca

    Creating a local VMwae software mirror using aac-lib/vsm

    I needed to have a local mirror of VMware software, and logging into my.vmware.com, downloading, and then uploading was becoming tiresome.

    I tried the VMware software solution, but:

    1. Windows only
    2. Borke all the time.

    Then I found this:

    Texiwill/aac-lib

    It needs several packages pre-installed, but it mostly takes care of everything, as of now, it is running on a CentOS machine, the following script is running via cron daily, you will need to git pull acc-lib first.

     undefined
        
    #!/bin/bash
    #
    _USERNAME="my vmware account"
    _PASSWORD="my vmware password"
    
    cd ~aac-lib/vms
    git pull
    
    for _REPO in $(cat ~/vmware-repos.txt) 
    do
      ./vsm.sh -c -y -nc --symlink --fav $_REPO -u $_USERNAME -p $_PASSWORD
    done
      
    
      

    Content of the vmware-repos.txt are similar to this, if you run vsm.sh you will understand the naming convention

     undefined
        
    Datacenter_Cloud_Infrastructure_VMware_Tools_12_x_VMware_Tools
    Datacenter_Cloud_Infrastructure_VMware_vSphere_8_0_Enterprise_Plus
    In
      
  • vmware @lemmy.ca
    nixx @lemmy.ca

    This is just a placeholder

    Hi,

    ExVMW here, just creating this as a place holder in case it is needed

    I will be happy to hand it over to any mods from r/vmware