Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Then you can disconnect in any time by pressing Ctrl-A d and connect back in the new SSH session by the command:

...

After the script is finished common log will be put to the /var/tmp/stabzfs.<ISO TIME>.txt file. Logs for every separate pass will be created according the previous section.

If test was crashed or hanged on any pass you can get additional information by executing the following commands:

Code Block
languagebash
cat > getinfo.sh <<EOT
#!/bin/bash

uname -a
diskinfo > /dev/null
diskinfo > /dev/null
echo "-------------------------- DISKINFO ---------------------"
diskinfo
echo "------------------------- BEADM LIST --------------------"
beadm list
echo "------------------------- ZPOOL LIST --------------------"
zpool list
echo "-------------------- LAST SUCCESSFULL TEST --------------"
tail -1 /var/tmp/z.tmp
echo "------------------- LAST SUCCESSFULL COMMAND -------------"
tail -1 /var/tmp/test_results/current/log
EOT
chmod 777 ./getinfo.sh
./getinfo.sh