Skip to content

A collection of guides, tips, and solutions for common Linux tasks and issues. This repository provides step-by-step instructions on a variety of topics, including file encryption, system configuration, and troubleshooting. Perfect for users of all levels looking to resolve Linux-related challenges efficiently.

Notifications You must be signed in to change notification settings

SURIYA-R-K/Linux-fix-it

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

12 Commits
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

πŸ› οΈ General Linux Troubleshooting Tips

Linux is powerful, but sometimes things go wrong. Here are some quick tips to diagnose and fix common issues.

πŸ” System Information & Monitoring

  • uname -a β†’ Check system details

  • uptime β†’ See system load & uptime

  • df -h β†’ Check disk space

  • free -h β†’ Monitor memory usage

  • top or htop β†’ View running processes

🌐 Network & Internet Issues

  • ping -c 4 google.com β†’ Test internet

  • ip a β†’ Show network interfaces

  • netstat -tulnp β†’ Check open ports

πŸ”‘ User & Permissions Issues

  • sudo β†’ Run as superuser

  • chmod 755 file β†’ Change file permissions

  • chown user:group file β†’ Change file ownership

  • ⚑ Fixing Package Issues

Debian/Ubuntu:

sudo apt --fix-broken install  
sudo dpkg --configure -a  

RHEL/CentOS:

sudo dnf clean all
sudo dnf update  

πŸ”„ System & Boot Issues

  • sudo update-grub β†’ Fix bootloader

  • journalctl -xe β†’ View system logs

  • dmesg β†’ Check kernel messages

πŸ›‘ Force Restart or Shutdown

  • reboot β†’ Restart system

  • shutdown -h now β†’ Shutdown immediately

πŸ’‘ This is just a basic guide.

contents:

βœ… "How to encrypt a folder in Linux"

βœ… "How to decrypt a folder in Linux"

About

A collection of guides, tips, and solutions for common Linux tasks and issues. This repository provides step-by-step instructions on a variety of topics, including file encryption, system configuration, and troubleshooting. Perfect for users of all levels looking to resolve Linux-related challenges efficiently.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages