-
Edit the
rc.localfile: Open the file with a text editor:sudo nano /etc/rc.local
-
Add the DHCP commands: Add the following lines above the
exit 0line in the file:
set all disabled=1, and remove disabled for ssid that we must connnected, or adding one
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
network={ ssid="YourNetworkSSID" psk="YourNetworkPassword" }
| function downloadAsCsv(rows) { | |
| let csvContent = "data:text/csv;charset=utf-8," | |
| + rows.map(e => e.join(",")).join("\n"); | |
| var encodedUri = encodeURI(csvContent); | |
| window.open(encodedUri); | |
| } |
| let body = { | |
| mode: 'raw', | |
| raw: JSON.stringify({ | |
| licenseUsername: 'username', | |
| licensePassword: 'password' | |
| }), | |
| options: { | |
| raw: { | |
| language: 'json' | |
| } |
To install MySQL 5.7 on a Linux-based operating system (e.g., Ubuntu, CentOS, Debian), you can use the package manager specific to your distribution. Here are the steps to install MySQL 5.7 on a few popular Linux distributions:
Ubuntu/Debian:
# Update the package index
sudo apt update
# Install MySQL Server and client
sudo apt install mysql-server mysql-clientAs of my last update in September 2021, MySQL 5.7 was still available for download. To install MySQL 5.7 on Windows using the command line, follow these steps:
-
Download MySQL Installer for Windows from the official MySQL website: https://dev.mysql.com/downloads/installer/
-
Launch the MySQL Installer executable you downloaded.
-
The installer will give you a choice of MySQL products to install. Select "MySQL Server" and click "Next."
-
In the next screen, you can choose a setup type. For this example, select "Server only" and click "Next."