User Tools

Site Tools


tutoriais:otimizacao_ssd

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
Last revisionBoth sides next revision
tutoriais:otimizacao_ssd [2014-11-14 08:27] – created alopestutoriais:otimizacao_ssd [2019-03-15 10:03] – external edit 127.0.0.1
Line 1: Line 1:
- ====Como cuidar e dicas de otimização do seu SSD====+=====Como cuidar e dicas de otimização do seu SSD=====
  
 Você que chegou nesta página provavelmente já tem ou está pensando em colocar um SSD (se não era por isso, talvez você devesse primeiro ver este link [[tutoriais:dicas_hardware|AQUI]]. Você que chegou nesta página provavelmente já tem ou está pensando em colocar um SSD (se não era por isso, talvez você devesse primeiro ver este link [[tutoriais:dicas_hardware|AQUI]].
Line 7: Line 7:
 Por hora vamos passar apenas links que iremos utilizar para construir essa página no futuro. Por hora vamos passar apenas links que iremos utilizar para construir essa página no futuro.
  
- ===Linux===+====Linux====
 Um bom tutorial para Linux é esta página aqui - https://sites.google.com/site/easylinuxtipsproject/ssd Um bom tutorial para Linux é esta página aqui - https://sites.google.com/site/easylinuxtipsproject/ssd
  
- ===Windows===+====Resumidamente==== 
 +(Para Ubuntu 14.04 e Mint Linux 17.1) 
 + 
 +Obs: Já considerando que não tem SWAP e que já foi deixado um espaço de 7% do do SSD sem particionar. 
 + 
 +  * With "noatime" in /etc/fstab, you disable the write action "access time stamp", that the operating system puts on a file whenever it's being read by the operating system. For an SSD "noatime" is much better. 
 + 
 +  sudo nano /etc/fstab 
 + 
 +Now add "noatime" to the line for your root partition and your other Linux partitions. Not to the line for the swap partition! 
 + 
 +An adapted line may look like this: 
 +  UUID=f0ae2c59-83d2-42e7-81c4-2e870b6b255d / ext4 noatime,errors=remount-ro  0 1 
 + 
 +  * You can add the TRIM command to /etc/rc.local  
 +  
 +<code>sudo nano /etc/rc.local</code> 
 +  
 +Above the line exit 0 in that file, you now add the TRIM command fstrim for every automatically mounted EXT4 partition.  
 + 
 +An example is most clarifying. When your Ubuntu or Linux Mint is on one single partition, so you have only the root partition / , then your rc.local should look like this: 
 + 
 + #!/bin/sh -e 
 +
 + # rc.local 
 +
 + # This script is executed at the end of each multiuser runlevel. 
 + # Make sure that the script will "exit 0" on success or any other 
 + # value on error. 
 +
 + # In order to enable or disable this script just change the execution 
 + # bits. 
 +
 + # By default this script does nothing. 
 + fstrim / 
 + exit 0 
 + 
 +====Windows====
 Para Windows, uma boa pedida é adquirir um SSD onde o fabricante disponibilize um software que faça as otimizações por você. Três fabricantes que conhecemos que possuem esse tipo de software são Samsung, Intel e Corsair. Mas existem alguns programas freeware e shareware que fazem essas modificações em quaisquer SSDs, como por exemplo o [[http://www.elpamsoft.com/?p=ssd-tweaker|SSD Tweaker]]. Para Windows, uma boa pedida é adquirir um SSD onde o fabricante disponibilize um software que faça as otimizações por você. Três fabricantes que conhecemos que possuem esse tipo de software são Samsung, Intel e Corsair. Mas existem alguns programas freeware e shareware que fazem essas modificações em quaisquer SSDs, como por exemplo o [[http://www.elpamsoft.com/?p=ssd-tweaker|SSD Tweaker]].
 +
 +Para fazer manualmente, encontramos estas duas páginas (em inglês) que ensinam e explicam passo a passo o que fazer. Serve para Windows 8.1, Windows 8, Windows 7 e inclusive o Windows 10 (ainda em versão de testes)
 +
 +http://www.auslogics.com/en/articles/ssd-tweaks-to-increase-ssd-performance/
 +
 +http://www.disk-partition.com/kb/tips-ssd-optimization-windows7-1.html
 +
 +=====Overprovisioning=====
 +Os modelos abaixo não necessitam de configuração de overprovisioning:
 +  * Kingston v300

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki