[{"content":"","date":"28 February 2026","externalUrl":null,"permalink":"/","section":"","summary":"","title":"","type":"page"},{"content":"","date":"28 February 2026","externalUrl":null,"permalink":"/notes/","section":"","summary":"","title":"","type":"notes"},{"content":"When I first tried Linux, I expected things to feel complicated.\nInstead, several things surprised me in a good way.\nIf you\u0026rsquo;re coming from Windows, these might surprise you too.\nUpdates Are Calm Windows updates sometimes interrupt your work or require long restarts.\nLinux updates usually install quietly in the background and rarely force a reboot.\nIt feels much less dramatic.\nSoftware Is Easy to Find Instead of searching the internet for installers, Linux has a software store.\nYou search for an application, click install, and it\u0026rsquo;s ready.\nNo installer wizards.\nThe System Feels Lightweight Many Linux distributions, including Zorin OS, feel faster than Windows on the same hardware.\nOlder computers especially benefit from this.\nYou Can Actually See What the System Is Doing Linux is very transparent.\nIf something happens, there\u0026rsquo;s usually a way to see why it happened.\nThis is one reason developers love Linux.\nThe Desktop Is Flexible Linux desktops can be customized far more than Windows.\nPanels can move. Themes can change. Layouts can adjust.\nYou can shape the environment around how you like to work.\nThe Terminal Isn\u0026rsquo;t as Scary as It Looks At first the terminal looks intimidating.\nBut once you use a few simple commands, it becomes surprisingly logical.\nMany tasks become faster with it.\nThe Community Is Helpful Linux users often enjoy helping newcomers.\nForums and guides exist everywhere.\nWhen you\u0026rsquo;re curious about something, someone has usually already asked the same question.\nThe Real Surprise\nThe biggest surprise is this:\nLinux doesn’t feel like a mysterious hacker system.\nIt just feels like another operating system that people learn step by step.\n","date":"28 February 2026","externalUrl":null,"permalink":"/notes/7-things-that-surprised-me-when-i-first-used-linux/","section":"","summary":"A short log about debugging a missing Wi-Fi driver after a kernel upgrade.","title":"7 Things That Surprised Me When I First Used Linux","type":"notes"},{"content":"","date":"28 February 2026","externalUrl":null,"permalink":"/tags/boot-failure/","section":"Tags","summary":"","title":"Boot Failure","type":"tags"},{"content":"","date":"28 February 2026","externalUrl":null,"permalink":"/tags/fstab/","section":"Tags","summary":"","title":"Fstab","type":"tags"},{"content":"","date":"28 February 2026","externalUrl":null,"permalink":"/tags/linux-troubleshooting/","section":"Tags","summary":"","title":"Linux Troubleshooting","type":"tags"},{"content":"","date":"28 February 2026","externalUrl":null,"permalink":"/tags/systemd/","section":"Tags","summary":"","title":"Systemd","type":"tags"},{"content":"","date":"28 February 2026","externalUrl":null,"permalink":"/tags/","section":"Tags","summary":"","title":"Tags","type":"tags"},{"content":"","date":"26 February 2026","externalUrl":null,"permalink":"/tags/about/","section":"Tags","summary":"","title":"About","type":"tags"},{"content":" The Symptom # After rebooting, the system failed to start normally and showed:\nYou are in emergency mode.\nGive root password for maintenance.\nThe boot process stopped before reaching the login screen.\nWhat /etc/fstab Does # /etc/fstab defines which filesystems should be mounted during boot.\nEach entry tells the system:\nWhat device to mount Where to mount it Filesystem type Mount options Boot order If an entry is incorrect, systemd may fail to mount it.\nWhen that happens, boot can stop and drop into emergency mode.\nWhat Went Wrong # I had manually added a new disk entry in /etc/fstab.\nThe UUID I entered was incorrect.\nDuring boot, systemd attempted to mount a device that did not exist.\nSince the entry was marked as required, the system could not continue.\nHow I Diagnosed It # From emergency mode:\nChecked block devices: lsblk\nadmin@linuxsprout-PC:~$ lsblk\nNAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS sda 8:0 0 238.5G 0 disk ├─sda1 8:1 0 47.6G 0 part / ├─sda2 8:2 0 100.8G 0 part /media/linuxsprout/Storage └─sda3 8:3 0 96M 0 part /boot/efi\nVerified UUIDs blkid\nadmin@linuxsprout-PC:~$ blkid\n/dev/sda1: UUID=\u0026ldquo;fa7xxxxxxxxxx-xxxxx-xxxx-xxxx\u0026rdquo; BLOCK_SIZE=\u0026ldquo;4096\u0026rdquo; TYPE=\u0026ldquo;ext4\u0026rdquo; PARTUUID=\u0026ldquo;9xxxxxx-xxxxxx-xxxxxx-xxxx\u0026rdquo;\nThe UUID in /etc/fstab did not match the actual disk UUID. To confirm the issue without rebooting again, I ran:\nmount -a This immediately showed the mounting error.\nThat confirmed the misconfiguration.\nThe Fix # Original incorrect entry:\nUUID=wrong-uuid-value /data ext4 defaults 0 2 Corrected entry:\nUUID=correct-uuid-value /data ext4 defaults 0 2 After saving the file, I tested again:\nmount -a No errors were returned. I rebooted, and the system started normally.\nWhat I Learned # Always verify UUIDs using blkid before editing /etc/fstab Test changes with mount -a before rebooting Use the nofail option for non-critical secondary drives A single incorrect line in /etc/fstab can stop the entire boot process Boot failures often look complicated, but in this case the root cause was a simple configuration mistake.\nUnderstanding how /etc/fstab interacts with systemd makes recovery straightforward.\n","date":"26 February 2026","externalUrl":null,"permalink":"/notes/fstab-misconfiguration--dropped-to-emergency-mode-on-boot/","section":"","summary":"A short log about debugging a missing Wi-Fi driver after a kernel upgrade.","title":"FSTAB Misconfiguration — Dropped to Emergency Mode on Boot","type":"notes"},{"content":"One of the biggest myths about Linux is that it\u0026rsquo;s complicated.\nIf you search online long enough, you\u0026rsquo;ll see screenshots of terminals full of commands and people typing things that look mysterious.\nIt can make Linux feel like something only programmers understand.\nBut the truth is much simpler.\nLinux isn’t harder than Windows. It just works differently.\nDifferent Doesn\u0026rsquo;t Mean Difficult\nThink about switching from one smartphone to another.\nAn Android phone and an iPhone both do the same things:\n• open apps • browse the web • manage files • change settings\nBut the buttons are in different places.\nLinux is similar.\nMany things exist in Linux that you already understand from Windows. They just appear in slightly different forms.\nThe File System\nWindows organizes files under drives like:\nC: D:\nLinux instead uses one unified structure starting from the root directory:\n/\nInside it are folders like:\n/home /etc /usr\nAt first this might look unfamiliar. But once you realize it\u0026rsquo;s simply another way of organizing files, it becomes normal very quickly.\nInstalling Software\nOn Windows you usually download programs from websites and run installers.\nLinux often installs software through software repositories.\nIn Zorin OS, you can open the Software Store, search for an application, and install it with one click.\nNo hunting for installers. No random download sites.\nThe Terminal\nYes, Linux has a terminal.\nBut here\u0026rsquo;s the important part:\nYou don\u0026rsquo;t need it for everyday use.\nZorin OS can be used entirely with a graphical interface.\nThe terminal simply exists as a powerful tool when you want more control.\nThink of it like the Command Prompt in Windows, but more capable.\nWhat Most People Discover\nMany Windows users expect Linux to feel alien.\nInstead, they usually discover something surprising:\n• the system feels lighter • updates are simpler • things are more transparent\nOnce the initial unfamiliarity fades, Linux stops feeling difficult.\nIt just feels like another way of using a computer.\n","date":"26 February 2026","externalUrl":null,"permalink":"/notes/linux-isnt-hard--its-just-different/","section":"","summary":"A short log about debugging a missing Wi-Fi driver after a kernel upgrade.","title":"Linux Isn’t Hard — It’s Just Different","type":"notes"},{"content":"","date":"26 February 2026","externalUrl":null,"permalink":"/tags/linux-learning/","section":"Tags","summary":"","title":"Linux Learning","type":"tags"},{"content":"","date":"26 February 2026","externalUrl":null,"permalink":"/tags/linuxsprout/","section":"Tags","summary":"","title":"Linuxsprout","type":"tags"},{"content":" You probably started with Windows XP too. # Maybe you remember that startup sound. The blue taskbar. Defragging the hard drive and watching the blocks move like it was the most interesting thing in the world.\nThat was my world for a while.\nThen I moved to Windows Server 2000 — tinkering, poking around, seeing what it could do.\nThen I found something different # One day I came across a custom distro based on Ubuntu 7.04.\nI didn’t know what Linux was. I didn’t know what a distro was. I just saw it and thought — what is that.\nSo I installed it.\nBroke it almost immediately.\nInstalled it again.\nThat was the beginning. What changed over time # Since then I’ve hopped across more distros than I can count.\nEach one taught me something.\nEach one I eventually broke.\nNot a hundred times — thousands.\nI’ve been there. I’ve panicked.\nAnd slowly, I stopped panicking.\nLinux has been my daily driver since 2010. Linux still breaks today.\nBut now, I make a coffee, sit down, and start digging.\nNot because I know everything —\nbut because I’ve learned that the answer is usually there if I keep looking.\nThat’s not confidence.\nIt’s just getting used to being lost.\nWhy LinuxSprout exists # When I was starting out, every time something broke, it felt like I was the only one dealing with it.\nMost tutorials show the clean path.\nThey don’t show what happens when things go wrong.\nAnd things do go wrong.\nYou didn\u0026rsquo;t do anything wrong. It just broke. It does that. That part is normal. What you’ll find here # This is my field journal.\nWhat I broke.\nWhy it broke.\nHow I got it working again.\nNot theory. Just real notes from real mistakes.\nIf you just hit your first black screen and you’re wondering if Linux isn’t for you — stick around.\nIt gets easier.\nYou stop being scared of it.\nThat\u0026rsquo;s what this is.\nLinux is a beautiful OS. It just takes a little soil under your fingernails to appreciate it. — Yogendra\n","date":"26 February 2026","externalUrl":null,"permalink":"/about/","section":"","summary":"","title":"Our Story","type":"page"},{"content":"","date":"26 February 2026","externalUrl":null,"permalink":"/tags/story/","section":"Tags","summary":"","title":"Story","type":"tags"},{"content":"Almost everyone who tries Linux for the first time makes the same mistake.\nThey start copying commands from the internet without understanding them.\nIt’s easy to do.\nYou search for a problem, find a forum post, and someone tells you to paste a command into the terminal.\nSometimes it works.\nSometimes it breaks something.\nWhy This Happens\nThe terminal is powerful.\nA single command can:\n• install software • modify system settings • remove files\nWithout context, it\u0026rsquo;s hard to know what a command actually does.\nSo beginners often trust instructions blindly.\nA Better Approach\nInstead of copying commands immediately, pause for a moment and ask:\nWhat does this command do?\nEven a quick search can help.\nFor example, a command might contain something like:\nrm\nIn Linux, rm means remove.\nThat means the command is deleting something.\nUnderstanding even small parts of a command gives you more confidence and prevents mistakes.\nThe Good News\nBreaking something in Linux is rarely the end of the world.\nLinux systems are surprisingly resilient.\nMost issues can be fixed, and every mistake becomes a learning moment.\nA Helpful Mindset\nInstead of thinking:\n“Linux is complicated.”\nTry thinking:\n“I’m just learning how this system works.”\nEveryone who uses Linux today started exactly the same way.\n","date":"26 February 2026","externalUrl":null,"permalink":"/notes/the-first-linux-mistake-everyone-makes/","section":"","summary":"A short log about debugging a missing Wi-Fi driver after a kernel upgrade.","title":"The First Linux Mistake Everyone Makes","type":"notes"},{"content":"If you\u0026rsquo;re curious about Linux but worried about breaking your computer, there’s something reassuring you should know:\nYou can try Linux without installing it.\nNo files are deleted. Windows stays untouched. Your computer simply runs Linux temporarily.\nThis is called Live Boot.\nWhat Live Boot Means\nA Linux USB drive can run the operating system directly from the USB stick.\nInstead of installing Linux on your hard drive, the computer loads Linux into memory and runs it from there.\nWhen you restart your computer and remove the USB, everything goes back to normal.\nWindows starts again like nothing happened.\nWhat You Can Actually Do in Live Mode\nIn a Live session you can:\n• explore the desktop • open the file manager • connect to Wi-Fi • browse the internet • open apps\nIn other words, you can use Linux normally.\nWhat you usually can\u0026rsquo;t do is save permanent changes, because everything runs from memory.\nBut for exploration, it\u0026rsquo;s perfect.\nWhy This Is Useful\nFor someone coming from Windows, Live Boot answers the biggest fear:\n“What if something goes wrong?”\nNothing goes wrong.\nYou\u0026rsquo;re simply taking Linux for a test drive.\nJust like test-driving a car before deciding if you want it.\nTrying Zorin OS This Way\nZorin OS is particularly nice for Windows users because the desktop feels familiar.\nYou’ll see:\n• a taskbar • a start-menu-style launcher • familiar window controls\nWithin minutes you’ll realize something important:\nLinux is not strange. It\u0026rsquo;s just another operating system.\nThe Best Way to Approach It\nWhen trying Linux for the first time, don’t worry about commands or advanced things.\nJust explore:\nOpen the file manager. Click around the settings. Launch a few apps.\nThe goal is simple:\nGet comfortable.\nLinux isn’t something you must master immediately.\nIt\u0026rsquo;s something you slowly grow into.\n","date":"26 February 2026","externalUrl":null,"permalink":"/notes/you-can-try-linux-without-installing-it/","section":"","summary":"A short log about debugging a missing Wi-Fi driver after a kernel upgrade.","title":"You Can Try Linux Without Installing It","type":"notes"},{"content":"","externalUrl":null,"permalink":"/authors/","section":"Authors","summary":"","title":"Authors","type":"authors"},{"content":"","externalUrl":null,"permalink":"/categories/","section":"Categories","summary":"","title":"Categories","type":"categories"},{"content":"This is what held up over time.\nThese posts are cleaned up, tested, and more reliable.\nIf you’re looking for something stable to refer back to, this is the place.\n","externalUrl":null,"permalink":"/harvest/","section":"Harvest","summary":"","title":"Harvest","type":"harvest"},{"content":"This is where things begin.\nThese posts come from early attempts — when things didn’t fully make sense yet.\nIf you’re new to Linux or feeling unsure, this is a good place to start.\nTake your time here. Confusion is part of the process.\n","externalUrl":null,"permalink":"/seed/","section":"Seed","summary":"","title":"Seed","type":"seed"},{"content":"","externalUrl":null,"permalink":"/series/","section":"Series","summary":"","title":"Series","type":"series"},{"content":"This is where things start coming together.\nThese posts are more worked through — tested, explored, and clearer than before.\nIf you’ve already tried a few things and want to go deeper, start here.\n","externalUrl":null,"permalink":"/sprout/","section":"Sprout","summary":"","title":"Sprout","type":"sprout"},{"content":"If you’re new here, start with one simple idea:\nLinux is just another operating system.\nYou can use it to browse, write, watch videos, and do everyday work — just like you would on any other computer.\nThe difference is, when something breaks, it can feel unfamiliar.\nYou don\u0026rsquo;t have to figure it out alone.\nWho this is for # This will make sense to you if:\nYou want to use Linux like a normal computer You’re coming from Windows and things feel a little different— you\u0026rsquo;re in the right place. You don’t want to feel stuck when something doesn’t work You don’t need to be a “terminal person” to be here.\nHow this site works # Most of what you\u0026rsquo;ll read here comes from real situations where something didn\u0026rsquo;t work as expected. Instead of rushing to fix things, I try to understand what\u0026rsquo;s actually happening — and explain it in a simple way.\nPosts are grouped like this:\nSeed — early understanding Sprout — things that started making sense Harvest — what held up over time You don\u0026rsquo;t have to follow this strictly. It\u0026rsquo;s just a way to show how understanding grows.\nStart with these # If you’re not sure where to begin:\nLinux Isn’t Hard — It’s Just Different A simple shift in how to approach Linux.\nFSTAB Misconfiguration — Dropped to Emergency Mode on Boot What a real system failure looks like, and how to work through it.\n7 Things That Surprised Me When I First Used Linux Small things that feel strange at first, but start to make sense over time.\nWhat to do next # Pick one post and go through it slowly.\nDon’t rush to fix things. Try to understand what’s happening, even if it takes time.\nThat’s how Linux starts to feel less confusing — and more like something you can rely on.\n","externalUrl":null,"permalink":"/start_here/","section":"","summary":"","title":"Start Here","type":"page"}]