Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread Curt
On 2018-02-17, deloptes  wrote:
>>
> https://support.mozilla.org/en-US/kb/refresh-firefox-reset-add-ons-and-settings
>
> I tried this now, so it says in the first paragraph:
>
> If you're having problems with Firefox, refreshing it can help. The refresh
> feature fixes many issues by restoring Firefox to its default state while
> saving your essential information like bookmarks, passwords, and open tabs. 
>
> but all my passwords were wiped out :(

Passwords are stored in the 'key4.db' and 'logins.json' files. If those
files weren't inadvertently wiped out (the whole kit and caboodle of
your previous profile is normally saved somwhere when you refresh), you
should be able to retrieve them.

I found a python script on github that can extract them nicely, if you want to
keep them someplace safer (see my previous post here).

> bookmarks were preserved, but I want to keep my passwords ... not happy
>
> However behavior of firefox improved, so I'll need to find out how to
> export/import passwords and other stuff before resetting this.
>
> regards
>
>


-- 
New York was no mere city. It was instead an infinitely romantic notion, the
mysterious nexus of all love and money and power, the shining and the
perishable dream itself. To think of 'living' there was to reduce the
miraculous to the mundane; one does not 'live' at Xanadu. --Joan Didion





Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread deloptes
Liam O'Toole wrote:

> On 2018-02-17, deloptes  wrote:
> 
> [...]
> 
>> Might be I need to clean up and see if it makes a difference
>>
>> thanks
> 
> After 15 years, probably yes. I suggest you consider a refresh[1]. Make
> sure you understand what will be kept and what will be discarded, and
> how to recover the previous state of your profile if necessary.
> 
> 1:
>
https://support.mozilla.org/en-US/kb/refresh-firefox-reset-add-ons-and-settings

I tried this now, so it says in the first paragraph:

If you're having problems with Firefox, refreshing it can help. The refresh
feature fixes many issues by restoring Firefox to its default state while
saving your essential information like bookmarks, passwords, and open tabs. 

but all my passwords were wiped out :(

bookmarks were preserved, but I want to keep my passwords ... not happy

However behavior of firefox improved, so I'll need to find out how to
export/import passwords and other stuff before resetting this.

regards



Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread deloptes
Liam O'Toole wrote:

> After 15 years, probably yes. I suggest you consider a refresh[1]. Make
> sure you understand what will be kept and what will be discarded, and
> how to recover the previous state of your profile if necessary.

Hi,

thanks for the link. This is probably exactly what I need to do. After more
than 15y behind linux pc, I think I know how to backup one directory.

thanks and regards



Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread Liam O'Toole
On 2018-02-17, deloptes  wrote:

[...]

> Might be I need to clean up and see if it makes a difference
>
> thanks

After 15 years, probably yes. I suggest you consider a refresh[1]. Make
sure you understand what will be kept and what will be discarded, and
how to recover the previous state of your profile if necessary.

1:
https://support.mozilla.org/en-US/kb/refresh-firefox-reset-add-ons-and-settings

-- 

Liam



Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread deloptes
Erik Christiansen wrote:

> Whenever that happens here, I just clear the cookies & cache with
> CTRL+SHIFT+DEL. That puts a spring in its step again.
> 

I tried this already and it did not help

> Admittedly, my old mobo is too slow for video streaming, so I bought a
> Udoo-X86 for that - with very satisfying results. Except very
> occasionally, when video freezes just as on the old slow mobo, and it's
> necessary to click on the progress bar under the display. Relevance? I

my pc is normal desktop i5 with 8GB RAM, intel video - works great.

> suspect there's a kilo and a half of gummy sludge in every instance of
> Firefox, and you have to knock it loose regularly to keep the thing
> working. (If there's a commercial version out there, that might explain
> it.)

no idea what your experience is - for me it worked really good as I said for
the past 15y.

regards



Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread deloptes
Reco wrote:

> Well, if it's sqlite databases you're worried about, then install
> "sqlite3" package, shutdown firefox (important!), and run something like
> this:
> 
> for x in $(find .mozilla -name '*sqlite'); do
> sqlite3 "$x" "VACUUM;"
> done

$ time for x in $(find .mozilla -name '*.sqlite'); do
sqlite3 "$x" "VACUUM;"; done

real1m54.699s
user0m2.196s
sys 0m2.713s


This is absolutely not ok, though I don't think it reads all when it loads,
I have the impression I wait for roughly 1min.

> 
> But I prefer another approach - the only things that's I actually need
> in Firefox profile are prefs.js file maybe addons. Meaning that yes, I
> *do not* need history, cookies and all these HTML5 databases that
> Firefox persistently stores there for reasons unknown.

Might be I need to clean up and see if it makes a difference

thanks



Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread Erik Christiansen
On 17.02.18 10:00, deloptes wrote:
> Since couple of months firefox is taking too long to open a new window or
> new page.

Whenever that happens here, I just clear the cookies & cache with
CTRL+SHIFT+DEL. That puts a spring in its step again.

Admittedly, my old mobo is too slow for video streaming, so I bought a
Udoo-X86 for that - with very satisfying results. Except very
occasionally, when video freezes just as on the old slow mobo, and it's
necessary to click on the progress bar under the display. Relevance? I
suspect there's a kilo and a half of gummy sludge in every instance of
Firefox, and you have to knock it loose regularly to keep the thing
working. (If there's a commercial version out there, that might explain
it.)

Erik



Re: Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread Reco
Hi.

On Sat, Feb 17, 2018 at 10:00:07AM +0100, deloptes wrote:
> Hi all,
> perhaps someone of you has dealt with this issue and can give me an idea how
> can I fix it.
> 
> Since couple of months firefox is taking too long to open a new window or
> new page.
> When I press "CTRL+n" it opens the window but whole firefox gets blocked
> until something happens in the background and then all content is visible
> again.
> When I start typing the URL same behavior. Not all the time, but mainly
> related to new window.
> 
> I use this user profile for approx. 15y and the profile is located on NFS
> share. I have 1GB connection to the server. I was thinking maybe that it is
> because the sqlite databases grew with the time or there is a race
> condition violated.

Well, if it's sqlite databases you're worried about, then install
"sqlite3" package, shutdown firefox (important!), and run something like this:

for x in $(find .mozilla -name '*sqlite'); do
sqlite3 "$x" "VACUUM;"
done

But I prefer another approach - the only things that's I actually need
in Firefox profile are prefs.js file maybe addons. Meaning that yes, I
*do not* need history, cookies and all these HTML5 databases that
Firefox persistently stores there for reasons unknown.

So I just remove anything unneeded from .mozilla/firefox periodically.

Reco



Firefox too slow when opening new window or typing in the URL

2018-02-17 Thread deloptes
Hi all,
perhaps someone of you has dealt with this issue and can give me an idea how
can I fix it.

Since couple of months firefox is taking too long to open a new window or
new page.
When I press "CTRL+n" it opens the window but whole firefox gets blocked
until something happens in the background and then all content is visible
again.
When I start typing the URL same behavior. Not all the time, but mainly
related to new window.

I use this user profile for approx. 15y and the profile is located on NFS
share. I have 1GB connection to the server. I was thinking maybe that it is
because the sqlite databases grew with the time or there is a race
condition violated.

attached are the databases in the profile

thanks in advance

-rw-r--r-- 1   524288 Jan 21  2014 .mozilla/firefox/profile/addons.sqlite
-rw-r--r-- 198304 Jan 21  2014 
.mozilla/firefox/profile/chromeappsstore.sqlite
-rw-r--r-- 1   329728 Feb 16 15:25 .mozilla/firefox/profile/content-prefs.sqlite
-rw-r--r-- 1   524288 Feb 17 09:52 .mozilla/firefox/profile/cookies.sqlite
-rw-r--r-- 1  1048576 Feb 15 08:16 .mozilla/firefox/profile/cookies.sqlite.bak
-rw-r--r-- 1   131072 Feb 15 08:16 
.mozilla/firefox/profile/cookies.sqlite.bak-rebuild
-rw-r--r-- 132768 Feb 17 09:52 .mozilla/firefox/profile/cookies.sqlite-shm
-rw-r--r-- 1   721456 Feb 17 09:52 .mozilla/firefox/profile/cookies.sqlite-wal
-rw-r--r-- 165536 Jan 21  2014 .mozilla/firefox/profile/downloads.sqlite
-rw-r--r-- 1   458752 Jan 21  2014 .mozilla/firefox/profile/extensions.sqlite
-rw-r--r-- 1 20217856 Feb 17 09:04 .mozilla/firefox/profile/favicons.sqlite
-rw-r--r-- 132768 Feb 17 09:50 .mozilla/firefox/profile/favicons.sqlite-shm
-rw-r--r-- 1  2131512 Feb 17 09:50 .mozilla/firefox/profile/favicons.sqlite-wal
-rw-r--r-- 1   720896 Feb 17 09:46 .mozilla/firefox/profile/formhistory.sqlite
-rw-r--r-- 1  1277952 Feb 15 21:18 .mozilla/firefox/profile/kinto.sqlite
-rw-r--r-- 140960 Jan 28 22:46 .mozilla/firefox/profile/permissions.sqlite
-rw-r--r-- 1 62914560 Feb 17 09:46 .mozilla/firefox/profile/places.sqlite
-rw-r--r-- 1 52428800 Apr  9  2013 
.mozilla/firefox/profile/places.sqlite.corrupt
-rw-r--r-- 132768 Feb 17 09:50 .mozilla/firefox/profile/places.sqlite-shm
-rw-r--r-- 1  4096000 Feb 17 09:50 .mozilla/firefox/profile/places.sqlite-wal
-rw-r--r-- 1 2048 Apr  9  2013 .mozilla/firefox/profile/search.sqlite
-rw-r--r-- 1   107520 Nov 10  2014 .mozilla/firefox/profile/signons.sqlite
-rw-r--r-- 1  512 Jan  5 01:12 .mozilla/firefox/profile/storage.sqlite
-rw-r--r-- 1 15181824 Dec 27  2009 
.mozilla/firefox/profile/urlclassifier2.sqlite
-rw-r--r-- 1 62914560 Apr  9  2013 
.mozilla/firefox/profile/urlclassifier3.sqlite
-rw-r--r-- 1 57798656 Feb 17 09:06 .mozilla/firefox/profile/webappsstore.sqlite
-rw-r--r-- 132768 Feb 17 09:49 
.mozilla/firefox/profile/webappsstore.sqlite-shm
-rw-r--r-- 1   928560 Feb 17 09:49 
.mozilla/firefox/profile/webappsstore.sqlite-wal
-rw-r--r-- 165536 Jun 19  2012 .mozilla/firefox/profile/xmarks.sqlite