#linuxtips — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #linuxtips, aggregated by home.social.
-
Visit https://aberia.site/ | Would you recommend Linux to a beginner? #Debian #Linux #Gaming #PC #Tech #Linuxlove #Opensource #LinuxGaming #GNU #TechTok #Reels #LinuxTiktok #ForYou #FYP #fyp #Debian13 #Gnome #KDEPlasma #XFCE #LinuxSetup #DesktopSetup #GamingOnLinux #LearnLinux #Educational #DebianTIps #SysAdmin #FOSS #LinuxAtWork #BeginnerLinux #LinuxTips #InstaReels #InstagramReels #Australia #Melbourne #Victoria #Shop
-
Visit https://aberia.site/ | Would you recommend Linux to a beginner? #Debian #Linux #Gaming #PC #Tech #Linuxlove #Opensource #LinuxGaming #GNU #TechTok #Reels #LinuxTiktok #ForYou #FYP #fyp #Debian13 #Gnome #KDEPlasma #XFCE #LinuxSetup #DesktopSetup #GamingOnLinux #LearnLinux #Educational #DebianTIps #SysAdmin #FOSS #LinuxAtWork #BeginnerLinux #LinuxTips #InstaReels #InstagramReels #Australia #Melbourne #Victoria #Shop
-
Visit https://aberia.site/ | Would you recommend Linux to a beginner? #Debian #Linux #Gaming #PC #Tech #Linuxlove #Opensource #LinuxGaming #GNU #TechTok #Reels #LinuxTiktok #ForYou #FYP #fyp #Debian13 #Gnome #KDEPlasma #XFCE #LinuxSetup #DesktopSetup #GamingOnLinux #LearnLinux #Educational #DebianTIps #SysAdmin #FOSS #LinuxAtWork #BeginnerLinux #LinuxTips #InstaReels #InstagramReels #Australia #Melbourne #Victoria #Shop
-
Visit https://aberia.site/ | Would you recommend Linux to a beginner? #Debian #Linux #Gaming #PC #Tech #Linuxlove #Opensource #LinuxGaming #GNU #TechTok #Reels #LinuxTiktok #ForYou #FYP #fyp #Debian13 #Gnome #KDEPlasma #XFCE #LinuxSetup #DesktopSetup #GamingOnLinux #LearnLinux #Educational #DebianTIps #SysAdmin #FOSS #LinuxAtWork #BeginnerLinux #LinuxTips #InstaReels #InstagramReels #Australia #Melbourne #Victoria #Shop
-
Visit https://aberia.site/ | Would you recommend Linux to a beginner? #Debian #Linux #Gaming #PC #Tech #Linuxlove #Opensource #LinuxGaming #GNU #TechTok #Reels #LinuxTiktok #ForYou #FYP #fyp #Debian13 #Gnome #KDEPlasma #XFCE #LinuxSetup #DesktopSetup #GamingOnLinux #LearnLinux #Educational #DebianTIps #SysAdmin #FOSS #LinuxAtWork #BeginnerLinux #LinuxTips #InstaReels #InstagramReels #Australia #Melbourne #Victoria #Shop
-
Bash has a lot of shortcuts, a lot of them aren’t obvious, but you pick them up over the years. Watch Scott and Nate share their favorite command line tricks and shortcuts on this episode of Into the Terminal.
https://youtube.com/live/alZMRigqChc
#linux #linuxtips #sysadmin #redhat #rhel #bash #commandline
-
Ready for a bit more linux snippet fun? post #5 in my linux snippet series is out and it is all about recovering deleted files via /proc. Enjoy
https://schulz.dk/2026/04/24/linux-snippets-5-recovering-deleted-files-from-the-void/
#linux #schulzdk @blog #lsof #proc #filerecovery #tip #linuxtips
-
Search Bash history by prefix using Alt+Up/Down. Add 2 lines to ~/.inputrc and jump straight to matching commands—no plugins, no restart.
Full guide here: https://ostechnix.com/search-bash-history-by-prefix-altup-setup-guide/
#Bash #History #Prefix #Bashtips #Linuxtips #Linuxhowto #Linuxbasics #Linuxcommands #Linux
-
Did you know that when editing your MangoHud.conf, you don't actually need to load up a heavy game just to preview your changes?
You can view your overlay in a lightweight popup window instantly. Just run this in your terminal:
RADV_PERFTEST=gpl MANGOHUD=1 vkcube
#LinuxGaming #MangoHud #FOSS #LinuxTips #Linux #TerminalTIlt
-
Did you know that when editing your MangoHud.conf, you don't actually need to load up a heavy game just to preview your changes?
You can view your overlay in a lightweight popup window instantly. Just run this in your terminal:
RADV_PERFTEST=gpl MANGOHUD=1 vkcube
#LinuxGaming #MangoHud #FOSS #LinuxTips #Linux #TerminalTIlt
-
Did you know that when editing your MangoHud.conf, you don't actually need to load up a heavy game just to preview your changes?
You can view your overlay in a lightweight popup window instantly. Just run this in your terminal:
RADV_PERFTEST=gpl MANGOHUD=1 vkcube
#LinuxGaming #MangoHud #FOSS #LinuxTips #Linux #TerminalTIlt
-
Did you know that when editing your MangoHud.conf, you don't actually need to load up a heavy game just to preview your changes?
You can view your overlay in a lightweight popup window instantly. Just run this in your terminal:
RADV_PERFTEST=gpl MANGOHUD=1 vkcube
#LinuxGaming #MangoHud #FOSS #LinuxTips #Linux #TerminalTIlt
-
Did you know that when editing your MangoHud.conf, you don't actually need to load up a heavy game just to preview your changes?
You can view your overlay in a lightweight popup window instantly. Just run this in your terminal:
RADV_PERFTEST=gpl MANGOHUD=1 vkcube
#LinuxGaming #MangoHud #FOSS #LinuxTips #Linux #TerminalTIlt
-
Would you recommend Debian to a beginner? - (Comment Down Below!)
#Debian #Linux #Gaming #PC #Tech #Linuxlove #Opensource #LinuxGaming #GNU #TechTok #Reels #LinuxTiktok #ForYou #FYP #fyp #Debian13 #Gnome #KDEPlasma #XFCE #LinuxSetup #DesktopSetup #GamingOnLinux #LearnLinux #Educational #DebianTIps #SysAdmin #FOSS #LinuxAtWork #BeginnerLinux #LinuxTips #InstaReels #InstagramReels #Australia #Melbourne #Victoria #Shop -
The 'pv' #Linux utility is quite nice as you can track any process read process with the -d option. But what if it is not installed?
p=long_run_prog_name; while pgrep $p >/dev/null; do echo $(date -Isec) $(awk -v s=$(stat -c %s infile) '/pos/{printf "%.3f %%\n", 100*$2/s}' $(eval echo /proc/{$(pgrep -d, $p)}/fdinfo/3) ); sleep 30;done
'infile' is the file read on file descriptor 3 (after fdinfo)
output for two proceeses:
2026-03-09T19:20:15+02:00 40.552 % 44.543 %
-
The 'pv' #Linux utility is quite nice as you can track any process read process with the -d option. But what if it is not installed?
p=long_run_prog_name; while pgrep $p >/dev/null; do echo $(date -Isec) $(awk -v s=$(stat -c %s infile) '/pos/{printf "%.3f %%\n", 100*$2/s}' $(eval echo /proc/{$(pgrep -d, $p)}/fdinfo/3) ); sleep 30;done
'infile' is the file read on file descriptor 3 (after fdinfo)
output for two proceeses:
2026-03-09T19:20:15+02:00 40.552 % 44.543 %
-
The 'pv' #Linux utility is quite nice as you can track any process read process with the -d option. But what if it is not installed?
p=long_run_prog_name; while pgrep $p >/dev/null; do echo $(date -Isec) $(awk -v s=$(stat -c %s infile) '/pos/{printf "%.3f %%\n", 100*$2/s}' $(eval echo /proc/{$(pgrep -d, $p)}/fdinfo/3) ); sleep 30;done
'infile' is the file read on file descriptor 3 (after fdinfo)
output for two proceeses:
2026-03-09T19:20:15+02:00 40.552 % 44.543 %
-
The 'pv' #Linux utility is quite nice as you can track any process read process with the -d option. But what if it is not installed?
p=long_run_prog_name; while pgrep $p >/dev/null; do echo $(date -Isec) $(awk -v s=$(stat -c %s infile) '/pos/{printf "%.3f %%\n", 100*$2/s}' $(eval echo /proc/{$(pgrep -d, $p)}/fdinfo/3) ); sleep 30;done
'infile' is the file read on file descriptor 3 (after fdinfo)
output for two proceeses:
2026-03-09T19:20:15+02:00 40.552 % 44.543 %
-
Learn how to extend your Linux laptop's battery lifespan by setting charge thresholds with TLP in Linux. Step-by-step config for all major Laptop brands.
Step-by-Step Guide here: https://ostechnix.com/linux-battery-charge-thresholds-tlp/
#tlp #LaptopBattery #ChargeThreshold #Linuxtips #Linuxhowto #CLI
-
🐧 Wir laden dich ein 🐧
Komm vorbei und tausche dich mit Linux-Anwendern aus!
Wann: am 4.3.2026 um 19:00 Uhr
Wo: bei TUXEDO Computers in Augsburg
Infos: https://luga.de -
🐧 Wir laden dich ein 🐧
Komm vorbei und tausche dich mit Linux-Anwendern aus!
Wann: am 4.2.2026 um 19:00 Uhr
Wo: bei TUXEDO Computers in Augsburg
Infos: https://luga.de -
Learn how to use --dry-run in Linux commands like rsync, apt, and git. Preview changes before execution to avoid data loss with --dry-run flag.
More details here: https://ostechnix.com/linux-dry-run-flag-guide-beginners/
-
🐧 Wir laden dich ein 🐧
Komm vorbei und tausche dich mit Linux-Anwendern aus!
Wann: am 7.1.2026 um 19:00 Uhr
Wo: bei TUXEDO Computers in Augsburg
Infos: https://luga.de -
Cheat Sheet: View and Monitor CPU Temperature in Linux
#Linux #Linuxtips #Temperature #Sensors #LinuxCommands #LinuxBasics #Cheatsheet
-
Disable sleep on laptop lid close in Linux using systemd-logind. Works on Arch, Debian, Fedora, Ubuntu. 2-minute fix with safety warnings included.
More details here: https://ostechnix.com/disable-sleep-laptop-lid-close-linux/
-
Check the Latest Updated Packages in Arch Linux and its variants.
#Cheatsheet #Archlinux #Linux #Linuxcommands #PackageManagement #Linuxtips
-
I made a new video! This time, I share how I install Debian on my systems. I wanted to do something a little more unscripted this time.
Apparently there are about 10 seconds of bad audio at the beginning. Sorry about that! I'm not sure what happened.
Anyways, I hope you like it!
Install Debian 13 My Way | Graphical Expert Install | Tutorial
https://www.youtube.com/watch?v=GFMPO0jXST8
#TerminalTilt #Debian #Debian13 #GNULinux #GNU #Linux #Creator #Share #noai #Tutorial #CreativeProcess #Creative #LinuxTutorial #HowTo #LinuxHelp #LinuxTips #YouTube
-
Learn 20 powerful Linux tips and tricks to work faster in the terminal. Practical command-line shortcuts used by real Linux admins.
Full Guide Here: https://ostechnix.com/linux-tips-and-tricks-terminal-shortcuts/
#Linuxcommands #Linuxbasics #Linuxtips #Commandline #Linux #CLI
-
Learn a simple, portable Linux shell command to display each PATH directory on its own line. Works in bash, sh, zsh, and more.
Full guide here: https://ostechnix.com/read-linux-path-variable-line-by-line/
#PathVariable #Linux #Linuxshelltip #Linuxtips #Linuxbasics #Linuxcommands
-
🐧 Wir laden dich ein 🐧
Komm vorbei und tausche dich mit Linux-Anwendern aus!
Linux User Group Augsburg (LUGA)
Wann: am 3.12.2025 um 19:00 Uhr
Wo: bei TUXEDO Computers in Augsburg
Infos: https://luga.de -
Case matters, folks. 🫠
#Linux #FOSS #Terminal #OpenSource #Bash #CommandLine #TechHumor #TechMeme #Humor #Meme #SysAdmin #System #Privacy #InfoSec #CyberSecurity #LinuxLife #LinuxGaming #Shell #DevLife #Dev #Development #CLI #LinuxCommunity #SecureByDesign #Ubuntu #TechNews #Wayland #DevOps #SelfHosting #ArchLinux #Debian #LinuxAdmin #LinuxTips #LinuxMint #Fedora #PopOS #GNULinux #CloudComputing #GNU #BSD #FreeBSD #OpenBSD
-
Remove Snap and snapd completely in Ubuntu 24.04 LTS using two easy methods. Make Your Ubuntu 24.04.3 LTS 100% Snap-Free!
Learn how to:
- Uninstall Snap & snapd
- Block Snap from reinstalling
- Install Firefox without SnapRead the full guide: https://ostechnix.com/remove-snap-ubuntu-24-04-lts/
#Ubuntu #Linux #Snap #Ubuntu2404 #LinuxTips #OpenSource #LinuxHowto
-
DNF5 Can Auto-Install Missing Commands and Rerun Them Instantly #dnf5 #packagemanager #linuxhowto #linuxtips #linuxcommands #fedora #rhel
https://ostechnix.com/dnf5-auto-install-missing-commands/ -
Si usas Arch Linux con KDE Plasma, te tengo un dato 🔥: instala este "Elemento gráfico" (así se llaman las extensiones en KDE) y olvídate de abrir la terminal para revisar actualizaciones. ¡Te avisa solito cuando hay algo nuevo que instalar! 🐧⚙️
#ArchLinux #KDEPlasma #LinuxTips #FOSS #LinuxLife #TuxPower #OpenSource #LinuxDesktop #KDE #ArchUser #GNULinux #Linux
-
Jetzt online: Festplatten automatisch einhängen beim Systemstart - Linux Tutorial
https://youtu.be/FToisMjU2LE
#linuxguides #linux #linuxskills #opensource #linuxtips #linuxmint -
Today's Linux Tip: Execute Commands on Multiple Files in Linux #xargs #Linuxcommands #Linuxtips
-
Today's Linux Tip: Execute Commands on Multiple Files in Linux #xargs #Linuxcommands #Linuxtips
-
Today's Linux Tip: Execute Commands on Multiple Files in Linux #xargs #Linuxcommands #Linuxtips
-
Today's Linux Tip: Execute Commands on Multiple Files in Linux #xargs #Linuxcommands #Linuxtips
-
Today's Linux Tip: Execute Commands on Multiple Files in Linux #xargs #Linuxcommands #Linuxtips
-
Woops, deleted the wrong file, heres some file recovery tips.... the 2nd one i wish i found MUCH sooner.
i tried both #PhotoRec and ext4magic.
PhotoRec seems more suited to files with header types that can be detected easily, like images. it seems that if youve lost a text file with bits of what look like binary in them, you may not find it with PhotoRec, but do try it if desperate. PhotoRec is part of the #testdisk package.
-
Discover run0 for Linux, a passwordless command execution tool. Learn its similarities and differences with sudo, security analysis, installation, and usage for daily tasks and automation.
https://linuxexpert.org/understanding-run0/
#Linux #LinuxTools #run0 #sudo #SystemAdministration #LinuxCommands #LinuxTips #RootAccess #PasswordlessCommands #Automation #Security #LinuxTutorial #TechTips #AdminTools #ITSecurity #OpenSource #LinuxLearning #DevOps #SysAdmin #LinuxCommunity
-
Discover run0 for Linux, a passwordless command execution tool. Learn its similarities and differences with sudo, security analysis, installation, and usage for daily tasks and automation.
https://linuxexpert.org/understanding-run0/
#Linux #LinuxTools #run0 #sudo #SystemAdministration #LinuxCommands #LinuxTips #RootAccess #PasswordlessCommands #Automation #Security #LinuxTutorial #TechTips #AdminTools #ITSecurity #OpenSource #LinuxLearning #DevOps #SysAdmin #LinuxCommunity
-
Discover run0 for Linux, a passwordless command execution tool. Learn its similarities and differences with sudo, security analysis, installation, and usage for daily tasks and automation.
https://linuxexpert.org/understanding-run0/
#Linux #LinuxTools #run0 #sudo #SystemAdministration #LinuxCommands #LinuxTips #RootAccess #PasswordlessCommands #Automation #Security #LinuxTutorial #TechTips #AdminTools #ITSecurity #OpenSource #LinuxLearning #DevOps #SysAdmin #LinuxCommunity
-
Discover run0 for Linux, a passwordless command execution tool. Learn its similarities and differences with sudo, security analysis, installation, and usage for daily tasks and automation.
https://linuxexpert.org/understanding-run0/
#Linux #LinuxTools #run0 #sudo #SystemAdministration #LinuxCommands #LinuxTips #RootAccess #PasswordlessCommands #Automation #Security #LinuxTutorial #TechTips #AdminTools #ITSecurity #OpenSource #LinuxLearning #DevOps #SysAdmin #LinuxCommunity
-
Discover run0 for Linux, a passwordless command execution tool. Learn its similarities and differences with sudo, security analysis, installation, and usage for daily tasks and automation.
https://linuxexpert.org/understanding-run0/
#Linux #LinuxTools #run0 #sudo #SystemAdministration #LinuxCommands #LinuxTips #RootAccess #PasswordlessCommands #Automation #Security #LinuxTutorial #TechTips #AdminTools #ITSecurity #OpenSource #LinuxLearning #DevOps #SysAdmin #LinuxCommunity
-
How to Create a Systemd Service in Linux (under 1 Minute)
#Linux #Systemd #Sysadmin #LinuxTips #CLITips
https://linuxtldr.com/create-systemd-service/ -
How to Run (.sh) Shell Script in Linux [for Beginners]
#Linux #Shell #Bash #LinuxTips #LinuxTutorial #IT #Ubuntu
https://linuxtldr.com/how-to-run-a-shell-script-in-linux/ -
Cheat: Create a Cheatsheet for Your Favorite Command in Linux
#Linux #Cheat #LinuxTips #CLITips #Rust #SysAdmin #DevOps #RHEL
https://linuxtldr.com/installing-cheat/ -
Fixing the ‘update-grub: command not found’ Error in Linux
#Linux #Arch #GRUB #LinuxTips #Manjaro #CLITips
https://linuxtldr.com/fixing-update-grub-command-not-found-error-in-arch-linux/