𝗦𝗲𝗲𝗶𝗻𝗴 𝟵𝟬–𝟵𝟵% 𝗥𝗔𝗠 𝘂𝘀𝗮𝗴𝗲 𝗶𝗻 𝗟𝗶𝗻𝘂𝘅? That’s usually normal. Linux uses memory for cache, not just applications. Understand: • Page cache • Swap behavior • OOM killer • Real vs fake memory pressure #linux #devops #sysadmin #programming #opensource #LinuxTeck
Linux RAM usage in Linux
More Relevant Posts
-
Boost your productivity in Linux with wildcard characters. This guide covers how *, ?, and [] enable efficient pattern matching, helping you search and manage files with precision—an essential concept for developers, system administrators, and IT professionals. 👉 Read more: https://lnkd.in/dDsKSSEB #Linux #DevOps #SystemAdministration #Programming #ITProfessionals #TechSkills #CommandLine #Automation
To view or add a comment, sign in
-
-
I wish I learned these Linux commands earlier… Most people stop at ls and cd. But these commands? They actually make you efficient. ⚡ Save time ⚡ Debug faster ⚡ Work like a pro Which one are you going to try today? 👇 Save this for later Share with someone learning Linux Repost if you find this useful ♻️ #Linux #DevOps #Programming #SoftwareEngineering #OpenSource #TechTips #Productivity
To view or add a comment, sign in
-
One of the most useful Linux concepts for beginners is understanding the 3 standard streams: ▪️ stdin for input ▪️ stdout for normal output ▪️ stderr for errors Once this clicks, redirection and pipes make a lot more sense. I made this one-image cheat sheet to simplify it. #linux #DevOps #cli #terminal #programming #OpenSource
To view or add a comment, sign in
-
-
One Linux command I wish I'd learned earlier: $ ctrl + r It searches your entire command history instantly. No more pressing ↑ 40 times. Save this. You'll use it tomorrow. #Linux #SysAdmin #DevOps #TechLearning #LinuxTips #Bash #ShellScripting #Programming #LearnLinux
To view or add a comment, sign in
-
𝗠𝗼𝘀𝘁 𝗟𝗶𝗻𝘂𝘅 𝗶𝘀𝘀𝘂𝗲𝘀 𝗮𝗿𝗲 𝗻𝗼𝘁 𝗮𝗯𝗼𝘂𝘁 𝗰𝗼𝗺𝗺𝗮𝗻𝗱𝘀. 𝗧𝗵𝗲𝘆 𝗮𝗿𝗲 𝗮𝗯𝗼𝘂𝘁 𝗲𝗻𝘃𝗶𝗿𝗼𝗻𝗺𝗲𝗻𝘁. Variables like PATH, LD_PRELOAD, and HISTCONTROL quietly control how your system behaves, what gets executed, and even what gets logged. This layer is often ignored until something breaks. In production, that usually means debugging blind. Understanding these variables is not optional if you manage Linux systems at scale. Which one has caused you the most trouble? #linux #sysadmin #devops #linuxcommands #cheatsheet #linuxadmin #terminal #opensource #programming #linux2026
To view or add a comment, sign in
-
-
We use Linux commands every day — but what really happens after pressing Enter? This visual breaks down the flow from shell input to process creation, program execution, output, and exit code. Understanding this makes concepts like PATH, fork/exec, stdout, and shell behavior much easier to grasp. #Linux #DevOps #SysAdmin #Programming #OpenSource #Terminal
To view or add a comment, sign in
-
-
🐧 If you're new to Linux, save this! These 10 basic commands are all you need to get started: ✅ pwd – Find your current directory ✅ cd – Navigate through files & folders ✅ ls – View contents of a directory ✅ cat – Create a new file ✅ cp – Copy files to another directory ✅ mv – Move files ✅ mkdir – Create a new directory ✅ rmdir – Delete directories ✅ locate – Find any file quickly ✅ sudo – Run tasks with admin permissions ✅ head – View the first lines of a text file The terminal feels overwhelming at first — but it all starts with these. 💻 #Linux #TechTips #Programming #OpenSource #Coding #Developer #LearnToCode
To view or add a comment, sign in
-
-
One thing that really clicked for me when learning system programming on Linux: std::thread is not “magic”. Under the hood, it often relies on native OS threads — and on Linux, that typically means pthread. So the abstraction looks like this: C++ code → std::thread → pthread → OS threads That changed how I see modern C++. std::thread is not replacing low-level threading — it is giving you a safer, portable interface on top of it. And that is why: you get RAII type safety and cleaner APIs without losing performance. The real takeaway : When you use std::thread, you are still using system threads — just with a better interface. Curious: Did you start with pthread or directly with std::thread? #cpp #cplusplus #multithreading #concurrency #linux #softwareengineering #programming
To view or add a comment, sign in
-
-
𝐃𝐚𝐲 𝟐𝟗 = 𝐋𝐢𝐧𝐮𝐱 𝐒𝐞𝐫𝐢𝐞𝐬 = 𝐌𝐚𝐬𝐭𝐞𝐫 𝐋𝐢𝐧𝐮𝐱: 𝐔𝐧𝐝𝐞𝐫𝐬𝐭𝐚𝐧𝐝𝐢𝐧𝐠 𝐒𝐨𝐟𝐭 𝐋𝐢𝐧𝐤𝐬 𝐢𝐧 𝟔𝟎 𝐒𝐞𝐜𝐨𝐧𝐝𝐬! Ever wondered how to create shortcuts in Linux for those deeply nested files? 👉 Command: Use ln -s [target] [link_name] to create a link. 👉 The "Shortcut" Metaphor: Unlike hard links, a soft link is just a pointer. If the original file is gone, the link breaks. 👉 Efficiency: Perfect for simplifying long file paths. Instead of typing /temp/projects/logs/app.log, just link it to app_log and save time! Check out the full explanation here: 🔗 https://lnkd.in/guaPK9iE #Linux #DevOps #CodingTips #TechEducation #LinuxCommands #SoftLinks #Programming
To view or add a comment, sign in
-
-
𝐃𝐚𝐲 𝟑𝟐= 𝐋𝐢𝐧𝐮𝐱 𝐒𝐞𝐫𝐢𝐞𝐬 = 𝐌𝐚𝐬𝐭𝐞𝐫 𝐋𝐢𝐧𝐮𝐱: 𝐂𝐨𝐦𝐩𝐫𝐞𝐬𝐬 𝐅𝐢𝐥𝐞𝐬 𝐋𝐢𝐤𝐞 𝐚 𝐏𝐫𝐨 𝐢𝐧 𝟔𝟎 𝐒𝐞𝐜𝐨𝐧𝐝𝐬! https://lnkd.in/gKVPXwft Stop wasting time manually moving files. If you're working in a Linux environment, mastering the zip command is a total game-changer for your workflow 📁 Zip Specific Files: zip my_files.zip file1 file2 (Combines and compresses them instantly!) 📂 Zip an Entire Directory: zip -r backup.zip * (The -r flag is your best friend for recursive compression.) 🔍 Peek Inside Without Unzipping: unzip -l backup.zip (Check your files without the extracting everything.) What’s your most-used Linux terminal shortcut? Let’s discuss below! 👇 #Linux #DevOps #Programming #CodingTips #TerminalSkills #TechTutorial #SoftwareEngineering
To view or add a comment, sign in
-
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development