redirect stderr and/or stdout to /dev/null from command line

Is it possible to redirect errors at the command line when you run the script such as bash scriptname & 2>/dev/null?

Try moving the & to after the redirect. Beyond that you seem to have the right idea.