Changes between Initial Version and Version 1 of Ticket #16795
- Timestamp:
- May 29, 2017 7:49:20 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16795
- Property Priority blocker → major
-
Ticket #16795 – Description
initial v1 1 1 Linux TRIM timeouts sometimes, FreeBSD same, Windows 10 doesn't boot at all 2 2 3 See below and attachments for details 4 ================================================================================================================================================================ 3 See below and attachments for details:[[BR]] 4 5 5 Linux Fedora 25 latest updates 6 1.) Attach a image: 6 1. Attach an image: 7 {{{ 7 8 VBoxManage storageattach "Fedora 25" --storagectl "SATA" --port 0 --device 0 --nonrotational on --discard on --medium "Fedora 25.vdi" --type hdd 8 9 2.) check trim enabled 9 }}} 10 2. check trim enabled 11 {{{ 10 12 hdparm -I /dev/sda | grep TRIM 11 13 * Data Set Management TRIM supported (limit unknown) 14 }}} 15 3. Enable it in the mount options and reboot afterwards 16 {{{ 17 /dev/mapper/fedora-root / ext4 defaults,discard 1 1 18 }}} 19 4. run fstrim / 20 Hangs sometimes with timeouts 12 21 13 3.) Enable it in the mount options and reboot afterwards14 /dev/mapper/fedora-root / ext4 defaults,discard 1 115 22 16 4.) run fstrim /17 Hangs sometimes with timeouts18 ================================================================================================================================================================19 23 FreeBSD 11 latest updates 20 1.) Attach disk as under Linnux 21 2.) Check for TRIM support 24 1. Attach disk as under Linnux 25 2. Check for TRIM support 26 {{{ 22 27 camcontrol identify /dev/ada0 | grep -i trim 23 28 Data Set Management (DSM/TRIM) yes 24 3.) Enable TRIM support on filesystem 29 }}} 30 3. Enable TRIM support on filesystem 31 {{{ 25 32 mount | grep -i ufs 26 33 /dev/ada0p2 on / (ufs, local, journaled soft-updates) … … 32 39 bash -c 'tunefs -p /dev/ada0p2 2>&1 | grep -i trim' 33 40 tunefs: trim: (-t) enabled 34 ================================================================================================================================================================ 41 }}}