Another tip is perhaps disabling full journaling of the filesystem for initial sync as that does tend to slow it down, whether SSD or mechanic. Plus on SSD it would double all the writes (reducing the disk's lifetime).
That sounds like a good idea, but I can't find any info about it. By initial sync, do you mean the initial downloading of the blockchain? With this computer, I copied the blockchain directory from the i5 computer, and started the new node with the address of the copied file. That seems to have worked without any problems.
It's usually a mount option of the filesystem.
You can check with the mount command.
for example:
mount
/dev/sda5 on /home/alex/100GB type ext4 (rw,noatime,noacl,data=
journal)
There are three modes:
https://www.kernel.org/doc/Documentation/filesystems/ext4.txtdata=journal All data are committed into the journal prior to being
written into the main file system. Enabling
this mode will disable delayed allocation and
O_DIRECT support.
note:
this writes data twice, it's the slowest but is the safest option
for data corruption prevention.data=ordered All data are forced directly out to the main file
system prior to its metadata being committed to the
journal.
data=writeback Data ordering is not preserved, data may be written
into the main file system after its metadata has been
committed to the journal.
note:
this is the fastest but more unsafe if there is a sudden shutdown