Firefox is starting immediately after Booting system [SOLVED]

Started by ranjeet44, May 09, 2013, 12:05:15 PM

Previous topic - Next topic

ranjeet44

Hi all,

I am new to BackBox, I'm using backbox 3.01.When I start the system, after login, firefox immediately starts up. Whats the reason behind it?

ZEROF

Hi,

That is not normal. Open terminal and type :

sudo insserv -r firefox

Then reboot your pc. Keep me posted.

Don't ask, read : http://wiki.backbox.org
or just run sudo rm -rf /*

b4d_bl0ck

Hi ranjeet44,
it could also be you saved the xfce session logging out or shutting down your system, so it gets restored automatically.
Check MENU -> Settings -> Settings Manager -> Session and Startup and see if you have the Automatically save session on, or if firefox is checked in Application Autostart tab. You can also display session chooser on startup to see if there actually are some saved sessions.
If you cannot find anything there you can delete your saved sessions:rm -f ~/.cache/sessions/*Then try to logout and login again...

Bye... let us know.
bool secure = check_paranoia() ? true : false;

ranjeet44

Quote from: ZEROF on May 09, 2013, 01:02:36 PM
Hi,

That is not normal. Open terminal and type :

sudo insserv -r firefox

Then reboot your pc. Keep me posted.

That not working see the terminal output below-

root@autobot:/home/ranjeet# sudo insserv -r firefox
sudo: insserv: command not found


I was logged in as root.

N3tw0rk47

#4
If you put your propeller cap on and think what would Jesus do ?


whereis insserv


as you can see that insserv is located in /usr/lib/insserv/insserv


sudo ln -s /usr/lib/insserv/insserv /usr/bin/insserv


or


sudo /usr/lib/insserv/insserv --help



But as badblock  said


sudo rm -rf ~/.config/sessions/*


should fix that problem

weVeg

If you are root why type sudo?
btw badblock tell you the way:
QuoteCheck MENU -> Settings -> Settings Manager -> Session and Startup and see if you have the Automatically save session on, or if firefox is checked in Application Autostart tab. You can also display session chooser on startup to see if there actually are some saved sessions.
una voce libera รจ sempre liberatrice
under_r00t

b4d_bl0ck

Thanks N3tw0rk47, great support on here ;)

Quote from: N3tw0rk47 on May 10, 2013, 07:23:05 AM

sudo rm -rf ~/.config/sessions/*

Just a little thing, sessions shoul be saved in .cache/sessions, not in .config/sessions ;D so:
rm -f ~/.cache/sessions/*

Thx again man! ;)
bool secure = check_paranoia() ? true : false;

ranjeet44