TSA Bans All Liquids Gels Aerosols Powders in carry on luggage on Russia Flights
China faces unusual climate
Snowstorms, sandstorms, and strong rainfall. Since the end of last year, severe weather has been hitting China around the country and disturbing people's daily life. On Wednesday, a spokesman from the China Meteorological Administration sums up the phenomenon and their effects on people's lives.
In the middle of April, when normally there are spring blossoms everywhere, snowstorms blanketed areas of Inner Mongolia. The spring snows add to the region's worst winter in 60 years. In its neighboring provinces, Heilongjiang and Jilin, rare blizzards also struck.
On Wednesday, at a press conference held by the China Meteorological Administration, it is announced that the average temperature of the entire nation is 8.7 degree Celsius, 1.3 lower than usual. And it's the lowest since 1961.
April has been the month with the most rainfall since 1974. The drought in China's southwestern regions has been greatly eased. But as strong rains hit the middle and lower reaches of the Yangtze River and some parts of Guangxi Zhuang Autonomous Region, warnings against flooding have been announced.
At the same time, strong winds and sandstorms scour most of China's northern regions. The Xinjiang Uygur Autonomous Region, Inner Mongolia, Jilin, Gansu, central Hebei and Shaanxi provinces have all received blankets of dust. The sand not only hampers transportation, and agriculture production, but also does great harm to people's health.Ver video "China faces unusual climate"
El Deutsche Bank pagará 590 millones de euros en EEUU y el Reino Unido por lavado de dinero ruso
El Deutsche Bank aceptar pagar una multa de 590 millones de euros a los reguladores financieros estadounidense y británico para cerrar un caso de lavado de dinero ruso. El banco alemán pagará alrededor de dos terceras partes de esta cantidad en Estados Unidos y el tercio restante en el Reino Unido. Los reguladores probaron que entre 2011 y 2015, la entidad permitió a clientes comprar acciones en Moscú en rublos para luego venderlos casi al instante en Londres o Nueva York en otras divisas en un montaje para esconcer dinero negro.
#DeutscheBank reaches settlements over Russian securities trades https://t.co/juCuuF2HxA— Deutsche Bank (@DeutscheBank) 31 de gener de 2017
Se calcula que así salieron de Rusia más de nueve mil millones de euros. Para el regulador británico, se trata de la mayor multa jamás inflingida. El Deutsche Bank acaba de pactar, por otro lado, una multa de 6.700 millones de euros en Estados Unidos por las ‘hipoteca basura’.Ver video "El Deutsche Bank pagará 590 millones de euros en EEUU y el Reino Unido por lavado de dinero ruso"
How To Install MySQL Server & MySQL Workbench on Ubuntu Linux (2025)
How to Install MySQL Server and MySQL Workbench on Ubuntu 24.04 LTS Linux
Learn how to install *MySQL Server* and *MySQL Workbench* on Ubuntu 24.04 LTS Linux in this comprehensive tutorial. This step-by-step guide will walk you through installing the MySQL database server and its graphical user interface (GUI) client for managing your databases efficiently.
---
What is MySQL?
*MySQL* is a widely used open-source relational database management system. It’s ideal for web applications, data analysis, and enterprise solutions. MySQL Workbench complements it with a GUI for database modeling, SQL development, and server administration.
---
Steps to Install MySQL Server
#### 1. *Update System Packages*
Start by updating your package lists:
```bash
sudo apt update && sudo apt upgrade -y
```
#### 2. *Install MySQL Server*
Install the MySQL Server package using the following command:
```bash
sudo apt install mysql-server -y
```
#### 3. *Secure MySQL Installation*
Run the MySQL security script to configure recommended security settings:
```bash
sudo mysql_secure_installation
```
Follow the prompts to set up a root password, remove anonymous users, disallow root login remotely, and remove test databases.
#### 4. *Verify MySQL Installation*
Check if MySQL is running:
```bash
sudo systemctl status mysql
```
Login to MySQL to confirm:
```bash
sudo mysql -u root -p
```
---
Steps to Install MySQL Workbench
#### 1. *Add MySQL APT Repository*
Download and add the MySQL APT repository to ensure you get the latest version of Workbench:
```bash
wget
sudo dpkg -i mysql-apt-config_0.8.25-1_all.deb
sudo apt update
```
#### 2. *Install MySQL Workbench*
Install MySQL Workbench with the following command:
```bash
sudo apt install mysql-workbench -y
```
#### 3. *Launch MySQL Workbench*
You can start MySQL Workbench from the applications menu or by running:
```bash
mysql-workbench
```
---
Testing Your Installation
#### 1. *Connect to MySQL Server*
Open MySQL Workbench.
Click on *+* to create a new connection.
Enter your credentials (e.g., root user and password).
Test the connection and save.
#### 2. *Run SQL Queries*
Use the SQL editor to run queries and manage your databases.
---
Additional Tips
Regularly update MySQL and Workbench for new features and security patches:
```bash
sudo apt update && sudo apt upgrade
```
Use MySQL Workbench for database design, query optimization, and server management.
Monitor your database performance and set up proper backup solutions.
With MySQL Server and Workbench installed on Ubuntu 24.04 LTS, you're all set to build and manage robust databases. Like, share, and subscribe for more Linux tutorials!Ver video "How To Install MySQL Server & MySQL Workbench on Ubuntu Linux (2025)"