Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 21st March 2011, 08:00 AM
rotate2010 Offline
Registered User
 
Join Date: Aug 2010
Posts: 9
linuxfedorafirefox
Location of FireFox Cache folder

hello frnds,
i want to know the location of firefox cache folder..when we watch any video on youtube or any sites firefox buffers the whole video in its cache memory..so i want to copy that whole video from that cache folder directly so that we dont need any third party add-ons to download videos..for that i want to know the exact location of that cache memory folder of firefox browser in linux....so pls tell me by default path of that folder in fedora 13..
Thnx in advance..
Reply With Quote
  #2  
Old 21st March 2011, 08:14 AM
Smoking Tux's Avatar
Smoking Tux Offline
Registered User
 
Join Date: Jan 2011
Location: /home
Posts: 267
linuxchrome
Re: Location of FireFox Cache folder

The firefox cache is located under ~/.mozilla/firefox/<your_profile>/Cache. But flash is another thing, it buffers the video under /tmp. (32bit-flash at least, not sure about the 64-bit version)
__________________
regards, Thomas
Reply With Quote
  #3  
Old 21st March 2011, 03:56 PM
DBelton's Avatar
DBelton Offline
Administrator
 
Join Date: Aug 2009
Posts: 6,612
linuxfedorafirefox
Re: Location of FireFox Cache folder

I have also had firefox to cache files in /home/<username>/.mozilla/<randomnumber>.default/Cache as well.
Reply With Quote
  #4  
Old 21st March 2011, 04:31 PM
PabloTwo's Avatar
PabloTwo Online
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,126
linuxfirefox
Re: Location of FireFox Cache folder

Here is a command line I use to locate a flash video (FLV) in my firefox browser catch. I keep this as a file and just "cat" it to the terminal.
Code:
find ~/.mozilla -regex '.*Cache.*' -a -not -regex '.*_CACHE_.*' -printf '%T+ %p\n' | \
sort -n | awk '{ print $2 }' | xargs file | grep -i "Video" | tail -1 | awk -F : '{ print $1 }'
Reply With Quote
  #5  
Old 22nd March 2011, 04:09 PM
rotate2010 Offline
Registered User
 
Join Date: Aug 2010
Posts: 9
linuxfedorafirefox
Re: Location of FireFox Cache folder

hello frnds,
i got what u want to say...but the main thing is i am not able to find the path for mozila still...u r saying that i should be
/home/<username>/.mozilla/<randomnumber>.default/Cache
but i didnt find any path..and also for adobe...
so i think i am making some mistake...are these folder hide??i also tried as being super user also..but i found nothing...
so what should i do now??
Reply With Quote
  #6  
Old 22nd March 2011, 04:19 PM
Smoking Tux's Avatar
Smoking Tux Offline
Registered User
 
Join Date: Jan 2011
Location: /home
Posts: 267
windows_xp_2003firefox
Re: Location of FireFox Cache folder

Quote:
are these folder hide
That's right, to show them:
'ctrl+h' in nautilus or 'alt+.' for dolphin or search in your filemanagers preferences for an option 'show hidden files'.
__________________
regards, Thomas
Reply With Quote
  #7  
Old 22nd March 2011, 04:32 PM
bonedome's Avatar
bonedome Offline
Registered User
 
Join Date: Apr 2010
Location: uk
Posts: 726
linuxfedorafirefox
Re: Location of FireFox Cache folder

Hello
Smoking Tux got in there before me, but to confirm the videos are stored in ~/.mozilla/firefox/xxxxxx.default/Cache
__________________
fedora 14 fluxbox and gnome2 hp compaq nx9030 laptop 2Gb ram, helicopter landing pad, jacuzzi, mini fridge, gateway to alternative dimension
Reply With Quote
  #8  
Old 22nd March 2011, 07:14 PM
SiliconSlick's Avatar
SiliconSlick Offline
Registered User
 
Join Date: Aug 2009
Location: College Station, TX
Posts: 501
linuxfedorafirefox
Re: Location of FireFox Cache folder

FYI/FWIW, you can change the location of the Cache folder by puttting 'about:config' in the location bar (URL box) for Firefox and then change the value of browser.cache.disk.parent_directory

SS
Reply With Quote
  #9  
Old 22nd March 2011, 07:37 PM
AndrewSerk Offline
Registered User
 
Join Date: Oct 2010
Posts: 879
linuxredhatfirefox
Re: Location of FireFox Cache folder

Quote:
Originally Posted by SiliconSlick View Post
FYI/FWIW, you can change the location of the Cache folder by puttting 'about:config' in the location bar (URL box) for Firefox and then change the value of browser.cache.disk.parent_directory

SS
I don't think that string is included in 3.6, at least not here , but you can create a new string called "browser.cache.disk.parent_directory" and use the folder location that you want to use as the value.
Reply With Quote
  #10  
Old 23rd March 2011, 04:00 AM
rotate2010 Offline
Registered User
 
Join Date: Aug 2010
Posts: 9
linuxfedorafirefox
Re: Location of FireFox Cache folder

Quote:
Smoking Tux got in there before me, but to confirm the videos are stored in ~/.mozilla/firefox/xxxxxx.default/Cache
Yes thats true that videos are not saved in firefox cache memory..then pls tell me that where does it save??so that i can direct copy paste it..

and i found the cache folder of firefox..so thn for that..and also changed the value of that cache folder from "about:config"..
Reply With Quote
  #11  
Old 23rd March 2011, 05:41 PM
Smoking Tux's Avatar
Smoking Tux Offline
Registered User
 
Join Date: Jan 2011
Location: /home
Posts: 267
windows_xp_2003firefox
Re: Location of FireFox Cache folder

..checked '/tmp', as mentioned some posts above?
__________________
regards, Thomas
Reply With Quote
  #12  
Old 25th March 2011, 05:57 AM
rotate2010 Offline
Registered User
 
Join Date: Aug 2010
Posts: 9
linuxfedorafirefox
Re: Location of FireFox Cache folder

ok..i got the solution of my prob......thnk u so much for ur help...i learnt a lot of things from u frnds...
again thnk u so much..
Reply With Quote
  #13  
Old 25th March 2011, 06:03 PM
PabloTwo's Avatar
PabloTwo Online
"Registered User" T-Shirt Winner
 
Join Date: Mar 2007
Location: Seville, FL
Posts: 5,126
linuxfirefox
Re: Location of FireFox Cache folder

Just to confirm how easy it is to locate and identify the flash videos that are saved in your FF cache as I posted in post #4 of this thread, and to debunk any assertions/claims that FF doesn't "cache" youtube videos in its cache, I went to youtube and watched a video (agonizingly slow download on my dialup connection), then ran the script.
Code:
BASH:~/-> find ~/.mozilla -regex '.*Cache.*' -a -not -regex '.*_CACHE_.*' -printf '%T+ %p\n' | \
> sort -n | awk '{ print $2 }' | xargs file | grep -i "Video" | tail -1 | awk -F : '{ print $1 }'
/home/paulm/.mozilla/firefox/jx7d0kqu.paulm/Cache/B/30/CF3EAd01

BASH:~/-> file .mozilla/firefox/jx7d0kqu.paulm/Cache/B/30/CF3EAd01
.mozilla/firefox/jx7d0kqu.paulm/Cache/B/30/CF3EAd01: Macromedia Flash Video
The FF cache file structure changed from 3.6.xx to 4.0, but the actual cache files are still all saved with an 8 character alpha/numeric filename. The script works in either 3.6.xx or 4.x. I'm currently using FF 4.0.

Of course, if you've moved your FF cache to a non-standard location, you'll need to modify the script to accommodate that.

Last edited by PabloTwo; 25th March 2011 at 06:13 PM.
Reply With Quote
  #14  
Old 21st July 2011, 06:09 AM
Turtel Offline
Registered User
 
Join Date: Sep 2009
Location: Kanpur, India
Posts: 36
linuxfedorafirefox
Re: Location of FireFox Cache folder

Quote:
Originally Posted by PabloTwo View Post
Here is a command line I use to locate a flash video (FLV) in my firefox browser catch. I keep this as a file and just "cat" it to the terminal.
Code:
find ~/.mozilla -regex '.*Cache.*' -a -not -regex '.*_CACHE_.*' -printf '%T+ %p\n' | \
sort -n | awk '{ print $2 }' | xargs file | grep -i "Video" | tail -1 | awk -F : '{ print $1 }'
this command doesnot seem to work anymore with fedora 14
Reply With Quote
  #15  
Old 21st July 2011, 08:21 AM
Enterprise Offline
Registered User
 
Join Date: Jul 2011
Posts: 4
linuxmandrivafirefox
Re: Location of FireFox Cache folder

/home/<user>/local/mozilla/...
Reply With Quote
Reply

Tags
firefox 3.6

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Offline install Yum Cache Folder files mathan Installation and Live Media 5 16th April 2008 11:09 PM
Firefox startup location Nighthawk4 Using Fedora 2 29th March 2006 09:10 PM


Current GMT-time: 01:52 (Wednesday, 22-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat