To check your Firefox profiles on Debian 12 with Firefox ESR 128.6, follow these steps:
- First, ensure that the Firefox profile directory exists. By default, it should be located at
~/.mozilla/firefox/. If you have installed Firefox in a custom location, adjust the path accordingly.
~/.mozilla/firefox/
- Open the terminal and navigate to the Firefox profiles directory.
cd ~/.mozilla/firefox/
- Now, list the available profiles by running the following command:
ls -la
This command will display a list of directories, each representing a Firefox profile.
- To open a specific profile, navigate into the corresponding directory and run the Firefox command from there:
cd path/to/your/profile
firefox
Replace path/to/your/profile with the actual path of the profile directory you want to open.
If you still encounter the "Command not found" error, make sure that the Firefox executable is installed and accessible in your system's PATH. You can check this by running:
which firefox
If the output is not the path to your Firefox executable, add it to your system's PATH or run the Firefox command with the full path.