Linux-Tech&More
banner
linuxtechmore.com
Linux-Tech&More
@linuxtechmore.com
Linux News, Reviews, Tutorials & More!
The suffering of adults in Gaza, the land of honor, is a great pain to me. Yet, nothing compares to the pain in my heart for a child who starved, thirsted, and cried until death brought him rest from his hardship. 😔💔

The child = Abdullah Abu Zarqa.

#gaza #zionistcrimes #gazagenocide
August 19, 2025 at 6:18 PM
The USA—criminal, vile, deceitful—arms Zionist terrorists while pretending to send aid as famine kills Gaza, blocking trucks, luring the hungry, letting Zionists bomb them and gun them down, stealing aid to hunt the starving, gather intel, and perfect mass murder.
#gaza #gaza_genocide
July 19, 2025 at 11:59 PM
🔐 #LTMInfosec Tip 2: Use a Strong, Unique Password

Your user account is your system’s gate. Use a long passphrase or a strong random password.

Generate one: openssl rand -base64 20

Change it: passwd

Stay secure, stay curious.

More tips: linuxtechmore.gumroad.com/l/infosec-ti...

#Linux #Privacy
July 19, 2025 at 9:02 PM
🔐 #LTMInfosec Tip 1: Keep Your System Updated

Critical security starts with updates.

Debian: sudo apt update && sudo apt upgrade
Fedora: sudo dnf upgrade
Arch: sudo pacman -Syu

Stay secure, stay curious.

linuxtechmore.gumroad.com/l/infosec-ti...

#Linux #OpenSource #Security #Infosec #Privacy
July 17, 2025 at 9:57 PM
It was challenging. But it was worth it.

My first #Linux #security ebook 🚀 #Infosec Tips Every Linux User Should Know is here. Interactive HTML + PDF (CC BY 4.0).

Free for Superuser members, PWYW on Gumroad: linuxtechmore.gumroad.com/l/infosec-ti...

Stay curious. Stay secure.

#LTMInfosec
July 16, 2025 at 11:50 PM
#LTMLinuxTips – Day 15

🛑 Kill a process by name

Instead of looking for PIDs manually, kill by name:

pkill firefox

Or kill all matching processes forcefully:

pkill -9 firefox

Clean, quick, and efficient process management.

#Linux #SysAdmin #CLI #OpenSource
July 13, 2025 at 4:05 PM
Dasharo firmware 1.0.0 is arriving for NovaCustom Linux laptops, bringing stability improvements, bug fixes, and even better Linux integration.

www.linuxtechmore.com/dasharo-firm...

#Linux #Coreboot #OpenSource #LinuxLaptop #FirmwareUpdate
July 9, 2025 at 1:00 PM
#LTMLinuxTips – Day 14

🔋 Check battery status from the terminal

For laptops, see battery % and status:

upower -i $(upower -e | grep BAT)

Gives detailed info on charge level, capacity, and health without a GUI.

#Linux #LinuxLaptop #CLI #OpenSource
July 7, 2025 at 6:32 PM
#LTMLinuxTips – Day 13

📅 View your system’s last reboot history

last reboot

A quick way to see when your system was rebooted and confirm uptime patterns.

#Linux #SysAdmin #CLI #OpenSource
July 4, 2025 at 4:38 AM
Your Linux System Was Exposed: Critical Sudo Flaws Now Patched

Two #Sudo privilege escalation flaws that opened your #Linux system to hackers have been patched. Learn how to protect and audit your system.

www.linuxtechmore.com/two-critical...

#Cybersecurity #InfoSec #Vulnerability
July 3, 2025 at 2:26 PM
#LTMLinuxTips – Day 12

🚨 Audit recent sudo use for suspicious activity

Check recent sudo activity: sudo journalctl _COMM=sudo

Look for unusual users or unfamiliar commands that may indicate suspicious elevated sessions.

#Linux #Security #Privacy #OpenSource
July 2, 2025 at 10:36 PM
No More Copr Needed to Install TUXEDO Software on Fedora

No more unofficial repos! Easily and safely install #TUXEDO software on #Fedora with the official TUXEDO COMPUTERS repository for drivers and Control Center.

www.linuxtechmore.com/how-to-insta...

#TUXEDOControlCenter #OpenSource #Linux
June 30, 2025 at 7:40 AM
#LTMLinuxTips – Day 11

🧹 Clean up package cache and free space

On Debian/Ubuntu:

sudo apt clean

On Fedora:

sudo dnf clean all

On Arch:

sudo pacman -Sc

Keep your system lean by clearing outdated cache files.

#Linux #CLI #SysAdmin #OpenSource
June 28, 2025 at 10:19 AM
How to Enable Clipboard History on Ubuntu 24.04

No clipboard history on Ubuntu 24.04? Learn how to easily enable it with GPaste and make it work the way you need, with this step-by-step tutorial.

www.linuxtechmore.com/how-to-enabl...

#Ubuntu #Gnome #Linux #OpenSource #Tutorial
June 26, 2025 at 2:25 PM
#LTMLinuxTips – Day 10

🎛️ Display hardware info (CPU, RAM, etc.)

inxi -F

A powerful, human-readable system overview.

📦 Install it with:
Debian/Ubuntu: sudo apt install inxi
Fedora: sudo dnf install inxi
Arch: sudo pacman -S inxi

#Linux #SystemInfo #CLI #OpenSource
June 25, 2025 at 11:41 PM
Rewriting a changelog into a post—without trying the software or sharing a single screenshot—shouldn’t be acceptable. At Linux-Tech&More, I only write about tools I’ve truly used and tested, and share honest insights based on real experience.
#Linux #OpenSource
June 25, 2025 at 8:23 PM
#LTMLinuxTips - Day 9

⏱️ Show how long your system has been running

uptime -p

🛌 Maybe it's time to let your system catch some Zzzs

#Linux #OpenSource #CLI #Terminal
June 25, 2025 at 6:12 AM
Ditching Disqus: Why I Chose wpDiscuz for My Linux Blog

After struggling with WordPress comments & #Disqus, I found #wpDiscuz! Discover why this open-source alternative was my choice for better engagement & privacy.

www.linuxtechmore.com/why-i-ditche...

#OpenSource #Privacy #WordPress
June 23, 2025 at 3:43 PM
#LTMLinuxTips - Day 8

🌐 Test DNS resolution from terminal:

dig linuxtechmore.com

Great for troubleshooting domain issues.

#Linux #Networking #OpenSource #CommandLine
June 22, 2025 at 11:15 PM
#LTMLinuxTips - Day 7

📆 Display calendar in terminal:

cal 2025

Quickly view monthly or yearly calendars without leaving the terminal.

#Linux #CLI #Productivity #OpenSource
June 22, 2025 at 12:44 AM
#LTMLinuxTips - Day 6

🔒 List active listening ports from terminal:

sudo lsof -i -P -n | grep LISTEN

Great for checking open ports and running services.

#Linux #OpenSource #CyberSecurity #Networking
June 21, 2025 at 3:51 AM
#LTMLinuxTips - Day 5

🗺️ Check your public IP From terminal (with more detail):

curl -s ipinfo.io

Useful for remote access or VPN checks.

#LinuxNetworking #Privacy #Linux #OpenSource
June 19, 2025 at 8:19 PM
#LTMLinuxTips

Need a quick history recall? Use: history | tail

Start typing—press it again to cycle!

#LinuxTricks #CLI #Linux #OpenSource
June 18, 2025 at 5:59 PM
🐧 #LTMLinuxTips

Forget to use sudo? Don't retype everything: sudo !!

It reruns your last command as root. Saved me more times than I can count!

#LinuxTips #LinuxTricks #CLI #OpenSource #Linux
June 17, 2025 at 1:30 AM
🐧 #LTMLinuxTips

Want to quickly find out what distro you're using?

Run: cat /etc/os-release

This gives you detailed info like distro name, version, and more.

#Linux #LinuxTips #OpenSource #CommandLine #LinuxTricks
June 15, 2025 at 11:13 PM