Firefox -createprofile “example” doesn't create profile [Centos 7.6]
Clash Royale CLAN TAG#URR8PPP
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to create new profile via Terminal for firefox and am using this command:
firefox -createprofile 'profile'
It looks like everything is fine, but I can't find any new file by using ls | grep "profile"
While using
./firefox -profilemanager
Firefox is openning on blank page, by checking in help -> Troubleshooting information -> Profile directory, there is always same directory / name of folder.
By using
firefox -profile "profile"
the same thing happens.
I have tried to use uppercase version as well as lowercase; both work and open Firefox.
What am I doing wrong?
I tried using firefox -P
or -p , there is also no visual difference (as how is firefox acting, where redirecting and what profile applying)
Also by using ls ~.mozilla/firefox
and opening with VI profiles.ini , I can see that there is only one profile there (which was created by default)
My current directory is /home/username/.mozilla/firefox
.
centos terminal firefox
add a comment |
I am trying to create new profile via Terminal for firefox and am using this command:
firefox -createprofile 'profile'
It looks like everything is fine, but I can't find any new file by using ls | grep "profile"
While using
./firefox -profilemanager
Firefox is openning on blank page, by checking in help -> Troubleshooting information -> Profile directory, there is always same directory / name of folder.
By using
firefox -profile "profile"
the same thing happens.
I have tried to use uppercase version as well as lowercase; both work and open Firefox.
What am I doing wrong?
I tried using firefox -P
or -p , there is also no visual difference (as how is firefox acting, where redirecting and what profile applying)
Also by using ls ~.mozilla/firefox
and opening with VI profiles.ini , I can see that there is only one profile there (which was created by default)
My current directory is /home/username/.mozilla/firefox
.
centos terminal firefox
add a comment |
I am trying to create new profile via Terminal for firefox and am using this command:
firefox -createprofile 'profile'
It looks like everything is fine, but I can't find any new file by using ls | grep "profile"
While using
./firefox -profilemanager
Firefox is openning on blank page, by checking in help -> Troubleshooting information -> Profile directory, there is always same directory / name of folder.
By using
firefox -profile "profile"
the same thing happens.
I have tried to use uppercase version as well as lowercase; both work and open Firefox.
What am I doing wrong?
I tried using firefox -P
or -p , there is also no visual difference (as how is firefox acting, where redirecting and what profile applying)
Also by using ls ~.mozilla/firefox
and opening with VI profiles.ini , I can see that there is only one profile there (which was created by default)
My current directory is /home/username/.mozilla/firefox
.
centos terminal firefox
I am trying to create new profile via Terminal for firefox and am using this command:
firefox -createprofile 'profile'
It looks like everything is fine, but I can't find any new file by using ls | grep "profile"
While using
./firefox -profilemanager
Firefox is openning on blank page, by checking in help -> Troubleshooting information -> Profile directory, there is always same directory / name of folder.
By using
firefox -profile "profile"
the same thing happens.
I have tried to use uppercase version as well as lowercase; both work and open Firefox.
What am I doing wrong?
I tried using firefox -P
or -p , there is also no visual difference (as how is firefox acting, where redirecting and what profile applying)
Also by using ls ~.mozilla/firefox
and opening with VI profiles.ini , I can see that there is only one profile there (which was created by default)
My current directory is /home/username/.mozilla/firefox
.
centos terminal firefox
centos terminal firefox
edited Mar 15 at 17:09
Anthony Geoghegan
7,98154055
7,98154055
asked Mar 15 at 13:52
GifciakGifciak
85
85
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
-createprofile
is not a valid command-line argument for starting Firefox.
To create a new profile, you start by launching the Profile Manager by running firefox --ProfileManager
. If you already have an instance of Firefox running (there could be an errant process running in the background; check this with ps -u
) , you can add the --no-remote
to start a new instance:
firefox --ProfileManager --no-remote
You can then start the Create Profile Wizard by clicking on the Create Profile button. This will create a new profile in ~/.mozilla/firefox/
.
This solution helped me, thank you.
– Gifciak
Mar 15 at 17:48
You're welcome. Accepting the answer was sufficient thanks. Later (when you get more reputation), you'll also be able to upvote answers. On that note, have an upvote for clearly explaining your problem in the question body - and for showing what you've already tried/researched. Welcome to Unix & Linux!
– Anthony Geoghegan
Mar 15 at 17:52
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "106"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506522%2ffirefox-createprofile-example-doesnt-create-profile-centos-7-6%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
-createprofile
is not a valid command-line argument for starting Firefox.
To create a new profile, you start by launching the Profile Manager by running firefox --ProfileManager
. If you already have an instance of Firefox running (there could be an errant process running in the background; check this with ps -u
) , you can add the --no-remote
to start a new instance:
firefox --ProfileManager --no-remote
You can then start the Create Profile Wizard by clicking on the Create Profile button. This will create a new profile in ~/.mozilla/firefox/
.
This solution helped me, thank you.
– Gifciak
Mar 15 at 17:48
You're welcome. Accepting the answer was sufficient thanks. Later (when you get more reputation), you'll also be able to upvote answers. On that note, have an upvote for clearly explaining your problem in the question body - and for showing what you've already tried/researched. Welcome to Unix & Linux!
– Anthony Geoghegan
Mar 15 at 17:52
add a comment |
-createprofile
is not a valid command-line argument for starting Firefox.
To create a new profile, you start by launching the Profile Manager by running firefox --ProfileManager
. If you already have an instance of Firefox running (there could be an errant process running in the background; check this with ps -u
) , you can add the --no-remote
to start a new instance:
firefox --ProfileManager --no-remote
You can then start the Create Profile Wizard by clicking on the Create Profile button. This will create a new profile in ~/.mozilla/firefox/
.
This solution helped me, thank you.
– Gifciak
Mar 15 at 17:48
You're welcome. Accepting the answer was sufficient thanks. Later (when you get more reputation), you'll also be able to upvote answers. On that note, have an upvote for clearly explaining your problem in the question body - and for showing what you've already tried/researched. Welcome to Unix & Linux!
– Anthony Geoghegan
Mar 15 at 17:52
add a comment |
-createprofile
is not a valid command-line argument for starting Firefox.
To create a new profile, you start by launching the Profile Manager by running firefox --ProfileManager
. If you already have an instance of Firefox running (there could be an errant process running in the background; check this with ps -u
) , you can add the --no-remote
to start a new instance:
firefox --ProfileManager --no-remote
You can then start the Create Profile Wizard by clicking on the Create Profile button. This will create a new profile in ~/.mozilla/firefox/
.
-createprofile
is not a valid command-line argument for starting Firefox.
To create a new profile, you start by launching the Profile Manager by running firefox --ProfileManager
. If you already have an instance of Firefox running (there could be an errant process running in the background; check this with ps -u
) , you can add the --no-remote
to start a new instance:
firefox --ProfileManager --no-remote
You can then start the Create Profile Wizard by clicking on the Create Profile button. This will create a new profile in ~/.mozilla/firefox/
.
answered Mar 15 at 14:36
Anthony GeogheganAnthony Geoghegan
7,98154055
7,98154055
This solution helped me, thank you.
– Gifciak
Mar 15 at 17:48
You're welcome. Accepting the answer was sufficient thanks. Later (when you get more reputation), you'll also be able to upvote answers. On that note, have an upvote for clearly explaining your problem in the question body - and for showing what you've already tried/researched. Welcome to Unix & Linux!
– Anthony Geoghegan
Mar 15 at 17:52
add a comment |
This solution helped me, thank you.
– Gifciak
Mar 15 at 17:48
You're welcome. Accepting the answer was sufficient thanks. Later (when you get more reputation), you'll also be able to upvote answers. On that note, have an upvote for clearly explaining your problem in the question body - and for showing what you've already tried/researched. Welcome to Unix & Linux!
– Anthony Geoghegan
Mar 15 at 17:52
This solution helped me, thank you.
– Gifciak
Mar 15 at 17:48
This solution helped me, thank you.
– Gifciak
Mar 15 at 17:48
You're welcome. Accepting the answer was sufficient thanks. Later (when you get more reputation), you'll also be able to upvote answers. On that note, have an upvote for clearly explaining your problem in the question body - and for showing what you've already tried/researched. Welcome to Unix & Linux!
– Anthony Geoghegan
Mar 15 at 17:52
You're welcome. Accepting the answer was sufficient thanks. Later (when you get more reputation), you'll also be able to upvote answers. On that note, have an upvote for clearly explaining your problem in the question body - and for showing what you've already tried/researched. Welcome to Unix & Linux!
– Anthony Geoghegan
Mar 15 at 17:52
add a comment |
Thanks for contributing an answer to Unix & Linux Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f506522%2ffirefox-createprofile-example-doesnt-create-profile-centos-7-6%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown