Unix process states include running (actively executing), sleeping (waiting for I/O or resources), and zombie (completed but not yet reaped by parent). There is no 'printing' process state in standard Unix process management. Processes may print to stdout/stderr while in any state, but 'printing' is not a state itself. The standard states are running, interruptible sleep, uninterruptible sleep, zombie, and stopped.