You could definitely run in another terminal, but:
nohup yourCommand > /dev/null 2> /dev/null < /dev/null &
Should start the command in the background discarding all output, tying stdin to null, and ignoring hangup signals.
After you run this way, you will have that terminal free to keep working, and can close the terminal without terminating the command.
-Lee