Hi, I use the following script for qemu run #!/bin/bash #SBATCH --nodelist=compute-0-1 #SBATCH --cores=8 #SBATCH --mem=40G #SBATCH --partition=QEMU #SBATCH --account=q20_8
USERN=`whoami` qemu-system-x86_64 -m 40000 -smp cores=8 -hda win7_sp1_x64.img -boot c -usbdevice tablet -enable-kvm -device e1000,netdev=host_files -netdev user,net=10.0.2.0/24,id=host_files Although I have specified "compute-0-1", when I run "salloc ./run.sh", it puts the job on the frontend. Is that normal? If there is any problem with the node I have specified, then I should receive an error or waiting message. Isn't that? Regards, Mahmood