- Right-click the virtual machine for which you want to enable the disk UUID attribute, and select Power > Power Off. Wait for the virtual machine to power off
- Right-click the virtual machine, and click Edit Settings.
- Click the Options tab, and select the General entry in the settings column.
- Click Configuration Parameters. The Configuration Parameters window appears.
- Click Add Row.
- In the Name column, enter
disk.EnableUUID. - In the Value column, enter
TRUE.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Get files from Google Drive | |
| # Source: https://stackoverflow.com/a/50573452/2382312 | |
| # Usage: download_gdrive FILE_ID DESTINATION_PATH | |
| # $1 = file ID | |
| # $2 = file name | |
| URL="https://drive.google.com/uc?export=download&id=$1" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html><title>Find Location of an IP</title> | |
| <body><font face=\"Arial\"> | |
| <H1>Please provide an IP or a LOCATION :</H1> | |
| <p>Search Location, DS site code, Country, Network types or Comments</p> | |
| <form method=\"GET\" action=\"launch_search_IP.pl\"> | |
| <p> <input name=\"ip_to_search\" width=\"100%\" height=\"100%\" ></p> | |
| <input type=\"submit\" value=\"Search\"></form> | |
| <p> Here are results for your search of <b> 192.168.0.1 </b> : | |
| <br> | |
| <br> |
DB
ovs-vsctl list open_vswitch
ovs-vsctl list interface
ovs-vsctl list interface vxlan-ac000344
ovs-vsctl --columns=options list interface vxlan-ac000344
ovs-vsctl --columns=ofport,name list Interface
ovs-vsctl --columns=ofport,name --format=table list Interface
ovs-vsctl -f csv --no-heading --columns=_uuid list controller
ovs-vsctl -f csv --no-heading -d bare --columns=other_config list port
To remove a submodule you need to:
- Delete the relevant section from the .gitmodules file.
- Stage the .gitmodules changes git add .gitmodules
- Delete the relevant section from .git/config.
- Run git rm --cached path_to_submodule (no trailing slash).
- Run rm -rf .git/modules/path_to_submodule (no trailing slash).
- Commit git commit -m "Removed submodule "
- Delete the now untracked submodule files rm -rf path_to_submodule