Compare commits
2 Commits
e10d3e66bc
...
7b1d549fcb
Author | SHA1 | Date | |
---|---|---|---|
|
7b1d549fcb | ||
|
41cf9fc93f |
@ -3,14 +3,14 @@
|
|||||||
set -e
|
set -e
|
||||||
|
|
||||||
# Get HD filename
|
# Get HD filename
|
||||||
FILENAME=`vboxmanage showvminfo kaz-dev-amd64 | grep SATA | grep UUID | cut -d':' -f2 | cut -d'(' -f1 | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//'`
|
FILENAME=`vboxmanage showvminfo kaz-vm | grep SATA | grep UUID | cut -d':' -f2 | cut -d'(' -f1 | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//'`
|
||||||
|
|
||||||
# Split the dir and filename
|
# Split the dir and filename
|
||||||
DIR=`dirname "$FILENAME"`
|
DIR=`dirname "$FILENAME"`
|
||||||
FILE=`basename "$FILENAME"`
|
FILE=`basename "$FILENAME"`
|
||||||
|
|
||||||
# Get HD UUID
|
# Get HD UUID
|
||||||
UUID=`vboxmanage showvminfo kaz-dev-amd64 | grep SATA | grep UUID | cut -d':' -f 3| cut -d')' -f1 | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//'`
|
UUID=`vboxmanage showvminfo kaz-vm | grep SATA | grep UUID | cut -d':' -f 3| cut -d')' -f1 | sed -e 's/^[ \t]*//' | sed -e 's/[ \t]*$//'`
|
||||||
|
|
||||||
# echo -e $DIR
|
# echo -e $DIR
|
||||||
# echo -e $FILE
|
# echo -e $FILE
|
||||||
|
16
trim_enable.sh
Executable file
16
trim_enable.sh
Executable file
@ -0,0 +1,16 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
# Get HD UUID
|
||||||
|
HDUUID=`vboxmanage showvminfo kaz-vm --machinereadable | grep ImageUUID | cut -d= -f2 | sed -e "s/\"//g"`
|
||||||
|
|
||||||
|
# Get storage controller
|
||||||
|
STCTRL=`vboxmanage showvminfo kaz-vm --machinereadable | grep storagecontrollername0 | cut -d= -f2 | sed -e "s/\"//g"`
|
||||||
|
|
||||||
|
#echo -e $HDUUID
|
||||||
|
#echo -e $STCTRL
|
||||||
|
|
||||||
|
vboxmanage storageattach kaz-vm --medium="$HDUUID" --storagectl="${STCTRL}" --port=0 --discard=on --nonrotational=on
|
||||||
|
|
||||||
|
echo "Trim enabled !"
|
Loading…
Reference in New Issue
Block a user