LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Networking (https://www.linuxquestions.org/questions/linux-networking-3/)
-   -   Restore Firefox Bookmarks (https://www.linuxquestions.org/questions/linux-networking-3/restore-firefox-bookmarks-4175676085/)

Tyro65 05-28-2020 02:50 PM

Restore Firefox Bookmarks
 
When I attempt to restore bookmarks from the bookmarkbackups folder in Firefox via Bookmarks -- Show All Bookmarks -- Import and Backup -- Restore, I get "Unable to Process the backup file." How do I correct this? Is there another way to extract the bookmarks from the .jsonlz4 files?

Thanks.

shruggy 05-28-2020 03:50 PM

Code:

sudo apt install lz4json jq
Code:

lz4jsoncat bookmarks-*.jsonlz4|jq '
..|objects|select(has("typeCode"))|select(.typeCode==1)|
{title:.title, uri:.uri}'


Tyro65 05-29-2020 08:50 AM

Cool! Thanks a lot.

Tyro65 05-29-2020 09:21 AM

Logins and Passwords
 
Now I'm trying to recover logins and passwords. Do you have any more magic commands that will accomplish this?

shruggy 05-29-2020 09:25 AM

Install and run nss-passwords.

Tyro65 05-29-2020 06:48 PM

Thank you, Shruggy.


All times are GMT -5. The time now is 11:31 AM.