![]() |
interesting article on configuring SSD
Im building a mini-itx system for full-time general-use desktop system, because:
1. low power use 2. small footprint 3. i rarely use cd's/dvd's 4. silent!! (fan-less) 5. something new (for me) .. ! 6. cheap (like me) I purchased a 32G SSD to run the system on; after researching online, i learned of limitations to the number of writes over time on drives of this type. I found an interesting article, and i'd like comments as to whether folks here have opinions as to the veracity of its claims. Also comments in general 'cause im curious that way. thx in advance LQers! article below: http://chriseiffel.com/everything-li...-ssd-on-linux/ |
I think it's a good article.
You mentioned that your learned of limitations to the number of writes over time on drives of this type of ssd. If there is a chance that the limitations include the type of architecture your computer is you may want to do more research. Benchmarking seems to be a very important role from what I gathered. This page talks about tests on certain architecture and a comparison of different architectures- http://en.wikipedia.org/wiki/Benchmark_%28computing%29 If this is what you would really like to consider doing it go for it- But I would do (If it were my system)more research. I don't like running into surprises when working hard on a project. These instructions are most certainly going to be work for you. If you happen to read the article again ask yourself one question. Is there anything about this procedure that I'm going to perform have any conflicting practices? If so you may run into unwanted distress. Newegg has more if your intrested. I didn't know that some of the ssd's were so expensive! http://www.newegg.com/Store/SubCateg...e=Internal-SSD Good luck |
Nice article, just a few corrections:
- With normal desktop usage the wear-out caused by writes is a non-issue on modern SSDs. - ext2/3/4 are not partition types, but filesystems. - If I would consider wear-out as a problem I would still use ext4 because of its superior performance compared to ext2 and because it supports the TRIM function. You can use ext4 without the journal. - The article omits any information about partition alignment. The partitions on a SSD should be aligned to the SSD's flash erase block size, otherwise you can get serious impacts on write performance. Since the usual erase block sizes are 128, 256 or 512KB it is the safest bet to align partitions to 2048 logical sectors (1 logical sector = 512 Byte). If you partition the disk with GParted this will usually be done automatically. |
One thing the article doesn't go into is swappiness, the propensity of the system to move things to swap, rather than keeping them in active memory. If you are attempting to limit writes, reducing swappiness can help. Most modern desktop machines are going to have at least 1GB RAM, but likely 2GB to 4GB or more. Most likely, you won't be swapping much under those conditions. However, that is very dependent on what you do with the system. And, as TobiSGD indicated, modern SSDs aren't as susceptible to write wear-out. But why take the chance, right?
For SSDs, you might not want to specify a swap partition at all (just don't make one on install, or reclaim the space later). Specifying a swap partition kind of just gives your SSD a defined place to wear out first (although wear leveling may mitigate this)... You can go with swap files, if you think you'll need swap to keep apps behaving themselves. But to reduce swappiness, first determine where it is; cat /proc/sys/vm/swappiness It'll return a value of 60, most likely. That's fine for a server, but probably lousy for a desktop. Permanent changes are made by editing the /etc/sysctl.conf file. Use what even text editor you prefer (gedit, kate, nano, etc.) with root authority, and either edit, or add the line; vm.swappiness=5 (or 10, or 1,... personal choice,... but I've gone to 1 with no ill effects) Temporary changes can be made with; sudo sysctl vm.swappiness=5 (again, use whatever number you want to try) As much as doing this will reduce writes, it will also reduce the drain on resources from IO operations while it's moving the data in and out of swap. You might notice the system appearing "snappier,"... or not. |
I disagree. If you have a workload on your system that indicates that you will use the swap partition (besides that few MB stale memory that you see from time to time swapped out) I would strongly recommend to put your swap on the SSD. This will give you much better performance than putting it on a conventional drive.
|
Well, swappiness is one of those controversial, heavily opinion laden things...
Some say "no swap," others counter 100% swappiness,... It really is one of those "Your mileage may vary," kind of things... and depends heavily on how the system is to be used... As far as SSDs are concerned, I take the better safe than sorry approach... Even in the face of empirical evidence stating that their reliability and end-of-life specs are on par with HDs,... I remain skeptical. |
Member Response
Hi,
I agree with TobiSGD. Point is if you do need swap at some point in time and no swap then the system will respond differently. :( This is how I set my SSD; Code:
Disk /dev/sda: 120.0 GB, 120034123776 bytesCode:
tune2fs -o discard /dev/some_device_partition #to disable journalThen at boot; Code:
/etc/rc.d/rc.local;On my Dell XPS I am using OCZ 'SSD' with a mechanical in the other bay. Most users fail to setup the environment properly. I do use 'ext4' no journal, discard and noatime for the 'SSD' partitions'; Code:
cat fstab |
In a real sense, I'd think that before this disk actually wears out, you'd buy a new one. It pretty much means you can run it as you wish or want to.
My more pressing concern is that some motherboards and OS's are pretty fickle on ssd's. A lot of issues reported on all brands of lockups and what not. Read the posts on the selections before you buy it. " full-time general-use desktop system, " I'd be more inclined to buy ram to substitute for swap file or partition. I would be even inclined to put a small CF disk or usb in for swap before going to an SSD swap. Or a complex swap scheme that has priority on one or more. |
| All times are GMT -5. The time now is 10:59 PM. |