This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Яндекс Браузер в Ubuntu 26.04 не воспроизводит HLS-видео: Ffmpeg not found / libffmpeg.so — решение | |
| Короткая памятка для Ubuntu 26.04. | |
| Ситуация: Яндекс Браузер открывает страницу с HLS-видео, плеер отображается, поток вроде пытается загрузиться, но вместо картинки появляется ошибка про отсутствующий видеокодек. | |
| Например: | |
| ```text | |
| Отсутствует видеокодек. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ```sql | |
| CREATE USER 'login'@'localhost' IDENTIFIED BY 'pass'; | |
| GRANT SELECT,UPDATE,INSERT ON dbname.* TO 'login'@'localhost'; | |
| GRANT ALL PRIVILEGES ON dbname.* TO 'login'@'localhost'; | |
| FLUSH PRIVILEGES; | |
| ``` | |
| Если: An exception occurred in driver: SQLSTATE[HY000] [2054] The server requested authentication method unknown to the client | |
| То: ALTER USER 'zabbix_yurchenko'@'localhost' IDENTIFIED WITH mysql_native_password BY 'zabbix_yurchenko'; |