У нас вы можете посмотреть бесплатно How to Optimize Your SSD for use in Linux или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
In this video I show you the steps I take to optimize my SSD's when used in a Linux Operating System. Hope you enjoy! If I've helped you in any way and you'd like to buy me a coffee, please click this link to do so: https://www.paypal.me/dontcallmelenny Many Thanks in advance! SHOWNOTES: 1.Set AHCI for Sata in BIOS. 2 sudo hdparm -I /dev/sda | grep TRIM (to see if your SSD supports trim) 3. Add "noatime" to fstab: (on / partition) example: UUID=f0ae2c59-83d2-42e7-81c4-2e870b6b255d / ext4 noatime,errors=remount-ro 0 1 4.#!/bin/sh call fstrim-all to trim all mounted file systems which support it set -e # This only runs on Intel and Samsung SSDs by default, as some SSDs with faulty firmware may encounter data loss when running fstrim under high I/O load (e. g. https://launchpad.net/bugs/1259829). You can append the --no-model-check option here to disable the vendor check and run fstrim on all SSD drives Like this (remove the hash): #exec fstrim-all --no-model-check exec fstrim-all --no-model-check 5.sudo chmod +x /etc/cron.daily/trim reboot 6. Copy and paste to disable weekly cron trim: sudo mv -v /etc/cron.weekly/fstrim /fstrim 7. Manually trim sudo fstrim -v / 8. Swappiness cat /proc/sys/vm/swappiness (should be no more than 10) open file : gksudo leafpad /etc/sysctl.conf add to end of file: Sharply reduce swap inclination vm.swappiness=1 reboot 9. Firefox - set cache to 0. Preferences-Advanced-Network tab Cached web content - tick "Overide auto cache mgt" and set to 0. 10. Chrome/Chromium Open chrome/chromium then f12 click on gear wheel settings check " disable cache while dev tools is open"