Answer: How to remove old kernel images on #Ubuntu like OS https://unix.stackexchange.com/a/803095?stw=2
Answer: How to remove old kernel images on #Ubuntu like OS https://unix.stackexchange.com/a/803095?stw=2
@slimbook Entiendo, seria genial tener algún mecanismo o proveedor. Gracias de cualquier forma. Saludos
@slimbook se ve muy bien la nueva versión de ONE. Existe algún proveedor en México? Saludos
RE: https://mastodon.social/@Daojoan/115887797274244849
100% kids need this and no smart mobile phone. maybe give dumb Nokia for texting and emergency. but that is all. some social media apps are very dangerous these days combined with AI. You need to protect your kids and family from these tech bros.
@elhackernet sin duda Python es un gran lenguaje, y estudiarlo es muy recomendable, el único detalle que veo en la nota es que el crecimiento se dió porque la IA ha hecho la tarea y no el programador en si.
Sé más de alguno dirá que es lo de hoy, pero esto dónde deja el aprendizaje de la gente?
dwipe is a free and opensource tool for securely and efficiently wipe devices and partitions for Linux operating systems. It comes with TUI and easy to use interface. Give it a try.
Running out of disk space on your Linux, macOS, BSD, or Unix-like OS? Or perhaps you're hitting the classic disk quota limits set by your sysadmin? Fear not. Run `du -sh * | sort -h` command to get a sorted list of your directory sizes so you can remove or compress unwanted files. Here is another useful shell alias:
```
alias ducks='du -cks -- * | sort -rn | head'
ducks
```
See https://www.cyberciti.biz/faq/how-do-i-find-the-largest-filesdirectories-on-a-linuxunixbsd-filesystem/ for more info.
#unix #linux #macos
SSH brute force login attempts 🤣 It is time to hide your ssh port behind a vpn? I say, disable password based login and only use the 2FA protected ssh keys based login and ensure TCP/port 22 is rate limited.
I've more tips for you. Read: OpenSSH Server Best Security Practices https://www.cyberciti.biz/tips/linux-unix-bsd-openssh-server-best-practices.html if you want to protect yourself from such attacks.
🎉 We're very happy to announce our new release KeePassXC 2.7.11 and... *drumroll* that the KeePassXC version 2.7.9 has been awarded a CSPN Security Visa by the French National Cybersecurity Agency (ANSSI). 🎉❤️🔒
See our blog post for more information: https://keepassxc.org/blog/2025-11-23-2.7.11-released/ #VisaSecu #KeePassXC
A terminal user interface (TUI) application for testing and visualizing regular expressions in real time. This interactive regex editor provides a clean, easy to use terminal interface for immediate testing and validation. It uses the RE2 engine by default and offers a multi line text input area. Key features include real time feedback as you type, visual highlighting of matches with alternating colors, and tab navigation between the regex and text inputs.
Those who still use MS windows at work or home for any reason, please see this debloat script to recliaim your sanity and privacy. Win11Debloat is a simple, lightweight PowerShell script designed to customize and declutter your Windows experience. It removes pre installed apps, disables telemetry, and applies various other changes to improve performance on both Windows 10/11 https://github.com/Raphire/Win11Debloat Do what you wish to do with this information.
"Tor Browser 15 da el salto a Firefox 140, pero deja fuera la IA y pone coto a WebAssembly"
https://blog.elhacker.net/2025/11/tor-browser-15-da-el-salto-firefox-140.html
Hey, Anthropic owes me $9000! They illegally used at least 3 of my books on LibGen to create Claude. Now they're paying a $1.5 billion settlement, at $3000 per book. See if *your* books are on the list:
https://www.anthropiccopyrightsettlement.com/
If so, you have until March 23, 2026 to file a claim. The above website lets you file a claim, but this one explains everything more clearly:
Actually I exaggerated: the payment will be split between authors and publishers, but I have to make the claim - so the settlement is making me do some work my publisher should be doing for me. My coauthors and I will just get half, $4500. One of these books has 2 coauthors, one has 3, and one is a book I edited, with essays by lots of authors. So $1000 is a more realistic estimate of what I get. Oh well.
Bizarrely, my most popular book, Gauge Fields, Knots and Gravity, is not on the list. But I guess it's not surprising:
"The settlement agreement discloses that approximately 500,000 titles out of the 7 million copies of books that Anthropic reportedly downloaded from LibGen and PiLiMi meet the definition required to be part of the class."
Only books whose copyright is registered with the US Library of Congress meet that defiinition!
If you have a book on the list, you can opt out of the current settlement and join future lawsuits. But you have to take action to do that!!! For more information on that, see item 40 here:
Here's a small tip for Unix and Linux developers and IT pros: Want to run the same command again at the terminal? In most modern shells (tcsh, zsh, bash), you can simply type "!!".
For example, say you forget to use sudo:
yum upgrade -y
pkg upgrade -y
Instead of typing the whole command again, just do this:
sudo !!
This is a lifesaver for longer commands. Give it a try!
"Rate Limit com NGINX"
"Facebook Parejas usará la IA para ayudarte a encontrar la pareja ideal"
https://blog.elhacker.net/2025/09/meta-facebook-parejas-meet-ia-pareja-ideal.html
Updated Post: Rocky Linux 10 Now Available for VPS Servers
#Cloud #ServiceAnnouncement #VPS
Rocky Linux 10 Now Available f...
Type this `tr ':' '\n' <<<"$PATH"` instead of `echo "$PATH"` to print nicely printed search PATH on your Linux, macOS, FreeBSD or Unix computer. The command for bash/ksh/sh and compatible shell is:
tr ':' '\n' <<<"$PATH"
Here is a quick little tip: You can hit `Ctrl-D` to quickly exit from a shell (remote/ssh or local), or logout from a login shell. No need to type the `exit` on your Linux, macOS or Unix systems.