Module activation - folder doesn't appear in live system

Technical issues/questions of an intermediate or advanced nature.
User avatar
Rava
Contributor
Contributor
Posts: 5416
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Module activation - folder doesn't appear in live system

Post#1 by Rava » 10 Nov 2023, 20:02

Hi,

Currently working on perfecting my basilisk local guest's settings folder / the basilisk settings module.
I started basilisk by mistake without first loading my settings module and thus it created a new generic settings folder resulting in none of my add-ons available.
Therefore I deleted as guest via

Code: Select all

rm -r ~/.basilisk-dev/
that settings folder, and loaded my module 986-basilisk-settings--2023-11-10.xzm

But I can deactivate that module and activate it again, the folder /home/guest/.basilisk-dev/ never appears in the live system.

Have a look at this:

Code: Select all

root@rava:/mnt/live/memory/images# ls -la 986-basilisk-settings--2023-11-10.xzm/home/guest/.basilisk-dev/ /home/guest/.basilisk-dev/
/bin/ls: cannot access '/home/guest/.basilisk-dev/': No such file or directory
986-basilisk-settings--2023-11-10.xzm/home/guest/.basilisk-dev/:
total 0
drwx------ 3 guest users 31 2023-10-27 04:14 .
drwxr-xr-x 3 guest users 36 2023-10-28 07:07 ..
drwx------ 3 guest users 59 2023-10-28 07:08 basilisk
You can see that the activated module has a /home/guest/.basilisk-dev/ folder (visible as /mnt/live/memory/images/986-basilisk-settings--2023-11-10.xzm/home/guest/.basilisk-dev/ - but the same folder not appears in the live system:

Code: Select all

/bin/ls: cannot access '/home/guest/.basilisk-dev/': No such file or directory
:wall:

I recall many months ago I had a similar issue and it was due to some special live system deletion memory file where deleted folders and files keep being deleted even when a module got deactivated and activated again.
Sadly, I do not find the thread from back then explaining the issue and also giving the solution (disabling or removing the live system special file thingy that stores the "this folders /files have been deleted info") since all these descriptions are seemingly too vague to find the older thread about a similar issue. Image

Hopefully someone who knows how to fix that issue will give me the heads up on how to fix that (again).

For now I will just copy the settings folders and files manually into /home/guest/ (and hope this crude "fix" will solve my issue) but I want to have a help file that explains the issue and how to fix it if the same error appears once more in the future.
Cheers!
Yours Rava

Vic
Samurai
Samurai
Posts: 122
Joined: 10 Aug 2016, 05:36
Distribution: Porteux V-0.1 64 KDE
Location: Utopia in Tampa, Florida, USA

Module activation - folder doen't appear in live system

Post#2 by Vic » 10 Nov 2023, 20:36

Yup, happened to me.

I logged out and back in. Problem solved, at least for me.

I seem to always find a way to bork the system, but am learning when to quit.

Some things are not worth the bother, if you know what I mean.

Vic

User avatar
Ed_P
Contributor
Contributor
Posts: 8374
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Module activation - folder doen't appear in live system

Post#3 by Ed_P » 10 Nov 2023, 21:38

Rava wrote:
10 Nov 2023, 20:02
I recall many months ago I had a similar issue and it was due to some special live system deletion memory file where deleted folders and files keep being deleted even when a module got deactivated and activated again.
white files. I run a script periodically to delete them from my save.dat file.

Code: Select all

              find ${SPACEDATDIR}/home -name ".wh.*" -delete
              find ${SPACEDATDIR}/usr  -name ".wh.*" -delete
              find ${SPACEDATDIR}/var  -name ".wh.*" -delete
 
These links might help you understand the problem:
Strange save.dat behavior [Solved ]
Strange save.dat behavior [Solved ]
Help!! Filenames with blanks in them
Ed

User avatar
Rava
Contributor
Contributor
Posts: 5416
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Module activation - folder doen't appear in live system

Post#4 by Rava » 10 Nov 2023, 22:12

^
I think I found the culprit:

Code: Select all

guest@rava:~$ find /mnt/live/memory/changes/home -name ".wh.*"
/mnt/live/memory/changes/home/guest/.basilisk-dev/.wh..wh..opq
:D
Cheers!
Yours Rava

fulalas
DEV Team
DEV Team
Posts: 2050
Joined: 26 Oct 2016, 15:34
Distribution: Porteus
Location: Brazil

Module activation - folder doesn't appear in live system

Post#5 by fulalas » 11 Nov 2023, 22:29

@Rava, that's one of the things that I still haven't figured out. But in a nutshell, every time you remove a file/folder that comes from a xzm module, AUFS will automatically create a whiteout (.wh.filename), meaning it's marked as deleted although the file is still mounted.

I always expected that loading a new module (that contains the same file/folder) would overwrite these whiteouts in order to make the file/folder appear again, but that's not the case.

I tried to ask sfjiro (the AUFS maintainer) here, but to be honest I didn't follow his answers, so... Remember to check the whiteouts (in /mnt/live/memory/changes/) every time you can't find a file/folder that gets mounted from a xzm module.

isr
White ninja
White ninja
Posts: 7
Joined: 04 Aug 2013, 15:19
Distribution: porteus-2.0 & gentoo
Location: California, USA

Module activation - folder doesn't appear in live system

Post#6 by isr » 12 Nov 2023, 02:06

@fulalas: Actually, everything is logically consistent here. When you manually delete a dir, then the whiteout file is created in your rw layer, which is at the very top of your aufs stack.

If you later mount a module with that "deleted" dir, then the module is slotted in somewhere in the middle of your aufs stack. So the whiteout file (which you manually created) in the TOPMOST layer still exists, and takes precedence.

The only correct way to prevent this is, when mounting a module, you should (scripted, of course) also check if there are any whiteouts in the topmost rw layer which are under the same path as the module's contents. And then (optionally?) remove them.

User avatar
Rava
Contributor
Contributor
Posts: 5416
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Module activation - folder doesn't appear in live system

Post#7 by Rava » 12 Nov 2023, 02:18

fulalas wrote:
11 Nov 2023, 22:29
Remember to check the whiteouts (in /mnt/live/memory/changes/) every time you can't find a file/folder that gets mounted from a xzm module.
Since its a glitch (when it bothers you, when not it is functionality as intended) that will bother any user, be they noob or experienced one, I think it should be documented somewhere prominent.

And it seems it is possible to be found in two places?
In one of the threads Ed_P linked to above he was looking into this

Code: Select all

find /mnt/live/memory/images/changes/home -name ".wh.*"
while I got no such folder as

Code: Select all

find /mnt/live/memory/changes/home -name ".wh.*"
is the correct place for me to search.

But I don't use changes cheatcode, as the boot screen says for me

Code: Select all

[…]
^ changes cheatcode not found, using memory only
^ creating live filesystem and inserting modules
[…]
and I know Ed_P usually uses the saving changes by default way of running Porteus.
isr wrote:
12 Nov 2023, 02:06
The only correct way to prevent this is, when mounting a module, you should (scripted, of course) also check if there are any whiteouts in the topmost rw layer which are under the same path as the module's contents. And then (optionally?) remove them.
The "optionally remove" is important here. Could be a user wants a certain file or folder and all subsequent files and folders "behind" that deleted folder to be deleted for a good reason.

Or, like in my case, the user wants no such thing.

It is hard to say what should be done. Like I wrote above: the users must be informed that this is how a live system using aufs stacks work, and that it only becomes a glitch when a created white out file bothers the user and must therefore be removed.

Having by default a script that runs on deactivation of any module and informing the user of new available white out files would confuse many users and should not be run for all users by default, but only on demand.

To be run my demand, be it run as one-liner as written above (again: seems it must be either used

Code: Select all

find /mnt/live/memory/images/changes/FOLDER/ -name ".wh.*"
or

Code: Select all

find /mnt/live/memory/changes/FOLDER/ -name ".wh.*"
when /FOLDER is the base folder of what you have issues with, like in my example:

Code: Select all

find /mnt/live/memory/changes/home -name ".wh.*"
or run as part of a script remains to be seen, but I think it should not be run as script by default since it complicated things, and only needs to be addressed when it causes issues.

Ed_P seems to delete all such white out files prior saving his changes into a module. Which sounds legit, but at times might not be what a user wants when there is a specific reason a certain folder or file should be deleted hidden from any later activated module(s).

Then again, even in this case the background on such white out files need to be documented in a prominent way so that a user knows the white out file is causing the issue, and (s)he can easily fix such issue by removing the white out file from either /mnt/live/memory/images/changes/FOLDER/ or /mnt/live/memory/changes/FOLDER/ …
Last edited by Rava on 12 Nov 2023, 02:25, edited 1 time in total.
Reason: typo
Cheers!
Yours Rava

User avatar
Ed_P
Contributor
Contributor
Posts: 8374
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Module activation - folder doesn't appear in live system

Post#8 by Ed_P » 12 Nov 2023, 07:41

Rava wrote:
12 Nov 2023, 02:18
Since its a glitch (when it bothers you, when not it is functionality as intended) that will bother any user, be they noob or experienced one, I think it should be documented somewhere prominent.
To the best of my knowledge it's not a bug. It's how linux works.
Rava wrote:
12 Nov 2023, 02:18
And it seems it is possible to be found in two places?
Actually they are found in several places. In the script I use to delete them from my save.dat file, which must be offline when the files are deleted, I purge them from these folders.

Code: Select all

echo find ${SPACEDATDIR} -name .wh.*
find ${SPACEDATDIR} -name .wh.*
echo
echo -en "Enter 1 to delete, 2 to exit.\n"
select yn in "Yes" "No"; do
   case $yn in
        Yes ) echo "find ${SPACEDATDIR}/home -name .wh.* -delete"
              find ${SPACEDATDIR}/home -name ".wh.*" -delete
              find ${SPACEDATDIR}/usr  -name ".wh.*" -delete
              find ${SPACEDATDIR}/var  -name ".wh.*" -delete
              echo
              echo find ${SPACEDATDIR} -name .wh.*
              find ${SPACEDATDIR} -name .wh.*
              break;;
        No )  break;; 
   esac
done
And the number of .wh. files listed is always in the high hundreds when I run my script.
Rava wrote:
12 Nov 2023, 02:18
Ed_P seems to delete all such white out files prior saving his changes into a module.
No. The save.dat where my changes are stored when I boot ISOs must be offline to have the .wh. files deleted. I don't recall running into them on my USB systems and they use save.dat files also since the systems are on FAT32 drives. My main save.dat is 512 MB and about 57% full.

And I've never deleted .wh. files from modules I make. And I don't recall ever finding a need to. Maybe dir2xzm doesn't write the .wh. files.

I do not recommend making a big deal out of the .wh. file situation. Look how long you have been using Porteus before encountering it.
Ed

fulalas
DEV Team
DEV Team
Posts: 2050
Joined: 26 Oct 2016, 15:34
Distribution: Porteus
Location: Brazil

Module activation - folder doesn't appear in live system

Post#9 by fulalas » 12 Nov 2023, 10:26

isr wrote:
12 Nov 2023, 02:06
@fulalas: Actually, everything is logically consistent here. When you manually delete a dir, then the whiteout file is created in your rw layer, which is at the very top of your aufs stack.
Yes, but why is like this? Why can't we have an option to give new mounted files/folders the highest priority on the stack?

Creating a script to do this manually might work but it looks like a big overhead :(

User avatar
Rava
Contributor
Contributor
Posts: 5416
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Module activation - folder doesn't appear in live system

Post#10 by Rava » 12 Nov 2023, 21:18

Ed_P wrote:
12 Nov 2023, 07:41
To the best of my knowledge it's not a bug. It's how linux works.
You even quoted me saying the same thing using other words. I highlight the crucial part:
Since its a glitch (when it bothers you, when not it is functionality as intended)
────────────────────────────────────────────────────────────────────────
fulalas wrote:
12 Nov 2023, 10:26
Why can't we have an option to give new mounted files/folders the highest priority on the stack?

Creating a script to do this manually might work but it looks like a big overhead :(
It would be a big overhead, and it might confuse users.

In my book, the best way is to comunicate what can be done by manually deleting only a very special white out file.

And we already are doing just this in this very thread. :)
Cheers!
Yours Rava

User avatar
Ed_P
Contributor
Contributor
Posts: 8374
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Module activation - folder doesn't appear in live system

Post#11 by Ed_P » 12 Nov 2023, 22:23

Rava wrote:
12 Nov 2023, 21:18
Since its a glitch
Rava wrote:
12 Nov 2023, 21:18
what can be done by manually deleting only a very special white out file.
And out of the hundreds of .wh. files that the user will find how do you think they will know which one/ones to delete? I have found no problems when I delete all of the ones I find in the folders I've noted. Actually I delete even more of them, after I delete the ones in the 3 guest folders I manually delete some of the remaining root .wh. files.

Here's some of what I see. :)

Code: Select all

find /mnt/loop -name .wh.*
  :
/mnt/loop/etc/X11/.wh.xorg.conf
/mnt/loop/home/guest/.cache/wallpaper/.wh.0_5_1920_1080_307a683caae1a0423dafcea221f1a6ef
/mnt/loop/home/guest/.cache/wallpaper/.wh.0_5_1920_1080_6b9492bc32c4bf0a19f65a949204927d
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-phish-proto.vlpset
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-phish-proto.metadata
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-malware-proto.vlpset
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-malware-proto.metadata
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-unwanted-proto.vlpset
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-unwanted-proto.metadata
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-badbinurl-proto.vlpset
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-badbinurl-proto.metadata
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-downloadwhite-proto.vlpset
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/safebrowsing/google4/.wh.goog-downloadwhite-proto.metadata
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/startupCache/.wh..wh..opq
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/startupCache/.wh.scriptCache-child.bin
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/startupCache/.wh.scriptCache.bin
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/startupCache/.wh.urlCache.bin
/mnt/loop/home/guest/.cache/mozilla/firefox/ple67xm3.default-release/.wh..startup-incomplete
/mnt/loop/home/guest/.cache/mozilla/firefox/dxsqumip.default/cache2/.wh.ce_Kg==
/mnt/loop/home/guest/.cache/mozilla/firefox/dxsqumip.default/cache2/.wh.doomed
/mnt/loop/home/guest/.cache/mozilla/firefox/dxsqumip.default/cache2/.wh.entries
/mnt/loop/home/guest/.cache/mozilla/firefox/dxsqumip.default/startupCache/.wh.scriptCache.bin
/mnt/loop/home/guest/.cache/mozilla/firefox/dxsqumip.default/startupCache/.wh.scriptCache-child.bin
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2f0000eeb57c65abdee58e923826ae60.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.6f44b3a46cc1c8bc5a76884337981700.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.cac22f57797132b08a504b9b04a1069a.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.1b372c098dc5205861654805673c8faa.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.bf8a66f309cdcfaf2baabef033de05aa.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d3b2085cbb96ba421de978c684fc899b.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.ea7a1d57f860440e0a9d0b69a6cda18c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2b1a49d77253c854b7d571a74710f2b7.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.20e21843d102b3f28b04d1c5d28404c9.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.c3eed81e4458434c945d0cec5acef0e2.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.ed8068d291151a70a4e7587fc21dd0e0.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.0abe52807c5698f17e6e9eedf111affe.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.eeebc484aff0859b189ac701006a7c2e.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.9ce2f951e2e10dc42a0d3c1b3d14a3c6.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.aa42fc0a4c8ac7b5d95fb31ca6cdb104.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.1bddf02d7c499cc038615994b55204f2.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.4d4a71999be0ca4cd3418d79be86b4be.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.57dbedef2877ec8dc596a9440fe9fdeb.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.1933015e9e0c60558f2e52b9224f2b42.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.49c254728e4e4c68fbd64826b2d5f3bf.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.23f46325ca7c5200628764dcfcdf2c3c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.7d3e4f717b4b91caad91d2304e469ae2.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.573f755b80b2efdfb02f709551e2f4af.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.43cb8a19c2f83ae2fce3a39067721f15.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2b40235c650f0035ce165e643b622726.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.39d6c7a3200d8d7d2ddb40237b98df47.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.e68f692ce4babe5aa130e4b9e2a81477.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.59d3b2c869ae595adae2f1119365e35b.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.daddfa4f44fc7fbf78b6bdf26a234a7c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.6dfe122837fef47ea1da49efaf77bef2.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b5ac17a98f2f6cb917f1094f788ba9fd.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.73155e72d3163200d34d878d3cfe923f.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d95987682d5625bc5a14d534d17ba0e5.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.131bc995113a52ae96e0957c3e58e0c8.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d61b4cf3461c86d88b7493de87d8e62c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.ab4f1beca4eb300d1dc047be4a18a85f.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d891a76a6237720c4eed9f56e39903f2.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.7a761815150cf54a321d7570f22d9255.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.1d4b228aaae12761fa6f224e32e0f337.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.306edba1d427069a652318765da434b5.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.09348c95723eac5c29f8a3b43846dcc9.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.f8ab53fa18ea9407cd04329754b24f5d.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.9e6373355ec2a949a7e5a931e5a925a7.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.99131ad580203b1a80fec02c067178c7.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.f04350a21931e19817a8e4c019db22d6.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.baf3782611f4a617d581a8f055179a36.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.c2ac2b1171e79340af9f2604683a4c35.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.ac9aeaf232a6f4421496a8dacc3286f7.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.5c0d88874da46ea8bb2756a725b8e94c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.cf9482581ebf6933f550fee9c4669b5f.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.5bbb8f4e4c290acafb053857c1878638.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2bc7df1b0d278ae24dffc88a4236d655.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.f7d31c75a3f86d432cab2fa8b6f115bd.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.dd16615281c8454f99ed806d7378a01b.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d830982826e786cf0c332b4f8122f8b1.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.5245ced0ec429a6bc59bf311560154c8.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.240f83e17d59e86b490695f838ca07a1.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.7946042ee663c3801253012d2c2690c6.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.15e70a54cbd2edffa143cfa37bb80f84.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.e9f5f3e81d7f0f1bff58c53c8b879341.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.a4548fb9ac11b25f04a303bfd73f4ec5.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.aaa2fbf5d4b7d01a873572660d7a00ea.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2a9af2c450b7b3235f886a1f2d412984.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.184064b993926bf2cd33ac57ee3ec395.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.0c657acd11dee86142a15e78f4102059.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b75b2e1863f73089bfefe52f9a8a95dd.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b9c6f99d27f6bca916582a1aae91e4a8.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d486272133015eac1fd62968f58e908e.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.944da0d59f4d92746fd9ef3eef22f991.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.3db067f59e2cf4409e5c36c07ebf30cb.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.560c2bc82be653d547717c9865b44484.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.65b607afafa9f931dd44f354363e477a.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2ef39b33e46ad4f638a7fa5664f92ebf.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2e4de9c1adfaec450b6611a2bfcdaf77.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.5b01b6f9c347c415cf9de4f1dea3b432.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.fd5be4ec0332ff13151793fd12fcb70c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.e6533c857291e6203915dfe1b923d4c4.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.ea14fe414e2cf18bffaa324aca9343e7.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b95993c4b681c8164d12b4160e2d4680.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.e0a3c8fd74653c59f0ea1bbf1f5b2a42.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.bc950eb7dad4e7e40c36661547a53cdb.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.af815533081fd9faf09f6b9ed1f55eca.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.087c9ce7eebc0ff44875e159f40874d6.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.63a333406e407c4c4711b28a206b140c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.4c52e76c74f54fc6e472aaa8c27287f8.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.afacd5aa7bfd57746e415d187ba82d4d.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d46516c037b90f8e83f9e059b48e3d03.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.c2db8f66d2eddeef230e490e0221f2d8.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.7189514fb7dc1bfbc9bcf00e270e4d11.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.79edc64bd22b7a9a386614904bed0866.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b209a72163f56119422d2c3df895255e.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.6439437abdfe757c9f92c62d03402d65.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.96b3ba6d9ceff5989e70a3a9ae46816c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.e93be8d9ff3800e8bf0f085fee4f0411.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.550b2a467137d106de99f5e40a261ee3.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b2608d5694ea73d2bb035c45475ce703.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.66fc2a562c0ad34a7f244a59511739a4.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d150533d5c7835f2df9d79ab57f1b39a.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.9f6a524fbbcba3d607f0126decd233bc.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d2c76193157d3348766db452e9cbac4f.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2a457f00ed819e45565c808f013f5ef2.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2d3fb4443a0d7f758633698ca54d0d69.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.8995a9c7052023ebe809d3fcbeb55e2a.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.8ee1a757c812806999b0eb44b2c404a1.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.76320bb1b44a5c5da82a2affef43469b.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.23e77372d36e91a9c721abd4b7ed931c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.820716a9fe4c3129428f830e2d0c58aa.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.5bfa66bb529a1731b04278b0f1fb5de4.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.41cdd782403c10dc0389bfbff20e2d1d.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.f24f33ddbb902ac882a4a836272432ae.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.0e1d346a55f4cc253b38f3d2720980c3.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.4c9b73dab86a0eca06ce53b23fbcb1b2.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.50967e80307da0b7066c3ce4135de6cf.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b35031b6fe4648685db0cc5670fe7f02.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.fdbdffc1d9fb802ac5c48bd8df3b078b.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.2a7163eb3b60ecd30dd2bd67e5d5c63d.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b94e34ff8856a80a77035c218a393eb0.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.1649443243c3b0a0ff09bfe4230d982c.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.d2b2dfde5c85c870f305dab93d2f0276.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.4592e75ad2347ba2eb71db01df8f8a6a.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.b9896c85aa3e0e59fc75a043f7bf09a1.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.1a4df74f0d6e50bdf654939b29308fbf.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.161f3b3b358af3e45f54db65595ec057.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.7b1bbe8c7077f3a06512377ac606c510.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.c299686fb6237358f8afc72fbc947ed8.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.35da46c0466878d6cae61f423cd64db8.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.4dc673ed26c1eebc94db078403bca753.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.cd4ae2ef7f1ca2837e1ef2d2debc925f.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.ad404d5657284e43e15effb3dd24f2e7.png
/mnt/loop/home/guest/.cache/thumbnails/large/.wh.a182f430a259c98f265f063e535ec66c.png
  :
  :
  :
  :
  :
  :
tension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.427
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.441
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.461
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.471
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.479
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.490
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.29
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.31
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.37
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.40
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.42
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.44
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.46
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.48
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.52
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.54
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.61
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.64
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.67
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.71
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.76
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.83
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.87
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.93
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.95
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.99
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.103
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.107
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.111
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.123
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.131
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.141
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.145
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.153
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.157
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.169
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.173
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.175
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.177
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.185
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.189
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.193
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.201
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.207
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.211
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.215
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.217
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.221
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.225
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.229
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.235
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.237
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.239
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.243
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.245
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.253
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.257
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.259
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.271
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.278
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.315
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.321
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.345
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.351
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.367
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.377
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.391
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.401
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.419
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.455
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.486
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.514
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.524
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.534
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.542
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.554
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.564
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/3647222921wleabcEoxlt-eengsairo.files/.wh.572
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/moz-extension+++a0f08673-3fa9-4163-8fcb-32ed4b44fa2d^userContextId=4294967295/idb/.wh.3647222921wleabcEoxlt-eengsairo.sqlite-wal
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/175/.wh.{cbc33aba-7654-4e6a-b339-13ba7b7326af}.final
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.138
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.184
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.92
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.107
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.168
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.222
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.122
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.195
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.78
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.63
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.130
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.69
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.6
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.83
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.35
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.93
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.186
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.127
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.209
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.15
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.220
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.120
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.179
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.51
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.29
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.71
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.111
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.121
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.143
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.87
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.192
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.172
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.65
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.22
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.141
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.31
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.89
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.194
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.123
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.215
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/morgue/.wh.231
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.sandisk.com/cache/.wh.context_open.marker
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.usatoday.com/cache/morgue/.wh.89
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.usatoday.com/cache/morgue/.wh.214
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.189
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.28
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.184
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.194
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.87
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.210
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.226
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.233
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.243
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.108
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.142
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.74
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.197
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.33
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.158
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/morgue/.wh.37
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.democratandchronicle.com/cache/.wh.context_open.marker
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++twitter.com/cache/morgue/.wh.24
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++us19.forgeofempires.com/cache/morgue/.wh.100
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.105
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.114
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.29
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.214
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.169
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.46
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.61
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.219
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.72
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.96
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.197
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.183
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.182
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.129
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.30
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.75
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.112
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.85
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/morgue/.wh.249
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++chat-dl.google.com/cache/.wh.context_open.marker
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++www.amazon.com
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.57
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.55
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.166
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.10
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.249
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.108
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.251
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.237
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/cache/morgue/.wh.221
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.4094951707yCt7-%iCt7-%r5e4s3p4o.files
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.4094951707yCt7-%iCt7-%r5e4s3p4o.sqlite
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.536013125yCt7-%iCd7b%-5p4r3e4f.files
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.536013125yCt7-%iCd7b%-5p4r3e4f.sqlite
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.1176936018PCe7r%sCi7s%t5e4n3t4E.files
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.1176936018PCe7r%sCi7s%t5e4n3t4E.sqlite
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.797644677LCo7g%sCD7a%t5a4b3a4s.files
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.797644677LCo7g%sCD7a%t5a4b3a4s.sqlite
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.709905951LCo7g%sCD7a%t1a8bca6s.files
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++www.youtube.com/idb/.wh.709905951LCo7g%sCD7a%t1a8bca6s.sqlite
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.scotsnewsletter.com/cache/morgue/.wh.63
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.scotsnewsletter.com/cache/morgue/.wh.70
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.scotsnewsletter.com/cache/morgue/.wh.0
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/https+++forums.scotsnewsletter.com/cache/morgue/.wh.77
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++disqus.com
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++www.recaptcha.net
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++my.yahoo.com
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++mail.google.com
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++alexa.amazon.com
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++www.msn.com
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/storage/default/.wh.https+++www.adobe.com
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/gmp-widevinecdm/.wh.4.10.2557.0
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/gmp-gmpopenh264/.wh.1.8.1.1
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/gmp-gmpopenh264/.wh.1.8.1.2
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/.wh.places.sqlite-wal
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/.wh.cookies.sqlite-wal
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/.wh.favicons.sqlite-wal
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/features/.wh.{9c221285-3f72-4896-9de3-0dd925b7ee8f}
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/features/.wh.{53551387-9240-4ade-b49a-b9a3633b91aa}
/mnt/loop/home/guest/.mozilla/firefox/ple67xm3.default-release/.wh.AlternateServices.txt
/mnt/loop/home/guest/.mozilla/firefox/.wh.profiles (52.9.0).ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.profiles(87.0).ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.installs(87.0).ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.dxsqumip.default
/mnt/loop/home/guest/.mozilla/firefox/.wh.profiles94.ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.installs94.ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.profilesX.ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.profiles(870).ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.profiles(52.9.0).ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.installsX.ini
/mnt/loop/home/guest/.mozilla/firefox/.wh.installs(870).ini
/mnt/loop/home/guest/.mozilla/.wh.plugins
/mnt/loop/home/guest/mkmods/.wh.MkmodfixFirefox50rc2.sh
/mnt/loop/home/guest/mkmods/.wh.MkmodFirefox50rc2.sh
/mnt/loop/home/guest/mkmods/.wh.MkmodBasechanges5.sh
/mnt/loop/home/guest/mkmods/.wh.firefox870940.sh
/mnt/loop/home/guest/mkmods/.wh.mkmodfirefox940.sh
/mnt/loop/home/guest/mkmods/.wh.mkmodgetmod.sh
/mnt/loop/home/guest/.wh.bootdev.sh
/mnt/loop/home/guest/Downloads/.wh.cloudready-free-89.4.44-64bit.zip
/mnt/loop/home/guest/Downloads/.wh.pysol.png
/mnt/loop/home/guest/Downloads/.wh.7-zip-21.02-x86_64-1ncm.xzm
/mnt/loop/home/guest/Downloads/.wh.x.diskpart
/mnt/loop/home/guest/Downloads/.wh.64bit-ALL-kernel5.16.9.tar
/mnt/loop/home/guest/Downloads/.wh.05-devel.xzm
/mnt/loop/home/guest/Downloads/.wh.hexedit-1.2.12-x86_64-1_SBo.tgz
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-02-15.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2021-12-12.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-04-05.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-04-07.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-03-12.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-06-22.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-06-09.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-04-08.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-09-13.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-08-17.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-10-05.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-10-28.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-12-15.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2021-03-17.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2021-12-04.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2021-09-21.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2021-04-15.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2021-12-09.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-09-28.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2022-12-14.json
/mnt/loop/home/guest/Backups/FireFox/.wh.bookmarks-2023-01-01.json
/mnt/loop/home/guest/.wh.usmupdate2021.sh
/mnt/loop/home/guest/.wh.porteus-usb.sh
/mnt/loop/home/guest/Pictures/.wh.pysol.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2020-10-07 15-16-28.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2020-09-20 11-45-45.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2021-07-12 17-01-54.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2021-03-28 11-14-15.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2021-07-21 15-01-08.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2020-10-07 15-09-08.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2020-10-06 14-19-41.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2021-11-11 20-57-24.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2021-12-09 15-10-54.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2022-04-28 13-03-05.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2022-10-05 00-20-29.png
/mnt/loop/home/guest/Pictures/.wh.Screenshot from 2022-10-04 21-01-27.png
/mnt/loop/home/guest/.wh.test2
/mnt/loop/home/guest/.wh.Savedat
/mnt/loop/home/guest/.wh.Firefox81.sh
/mnt/loop/home/guest/.wh.Army.txt
/mnt/loop/home/guest/.wh.FlashGames1.sh
/mnt/loop/home/guest/.wh.DRV.sh
/mnt/loop/home/guest/.wh.firefox
/mnt/loop/home/guest/.wh.diff.txt
/mnt/loop/home/guest/.wh.FoEarmy.txt
/mnt/loop/var/spool/cups/.wh.d00033-001
/mnt/loop/var/spool/cups/.wh.d00034-001
/mnt/loop/var/spool/cups/.wh.c00006
/mnt/loop/var/spool/cups/.wh.c00046
/mnt/loop/var/spool/cups/.wh.d00049-001
/mnt/loop/var/spool/cups/tmp/.wh.cups-dbus-notifier-lockfile
/mnt/loop/var/spool/cups/.wh.d00042-001
/mnt/loop/var/spool/cups/.wh.d00005-001
/mnt/loop/var/spool/cups/.wh.c00002
/mnt/loop/var/spool/cups/.wh.c00003
/mnt/loop/var/spool/cups/.wh.c00004
/mnt/loop/var/spool/cups/.wh.c00005
/mnt/loop/var/spool/cups/.wh.c00047
/mnt/loop/var/spool/cups/.wh.d00047-001
/mnt/loop/var/spool/cups/.wh.c00039
/mnt/loop/var/spool/cups/.wh.c00017
/mnt/loop/var/spool/cups/.wh.c00011
/mnt/loop/var/spool/cups/.wh.d00046-001
/mnt/loop/var/spool/cups/.wh.c00045
/mnt/loop/var/spool/cups/.wh.d00003-001
/mnt/loop/var/spool/cups/.wh.c00040
/mnt/loop/var/spool/cups/.wh.c00041
/mnt/loop/var/spool/cups/.wh.c00042
/mnt/loop/var/spool/cups/.wh.c00035
/mnt/loop/var/spool/cups/.wh.c00033
/mnt/loop/var/spool/cups/.wh.c00032
/mnt/loop/var/spool/cups/.wh.c00029
/mnt/loop/var/spool/cups/.wh.c00030
/mnt/loop/var/spool/cups/.wh.c00031
/mnt/loop/var/spool/cups/.wh.c00034
/mnt/loop/var/spool/cups/.wh.c00037
/mnt/loop/var/spool/cups/.wh.c00028
/mnt/loop/var/spool/cups/.wh.c00024
/mnt/loop/var/spool/cups/.wh.c00026
/mnt/loop/var/spool/cups/.wh.c00014
/mnt/loop/var/spool/cups/.wh.c00019
/mnt/loop/var/spool/cups/.wh.c00007
/mnt/loop/var/spool/cups/.wh.d00044-001
/mnt/loop/var/spool/cups/.wh.c00048
/mnt/loop/var/spool/cups/.wh.c00044
/mnt/loop/var/spool/cups/.wh.d00020-001
/mnt/loop/var/spool/cups/.wh.d00002-001
/mnt/loop/var/spool/cups/.wh.c00038
/mnt/loop/var/spool/cups/.wh.c00036
/mnt/loop/var/spool/cups/.wh.c00027
/mnt/loop/var/spool/cups/.wh.c00023
/mnt/loop/var/spool/cups/.wh.c00025
/mnt/loop/var/spool/cups/.wh.c00015
/mnt/loop/var/spool/cups/.wh.c00020
/mnt/loop/var/spool/cups/.wh.c00008
/mnt/loop/var/spool/cups/.wh.d00043-001
/mnt/loop/var/spool/cups/.wh.d00027-001
/mnt/loop/var/spool/cups/.wh.d00030-001
/mnt/loop/var/spool/cups/.wh.d00032-001
/mnt/loop/var/spool/cups/.wh.c00021
/mnt/loop/var/spool/cups/.wh.c00009
/mnt/loop/var/spool/cups/.wh.c00043
/mnt/loop/var/spool/cups/.wh.d00037-001
/mnt/loop/var/spool/cups/.wh.d00035-001
/mnt/loop/var/spool/cups/.wh.d00038-001
/mnt/loop/var/spool/cups/.wh.d00040-001
/mnt/loop/var/spool/cups/.wh.d00039-001
/mnt/loop/var/spool/cups/.wh.d00041-001
/mnt/loop/var/spool/cups/.wh.d00004-001
/mnt/loop/var/spool/cups/.wh.c00013
/mnt/loop/var/spool/cups/.wh.c00018
/mnt/loop/var/spool/cups/.wh.c00012
/mnt/loop/var/spool/cups/.wh.d00045-001
/mnt/loop/var/spool/cups/.wh.d00010-001
/mnt/loop/var/spool/cups/.wh.c00016
/mnt/loop/var/spool/cups/.wh.c00022
/mnt/loop/var/spool/cups/.wh.c00010
/mnt/loop/var/spool/cups/.wh.d00009-001
/mnt/loop/var/spool/cups/.wh.d00008-001
/mnt/loop/var/spool/cups/.wh.d00007-001
/mnt/loop/var/spool/cups/.wh.d00006-001
/mnt/loop/var/spool/cups/.wh.d00012-001
/mnt/loop/var/spool/cups/.wh.d00011-001
/mnt/loop/var/spool/cups/.wh.d00022-001
/mnt/loop/var/spool/cups/.wh.d00021-001
/mnt/loop/var/spool/cups/.wh.d00019-001
/mnt/loop/var/spool/cups/.wh.d00018-001
/mnt/loop/var/spool/cups/.wh.d00017-001
/mnt/loop/var/spool/cups/.wh.d00016-001
/mnt/loop/var/spool/cups/.wh.d00026-001
/mnt/loop/var/spool/cups/.wh.d00025-001
/mnt/loop/var/spool/cups/.wh.d00024-001
/mnt/loop/var/spool/cups/.wh.d00023-001
/mnt/loop/var/spool/cups/.wh.d00028-001
/mnt/loop/var/spool/cups/.wh.d00031-001
/mnt/loop/var/spool/cups/.wh.d00029-001
/mnt/loop/var/spool/cups/.wh.d00036-001
/mnt/loop/var/spool/cups/.wh.d00048-001
/mnt/loop/var/cache/cups/.wh.ppds.dat
/mnt/loop/var/lib/NetworkManager/.wh.dhclient-wlan0.conf
/mnt/loop/var/lib/NetworkManager/.wh.dhclient6-wlan0.conf
/mnt/loop/var/lib/NetworkManager/.wh.dhclient-0abf9a0f-9374-4b80-825f-e72f5b7da9d2-wlan0.lease
/mnt/loop/var/lib/NetworkManager/.wh.dhclient6-0abf9a0f-9374-4b80-825f-e72f5b7da9d2-wlan0.lease
/mnt/loop/var/lib/NetworkManager/.wh.dhclient6-bfd55e0d-623a-413c-b3a6-9aed55c84dd7-wlan0.lease
/mnt/loop/var/lib/NetworkManager/.wh.dhclient6-babc15f9-89ea-419b-b683-f1327d474634-wlan0.lease
/mnt/loop/var/lib/NetworkManager/.wh.dhclient-babc15f9-89ea-419b-b683-f1327d474634-wlan0.lease
/mnt/loop/var/lib/NetworkManager/.wh.dhclient-bfd55e0d-623a-413c-b3a6-9aed55c84dd7-wlan0.lease
/mnt/loop/var/lib/pkgtools/packages/.wh.pango-1.50.6-x86_64-1-ncm
/mnt/loop/var/lib/pkgtools/packages/.wh.gtk+3-3.24.33-x86_64-1
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-ca129861.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-c3b9db76.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-ba3c5098.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-ade47e4c.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-b9d4d1b7.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-c10262d0.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-5e814a65.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-859bea3c.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-29545aa9.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-116770a2.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-f29e1ef9.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-e6eca3a5.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-6dd461ec.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-1aab49b9.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-faf3786c.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.uuid-2628E9A628E974E9-fa1a94ce.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.home-b389583d.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-f717a588.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-392af86d.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-fd5d160a.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-d8486961.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-45502ecd.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-b7f4842f.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-0401a7ea.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-2eafbc56.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-c2a36395.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-bf63e7ed.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.root-04d19a97.log
/mnt/loop/root/.local/share/gvfs-metadata/.wh.uuid-3f43e763-f2c8-4165-8440-737ac019923a-83489c5e.log
/mnt/loop/root/.cache/dconf/.wh.user
/mnt/loop/usr/share/applications/.wh.gslapt.desktop
/mnt/loop/usr/share/applications/.wh.gslapt-kde.desktop
/mnt/loop/usr/share/applications/.wh.system-config-printer.desktop
/mnt/loop/usr/share/applications/.wh.cups.desktop
/mnt/loop/usr/share/applications/.wh.xmahjongg.desktop
/mnt/loop/usr/share/applications/.wh.browser.desktop
/mnt/loop/usr/share/mime/application/.wh.x-cmakecache.xml
/mnt/loop/usr/lib64/.wh.libmozjs-52.so.0
/mnt/loop/usr/lib64/.wh.libColorGearC.so.2
:hmmm: Looks like I need to run my delete script. :happy62:
Ed

isr
White ninja
White ninja
Posts: 7
Joined: 04 Aug 2013, 15:19
Distribution: porteus-2.0 & gentoo
Location: California, USA

Module activation - folder doesn't appear in live system

Post#12 by isr » 13 Nov 2023, 01:44

fulalas wrote:
12 Nov 2023, 10:26
isr wrote:
12 Nov 2023, 02:06
@fulalas: Actually, everything is logically consistent here. When you manually delete a dir, then the whiteout file is created in your rw layer, which is at the very top of your aufs stack.
Yes, but why is like this? Why can't we have an option to give new mounted files/folders the highest priority on the stack?

Creating a script to do this manually might work but it looks like a big overhead :(
Huh?? There is no other way it could work. Thats the nature of ANY union filesystem, which stacks discrete layers on top of each other.

1. you need to have a mechanism for shadowing (deleting) contents further down the stack. That's what whiteout are for.

2. those whiteouts you created at the top STILL EXIST (how could they not?) when you later slot new layers on the middle of the stack. You "deleted" the files yourself. You need to "undelete" them. How could the filesystem possibly know what you really intended?

There's no other logical way that aufs should behave. This is entirely consistent and understandable. You only run into this on aufs because of its increased versatility vs overlayfs. With an overlayfs union, you don't really modify the union'ed set after its created. With aufs (obviously, this is the entire raison d'etre of porteus), we do - so this possibility can always happen.

If you want to prevent yourself from absent mindedly deleting files IN THE PAST, that you later RE-ADD IN THE FUTURE, then the solution I outlined in my original post is the only way.

(or you can compile a time machine I suppose ...)

EDIT: ah, I just reread your post, and see that I missed the part where you mentioned top-mounting the new module. My bad.

You CAN have multiple rw layers at the top, where writes go to different rw layers, on a per dir basis. But that would entail changing the general rw layer to not be a "catch-all". In other words, you'd need different rw layers for different dir trees. This would necessitate a complete redo of how the current live fs is constructed.

I don't think you can put a ro layer at the top, though ( which is what you're advocating). Please correct me if I'm wrong

Honestly, this is making a mountain out of a tiny anthill. A simple script which h just shows whiteouts which conflict with any newly added module, that would by far be the easiest option!

User avatar
Rava
Contributor
Contributor
Posts: 5416
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Module activation - folder doesn't appear in live system

Post#13 by Rava » 13 Nov 2023, 06:04

Ed_P wrote:
12 Nov 2023, 22:23
And out of the hundreds of .wh. files that the user will find how do you think they will know which one/ones to delete? I have found no problems when I delete all of the ones I find in the folders I've noted. Actually I delete even more of them, after I delete the ones in the 3 guest folders I manually delete some of the remaining root .wh. files.
I speak about deleting one specific white out file in the live system.
And it was no-brainer to know which one is the correct one. See above.

When a user cannot figure out which one is the one correct specific white out file after lurking in this very thread (or the ones you linked to above) to delete from the live system - then that user should better not bother with any white out file(s) at all and best for all of us (including her/himself) just reboot instead.

I presume you speak about deleting ".wh.*" files in an offline folder when in the process to create a module.
And that is very different compared to deleting maybe hundreds of ".wh.*" white out files in the live system.

Do you really suggest a user should delete hundreds of .wh. files from the live system when that very system is, well, live?
Cheers!
Yours Rava

User avatar
Ed_P
Contributor
Contributor
Posts: 8374
Joined: 06 Feb 2013, 22:12
Distribution: Cinnamon 5.01 ISO
Location: Western NY, USA

Module activation - folder doesn't appear in live system

Post#14 by Ed_P » 13 Nov 2023, 06:39

Rava wrote:
13 Nov 2023, 06:04
I presume you speak about deleting ".wh.*" files in an offline folder when in the process to create a module.
No.
Ed_P wrote:
12 Nov 2023, 07:41
And I've never deleted .wh. files from modules I make. And I don't recall ever finding a need to. Maybe dir2xzm doesn't write the .wh. files.
Ed

User avatar
Rava
Contributor
Contributor
Posts: 5416
Joined: 11 Jan 2011, 02:46
Distribution: XFCE 5.01 x86_64 + 4.0 i586
Location: Forests of Germany

Module activation - folder doesn't appear in live system

Post#15 by Rava » 13 Nov 2023, 07:09

@Ed_P, then you do suggest this:
Rava wrote:
13 Nov 2023, 06:04
Do you really suggest a user should delete hundreds of .wh. files from the live system when that very system is, well, live?
Cheers!
Yours Rava

Post Reply