this post was submitted on 25 Jul 2026
3 points (100.0% liked)

techsupport

3211 readers
2 users here now

The Lemmy community will help you with your tech problems and questions about anything here. Do not be shy, we will try to help you.

If something works or if you find a solution to your problem let us know it will be greatly apreciated.

Rules: instance rules + stay on topic

Partnered communities:

You Should Know

Reddit

Software gore

Recommendations

founded 3 years ago
MODERATORS
 

Whenever I download bigger files, my RAM fills up and the tab/download crashes. Is it possible to "fsync" downloads with Firefox (really Librewolf, but still) so that it goes directly into storage instead of RAM? Or to adjust the amount of memory used before it is dumped into storage?

you are viewing a single comment's thread
view the rest of the comments
[–] tal@lemmy.today 2 points 2 months ago* (last edited 2 months ago) (1 children)

Do you know if I’m able to authenticate logins with wget? As in, I’m actually downloading from a cloud service and I’m worried that it’ll give me a 401 Unauthorized.

Once upon a time, Netscape Navigator stored cookies in a "cookies.txt" file. While Firefox doesn't do so these days, Firefox has a "cookies.txt" addon that will let you export the cookies from your browser session in said format. You can use these if you require some sort of authentication that needs to be done interactively from the browser: $ wget --load-cookies cookies.txt <URL to download>.

wget also natively supports authentication with a password, but it's possible that whatever service you're using requires interactive authentication in a browser, and for those, this is a workaround.

[–] akunohana@piefed.blahaj.zone 2 points 2 months ago

Sic! I guess wget wasn't born yesterday. 🤣 Thank you so much! 😊