Archivo de la categoría: Linux

How Cybercriminals Are Using Bitcoin’s Blockchain to Make Botnets Stronger Than Ever

https://gizmodo.com/how-cybercriminals-are-using-bitcoins-blockchain-to-mak-1848189767 Bitcoin’s blockchain appears to be the newest tool that cybercriminals are using to make their botnets incredibly resilient. ByLucas RopekToday 12:50PMComments (5)Alerts Last week, Google announced that it had partially disrupted the operations of a massive botnet—a gargantuan network of over one million malware-infected Windows computers. In the world of cybersecurity, that would be news on… Leer más »

How To Install Linux, Nginx, Mariadb 10.x, PHP (LEMP) stack On CentOS 7

Add the CentOS 7 EPEL repository, run the following command: Installing MariaDB Server 10.4 o deploy MariaDB Community Server 10.4 on RHEL 7 or CentOS 7, first download and use the mariadb_repo_setup script to configure the MariaDB repositories for YUM: $ sudo yum install wget $ wget https://downloads.mariadb.com/MariaDB/mariadb_repo_setup $ chmod +x mariadb_repo_setup $ sudo ./mariadb_repo_setup To install… Leer más »

What SREs Can Learn from Facebook’s Largest Outage

sauce: https://rootly.io/blog/what-sres-can-learn-from-facebook-s-largest-outage?utm_source=reddit&utm_medium=blog SRE (Site Reliability Engineer).- Is an engineer whose main role is maximizing the reliability of IT systems. Facebook’s October 2021 outage was the type of event that gives SREs nightmares: A series of critical business apps crashed in minutes and remained unavailable for hours, disrupting more than 3.5 billion users around the world and costing… Leer más »

uMatrix

uMatrix: Un cortafuegos matricial ajustable mediante clics, con varias herramientas para mejorar su privacidad. Excelente para bloquear subscripciones de noticias https://chrome.google.com/webstore/detail/umatrix/ogfcmafjalglgifnmanfmnieipoejdcf

fix java errors

No appropiate protocol (protocol is disabled or cipher suites are inappropriate) java version «1.8.0_261»Java(TM) SE Runtime Environment (build 1.8.0_261-b12)Java HotSpot(TM) Client VM (build 25.261-b12, mixed mode) FIX Disable: In $JRE/lib/security/java.security: Comment this lines: Certificates do not conform to algorithm constraints FIX Disable: In $JRE/lib/security/java.security: Comment this lines:

Advantages of using set -o vi

By setting your readline editing to either emacs (the default) or vi (set -o vi) you are essentially standardizing your editing commands, across the shell and your editor of choice1. Thus, if you want to edit a command in the shell you use the same commands2 that you would if you were in your text editor.… Leer más »

lowendbox.com

https://lowendbox.com About LowEndBox Low End Box is dedicated to helping people run websites and services on low end dedicated servers and virtual private servers, where you only need to pay a few dollars a month to get full root access. Our mission is to help people find cheap vps hosting. [

How to make a programme continue to run after log out from ssh?

Assuming that you have a program running in the foreground, press ctrl-Z, then: If there is only one job, then you don’t need to specify the job number. Just use disown -h and bg. Explanation of the above steps: You press ctrl-Z. The system suspends the running program, displays a job number and a «Stopped» message and returns you… Leer más »