2014-09-23 137 views
1

我在笔记本电脑上为了学习目的而设置了VMWare ESXi。我想自动化的东西,并得到这个非常漂亮的shell脚本。它要求提供诸如cpu内核,iso路径,ram和磁盘空间等参数。我是一名初学者。我知道这是一个非常基本的问题,但无法在互联网上找到答案。这是代码。如何在此shell脚本的命令行中输入参数?

我不明白如何输入数值<|c|i|r|s> —所需的语法不清楚,确切地说。

#paratmers: machine name (required), CPU (number of cores), RAM (memory size in MB), HDD Disk size (in GB), ISO (Location of ISO image, optional) 
#default params: CPU: 2, RAM: 4096, DISKSIZE: 20GB, ISO: 'blank' 
- 
phelp() { 
    echo "Script for automatic Virtual Machine creation for ESX" 
    echo "Usage: ./create.sh options: n <|c|i|r|s>" 
    echo "Where n: Name of VM (required), c: Number of virtual CPUs, i: location of an ISO image, r: RAM size in MB, s: Disk size in GB" 
    echo "Default values are: CPU: 2, RAM: 4096MB, HDD-SIZE: 20GB" 
} 

CPU=2 
RAM=4096 
SIZE=20 
ISO="ISO'S" 
FLAG=true 
ERR=false 
n=vmoo 


while getopts n:c:i:r:s: option 
do 
    case $option in 
      n) 
       NAME=${OPTARG}; 
       FLAG=false; 
       if [ -z $NAME ]; then 
        ERR=true 
        MSG="$MSG | Please make sure to enter a VM name." 
       fi 
       ;; 
      c) 
       CPU=${OPTARG} 
       if [ `echo "$CPU" | egrep "^-?[0-9]+$"` ]; then 
        if [ "$CPU" -le "0" ] || [ "$CPU" -ge "32" ]; then 
         ERR=true 
         MSG="$MSG | The number of cores has to be between 1 and 32." 
        fi 
       else 
        ERR=true 
        MSG="$MSG | The CPU core number has to be an integer." 
       fi 
       ;; 
      i) 
       ISO=${OPTARG} 
       if [ ! `echo "$ISO" | egrep "^.*\.(iso)$"` ]; then 
        ERR=true 
        MSG="$MSG | The extension should be .iso" 
       fi 
       ;; 
      r) 
       RAM=${OPTARG} 
       if [ `echo "$RAM" | egrep "^-?[0-9]+$"` ]; then 
        if [ "$RAM" -le "0" ]; then 
         ERR=true 
         MSG="$MSG | Please assign more than 1MB memory to the VM." 
        fi 
       else 
        ERR=true 
        MSG="$MSG | The RAM size has to be an integer." 
       fi 
       ;; 
      s) 
       SIZE=${OPTARG} 
       if [ `echo "$SIZE" | egrep "^-?[0-9]+$"` ]; then 
        if [ "$SIZE" -le "0" ]; then 
         ERR=true 
         MSG="$MSG | Please assign more than 1GB for the HDD size." 
        fi 
       else 
        ERR=true 
        MSG="$MSG | The HDD size has to be an integer." 
       fi 
       ;; 
      \?) echo "Unknown option: -$OPTARG" >&2; phelp; exit 1;; 
      :) echo "Missing option argument for -$OPTARG" >&2; phelp; exit 1;; 
      *) echo "Unimplimented option: -$OPTARG" >&2; phelp; exit 1;; 
    esac 
done 

if $FLAG; then 
echo "You need to at least specify the name of the machine with the -n parameter." 
exit 1 
fi 

if $ERR; then 
echo $MSG 
exit 1 
fi 

if [ -d "$NAME" ]; then 
echo "Directory - ${NAME} already exists, can't recreate it." 
exit 
fi 


mkdir ${NAME} 


vmkfstools -c "${SIZE}"G -a lsilogic $NAME/$NAME.vmdk 


touch $NAME/$NAME.vmx 


cat <<EOF> $NAME/$NAME.vmx 

config.version = "8" 
virtualHW.version = "7" 
vmci0.present = "TRUE" 
displayName = "${NAME}" 
floppy0.present = "FALSE" 
numvcpus = "${CPU}" 
scsi0.present = "TRUE" 
scsi0.sharedBus = "none" 
scsi0.virtualDev = "lsilogic" 
memsize = "${RAM}" 
scsi0:0.present = "TRUE" 
scsi0:0.fileName = "${NAME}.vmdk" 
scsi0:0.deviceType = "scsi-hardDisk" 
ide1:0.present = "TRUE" 
ide1:0.fileName = "${ISO}" 
ide1:0.deviceType = "cdrom-image" 
pciBridge0.present = "TRUE" 
pciBridge4.present = "TRUE" 
pciBridge4.virtualDev = "pcieRootPort" 
pciBridge4.functions = "8" 
pciBridge5.present = "TRUE" 
pciBridge5.virtualDev = "pcieRootPort" 
pciBridge5.functions = "8" 
pciBridge6.present = "TRUE" 
pciBridge6.virtualDev = "pcieRootPort" 
pciBridge6.functions = "8" 
pciBridge7.present = "TRUE" 
pciBridge7.virtualDev = "pcieRootPort" 
pciBridge7.functions = "8" 
ethernet0.pciSlotNumber = "32" 
ethernet0.present = "TRUE" 
ethernet0.virtualDev = "e1000" 
ethernet0.networkName = "Inside" 
ethernet0.generatedAddressOffset = "0" 
guestOS = "other26xlinux-64" 
EOF 


MYVM=`vim-cmd solo/registervm /vmfs/volumes/datastore1/${NAME}/${NAME}.vmx` 

vim-cmd vmsvc/power.on $MYVM 

echo "The Virtual Machine is now setup & the VM has been started up. Your have the following configuration:" 
echo "Name: ${NAME}" 
echo "CPU: ${CPU}" 
echo "RAM: ${RAM}" 
echo "HDD-size: ${SIZE}" 
if [ -n "$ISO" ]; then 
echo "ISO: ${ISO}" 
else 
echo "No ISO added." 
fi 
echo "Thank you." 
exit 
+1

没有脚本的实际_parses_参数的部分,我不知道我们应该如何帮助。用法文本的确写得很模糊。 – 2014-09-23 15:39:01

+1

另外,如果你问*如何使用*脚本,而不是如何写*脚本,这不是一个真正适合StackOverflow的问题;您可以尝试使用SuperUser。尽管如此,他们仍然需要整个剧本。 – 2014-09-23 15:39:57

+0

对不起,我编辑有问题,否则我会在开始时这样做。我认为我的问题不是一个复杂的问题,它会要求您输入参数,如CPU核心,ISO路径,RAM,磁盘大小。 – 2014-09-23 16:06:17

回答

1

输入他们作为-k value双,其中k是用来标识该参数的信。

例如:

./create.sh -n vmname -c 2 -i /path/to/file.iso -s 512 

这将名称设置为vmname,CPU数量为2,ISO文件名/path/to/file.iso

+0

谢谢你。那是我需要的。哈哈这么傻,我试图在我的本地机器上测试它,而不是在esxi服务器上执行ssh – 2014-09-23 16:35:54

1

用法消息是关于,你可以为无益得到并仍然试图传达信息。没有代码,我不知道该怎么做。幸运的是,使用shell脚本,你可以看到代码。用法消息应该读更多的东西一样:

{ 
echo "Usage: $0 -n 'vm name' [-c cpus][-i iso-image][-r ram][-s disk]" 
echo " -n 'vm name' Name of VM (required)" 
echo " -c cpus  Number of virtual CPUs" 
echo " -i iso-image Location of an ISO image" 
echo " -r ram  RAM size in MB" 
echo " -s disk  Disk size in GB" 
echo "Default values are: CPU: 2, RAM: 4096MB, HDD-SIZE: 20GB" 
} >&2 

要谨慎:当你写一个shell脚本,确保使用信息明确记载,无论是在使用信息或者是在脚本中的注释。你所展示的shell脚本是一个例子,说明如何不做。