Greetings all! I'm seeking to rescue important files and other info from a laptop that has just "crashed". I had installed Linux (Debian) on a virtual machine (VirtualBox) installed on windows XP. It's Windows XP which has gone both bottom-up and tits-up.
I think I can probably use a CD with Slackware installed to boot from (Ive tried it on another machine, and it works), which should then give me access to the Linux filesystem stored on the hard drive separately from the Windows filesystem.
Once there, when it concerns files which I know where to find on the filesystem, there should be no problem reading their contents (though extracting the files themselves for transfer to my working machine may be another issue).
However, one important item which I would like to plant on my working machine is the set of bookmarks (hierarchically organised) that I have built up over many years on the crashed machine's Mozilla/Firefos/Iceweasel browser. Presumably this lurks somewhere is a ".filename" in my home directory.
But I've not managed to sniff out such a file on my working machine (also Debian), so I wouldn't know where to look on the crashed machine.
Therefore, please, can anyone tell me where the file is likely to be, and what it's likely to be named?
Then I could transcribe its contents to the other machine.
With thanks, Ted.
Hi Ted,
This feels like it's changed a lot since I last looked but on Firefox 51, my bookmarks appear to be in a file called places.sqlite in a folder ~/.mozilla/firefox/RANDOMSTRING.default/. There are also some bookmark backup files in the subdirectory bookmarkbackups.
Hope that helps, Simon
On 18/05/17 12:40, Ted Harding wrote: <snip>
However, one important item which I would like to plant on my working machine is the set of bookmarks (hierarchically organised) that I have built up over many years on the crashed machine's Mozilla/Firefos/Iceweasel browser. Presumably this lurks somewhere is a ".filename" in my home directory.
But I've not managed to sniff out such a file on my working machine (also Debian), so I wouldn't know where to look on the crashed machine.
Therefore, please, can anyone tell me where the file is likely to be, and what it's likely to be named?
Thanks, Simon -- I think that can work if one uses
strings places.sqlite | grep http | less
(Still a mass of stuff that one doen's really want to see, but the essentials are there).
Best wishes, Ted.
On Thu, 2017-05-18 at 12:53 +0100, Simon Ransome wrote:
Hi Ted,
This feels like it's changed a lot since I last looked but on Firefox 51, my bookmarks appear to be in a file called places.sqlite in a folder ~/.mozilla/firefox/RANDOMSTRING.default/. There are also some bookmark backup files in the subdirectory bookmarkbackups.
Hope that helps, Simon
On 18/05/17 12:40, Ted Harding wrote:
<snip> > However, one important item which I would like to plant on > my working machine is the set of bookmarks (hierarchically > organised) that I have built up over many years on the > crashed machine's Mozilla/Firefos/Iceweasel browser. > Presumably this lurks somewhere is a ".filename" in my > home directory. > > But I've not managed to sniff out such a file on my working > machine (also Debian), so I wouldn't know where to look on > the crashed machine. > > Therefore, please, can anyone tell me where the file is likely > to be, and what it's likely to be named?
main@lists.alug.org.uk http://www.alug.org.uk/ https://lists.alug.org.uk/mailman/listinfo/main Unsubscribe? See message headers or the web site above!
On Thu, May 18, 2017 at 01:46:17PM +0100, Ted Harding wrote:
Thanks, Simon -- I think that can work if one uses
strings places.sqlite | grep http | less
(Still a mass of stuff that one doen's really want to see, but the essentials are there).
echo -e ".mode column\n.width 5 200\n.headers on\nSELECT * FROM moz_places;" | sqlite3 places.sqlite
If you're generally happy futzing around with SQL you can just do "sqlite3 places.sqlite" and poke around.
J.