0

I'm a bit new to linux. using Ubuntu-16.04LTS. The terminal froze when i trip to open browser using terminal command. Browser name website (chromium-browser www.facebook.com) Terminal resumed after closing the browser Is there anything I need to know?

muru
  • 197,895
  • 55
  • 485
  • 740

1 Answers1

1

Yes .. That's the way it works. As long as a command is running in the terminal, it is blocked from doing other things. Think of chromium-browser as a long running process, just as sleep 60 or similar.

You can put it in the background, freeing your terminal prompt for other work, either by pressing ctrl-z to suspend the process, and then type bg %1 (or the number ctrl-z returned in [] if not 1) to let it run in background.

Or adding a & after the command when you start it:

sleep 60 &

This will send it in the background immediately.

Soren A
  • 6,799