Forwarded from Программирование 24/7
Здесь собраны все основные материалы: лучшие курсы и книги по IT, языкам программирования, DevOps и разработке. Используй хэштеги для удобного поиска:
📚 Книги по программированию и IT➡️ #Книга #DevBooks #Python #ООП #DataScience #MachineLearning #AI #Delphi #SQL #CSharp #Linux #Алгоритмы #Backend #Frontend💻 Курсы по языкам и разработке➡️ #Курс #Python #JavaScript #CSharp #C++ #Java #HTML #CSS #SQL #Dart #Flutter #Lua #Golang #Ruby #Delphi #TypeScript
🛠 DevOps, инструменты и практика➡️ #Docker #Ansible #Git #Linux #CI_CD #Swarm #Kubernetes #MRSK #GitHub #Инфраструктура #Автоматизация #Тестирование #Postman #Selenium #Jira
Please open Telegram to view this post
VIEW IN TELEGRAM
❤2
Forwarded from Linux Club
This media is not supported in your browser
VIEW IN TELEGRAM
1) Закрепите процесс за ядрами → меньше миграций
taskset -pc 2-5 $PID
2) Переведите «долгие» вычисления в SCHED_BATCH (реже прерываются)
sudo chrt -b -p 0 $PID
# (Для жёстких RT-требований: sudo chrt -r -p 90 $PID — осторожно!)
3) Дайте приоритет диску для критичного процесса
sudo ionice -c1 -n0 -p $PID
4) Уменьшите NUMA-кросс-трафик (CPU и память на одном NUMA-узле)
numactl --cpunodebind=0 --membind=0 your_cmd
5) Быстро навесьте cgroup-ограничения/аффинити без юнитов
systemd-run --scope -p CPUAffinity=2-5 -p IOWeight=200 -p MemoryHigh=4G -- your_cmd
6) Поднимите лимиты без рестартов
sudo prlimit --pid $PID --nofile=65535 --nproc=4096
7) Поймайте узкое место за 10 секунд
sudo perf stat -d -p $PID -- sleep 10
😍 Посмотрите по-поточную нагрузку и ожидания (I/O, своп, блокировки)
pidstat -wstu -p $PID 1
9) Диагностика «давления» ресурсов (PSI): видно, что реально тормозит
sudo tail -f /proc/pressure/{cpu,io,memory}
#linux
Please open Telegram to view this post
VIEW IN TELEGRAM
👍3🤝1
Forwarded from Linux Club
Linux Mint: From Beginner to Advanced - Complete Guide: A Comprehensive Guide to Mastering Linux Mint – From Installation to Advanced Customization and Troubleshooting
Year: 2025
Author : Dargslan
Language: English
#Linux #Book #Eng #LinuxMint #Mint #guide
🐧 Linux Club
Year: 2025
Author : Dargslan
Language: English
This guide is crafted for anyone eager to embrace the Linux way of computing through Linux Mint. Complete beginners will find clear, step-by-step instructions that demystify Linux concepts and build confidence. Intermediate users will discover advanced techniques and best practices to enhance their Linux proficiency. Even experienced Linux users will benefit from Linux Mint-specific insights and optimization strategies covered in the later chapters.
Whether you're a student exploring alternatives to proprietary operating systems, a professional seeking the reliability and security of Linux, or an enthusiast passionate about open-source technology, this book provides the knowledge and practical skills needed to master Linux Mint.
#Linux #Book #Eng #LinuxMint #Mint #guide
Please open Telegram to view this post
VIEW IN TELEGRAM
👍1🤔1