Once I made a project in Adobe Premiere and I had to pull out the video card, after I pulled it out, I started using the integrated Intel HD Graphics 630 and I had a problem with the image. The video became distorted, most often with pink and green stripes.
Continue reading “The problem with pink video distortion in Adobe Premiere”Author Archives: Vyacheslav
Accel-ppp installation
In this article, I’ll give an example of how to build and install accel-ppp in Ubuntu Server.
Continue reading “Accel-ppp installation”How to change hostname in Linux
Here is an example of changing the hostname in Linux.
First, switch to the root user or add “sudo” before the commands.
Let’s see the current hostname:
Solution “Internal Server Error” when opening Nextcloud
Recently moved Nextcloud from one server to another and when it opened, noticed the following error in the browser:
Internal Server Error
The server encountered an internal error and was unable to complete your request.
Please contact the server administrator if this error reappears multiple times, please include the technical details below in your report.
More details can be found in the server log.
In my case, the error occurred because of a damaged MySQL database, so I restored it from another backup and Nextcloud opened.
I assume that the same error can occur when the Nextcloud database exists, but is empty.
See my article:
Install Nextcloud in Ubuntu
Solution MySQL ERROR 1055 (42000)
Recently performed the necessary SQL queries and noticed the following error:
ERROR 1055 (42000): Expression #4 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'database_name.table_name.column_name' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by
How to see the process of importing a SQL file?
In order to see the process of importing SQL files, I use the Pipe Viewer utility.
Pipe Viewer is very useful especially when the SQL file is large, allows you to roughly estimate the remaining time before the import of the file is completed, displays the import process in percent and the time passed.
Configuring Huawei Quidway S3900 Switches
For example, take the switch Huawei Quidway S3928P-EI, the settings are essentially suitable for the entire Huawei Quidway S3900 series, but may differ slightly depending on the firmware version. If something fails to register, then you can see the options for the teams by typing a question mark after a space after any command.
At me at switching-on of the switch, through the console the following characteristics were displayed:
Creation date: Aug 25 2006 CPU type: BCM4704 CPU Clock Speed: 200MHz BUS Clock Speed: 33MHz Memory Size: 64MB
Let’s see the current configuration with the command:
display current-configuration
To enter the configuration mode, type:
system-view
Continue reading “Configuring Huawei Quidway S3900 Switches”
How to solve “ERROR 1062 (23000) at line X: Duplicate entry ?????? for key X”
I recently imported a dump into MySQL and found the following error:
ERROR 1062 (23000) at line 14096: Duplicate entry '????????' for key 'name'
Continue reading “How to solve “ERROR 1062 (23000) at line X: Duplicate entry ?????? for key X””
Solution of error with binary-mode when importing MySQL dump from the command line
Once I decided to import sql dump:
mysql -u root database < database.sql.gz
And I noticed the following error:
ERROR: ASCII '\0' appeared in the statement, but this is not allowed unless option --binary-mode is enabled and mysql is run in non-interactive mode. Set --binary-mode to 1 if ASCII '\0' is expected. Query: ''.
The error occurs because the dump is compressed and must first be unpacked:
gunzip database.sql.gz
And then import:
mysql -u root database < database.sql
See my other articles in the category MySQL
Installing and using ClamAV antivirus
Clam AntiVirus — a package of antivirus software running on many operating systems.
Continue reading “Installing and using ClamAV antivirus”