Posted On March 31, 2019

A Comment on SSD Hardware

kimconnect 0 comments
blog.KimConnect.com >> Windows >> A Comment on SSD Hardware

There are different types of NAND flash: TLC, MLC, SLC. The Samsung EVO is TLC based, whereas the Pro is MLC based. MLC is for high-write applications. SLC is mostly reserved for servers and databases. TLC is for normal use.

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Disable Disk Checking on Windows Bootup

Run CMD or PowerShell as Administrator Issue this command to exclude checking of Systems volume…

Experimental selinux Settings

enable or disable selinux: vim /etc/sysconfig/selinux   setsebool -P httpd_read_user_content 1   grep nginx /var/log/audit/audit.log |…

Quick and Dirty Script to Watch and Start / Restart Windows Service

// powershell.exe// -ExecutionPolicy Bypass c:\scripts\serviceCheck.ps1$serviceName = '[input-service-name-here]'$arrService = Get-Service -Name $serviceNamewhile ($arrService.Status -ne 'Running'){ Start-Service…