Slickdeals is community-supported.  We may get paid by brands for deals, including promoted items.
Heads up, this deal has expired. Want to create a deal alert for this item?
expired Posted by sr71 • Feb 15, 2024
expired Posted by sr71 • Feb 15, 2024

10TB HGST WD Ultrastar DC HC510 3.5" SATA 7200RPM Hard Drive (Refurb)

+ Free Shipping

$80

$90

11% off
Newegg
118 Comments 51,899 Views
Visit Newegg
Good Deal
Save
Share
Deal Details
goHardDrive via Newegg has 10TB HGST WD Ultrastar DC HC510 3.5" SATA 7200RPM Hard Drive (Refurbished, HUH721010ALE601) on sale for $79.99. Shipping is free.

Thanks to Community Member sr71 for sharing this deal.

Specs:
  • SATA 6.0Gb/s
  • 7200RPM
  • 256MB Cache
  • 3.5" Form Factor

Editor's Notes

Written by SaltyOne | Staff
  • About this Deal:
    • Offer valid for a limited time only / while supplies last.
  • Return Policy

Original Post

Written by sr71
Community Notes
About the Poster
Deal Details
Community Notes
About the Poster
goHardDrive via Newegg has 10TB HGST WD Ultrastar DC HC510 3.5" SATA 7200RPM Hard Drive (Refurbished, HUH721010ALE601) on sale for $79.99. Shipping is free.

Thanks to Community Member sr71 for sharing this deal.

Specs:
  • SATA 6.0Gb/s
  • 7200RPM
  • 256MB Cache
  • 3.5" Form Factor

Editor's Notes

Written by SaltyOne | Staff
  • About this Deal:
    • Offer valid for a limited time only / while supplies last.
  • Return Policy

Original Post

Written by sr71

Community Voting

Deal Score
+39
Good Deal
Visit Newegg

Leave a Comment

Unregistered (You)

Top Comments

lastwraith
1789 Posts
552 Reputation
Not bad, but I'd probably do the 12TB for $89.99 from goharddrive instead.
https://www.newegg.com/p/1Z4-001J-00E07
Thinkie
84 Posts
18 Reputation
I see there's a 90-day warranty from them via NewEgg. Whereas if you buy via ebay from them, there's a 5-year warranty for a few bucks more.
rbstern
309 Posts
176 Reputation
For those who are interested: BackBlaze (excellent remote backup company) publishes regular statistical reports on the reliability of drives they have in service. Because they often have thousands of a given hard drive model in service, often for years, it's probably the most realistic set of data on HDD brand/model reliability available anywhere.

Western Digital's failure rates are astoundingly low.

https://www.backblaze.com/blog/ba...-for-2023/

117 Comments

Sign up for a Slickdeals account to remove this ad.

Feb 16, 2024
841 Posts
Joined Feb 2017
Feb 16, 2024
theshopper2022
Feb 16, 2024
841 Posts
Quote from Indus_FL :
I don't get why anyone would buy a refurb drive - especially a physical platter drive. It also seems there are 2-3 refurb drive postings a day.
It's cheaper for to buy these drives and archive my photos. I do one backup on bluray and the other on the hard drive.
Previously i would do 2 backups on Blueray.

Plus if you have movies or a big corn collection. These drives are perfect for that.
Mechanical drives i would buy refurb. Flash or SSD, i would never buy refurb.
Feb 16, 2024
841 Posts
Joined Feb 2017
Feb 16, 2024
theshopper2022
Feb 16, 2024
841 Posts
Quote from lolopolo :
Can I comprehensively check health of these drives right inside a Synology box? I don't have any other ways to connect 3.5" disks at home. Please advise
get some cables for when you need to connect a hard drive. It's a time saver for the few times a year you might need it.

Less than $20 bucks. I have whole bunch of drives, and it came in handy. I upgraded to a drive docking station now.

Sata Cable Connector [ebay.com]
Feb 16, 2024
720 Posts
Joined Jan 2005
Feb 16, 2024
SeriesXM
Feb 16, 2024
720 Posts
Quote from MWink :
If you just want a text file with a pure list of files/folders and you're running Windows, you can run the following command from a Windows Command Prompt. First, navigate to the appropriate drive or directory. Now run:

Code:
dir /s /p > List.txt
This will create a comprehensive list of all the files and directories, storing it in a file called "List.txt." You can change the name and location of the output file, if you want. Assuming there's a substantial number of files on the drive, good luck going through the list.

Note that both options are contingent on the drive still working well enough to be able to mount and read the filesystem.
Before I got to your comment, I went and found a little script I put together a while back that does this and has some options, so I'm going to share it here.

Whoever wants to use this, just copy the code into a text file and save it with a .bat extension. You can double-click it to run it from whatever folder you place it in. You simply choose from one of the six options and the output file will be placed on your desktop.

Code:
@echo off
echo This tool will generate a text file that will list all folders and files in this folder and save it to your Desktop.
echo.
echo Choose one of the following formats for displaying the contents:
echo.
echo [1] Create a tree format that INCLUDES all subfolders
echo [2] Create a tree format that EXCLUDES all subfolders
echo [3] Create a list that has file attributes and INCLUDES contents of subfolders
echo [4] Create a list that has file attributes but EXCLUDES any subfolders
echo [5] Create a list of only filenames (this will not include subfolders)
echo [6] Create a list of folders and subfolders (this will not include files)
echo.
:choice
SET /P C=What is your choice?
for %%? in (1) do if /I "%C%"=="%%?" goto 1
for %%? in (2) do if /I "%C%"=="%%?" goto 2
for %%? in (3) do if /I "%C%"=="%%?" goto 3
for %%? in (4) do if /I "%C%"=="%%?" goto 4
for %%? in (5) do if /I "%C%"=="%%?" goto 5
for %%? in (6) do if /I "%C%"=="%%?" goto 6
goto choice
:1
@echo off
tree /f /a > "%USERPROFILE%\Desktop\Index of that Directory.txt"
goto end
:2
@echo off
tree /a > "%USERPROFILE%\Desktop\Index of that Directory.txt"
goto end
:3
@echo off
dir /s > "%USERPROFILE%\Desktop\Index of that Directory.txt"
goto end
:4
@echo off
dir > "%USERPROFILE%\Desktop\Index of that Directory.txt"
goto end
:5
@echo off
dir /b > "%USERPROFILE%\Desktop\Index of that Directory.txt"
goto end
:6
@echo off
dir /b /s *. > "%USERPROFILE%\Desktop\Index of that Directory.txt"
goto end
:end
Edit: this code is visible in Windows, but displaying as a blank box in the app.
Last edited by SeriesXM February 15, 2024 at 08:54 PM.
2
Feb 16, 2024
6,231 Posts
Joined Nov 2012
Feb 16, 2024
R3DTR1X
Feb 16, 2024
6,231 Posts
Newegg. Nope, never again.
1
Pro
Feb 16, 2024
1,789 Posts
Joined Jan 2015
Feb 16, 2024
lastwraith
Pro
Feb 16, 2024
1,789 Posts
Quote from mundia :
Is there a app or software that can take a snapshot or list (txt file) of folders and files from a failing hard drive.

Sort of a table of contents
You can do that from any OS using basic command line arguments. In Windows it's just the dir command, a "greater than" arrow, and a text file name as output (plus any optional switches).
dir > list.txt

Edit - someone already responded with a more complete answer, whoops.
Last edited by lastwraith February 15, 2024 at 09:03 PM.
Feb 16, 2024
241 Posts
Joined Nov 2011
Feb 16, 2024
TouchMint
Feb 16, 2024
241 Posts
Man I remember buying a 10gb hhd from Best Buy and thinking I was holding the future then haha.
Pro
Feb 16, 2024
1,789 Posts
Joined Jan 2015
Feb 16, 2024
lastwraith
Pro
Feb 16, 2024
1,789 Posts

Our community has rated this post as helpful. If you agree, why not thank lastwraith

Quote from vertical2394 :
I feel like refurb drives are different from like refurb macbooks or some other refurb category that gets posted on here a lot because A) the drives wear out and B) there is basically no warranty. So it's like putting used crap from ebay on here. It doesn't make sense even if it's a good financial decision for a lot of people. Used crap on ebay is a good deal for a lot of things but they dont get posted here. Except hard drives. They are called refurb but lets face it they're used and have no warranty. It's super odd. And to the others saying failure is a guarantee so you should have more than one drive anyway with backups. I mean you could say that about anything used and just post any used crap on here. That doesn't just apply to hard drives. Lets put used vacuum cleaners on this site, I mean, failure is guaranteed, everything mechanical eventually breaks, so you should have more than one vacuum cleaner. Used tires too, I mean, you should always have a spare tire, that's just common sense. SlickUsedDeals. Let's gooo
Not many scientific statements start out with "I feel...."
Are these drives much different from refurb (insert electronic device here)? No, probably not.

These will wear out, and so will laptops and anything else. These HAVE warranties for 5 years, longer than most refurb laptops if you care about that kind of thing.
I buy refurb off-lease corporate hardware (laptops, desktops, switches, etc) all the time both as a consumer and professional and it's a great way to get reliable equipment at a discount that is usually easy/cheap to repair in the rare event it breaks. Does even Dell itself do much "refurbishing"? No. They wipe the machine and reinstall an OS, sticker them, and ship it essentially. Fine by me and about what you can expect here.

I've bought a used Dyson off of ebay (from this site), fitted a Ryobi adapter, took it apart and cleaned it. Works great and I can swap batteries, negating the only real negative of a Dyson IMO.
I've bought used tires (locally) and they were also fine. Hell, I've bought used car batteries before, lasted years.
There's nothing wrong with used stuff if you know what you need and what you're buying.
If you don't (or just NEED new for whatever reason)..... move along.
1

Sign up for a Slickdeals account to remove this ad.

Feb 16, 2024
198 Posts
Joined Sep 2013
Feb 16, 2024
Gencom
Feb 16, 2024
198 Posts
Do these have the power disable, that you need to bypass?
Feb 16, 2024
1,360 Posts
Joined Dec 2017
Feb 16, 2024
lolopolo
Feb 16, 2024
1,360 Posts
Quote from theshopper2022 :
get some cables for when you need to connect a hard drive. It's a time saver for the few times a year you might need it.

Less than $20 bucks. I have whole bunch of drives, and it came in handy. I upgraded to a drive docking station now.

Sata Cable Connector [ebay.com]
Thanks for the suggestion. I remember these are not very reliable especially when it comes to continued load for many hours (eg when you need to fully check the drive). In either case, any suggestion for a free trustworthy software that can do a comprehensive analysis? Back in the day, I remember using Victoria - not sure if it's sill a thing
Feb 16, 2024
109 Posts
Joined Aug 2017
Feb 16, 2024
xxdetahx
Feb 16, 2024
109 Posts
Interested in using this as an external hard drive for storing large video files. Is this a normal use case for this type of hard disk? I see all of yall talking about RAID/arrays which is not my intention.

Since the drive comes without any enclosure and cables, I'd have to buy an external HDD enclosure for 3.5 inch drives. Does the enclosure have to provide a separate power supply or is the USB port enough? Are there any other required minimum specs needed to support it, such as SATA transfer speed? Any other gotchas and things to watch out for?

I've done this before converting a 2.5 inch internal laptop hard drive into external, but that worked fine with a simple USB only enclosure. 3.5 seems like a much bigger deal.
Feb 16, 2024
1,394 Posts
Joined Nov 2007
Feb 16, 2024
ansonvs
Feb 16, 2024
1,394 Posts
Quote from Phoom :
Something to keep in mind is that these are enterprise grade HDDs. These are expensive new but has higher specs when compared to consumer-grade HDDs.
That is not the whole picture. Those sold by goharddrive are more than 5 years old used enterprise HDD with 24h extensive business environment running. They are at the last segment of highest risk failure charts.
1
Feb 16, 2024
34 Posts
Joined May 2022
Feb 16, 2024
thebians
Feb 16, 2024
34 Posts
Quote from Ad0nis :
I've been running eight 12TB refurbs from serverpartdeals on my TrueNAS system for 3 straight years and have monitoring tools on the drive and they're still healthy. Much more economical to buy refurbs in my opinion.
If would share, what kind of rig do you have running TrueNAS w/the 8 drives? I've got an older Netgear NAS 104 with 4X 4TB that I need to likely replace/replicate.
Feb 16, 2024
322 Posts
Joined Jul 2007
Feb 16, 2024
awdrifter
Feb 16, 2024
322 Posts
Quote from vertical2394 :
I feel like refurb drives are different from like refurb macbooks or some other refurb category that gets posted on here a lot because A) the drives wear out and B) there is basically no warranty. So it's like putting used crap from ebay on here. It doesn't make sense even if it's a good financial decision for a lot of people. Used crap on ebay is a good deal for a lot of things but they dont get posted here. Except hard drives. They are called refurb but lets face it they're used and have no warranty. It's super odd. And to the others saying failure is a guarantee so you should have more than one drive anyway with backups. I mean you could say that about anything used and just post any used crap on here. That doesn't just apply to hard drives. Lets put used vacuum cleaners on this site, I mean, failure is guaranteed, everything mechanical eventually breaks, so you should have more than one vacuum cleaner. Used tires too, I mean, you should always have a spare tire, that's just common sense. SlickUsedDeals. Let's gooo
Yep. Basically this. You can't refurbish a hard drive mechanically. The motors wear out, the head actuators wear out, the platter wears out (more so on the newer HAMR drives as repeated heating and cooling will wear the material), the helium seal will weaken over time. These are used hard drives that have been used hard for 4-5 years in data centers. They are not worth it.
2
Feb 16, 2024
420 Posts
Joined Jan 2013
Feb 16, 2024
Ih8reb8s
Feb 16, 2024
420 Posts
Quote from xxdetahx :
Interested in using this as an external hard drive for storing large video files. Is this a normal use case for this type of hard disk? I see all of yall talking about RAID/arrays which is not my intention.

Since the drive comes without any enclosure and cables, I'd have to buy an external HDD enclosure for 3.5 inch drives. Does the enclosure have to provide a separate power supply or is the USB port enough? Are there any other required minimum specs needed to support it, such as SATA transfer speed? Any other gotchas and things to watch out for?

I've done this before converting a 2.5 inch internal laptop hard drive into external, but that worked fine with a simple USB only enclosure. 3.5 seems like a much bigger deal.
An external enclosure will cost you $25 to 30 bucks, and you will definitely need it to have its own power for this and pretty much any 3.5-inch hard drive. Just about every enclosure I've seen for three and a half inch drives come with its own power supply.

Sign up for a Slickdeals account to remove this ad.

Pro
Feb 16, 2024
1,789 Posts
Joined Jan 2015
Feb 16, 2024
lastwraith
Pro
Feb 16, 2024
1,789 Posts
Quote from FairSwing2033 :
Doesn't look like it's made by WD. Is it a as good a drive?
HGST was bought years ago by WD. These are the same as "WD's" Ultrastars.
There are only 3 mfrs left - Seagate, Toshiba, and WD.
Last edited by lastwraith February 16, 2024 at 04:16 AM.

Leave a Comment

Unregistered (You)

Popular Deals

View All

Trending Deals

View All