Linux Inside: The Ideal Blog for Sysadmins & Geeks

14K posts

Linux Inside: The Ideal Blog for Sysadmins & Geeks banner
Linux Inside: The Ideal Blog for Sysadmins & Geeks

Linux Inside: The Ideal Blog for Sysadmins & Geeks

@tecmint

Tecmint - Linux, AI & Open-Source Made Simple 🐧🚀 Follow us for: - Easy Linux Tips and Tutorials 💡 - The Latest on Open-Source & AI 📰 - Fun Linux & AI 🤣

India Katılım Mayıs 2012
19 Takip Edilen134.3K Takipçiler
Sabitlenmiş Tweet
Linux Inside: The Ideal Blog for Sysadmins & Geeks
🚀 Pro TecMint now has 16 Linux courses live! 🟢 Beginner: Learn Linux in 7 Days → pro.tecmint.com/learn-linux/ 100+ Essential Linux Commands → pro.tecmint.com/linux-commands… 11 Best Linux Distributions → pro.tecmint.com/best-linux-dis… Linux Interview Handbook → pro.tecmint.com/linux-intervie… SSH Complete Course → pro.tecmint.com/ssh-complete-c… 🔵 Advanced: AI for Linux → pro.tecmint.com/ai-for-linux/ Bash Scripting → pro.tecmint.com/learn-bash-scr… Ubuntu Handbook → pro.tecmint.com/ubuntu-handboo… Linux Performance Monitoring → pro.tecmint.com/linux-monitori… Golang for DevOps → pro.tecmint.com/learn-go/ Claude for Linux → pro.tecmint.com/claude-code-fo… 🏆 Certifications: RHCSA → pro.tecmint.com/rhcsa-certific… RHCE → pro.tecmint.com/rhce-certifica… LFCS → pro.tecmint.com/lfcs-certifica… LFCA → pro.tecmint.com/lfca-certifica… All courses included in the Root plan at $8/month or $59/year. Lifetime access at $199 one-time. 👉 pro.tecmint.com #Linux #SysAdmin #DevOps
English
0
11
64
2.3K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
Quick Linux tip: ss with state filters is far more powerful than netstat for diagnosing connection issues on production servers. $ ss -tnp state established '( dport = :443 or sport = :443 )' Shows only active HTTPS connections with the process name attached. Useful when tracking connection leaks or unexpected traffic spikes. Follow @tecmint for more #Linux tips...
Linux Inside: The Ideal Blog for Sysadmins & Geeks tweet media
English
0
7
48
1.4K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
I'm building the most complete #LFCA certification course on the internet. It includes 28 chapters that take you from Linux fundamentals to cloud computing, security, DevOps, and IT project management. Right now, 5 chapters are live: Chapter 1: pro.tecmint.com/understanding-… Chapter 2: pro.tecmint.com/linux-file-man… Chapter 3: pro.tecmint.com/basic-linux-sy… Chapter 4: pro.tecmint.com/linux-networki… Chapter 5: pro.tecmint.com/managing-linux… Start learning here → pro.tecmint.com/managing-linux… Follow @tecmint for new chapters every week.
English
1
16
102
2.9K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
Most sysadmins give SSH access just for file uploads and end up worrying about what users do on the server. You can avoid that by giving SFTP-only access to a single directory without shell, no commands, no browsing. 🔐 SSH tip: SFTP chroot jail setup Add this to sshd_config: Match User sftpuser ChrootDirectory /var/sftp/sftpuser ForceCommand internal-sftp PasswordAuthentication yes AllowTcpForwarding no X11Forwarding no Now the user can only upload/download files inside their folder. Want a full multi-user setup, groups, and troubleshooting for common chroot errors? Read here: pro.tecmint.com/setting-up-a-c… Follow @tecmint for more #Linux and #SSH tips.
English
0
18
75
3K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
New chapter live on Pro TecMint: How to Use Claude Code to Read and Review Linux Config Files This chapter is for every sysadmin who has ever inherited a server and had no idea what half the config files actually do. It’s Chapter 5 of a 32-chapter course built for professionals who live in the terminal. Read the full chapter here: pro.tecmint.com/read-linux-con… Follow @tecmint for a new chapter every week. #Linux #ClaudeCode #SysAdmin
English
0
12
57
2.3K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
Just published: Project 2: Build a CLI GitHub First Commit Finder in Go If you're a DevOps engineer or system administrator learning Golang, this tutorial covers: - Working with GitHub API pagination using the Link header - Parsing and validating command-line arguments in owner/repo format - Using regular expressions in Go to extract URLs from headers - Decoding nested JSON responses with structs - Making sequential API calls based on previous responses - Includes complete code examples and step-by-step explanations. Part 2 of our 7-project #Golang series is designed specifically for #DevOps professionals. Read the full guide (Pro members only): pro.tecmint.com/github-first-c… Follow @tecmint to stay updated with this series!
English
0
6
29
1.8K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
I’m building the most complete #SSH course on the internet. It includes 54 chapters that take you from beginner to enterprise-level SSH administration. Right now, 25 chapters are live, covering everything from your first SSH connection to security hardening, key management, file transfers, and SSHFS. Start learning here → pro.tecmint.com/ssh-complete-c… Follow @tecmint for new chapters every week.
English
0
36
264
8.3K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
New chapter live on Pro TecMint: Claude Code Sessions, Context, and the Permission Model for Linux Sysadmins This is the chapter that makes the rest of the course click. Most sysadmins install Claude Code, run it once, and then wonder why it asks for permission on some commands but not others, or why it "forgot" a file it saw ten minutes ago. This is a 32-chapter course built for professionals who work in the terminal every day. Read the full chapter here: pro.tecmint.com/how-claude-cod… Follow @tecmint for a new chapter every week. #Linux #ClaudeCode #SysAdmin
English
1
5
34
2K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
Most sysadmins run SCP to back up a server directory, get interrupted halfway through, and start the whole thing over. There is a better way, and it has been in every Linux distro for decades. 🔐 SSH tip of the day: Use rsync instead of SCP for anything larger than a single file: bashrsync -avz --delete \ ravi@192.168.1.100:/var/www/html/ \ ~/backups/website/ Want the full setup, exclude patterns, a production-ready backup script, and a clear comparison of when to use rsync versus SCP versus SFTP? This is Chapter 24 of our 54-chapter SSH course, created for beginners and goes all the way to enterprise-level SSH mastery. Read it → pro.tecmint.com/incremental-fi… Follow @tecmint for a new SSH chapter every week.
English
0
15
85
3.3K
Linux Inside: The Ideal Blog for Sysadmins & Geeks
We just published a complete guide to installing #Fedora CoreOS on a bare metal server, which is one of the most powerful immutable #Linux distributions for running containers at scale. Topics covered: - Butane & Ignition configuration - Bare metal install with coreos-installer - SSH key provisioning - Running containers with #Podman - Auto-start services with systemd Quadlets Perfect for #DevOps engineers and sysadmins building container-ready Linux infrastructure. pro.tecmint.com/blog/install-f… Follow @tecmint for more #Linux tips.
English
0
9
102
4.6K