Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

327
Views
How to run Multiple Instances of Firefox in Ubuntu?

I have a .sh script which is something like this:

#!/bin/bash
while :
do
  firefox ://imacros/?m=script.iim & sleep 600
  killall firefox
  sleep 5
done

But I wanted to run two Firefox instances and made this script:

#!/bin/bash
while :
do
  firefox ://imacros/?m=script.iim
  firefox ://imacros/?m=script2.iim & sleep 600
  killall firefox
  sleep 5
done

But even now, only 1 instance of Firefox starts with the first script running.

I want to know how can I run 2 instances at a time with both doing different tasks?

over 4 years ago · Santiago Trujillo
3 answers
Answer question

0

Firefox has an option for that: firefox --no-remote ;)

Basically, --no-remote forbids firefox to try and communicate with other firefox' instances ; I use it when I need two firefox windows with different profiles.

Documenation

over 4 years ago · Santiago Trujillo Report

0

You can run firefox from different users having different home directories. Then you may have as many instances as many you need.

over 4 years ago · Santiago Trujillo Report

0

You can try to create another profile in firefox and start another instance using -no-remote option.


I tried in Cent Os 6.5

Run this command in Command Terminal : firefox -p -no-remote

The Firefox profile manager will open up and will ask you to choose the profile you want to use. If you already have more than 1 profile, click on the “Create Profile” button to create a new profile and once the new profile is created, select it and click “Start Firefox”

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!