temeela

joined 1 year ago
[–] [email protected] 71 points 8 months ago (4 children)

Seems like your USB drive is formatted with a filesystem that doesn't support large files like FAT32, if you are able to, try formatting into exFAT in Linux with:

sudo mkfs.exfat -n LABEL /dev/YOURUSB

or in Windows by right clicking on the USB and clicking format.

[–] [email protected] 47 points 10 months ago (1 children)

I've filed a report to GitHub on this guy, I assume you did the same but ugh, people suck.

[–] [email protected] 30 points 10 months ago (1 children)

uBlock Origin has cookie/popups filters that you can enable in its settings that work pretty well

[–] [email protected] 1 points 11 months ago (1 children)

As per the arkenfox wiki, you should not touch user.js but rather in user-overrides.js add (or create it) the following:

/* override recipe: enable session restore ***/ user_pref("browser.startup.page", 3); // 0102 // user_pref("browser.privatebrowsing.autostart", false); // 0110 required if you had it set as true // user_pref("browser.sessionstore.privacy_level", 0); // 1003 optional to restore cookies/formdata user_pref("privacy.clearOnShutdown.history", false); // 2811 // user_pref("privacy.cpd.history", false); // 2820 optional to match when you use Ctrl-Shift-Del

See info on overrides and the recipe to enable session restore