#!/bin/bash
rm root.tar.xz
#XZ_OPT=-e9T0 tar -cJf root.tar.xz root
tar -cf - root | xz -e -9 -T0 -c - > root.tar.xz
echo "Ready"