← Back to questions
Technology

Why does Linux use so much ram


4 Answers

✓ Accepted Answer
Setting up a home network properly makes a huge difference to reliability. Start by positioning your router centrally in your home rather than in a corner or cupboard. Walls, especially thick concrete ones, kill wifi signal. For the router itself, log into its admin panel (usually by typing 192.168.1.1 or 192.168.0.1 in a browser). Change the default admin password immediately — factory passwords are public knowledge. Also rename your wifi network to something that doesn't identify your router model. Separate your IoT devices (smart bulbs, thermostats, cameras) onto a guest network if your router supports it. This isolates them from your main devices in case any smart device gets compromised. For wired connections, use ethernet whenever possible for desktops, gaming consoles, and smart TVs. Wired is always more reliable and faster than wifi. A cheap network switch lets you run multiple wired connections from one router port.
by williamwilliams11965 · 72 upvotes
✓ Accepted Answer
The reason linux confuses people is that most explanations describe the mechanics without establishing why those mechanics exist. What you need to understand first: linux works the way it does because of constraints that aren't obvious until you look closely. When you internalise that, the concept starts making more sense. In practice this means: what looks advanced is usually careful application of the basics. In practice this means testing your approach on a local environment before moving to production. Applied to practice: you will see this pattern repeat across different contexts. Satch out for breaking changes between major versions. One thing worth emphasising: with linux, the gap between knowing the theory and applying it in practice is wider than most people expect. Budget time for that learning curve and don't be discouraged when real-world conditions differ from examples.
by kwekumensah2959
On linux: the short answer is that it is more manageable than it looks, but it has specific requirements that catch people out when they are not expecting them. The core thing to know: linux has a steeper initial curve that flattens once the fundamentals click. What to prioritise first: identify your actual constraints rather than assumed ones. Check the official documentation first; it's usually more accurate than blog posts. Watch out for: watch out for breaking changes between major versions. This is the most common source of friction people encounter with linux after the initial setup. Realistic timeline: a month of consistent engagement to build real confidence.
by kofimensah210
Questions about linux usually fall into one of three categories, and knowing which one you're in changes the answer significantly. **Category 1 — Conceptual:** You understand the goal but not how linux works mechanically. The fix here is to find the clearest possible explanation — not the most comprehensive one — and work through one complete example from beginning to end. **Category 2 — Implementation:** You understand linux conceptually but something specific is not working. The most effective approach is to eliminate variables systematically: isolate the smallest possible failing case, confirm your assumptions about linux one by one, and compare against a known-working reference. **Category 3 — Design:** You can make linux work but you are not sure if you are approaching the system the right way for your situation. This one requires understanding your actual constraints — not the ideal constraints — and finding people who have solved similar problems in similar contexts. In practice this means testing your approach on a local environment before moving to production. The diagnostic question that resolves most confusion about linux: "Am I working from a wrong assumption, or am I missing information?" Those two problems look similar from the outside but have completely different solutions. Satch out for breaking changes between major versions.
by hiraqureshi