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
[root@VIRT-V2V:/opt/veewee] $ irb | |
1.9.2p320 :001 > require 'ruby-libvirt' | |
LoadError: no such file to load -- ruby-libvirt | |
from (irb):1:in `require' | |
from (irb):1 | |
from /usr/local/rvm/rubies/ruby-1.9.2-p320/bin/irb:16:in `<main>' | |
1.9.2p320 :002 > require 'libvirt' | |
LoadError: no such file to load -- libvirt | |
from (irb):2:in `require' | |
from (irb):2 |
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 | |
if [ -z "$1" ]; then | |
echo "USAGE: $0 devicename" | |
echo "eg. $0 fioa" | |
exit 1 | |
else | |
DEVICE=$1 | |
fi |
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
curtis@c01-02:~/performance_testing$ cat fio_tests.sh | |
#!/bin/bash | |
if [ -z "$1" ]; then | |
echo "USAGE: $0 devicename" | |
echo "eg. $0 fioa" | |
exit 1 | |
else | |
DEVICE=$1 | |
fi |
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 | |
if [ -z "$1" ]; then | |
echo "USAGE: $0 devicename" | |
echo "eg. $0 fioa" | |
exit 1 | |
else | |
DEVICE=$1 | |
fi |
NewerOlder