ubuntu run multiple commands in one line and let them run after close shell

Shell
# Sequential
(myCommand1; myCommand2) &
# or
(myCommand1 &) && (myCommand2 &)

# Parallel
myCommand1 & myCommand2 &
Source

Also in Shell: