Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

248 total results found

Установка Docker

Linux Ubuntu

sudo apt updatesudo apt dist-upgradesudo apt install apt-transport-https ca-certificates curl software-properties-commoncurl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -sudo add-apt-repository "deb [arch=amd64] https://download.doc...

Отключение cloud-init

Linux Ubuntu

Отключение sudo touch /etc/cloud/cloud-init.disabledsudo reboot Удаление sudo dpkg-reconfigure cloud-init Убрать все пункты, кроме None sudo apt-get purge cloud-initsudo rm -rf /etc/cloud/ && sudo rm -rf /var/lib/cloud/sudo reboot

Перестает открываться Пуск

Windows Ошибки

Вариант 1 Запустить PowerShell под админом и выполнить Get-AppXPackage -AllUsers | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register “$($_.InstallLocation)\AppXManifest.xml”} Вариант 2 Запустить редактор реестра под админом. Перейти в раздел HK...

Установка msmtprc

Linux Ubuntu

sudo apt-get install msmtp-mta ca-certificates sudo nano /etc/msmtprc defaults tls ontls_starttls ontls_certcheck offtls_trust_file /etc/ssl/certs/ca-certificates.crt account defaulthost <smtp.example.net>port 465auth onkeepbcc onuser <username@example.n...

Переключение Apache на PHP-FPM

Linux Ubuntu

sudo systemctl stop apache2 sudo a2dismod php7.4 sudo a2dismod mpm_prefork sudo a2enmod mpm_event sudo apt install php-fpm sudo apt install libapache2-mod-fcgid sudo a2enmod proxy sudo a2enmod proxy_fcgi sudo systemctl restart apache2

Нет доступа к сетевым ресурсам Samba

Windows Ошибки

Открыть ветку реестра HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters Добавить новый параметр AllowInsecureGuestAuth со значением 1 Перезапустить операционную систему

Не меняется раскладка клавиатуры в RDP-сессии

Windows Ошибки

Зайти от имени администратора cmd или сразу regedit на сервере Открыть ветку HKLM\System\CurrentControlSet\Control\Keyboard Layout Создать новый параметр типа REG_DWORD (32 bit) с названием IgnoreRemoteKeyboardLayout и значением 1 Закрыть редактор реестра и...

Не обнаружена библиотека wlanapi.dll

Windows Ошибки

В случае возникновения подобной ошибки на сервере, необходимо установить службу беспроводной локальной сети и перезапустить сервер. В случае возникновения ошибки на десктопной системе, необходимо переустановить драйвера для беспроводной сетевой карты и, если ...

Настройка TRIM

Linux Оборудование

Отредактировать таймер службы fstrim: sudo nano /usr/lib/systemd/system/fstrim.timer Поменять соответствующие параметры: OnCalendar=hourlyAccuracySec=30s Отредактировать службу fstrim: sudo nano /usr/lib/systemd/system/fstrim.service Поменять соответ...

Исправление проблемы с неработающим DNS

Linux Ubuntu

Добавить адреса DNS серверов sudo nano /etc/systemd/resolved.conf [Resolve]DNS=8.8.8.8 1.1.1.1 9.9.9.9MulticastDNS=noDNSStubListener=no Настроить NSSwitch sudo nano /etc/nsswitch.conf hosts: files resolve dns Сменить файл резолвера sudo ln -svi ...

Lowest_entropy

Linux Ошибки

sudo apt update sudo apt install rng-tools haveged

Отключение экрана консоли

Linux Общее

sudo nano /etc/default/grub GRUB_CMDLINE_LINUX="consoleblank=120" sudo update-grub

Переключение на HWE

Linux Ubuntu

Ubuntu 22.04 sudo apt install --install-recommends linux-generic-hwe-22.04 Ubuntu 20.04 sudo apt install --install-recommends linux-generic-hwe-20.04 Ubuntu 18.04 sudo apt-get install --install-recommends linux-generic-hwe-18.04 Ubuntu 16.04 sudo apt-ge...

Смена репозиториев Termux

Android

echo "deb https://mirror.tiukov.com/termux/termux-main stable main" > $PREFIX/etc/apt/sources.list echo "deb https://mirror.tiukov.com/termux/termux-root stable main" >> $PREFIX/etc/apt/sources.list echo "deb https://mirror.tiukov.com/termux/termux-x11 stabl...

Please enter the password for the PKCS#11 token PIV_II

Linux Ошибки

sudo dnf install -y rpmdevtools rpmdev-setuptree mkdir -p ~/rpmbuild/SPECS nano ~/rpmbuild/SPECS/fffix.spec Name:           fffixVersion:        0.0.1Release:        1%{?dist}Summary:        Fixes Browsers License:        BSDURL:            None Requir...

Не работает клавиатура, либо мышь на экране логина

Linux Ошибки

sudo nano /etc/default/grub GRUB_CMDLINE_LINUX= ... iommu=soft sudo grub2-mkconfig -o /boot/grub2/grub.cfg

ImportError: cannot import name 'sysconfig' from 'distutils' (/usr/lib/python3.8/distutils/__init__.py)

Linux Ошибки

curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py python3 get-pip.py --force-reinstall

Удаление старых ядер

Linux Ubuntu

Обновить систему и перезагрузить для перехода на актуальную версию ядра sudo apt update sudo apt full-upgrade sudo reboot Удалить остатки sudo apt autoremove --purge Проверить список установленных ядер sudo dpkg --list | egrep 'linux-image|linux-headers...