30 lines
1.2 KiB
Markdown
Raw Normal View History

2020-06-18 10:59:51 -04:00
<!--
Title: How to use multiple compartmentalized Firefox instances simultaneously using profiles
Description: Learn how to use multiple compartmentalized Firefox instances simultaneously using profiles.
Author: Sun Knudsen <https://github.com/sunknudsen>
Contributors: Sun Knudsen <https://github.com/sunknudsen>
2020-09-10 10:07:07 -04:00
Reviewers:
2020-06-18 10:59:51 -04:00
Publication date: 2020-05-13T00:00:00.000Z
Listed: true
2020-06-18 10:59:51 -04:00
-->
# How to use multiple compartmentalized Firefox instances simultaneously using profiles
2020-12-14 16:29:12 -05:00
[![How to use multiple compartmentalized Firefox instances using profiles - YouTube](how-to-use-multiple-compartmentalized-firefox-instances-using-profiles.png)](https://www.youtube.com/watch?v=Upib_vq_EB8 "How to use multiple compartmentalized Firefox instances using profiles - YouTube")
2020-06-18 10:59:51 -04:00
2020-08-10 19:35:31 -04:00
### Step 1: create Firefox profile
2020-06-18 10:59:51 -04:00
```shell
/Applications/Firefox.app/Contents/MacOS/firefox-bin -p
```
2020-08-10 19:35:31 -04:00
### Step 2: open Firefox profile
2020-06-18 10:59:51 -04:00
2020-08-02 06:55:08 -04:00
> Heads-up: in the following command, make sure you replace `work` by the name of your profile. If the name includes spaces, please use quotes (example: `-p "Work Profile"`).
2020-06-18 10:59:51 -04:00
```shell
nohup /Applications/Firefox.app/Contents/MacOS/firefox-bin -p work --no-remote > /dev/null 2>&1 &
```
2020-12-03 06:29:52 -05:00
👍