this post was submitted on 02 Feb 2025
52 points (93.3% liked)

Linux

49492 readers
554 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

Friend has an old laptop with windows 10 that he doesn't use because too slow and freezing all the time. Wants to revive it to leave at his lab in grad school for browsing the internet and editing stuff on google docs so he doesn't have to carry his newer laptop everyday.

I suggested Linux but I myself always used Debian and I am not sure it will run decently with such low specs. Was thinking maybe Debian 11 with xfce or something? Any better options?

you are viewing a single comment's thread
view the rest of the comments
[–] 0x0@programming.dev 2 points 3 hours ago (1 children)

32 bit version of firefox, because it makes a huge difference in low ram devices.

How so? What CPU does she have?

[–] nossaquesapao@lemmy.eco.br 2 points 2 hours ago

I assumed a x64. Debian (the distro mx linux is based on) offers multiarch support, so i just had to enable it by running:

sudo dpkg --add-architecture i386 
sudo apt update

Then, to install 32-bit firefox, I first uninstalled it and then installed the 32-bit version:

sudo apt remove firefox-esr  
sudo apt install firefox-esr:i386

With the standard 64 bit version, the browser would struggle with just 2 or 3 tabs, and with the 32 bit version, she can use like 10 tabs without problems