I have decided to try ReadSpeed and since I am a linux user I dd the image into some USB drive.
I booted to the USB Drive and run the test.
Ande here are the results:
Ignoring now the results for the 2.0 TB HD & 512GB NVME which I had for over 8 years now, the last SSD drive by kingston was added about a month ago since I needed some space and looked for something cheap on one hand not to fast but not HDD.
It is important to mention that I live in Israel and bought it new from a reputable computer parts store called Ivory which is actually one of the 2 big chains that sales computer parts here.
So the probability of it being a fake is 0%.
I know that this drive works since before I rebooted my PC to ReadSpeed it worked....so I booted back to my linux and did some tests when the drive is mounted and it is at 25% capacity.
First test was a simple running dd creating 5GB file.
This does not make sense as drive specs are talking about 450 MB/s , so it must be the linux buffers , I did things again but now using the odirect flag
Well not exactly like the specs still it is working.
Last test was using dd again to read the file I have written
Well the spec talks about 500MB/s and the speed might be related to block size ... one thin for sure it is working.
I wounder if you have encountered problems related using ReadSpeed with this specific drive ?
I booted to the USB Drive and run the test.
Ande here are the results:
Ignoring now the results for the 2.0 TB HD & 512GB NVME which I had for over 8 years now, the last SSD drive by kingston was added about a month ago since I needed some space and looked for something cheap on one hand not to fast but not HDD.
It is important to mention that I live in Israel and bought it new from a reputable computer parts store called Ivory which is actually one of the 2 big chains that sales computer parts here.
So the probability of it being a fake is 0%.
I know that this drive works since before I rebooted my PC to ReadSpeed it worked....so I booted back to my linux and did some tests when the drive is mounted and it is at 25% capacity.
First test was a simple running dd creating 5GB file.
Bash:
dd if=/dev/zero of=5G bs=1G count=5
5+0 records in
5+0 records out
5368709120 bytes (5.4 GB, 5.0 GiB) copied, 4.84961 s, 1.1 GB/s
This does not make sense as drive specs are talking about 450 MB/s , so it must be the linux buffers , I did things again but now using the odirect flag
Bash:
dd oflag=direct if=/dev/zero of=5G bs=1G count=5
5+0 records in
5+0 records out
5368709120 bytes (5.4 GB, 5.0 GiB) copied, 20.9011 s, 257 MB/s
Well not exactly like the specs still it is working.
Last test was using dd again to read the file I have written
Bash:
dd if=5G of=/dev/zero
10485760+0 records in
10485760+0 records out
5368709120 bytes (5.4 GB, 5.0 GiB) copied, 24.3732 s, 220 MB/s
Well the spec talks about 500MB/s and the speed might be related to block size ... one thin for sure it is working.
I wounder if you have encountered problems related using ReadSpeed with this specific drive ?