0

I would like to open 2 chromium instances from terminal but this does not work. I'm currently using raspberry

chromium-browser --window-position=0,0 chromium-browser --window-position=1920,0
Saurav Pathak
  • 796
  • 11
  • 32
Jackal
  • 3,359
  • 4
  • 33
  • 78

1 Answers1

1

You have to execute the following in the terminal:

   sudo chromium-browser --no-sandbox & sudo chromium-browser --no-sandbox &

--no-sandbox is necessary on the Raspberry Pi.

VTMExpor
  • 26
  • 5