Issue
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
Solution
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.
Answered By - VTMExpor Answer Checked By - Timothy Miller (WPSolving Admin)