Live
Black Hat USADark ReadingBlack Hat AsiaAI BusinessSources: AI startup Poolside held talks with Google and others to revive a Texas data center project after a CoreWeave deal and a $2B Nvidia-led round collapsed (Stephen Morris/Financial Times)TechmemeSamsung SDS Unveils AI, Digital Twin Logistics Innovations at 2026 Conference - 조선일보GNews AI SamsungMachine Learning in Blockchain for AI Engineers and Blockchain Developers - Blockchain CouncilGoogle News: Machine LearningAlpha Ladder Group and MetaComp Partner with Maqam International Holding, an Abu Dhabi (UAE) company, to Advance RWA Tokenisation and Web2.5 Payments Across Singapore-UAE Corridor - The AI JournalGNews AI UAEAI Models Secretly Schemed to Prevent Each Other From Being Shut Down - SOFXGoogle News: AI SafetyAI boost to S.Korea and Taiwan will outweigh current energy headwinds: Causeway Capital - CNBCGNews AI TaiwanCollege Students Weigh AI's Impact on Majors and Careers - Gallup NewsGoogle News: AIAI Is Routine for College Students, Despite Campus Limits - Gallup NewsGoogle News: AICincinnati doctors built an AI assistant to improve heart failure care - Cincinnati EnquirerGoogle News: AIAI ScrapingTowards AIPrivate AI: Enterprise Data in the RAG EraTowards AII Read Every Line of Anthropic’s Leaked Source Code So You Don’t Have To.Towards AIBlack Hat USADark ReadingBlack Hat AsiaAI BusinessSources: AI startup Poolside held talks with Google and others to revive a Texas data center project after a CoreWeave deal and a $2B Nvidia-led round collapsed (Stephen Morris/Financial Times)TechmemeSamsung SDS Unveils AI, Digital Twin Logistics Innovations at 2026 Conference - 조선일보GNews AI SamsungMachine Learning in Blockchain for AI Engineers and Blockchain Developers - Blockchain CouncilGoogle News: Machine LearningAlpha Ladder Group and MetaComp Partner with Maqam International Holding, an Abu Dhabi (UAE) company, to Advance RWA Tokenisation and Web2.5 Payments Across Singapore-UAE Corridor - The AI JournalGNews AI UAEAI Models Secretly Schemed to Prevent Each Other From Being Shut Down - SOFXGoogle News: AI SafetyAI boost to S.Korea and Taiwan will outweigh current energy headwinds: Causeway Capital - CNBCGNews AI TaiwanCollege Students Weigh AI's Impact on Majors and Careers - Gallup NewsGoogle News: AIAI Is Routine for College Students, Despite Campus Limits - Gallup NewsGoogle News: AICincinnati doctors built an AI assistant to improve heart failure care - Cincinnati EnquirerGoogle News: AIAI ScrapingTowards AIPrivate AI: Enterprise Data in the RAG EraTowards AII Read Every Line of Anthropic’s Leaked Source Code So You Don’t Have To.Towards AI

From Linux Admin to DevOps & AI: My Journey Begins

DEV Communityby MysticMcApril 1, 20265 min read1 views
Source Quiz

<h2> Why I'm Sharing This Journey </h2> <p>Hi! I'm Nazmur, a Junior Linux Administrator who's decided to level up. Like many in operations, I've realized that the future belongs to those who can bridge <strong>traditional sysadmin work</strong> with modern <strong>DevOps practices</strong> and emerging <strong>AI technologies</strong>.</p> <p>This is the first post in my journey from Linux admin → DevOps Engineer → AI/ML Engineer.</p> <h2> Where I Started </h2> <p>As a Linux admin, my daily work involves:</p> <ul> <li>Managing and monitoring Linux servers</li> <li>Writing bash scripts to automate repetitive tasks</li> <li>Troubleshooting system issues</li> <li>Ensuring uptime and reliability</li> </ul> <p>It's solid work, but I kept asking myself: <em>"How can I do this faster? More effici

Why I'm Sharing This Journey

Hi! I'm Nazmur, a Junior Linux Administrator who's decided to level up. Like many in operations, I've realized that the future belongs to those who can bridge traditional sysadmin work with modern DevOps practices and emerging AI technologies.

This is the first post in my journey from Linux admin → DevOps Engineer → AI/ML Engineer.

Where I Started

As a Linux admin, my daily work involves:

  • Managing and monitoring Linux servers

  • Writing bash scripts to automate repetitive tasks

  • Troubleshooting system issues

  • Ensuring uptime and reliability

It's solid work, but I kept asking myself: "How can I do this faster? More efficiently? What's next?"

The Three Pillars I'm Focusing On

1. DevOps & Cloud

  • Kubernetes - Container orchestration

  • Docker - Containerization

  • CI/CD - GitHub Actions, Jenkins

  • Infrastructure as Code - Terraform

  • Cloud Platforms - AWS, Azure

2. Generative AI & Agentic AI

  • RAG (Retrieval-Augmented Generation) - Building context-aware AI systems

  • LangChain & LlamaIndex - AI agent frameworks

  • LLM Integration - Working with GPT, open-source models

  • Prompt Engineering - Getting the best from AI

3. Python Deep Dive

I already know Python basics, but now I'm focusing on:

  • Automation scripts for infrastructure

  • API integrations for AI agents

  • Building tools that bridge ops and AI

What I've Built So Far

Week 1-2: Kubernetes Homelab

I set up k3s on an old laptop to get hands-on:

bash

Install k3s

curl -sfL https://get.k3s.io | sh -

Check my cluster

kubectl get nodes Result: A working Kubernetes cluster in my living room!

Week 3: First RAG Agent I built a simple RAG (Retrieval-Augmented Generation) agent that:

Ingests documents

Creates embeddings

Answers questions based on the documents

Here's a snippet:

python from langchain.document_loaders import TextLoader from langchain.text_splitter import CharacterTextSplitter from langchain.embeddings import OpenAIEmbeddings from langchain.vectorstores import FAISS

Load documents

loader = TextLoader("my_docs.txt") documents = loader.load()

Split into chunks

text_splitter = CharacterTextSplitter(chunk_size=1000) docs = text_splitter.split_documents(documents)

Create vector store

embeddings = OpenAIEmbeddings() vectorstore = FAISS.from_documents(docs, embeddings) It's basic, but it works! Next step: adding memory and tool use.

My Learning Resources Topic Resources Kubernetes KodeKloud, K8s Official Docs AI/LLM LangChain Docs, DeepLearning.AI DevOps TechWorld with Nana, Adrian Cantrill What's Next Next week:

Deploy a real app on my K8s cluster

Add memory to my RAG agent

Write a detailed Terraform setup guide

By end of month:

Full CI/CD pipeline with GitHub Actions

Deploy AI agent as a web service

Document everything (this helps others and solidifies my learning)

Why This Matters to You If you're also transitioning from sysadmin to DevOps or AI, here's what I'm learning:

Your Linux skills are invaluable — cloud is just Linux at scale

Start with a homelab — break things without fear

Build publicly — share what you learn (like this post!)

Focus on fundamentals — containers, networking, automation

Let's Connect I'll be posting weekly about:

Kubernetes deep dives

AI agent experiments

DevOps project builds

Career transition lessons

Follow along if you're on a similar journey!

📦 GitHub: github.com/nazmur96 💼 LinkedIn: linkedin.com/in/nazmur96

From servers to agents — building the future, one line of code at a time.

If this post helped you, leave a comment or reaction! I'd love to hear about your journey too.

Result: A working Kubernetes cluster in my living room!

Week 3: First RAG Agent I built a simple RAG (Retrieval-Augmented Generation) agent that:

Ingests documents

Creates embeddings

Answers questions based on the documents

Here's a snippet:

python from langchain.document_loaders import TextLoader from langchain.text_splitter import CharacterTextSplitter from langchain.embeddings import OpenAIEmbeddings from langchain.vectorstores import FAISS

Load documents

loader = TextLoader("my_docs.txt") documents = loader.load()

Split into chunks

text_splitter = CharacterTextSplitter(chunk_size=1000) docs = text_splitter.split_documents(documents)

Create vector store

embeddings = OpenAIEmbeddings() vectorstore = FAISS.from_documents(docs, embeddings) It's basic, but it works! Next step: adding memory and tool use.

My Learning Resources Topic Resources Kubernetes KodeKloud, K8s Official Docs AI/LLM LangChain Docs, DeepLearning.AI DevOps TechWorld with Nana, Adrian Cantrill What's Next Next week:

Deploy a real app on my K8s cluster

Add memory to my RAG agent

Write a detailed Terraform setup guide

By end of month:

Full CI/CD pipeline with GitHub Actions

Deploy AI agent as a web service

Document everything (this helps others and solidifies my learning)

Why This Matters to You If you're also transitioning from sysadmin to DevOps or AI, here's what I'm learning:

Your Linux skills are invaluable — cloud is just Linux at scale

Start with a homelab — break things without fear

Build publicly — share what you learn (like this post!)

Focus on fundamentals — containers, networking, automation

Let's Connect I'll be posting weekly about:

Kubernetes deep dives

AI agent experiments

DevOps project builds

Career transition lessons

Follow along if you're on a similar journey!

📦 GitHub: github.com/nazmur96 💼 LinkedIn: linkedin.com/in/nazmur96

From servers to agents — building the future, one line of code at a time.

If this post helped you, leave a comment or reaction! I'd love to hear about your journey too.`

Enter fullscreen mode

Exit fullscreen mode

Was this article helpful?

Sign in to highlight and annotate this article

AI
Ask AI about this article
Powered by AI News Hub · full article context loaded
Ready

Conversation starters

Ask anything about this article…

Daily AI Digest

Get the top 5 AI stories delivered to your inbox every morning.

Knowledge Map

Knowledge Map
TopicsEntitiesSource
From Linux …llamamodelopen-sourceplatformserviceintegrationDEV Communi…

Connected Articles — Knowledge Graph

This article is connected to other articles through shared AI topics and tags.

Building knowledge graph…

Discussion

Sign in to join the discussion

No comments yet — be the first to share your thoughts!