⌨ Category

Linux & Unix

Kernel errors, dependency hell, permission issues, systemd units.

381 solutions
Page 1 of 16
Sort: Newest Most Viewed A–Z
ENOENT
chmod: cannot access 'file': No such file or directory Fix
You're running chmod on a file that doesn't exist at that exact path — usually a typo, a broken syml...
Beginner 👁 5 9h ago
sudo: no tty present and no askpass program specified
Fix sudo: no tty present and no askpass program specified
Cron jobs and CI scripts crash with this sudo error because there's no terminal for the password pro...
Intermediate 👁 11 22h ago
E: Unable to locate package
Fix E: Unable to Locate Package on Debian, Ubuntu, and Kali
This error means apt can't find the package in any of its configured repos. Usually it's a missing r...
Beginner 👁 13 1d ago
EROFS (errno 30) — kernel reports 'Read-only file system'
Fix 'Read-only file system' on Linux: remount, fsck, or failing drive
That EROFS error usually means the kernel flipped your disk to read-only after a write failure. Remo...
Intermediate 👁 21 1d ago
rm: cannot remove 'dir': Is a directory
Fix: rm: cannot remove — Is a directory on Linux
You ran rm on a folder and got 'Is a directory'. Here's the actual fix, plus what to do when the dir...
Beginner 👁 10 1d ago
EMFILE
Linux EMFILE: 'Too many open files' — fix file descriptor limits
EMFILE means a process hit its open file descriptor limit. Raise the nofile limit with ulimit, limit...
Intermediate 👁 9 1d ago
Linux Redirect Page Not Working: Fix 301/302 Headers in Nginx and Apache
Redirects on Linux usually break because of a missing trailing slash, an .htaccess override, or conf...
Intermediate 👁 13 6d ago
Fix Linux 'bash: /usr/bin/rm: Argument list too long' Error
A common Linux error when deleting thousands of files in one command. Use find or xargs to delete th...
Intermediate 👁 19 6d ago
EROFS
Fix 'Read-only file system' on Linux Without a Reboot
That 'Read-only file system' error usually means the kernel remounted your disk after an I/O fault. ...
Intermediate 👁 64 Sep 18, 2026
ENOSPC
Fix "No space left on device" When df Shows Free Space
df says you've got gigabytes free but writes still fail with ENOSPC. The culprit is almost always de...
Intermediate 👁 20 Sep 17, 2026
ENOSPC
Fix 'No space left on device' When df Says You Have Space
df shows free space but writes fail with ENOSPC. Usually it's inode exhaustion or deleted-but-open f...
Intermediate 👁 23 Sep 15, 2026
E2BIG
Fix “Argument list too long” on Linux
Hitting E2BIG? The shell or rm glob is one too many args. Use find -delete to sidestep ARG_MAX limit...
Intermediate 👁 27 Sep 14, 2026
ENOSPC
Fix 'No space left on device' When df Shows Free Space
Your disk reports free space but writes fail with ENOSPC. Usually it's inode exhaustion, a full /tmp...
Intermediate 👁 32 Sep 14, 2026
Apache Redirects That Quietly Fail: 301, 302, and RewriteRule Fixes
Your redirect rule looks fine but does nothing, loops, or sends you to the wrong place. Here's what'...
Intermediate 👁 25 Sep 13, 2026
sudo: command not found
Fix 'sudo: command not found' on Linux (quick & dirty)
Don't panic when sudo vanishes. Usually it's a PATH issue or missing sudo package. I'll show you the...
Beginner 👁 18 Sep 9, 2026
sudo: command not found
Fix 'sudo: command not found' When sudo Is Installed
sudo exists but the shell can't find it? Likely a PATH issue or missing symlink. Here's how to fix i...
Beginner 👁 41 Sep 8, 2026
Fix 'permission denied' on Linux scripts & files
Permission denied when running a script? Check execute bit, filesystem mount options, then ownership...
Beginner 👁 60 Sep 6, 2026
Destination Host Unreachable
Fix 'Destination Host Unreachable' on Linux: Ping Fails
Ping says 'Destination Host Unreachable' when no route to the target exists. Check your interface, g...
Beginner 👁 19 Sep 3, 2026
Permission denied (publickey)
Fix 'Permission denied (publickey)' SSH in Linux
SSH key auth failing? Check key permissions, sshd config, and agent. Usually chmod 600 on key fixes ...
Beginner 👁 34 Sep 3, 2026
EACCES / Permission denied
Fixing 'Permission denied' on Linux: 3 causes
The 'Permission denied' error has three usual causes: file perms, ACLs, or mount options. This walks...
Beginner 👁 20 Sep 3, 2026
read-only file system
Fix 'Read-only file system' on Linux mounts
Linux throws 'Read-only file system' when a mount remounts RO after errors. Remount with rw and fix ...
Intermediate 👁 111 Sep 2, 2026
ETXTBSY
Linux 'Text file busy' Error: Real Fixes That Work
The 'Text file busy' error in Linux happens when you try to overwrite a running binary or script. He...
Beginner 👁 42 Sep 2, 2026
bash: ./script.sh: Permission denied
Fix 'bash: ./script.sh: Permission denied' on Linux
You tried to run a script but got Permission denied. The script probably lacks executable permission...
Beginner 👁 24 Sep 2, 2026
Fix 'bash: command not found' in Linux: The Real Causes
Get that annoying 'command not found' error sorted. We'll cover the usual suspects: PATH issues, mis...
Beginner 👁 21 Sep 1, 2026
Other Categories
Windows Errors Software – Microsoft Office Programming & Dev Tools Hardware – Printers View all →