Mysql Dump to Backup Database

بسم الله Bismillah You can accomplish this using the mysqldump command-line function. For example: If it’s an entire DB, then: $ mysqldump -u [uname] -p db_name > db_backup.sql If it’s all DBs, then: $ mysqldump -u [uname] -p --all-databases > all_db_backup.sql If it’s specific tables within a DB, then: $ mysqldump -u [uname] -p db_name table1 table2 > table_backup.sql You can even go as far as auto-compressing the output using gzip (if your DB is very big): ...

September 5, 2024 · 1 min · Masari

Notice Skipping Acquire of Configured File Main Binary I386 Packages

Ada sedikit kejadian yang sebenarnya tidak masalah sih, cuma sedikit mengganggu dan bikin panik kalau tidak pernah menemukan pesan di terminal seperti ini.

September 27, 2022 · 2 min · Masari

Setup Debian Linux for Server with Proxy Reverse

بسم الله Bismillah Command terminal for setup debian server Login with root user Here example command, you can change username or your server ip addres and port open to ssh remote ssh [email protected] -p22 Change locale locale-gen en_US.UTF-8 | sudo locale-gen id_ID.UTF-8 Install the command application that we will need soon apt install sudo apt install curl apt install mtr apt install htop Activate sudo for regular linux users visudo Find this line and then add it below ...

September 26, 2021 · 2 min · Masari

How change Local Remote Directory Git in Linux

Change Local Remote Directory Git

June 10, 2019 · 1 min · Masari

How to list all installed packages in Linux (ubuntu)

Get a list of packages installed locally

September 2, 2018 · 1 min · Masari