diySSD
  • Product
    Catalog Buyer Guides Out of Stock
  • Pricing
    All Retailers Amazon Best Buy B&H Manufacturer Newegg
  • Blog
    Posts
  • Support
    FAQ

Product

Catalog Buyer Guides Out of Stock

Pricing

All Retailers Amazon Best Buy B&H Manufacturer Newegg

Blog

Posts

Support

FAQ
/* ========================================================================== DIYSSD NAVIGATION - CSS VARIABLES ========================================================================== */ :root { /* Charcoal Scale */ --charcoal-050: #f5f5f5; --charcoal-100: #e6e6e6; --charcoal-200: #cccccc; --charcoal-300: #adadad; --charcoal-500: #7a7a7a; --charcoal-700: #565656; --charcoal-800: #474747; --charcoal-900: #3a3a3a; --charcoal-950: #2c2c2c; /* Accent Colors - WCAG AA Compliant */ --ocean-blue: #245270; --ocean-blue-rgb: 36, 82, 112; --terracotta: #c7522a; --golden-sand: #e5b363; --forest-green: #5d8a66; --dusty-plum: #8b5a8b; /* Accessibility */ --focus-ring-color: var(--ocean-blue); --focus-ring-width: 3px; --focus-ring-offset: 2px; --touch-target-min: 44px; /* Transitions */ --transition-speed: 0.2s; --transition-easing: cubic-bezier(0.4, 0, 0.2, 1); } /* Reduced Motion Support */ @media (prefers-reduced-motion: reduce) { :root { --transition-speed: 0.01ms; } * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; } } /* ========================================================================== NAVIGATION CONTAINER ========================================================================== */ .diyssd-nav-container { position: relative; width: 100%; background: #ffffff; border-bottom: 1px solid var(--charcoal-200); z-index: 1000; } /* ========================================================================== MAIN NAVIGATION ========================================================================== */ .diyssd-nav { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; padding: 0.75rem 1.5rem; height: 4rem; background: #ffffff; /* Performance: GPU acceleration for smoother rendering */ transform: translateZ(0); backface-visibility: hidden; } /* ========================================================================== LOGO SECTION ========================================================================== */ .diyssd-nav-left { flex: 1; display: flex; align-items: center; min-width: 0; } .diyssd-logo { font-family: "Oswald", sans-serif; font-weight: 800; font-size: 36px; color: #2d5a7b; text-decoration: none; display: block; /* Performance: Prevent paint on hover */ will-change: opacity; } .diyssd-logo:hover { opacity: 0.8; } .diyssd-logo:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: var(--focus-ring-offset); border-radius: 4px; } /* ========================================================================== MENU CONTAINER ========================================================================== */ .diyssd-nav-right { flex: 0 0 auto; display: flex; align-items: center; gap: 0.75rem; height: 100%; } /* ========================================================================== DESKTOP MENU ========================================================================== */ .diyssd-desktop-menu { display: none; align-items: center; gap: 0rem; list-style: none; margin: 0; padding: 0; height: 100%; } @media (min-width: 769px) { .diyssd-desktop-menu { display: flex; } } /* ========================================================================== MENU ITEMS ========================================================================== */ .diyssd-menu-item { position: relative; display: flex; align-items: center; height: 100%; /* Performance: Can't use contain here as it breaks dropdown positioning */ } .diyssd-menu-link { display: flex; align-items: center; padding: 0.75rem 1rem; min-height: var(--touch-target-min); color: var(--charcoal-900); text-decoration: none; font-size: 0.9375rem; font-weight: 500; white-space: nowrap; border-radius: 4px; transition: all var(--transition-speed) var(--transition-easing); cursor: pointer; /* Performance: Hint for background color changes */ will-change: background-color, color; } .diyssd-menu-link:hover { color: var(--ocean-blue); background-color: var(--charcoal-050); } .diyssd-menu-link:focus { outline: none; } .diyssd-menu-link:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-menu-link.has-dropdown::after { content: "▼"; margin-left: 0.5rem; font-size: 0.625rem; transition: transform var(--transition-speed) var(--transition-easing); display: inline-block; /* Performance: Use transform for rotation */ will-change: transform; } .diyssd-menu-item:hover .diyssd-menu-link.has-dropdown::after { transform: rotate(180deg); } /* ========================================================================== MENU DIVIDER ========================================================================== */ .diyssd-menu-divider { width: 1px; height: 1.5rem; background-color: var(--charcoal-200); margin: 0; } /* ========================================================================== DROPDOWN MENU ========================================================================== */ .diyssd-dropdown { position: absolute; top: calc(100% + 0.5rem); left: 50%; min-width: 200px; background: #ffffff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); padding: 0.5rem; opacity: 0; visibility: hidden; /* Performance: Use transform for animation instead of top/left */ transform: translateX(-50%) translateY(-8px); transition: opacity var(--transition-speed) var(--transition-easing), visibility var(--transition-speed) var(--transition-easing), transform var(--transition-speed) var(--transition-easing); z-index: 1001; /* Performance: GPU acceleration */ will-change: opacity, transform; backface-visibility: hidden; } .diyssd-menu-item:hover .diyssd-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); } .diyssd-dropdown-link { display: flex; align-items: center; padding: 0.75rem; min-height: var(--touch-target-min); color: var(--charcoal-900); text-decoration: none; font-size: 0.875rem; font-weight: 500; border-radius: 4px; transition: all var(--transition-speed) var(--transition-easing); /* Performance: Hint for hover state */ will-change: background-color, color; } .diyssd-dropdown-link:hover { color: var(--ocean-blue); background-color: var(--charcoal-050); } .diyssd-dropdown-link:focus { outline: none; } .diyssd-dropdown-link:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-dropdown-link:active { background-color: var(--charcoal-050); } .diyssd-dropdown-link.active { color: var(--terracotta); background-color: rgba(199, 82, 42, 0.08); font-weight: 600; } /* ========================================================================== MOBILE TOGGLE BUTTON ========================================================================== */ .diyssd-mobile-toggle { display: flex; flex-direction: column; justify-content: space-around; width: var(--touch-target-min); height: var(--touch-target-min); padding: 0.75rem; background: transparent; border: none; cursor: pointer; border-radius: 4px; transition: background-color var(--transition-speed) var(--transition-easing); /* Performance: Hint for background changes */ will-change: background-color; } .diyssd-mobile-toggle:hover { background-color: var(--charcoal-050); } .diyssd-mobile-toggle:focus { outline: none; } .diyssd-mobile-toggle:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-mobile-toggle span { display: block; width: 100%; height: 2px; background-color: var(--charcoal-900); border-radius: 2px; transition: all var(--transition-speed) var(--transition-easing); /* Performance: GPU acceleration for transforms */ will-change: transform, opacity; backface-visibility: hidden; } .diyssd-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); } .diyssd-mobile-toggle.active span:nth-child(2) { opacity: 0; } .diyssd-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @media (min-width: 769px) { .diyssd-mobile-toggle { display: none; } } /* ========================================================================== MOBILE OVERLAY ========================================================================== */ .diyssd-mobile-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: opacity var(--transition-speed) var(--transition-easing), visibility var(--transition-speed) var(--transition-easing); z-index: 1001; /* Performance: GPU acceleration */ will-change: opacity; backface-visibility: hidden; } .diyssd-mobile-overlay.active { opacity: 1; visibility: visible; } @media (min-width: 769px) { .diyssd-mobile-overlay { display: none; } } /* ========================================================================== MOBILE MENU ========================================================================== */ .diyssd-mobile-menu { position: fixed; top: 0; right: 0; width: 85%; max-width: 320px; height: 100%; background: #ffffff; /* Performance: Use transform instead of right property */ transform: translateX(100%); transition: transform var(--transition-speed) var(--transition-easing); z-index: 1002; overflow-y: auto; box-shadow: -4px 0 12px rgba(0, 0, 0, 0.15); /* Performance: GPU acceleration */ will-change: transform; backface-visibility: hidden; /* Performance: Enable hardware scrolling */ -webkit-overflow-scrolling: touch; } .diyssd-mobile-menu.active { transform: translateX(0); } @media (min-width: 769px) { .diyssd-mobile-menu { display: none; } } /* ========================================================================== MOBILE HEADER ========================================================================== */ .diyssd-mobile-header { display: flex; align-items: center; justify-content: flex-end; padding: 0.6rem 1rem; border-bottom: 1px solid var(--charcoal-200); } .diyssd-mobile-close { display: flex; align-items: center; justify-content: center; width: var(--touch-target-min); height: var(--touch-target-min); padding: 0; background: transparent; border: none; cursor: pointer; border-radius: 4px; font-size: 1.5rem; color: var(--charcoal-900); transition: background-color var(--transition-speed) var(--transition-easing); /* Performance: Hint for background changes */ will-change: background-color; } .diyssd-mobile-close:hover { background-color: var(--charcoal-050); } .diyssd-mobile-close:focus { outline: none; } .diyssd-mobile-close:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } /* ========================================================================== MOBILE CONTENT ========================================================================== */ .diyssd-mobile-content { padding: 1rem; } .diyssd-mobile-section { margin-bottom: 1rem; } .diyssd-mobile-section:last-child { margin-bottom: 0; } .diyssd-mobile-heading { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--charcoal-500); margin: 0 0 0.5rem 0; } .diyssd-mobile-divider { height: 1px; background-color: var(--charcoal-200); margin-bottom: 0.75rem; } .diyssd-mobile-link { display: flex; align-items: center; padding: 0 0.75rem; /* margin-bottom: 0.25rem; */ min-height: var(--touch-target-min); color: var(--charcoal-900); text-decoration: none; font-size: 0.875rem; font-weight: 500; border-radius: 4px; transition: all var(--transition-speed) var(--transition-easing); /* Performance: Hint for interactive states */ will-change: background-color, color, transform; } .diyssd-mobile-link:hover { color: var(--ocean-blue); background-color: var(--charcoal-050); } .diyssd-mobile-link:focus { outline: none; } .diyssd-mobile-link:focus-visible { outline: var(--focus-ring-width) solid var(--focus-ring-color); outline-offset: calc(var(--focus-ring-offset) * -1); } .diyssd-mobile-link:active { background-color: var(--charcoal-050); /* Performance: Use transform for visual feedback */ transform: translateX(2px); } .diyssd-mobile-link.active { color: var(--terracotta); background-color: rgba(199, 82, 42, 0.08); font-weight: 600; } /* ========================================================================== UTILITY CLASSES ========================================================================== */ body.diyssd-menu-open { overflow: hidden; } @media (prefers-contrast: high) { .diyssd-nav { border-bottom-width: 2px; } .diyssd-menu-link:focus-visible, .diyssd-dropdown-link:focus-visible, .diyssd-mobile-link:focus-visible { outline-width: 4px; } }

Samsung 980 PRO

Gen 4 Speed That's Already Yesterday's News

PCIe 4.0 NVMe Performance | 250GB to 2TB Capacities | 5-Year Warranty with High TBW Ratings
photo of samsung 980 pro solid state drive | diySSD
/* Global reset for consistent box-sizing */ * { box-sizing: border-box; } /* Container for the entire TOC component */ .toc-embed-wrapper .toc-container { max-width: 800px; margin: 40px auto; } /* Individual collapsible item styling */ .toc-embed-wrapper .toc-item { background: #fff; border-radius: 16px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); margin-bottom: 18px; overflow: hidden; /* Prevents content from breaking border radius */ transition: box-shadow 0.2s ease; /* Smooth hover effect */ } /* Hover effect for entire item */ .toc-embed-wrapper .toc-item:hover { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); } /* Toggle button styling - removes default button appearance */ .toc-embed-wrapper .toc-toggle { background: none; border: none; width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; font-weight: 500; cursor: pointer; padding: 24px 28px; outline: none; color: #1a1a1a; transition: background-color 0.2s ease; } /* Button hover state */ .toc-embed-wrapper .toc-toggle:hover { background-color: #e2e1df; } /* Keyboard focus accessibility - only visible when navigating with tab */ .toc-embed-wrapper .toc-toggle:focus-visible { outline: 2px solid #007acc; outline-offset: -2px; } /* Question text styling */ .toc-embed-wrapper .toc-question { flex: 1; /* Takes up remaining space */ font-weight: 400; text-align: left; margin: 0; } /* Plus/minus icon styling */ .toc-embed-wrapper .toc-icon { font-size: 1.8rem; font-weight: 300; transition: transform 0.3s ease, color 0.2s ease; /* Smooth rotation and color change */ margin-left: 20px; color: #666; flex-shrink: 0; /* Prevents icon from shrinking */ width: 24px; text-align: center; } /* Icon state when expanded - rotates 45deg to create X from + */ .toc-embed-wrapper .toc-toggle[aria-expanded="true"] .toc-icon { transform: rotate(45deg); color: #28a745; /* Green color when open */ } /* Answer content container - hidden by default */ .toc-embed-wrapper .toc-answer { padding: 0 28px 24px 28px; font-size: 1rem; color: #444; line-height: 1.6; display: none; /* Hidden by default */ animation: slideDown 0.3s ease-out; /* Smooth entrance animation */ } /* Show class for JavaScript toggle */ .toc-embed-wrapper .toc-answer.show { display: block; } /* Slide down animation for smooth reveal */ @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } /* Main ordered list styling (1, 2, 3...) */ .toc-embed-wrapper .toc-answer ol { list-style-type: none; /* Remove default numbering */ padding-left: 0; /* Remove default padding */ margin: 0.8em 0; /* Vertical spacing */ counter-reset: main-counter; /* Counter for main items */ } /* Main list items (h2 headers) */ .toc-embed-wrapper .toc-answer > ol > li { counter-increment: main-counter; position: relative; } .toc-embed-wrapper .toc-answer > ol > li::before { content: counter(main-counter) ". "; color: #007acc; font-weight: 600; margin-right: 0.5em; } /* Nested ordered list styling (x.1, x.2, x.3...) */ .toc-embed-wrapper .toc-answer ol ol { list-style-type: none; /* Remove default lettering */ padding-left: 2.2em; /* Additional indentation for hierarchy */ margin: 0.6em 0; /* Tighter spacing for nested items */ counter-reset: sub-counter; /* Counter for sub-items */ } /* Sub-list items (h3 headers) */ .toc-embed-wrapper .toc-answer ol ol li { counter-increment: sub-counter; position: relative; } .toc-embed-wrapper .toc-answer ol ol li::before { content: counter(main-counter) "." counter(sub-counter) " "; color: #28a745; font-weight: 500; margin-right: 0.5em; } /* Main list item spacing */ .toc-embed-wrapper .toc-answer li { margin: 0.6em 0; padding-left: 0.3em; /* Small padding for better text alignment */ } /* Nested list item spacing - tighter than main items */ .toc-embed-wrapper .toc-answer ol ol li { margin: 0.4em 0; } /* TOC link styling */ .toc-embed-wrapper .toc-answer a { text-decoration: none; color: #444; transition: color 0.2s ease; } .toc-embed-wrapper .toc-answer a:hover { color: #007acc; text-decoration: underline; } /* Remove default list marker styling since we're using custom numbering */ /* Empty state styling */ .toc-embed-wrapper .toc-empty { padding: 20px 28px; color: #888; font-style: italic; text-align: center; } /* Responsive design for mobile devices */ @media (max-width: 768px) { .toc-embed-wrapper .toc-container { margin: 20px auto; padding: 0 16px; /* Side padding on mobile */ } .toc-embed-wrapper .toc-toggle { padding: 20px 22px; /* Reduced padding on mobile */ font-size: 1.1rem; /* Slightly smaller font */ } .toc-embed-wrapper .toc-answer { padding: 0 22px 20px 22px; /* Matched reduced padding */ font-size: 0.95rem; /* Smaller text on mobile */ } .toc-embed-wrapper .toc-icon { font-size: 1.6rem; /* Smaller icon on mobile */ margin-left: 16px; } } /* Scroll offset for sticky header - adjust -80px to match your menubar height */ .toc-embed-wrapper .toc-answer a[href^="#"] { scroll-margin-top: 76px; /* Adjust this value to match your sticky menubar height */ } /* Alternative: Add offset to the target headers themselves */ h2, h3 { scroll-margin-top: 76px; /* Adjust this value to match your sticky menubar height */ }
Advertisement

Introduction

If you built a gaming PC or upgraded your PS5 in the last couple years, you've probably already bumped into the Samsung 980 PRO's name. This PCIe 4.0 NVMe drive arrived as Samsung's answer to the Gen 4 revolution—a necessary evolution from their wildly successful 970 lineup that dominated the Gen 3 era. Available in 250GB, 500GB, 1TB, and 2TB capacities, the 980 PRO targets PC builders and PS5 owners who need legitimate Gen 4 performance without venturing into the bleeding-edge pricing territory of Gen 5 drives. Samsung positioned this as their flagship consumer SSD when it launched, leveraging their proprietary Elpis controller and in-house V-NAND to chase the theoretical 7,000 MB/s ceiling that PCIe 4.0 promises. The problem? By the time most people are reading this review, the 980 PRO sits in an awkward middle ground—faster than you probably need, yet slower and often more expensive than newer alternatives that have flooded the market.

Product Overview

The Samsung 980 PRO is built around an M.2 2280 form factor PCIe 4.0 x4 NVMe SSD, which is the standard specification that dominates modern motherboards and fits perfectly into the PS5's expansion slot. This isn't just Samsung slapping faster NAND into their old 970 PRO chassis—it's a ground-up redesign featuring their custom Elpis controller paired with Samsung's own TLC V-NAND flash memory, all engineered to push the boundaries of what Gen 4 can actually deliver in consumer workloads.

The drive measures a standard 80.15 x 22.15 x 2.38mm, roughly the size of a stick of gum stretched out to about three inches long and thin enough that heat management becomes genuinely challenging at sustained loads. Weight comes in at a mere 8.5 grams for the base model without a heatsink, though Samsung also offers a heatsink variant that adds bulk and thermal dissipation for those running extended workloads or installing in PS5 consoles where Sony mandates proper cooling.

Samsung wraps this in their typical understated aesthetic—a black and copper PCB with minimal branding, a stark contrast to the RGB-laden gaming drives from competitors. The drive includes no accessories beyond basic mounting hardware in retail packaging, though Samsung does bundle their Magician software suite which provides drive health monitoring, firmware updates, and performance optimization tools that actually prove useful rather than feeling like bloatware.

Available capacities span from a frankly inadequate 250GB model that borders on pointless in 2025, up through 500GB, 1TB, and 2TB variants that make considerably more sense for actual use. Samsung backs the 980 PRO with a five-year warranty or total bytes written ratings that range from 150TBW on the 250GB model up to 1,200TBW on the 2TB version—generous endurance figures that reflect Samsung's confidence in their in-house NAND production and suggest this drive should outlast the system you install it in.

Performance & Real-World Speed

Samsung claims up to 7,000 MB/s sequential reads and 5,000 MB/s sequential writes on the 1TB and 2TB models, with the smaller capacities taking modest performance hits—the 500GB variant drops to 6,900 MB/s read and 5,000 MB/s write, while the 250GB model falls to 6,400 MB/s read and a considerably slower 2,700 MB/s write. These numbers represent Samsung chasing the theoretical PCIe 4.0 performance ceiling, and in synthetic benchmarks, the 980 PRO delivers on these promises with remarkable consistency.

In real-world testing conducted by multiple reviewers, the 980 PRO demonstrates exactly the kind of performance you'd expect from flagship Gen 4 hardware. A 100GB game installation that might take 3 minutes and 45 seconds on a SATA SSD completes in roughly 52 seconds on the 980 PRO. Loading into Cyberpunk 2077 from the main menu to actual gameplay takes approximately 8.2 seconds compared to 24 seconds on a quality SATA drive—genuinely impressive improvements that you can actually perceive during daily use.

The drive sustains speeds around 6,200-6,500 MB/s in prolonged transfers once the SLC cache fills, which happens after roughly 115GB of continuous writes on the 1TB model. This represents strong sustained performance that won't leave you waiting during large file operations, though the smaller 250GB and 500GB variants show more aggressive slowdowns once their proportionally smaller caches exhaust. Random 4K performance—the metric that actually matters most for OS responsiveness and application launches—comes in at approximately 1,000K IOPS for reads and 1,300K IOPS for writes, placing the 980 PRO firmly in flagship territory for snappy system behavior.

Game boot times on PS5 show minimal differences compared to Sony's internal SSD, with load time variations typically falling within a 1-2 second range that proves imperceptible during actual gameplay. The 980 PRO meets Sony's required 5,500 MB/s minimum with comfortable headroom, ensuring full compatibility with PS5's custom decompression hardware and maintaining the console's signature rapid loading experience.

Thermal Management & Throttling

The 980 PRO's slim 2.38mm profile creates genuine thermal challenges under sustained workloads. In testing without additional cooling, the drive can reach 80-85°C during extended transfers, triggering Samsung's thermal throttling that drops performance to around 3,500-4,000 MB/s to prevent damage—a significant reduction from peak speeds but still faster than most Gen 3 alternatives.

The heatsink variant addresses this limitation with an aluminum heat spreader that keeps temperatures 15-20°C lower under identical workloads, maintaining consistent performance during extended operations. For PS5 installations where Sony requires proper cooling solutions, the heatsink model makes considerably more sense despite adding $10-20 to the purchase price. PC builders can often rely on motherboard-integrated M.2 heatsinks, though case airflow dramatically impacts results—poorly ventilated systems will still see thermal throttling regardless of added cooling.

Build Quality & Compatibility

Samsung's manufacturing precision shows in the 980 PRO's construction—tight component placement, quality solder joints, and consistent NAND bin selection that suggests rigorous production standards. The drive feels substantial despite its minimal weight, and the copper-accented PCB conveys a premium impression that Samsung has cultivated across their storage lineup.

The 980 PRO works with any system featuring an M.2 slot with PCIe 4.0 or PCIe 3.0 support—modern AMD and Intel platforms, PS5 consoles with the expansion bay properly accessed, and even older PCIe 3.0 systems where the drive simply operates at Gen 3 speeds without issue. Installation on PC requires nothing beyond slotting the drive into an available M.2 socket and securing the mounting screw, a process that takes roughly 30 seconds even for first-time builders.

For PS5 compatibility, you need the heatsink variant or must add an aftermarket cooling solution that fits within Sony's dimensional requirements—specifically, the total height including heatsink cannot exceed 11.25mm. The 980 PRO with Samsung's integrated heatsink measures 8.6mm total height, providing comfortable clearance within Sony's specifications while ensuring adequate thermal performance during extended gaming sessions.

Critically, you need to understand what this drive can and cannot do. The 980 PRO excels as a primary OS drive for Windows PCs, a high-performance storage solution for creative workloads involving large file manipulation, and a PS5 expansion drive that matches Sony's internal SSD performance. It delivers genuine Gen 4 speeds that prove noticeably faster than Gen 3 alternatives in sequential workloads and large file transfers.

However, the 980 PRO cannot deliver perceptible improvements over quality Gen 3 drives for typical office productivity, web browsing, or light gaming where random 4K performance matters more than sequential speeds—and frankly, even budget Gen 3 NVMe drives handle those workloads admirably. You're paying a premium for speed that only manifests in specific use cases, and for many users, that premium doesn't translate to meaningful real-world benefits beyond benchmark bragging rights.

Strengths & Weaknesses

The 980 PRO's greatest strength lies in its consistent delivery of legitimate Gen 4 performance across both synthetic benchmarks and real-world workloads. Transfer speeds genuinely impress when moving large video files or game installations, with the drive maintaining strong sustained performance even after the SLC cache exhausts. Samsung's five-year warranty and generous TBW ratings inspire confidence in long-term reliability, while their Magician software provides genuinely useful monitoring and optimization tools rather than feeling like unnecessary bloatware. The drive's compatibility across both modern PC platforms and PS5 consoles delivers flexibility that platform-agnostic buyers appreciate, and Samsung's reputation for quality NAND and controller production suggests this drive should deliver consistent performance throughout its operational lifespan.

However, the 980 PRO isn't without notable limitations that have become increasingly apparent as the Gen 4 market matured. The fundamental weakness affecting the 980 PRO—and really, all Gen 4 drives launched in its generation—is value when compared to newer alternatives that have flooded the market. At launch, the 1TB 980 PRO commanded $230, a premium price that reflected its flagship positioning and Samsung's brand cachet. Today, you can find the same capacity for $90-120, but here's the problem—competitors like the WD Black SN850X, Crucial P5 Plus, and Samsung's own 990 PRO deliver identical or better performance for comparable or lower prices, making the 980 PRO's value proposition increasingly questionable unless you catch it on a significant sale.

The smaller capacities present particularly poor value, with the 250GB model offering inadequate storage for modern game file sizes and the 500GB variant feeling limiting for anyone maintaining a reasonable game library or working with 4K video footage. The drive's thermal characteristics without proper cooling create genuine throttling concerns during sustained workloads, forcing buyers to either purchase the more expensive heatsink variant or ensure adequate motherboard cooling—an additional consideration that budget alternatives often handle better through more conservative power management.

Perhaps most critically, the performance delta between the 980 PRO and quality Gen 3 drives proves imperceptible in the majority of consumer workloads. Boot times might improve by 2-3 seconds, application launches by fractions of a second, and game loading by amounts that rarely exceed 5-8 seconds—meaningful on paper, barely noticeable in daily use. You're essentially paying $20-40 more than a quality Gen 3 alternative like the SN570 for speed that only manifests in specific scenarios involving large sequential transfers, and even then, you need to be actively monitoring to appreciate the difference.

Verdict: Should You Buy It?

Buy this if: you're building a new PC with Gen 4 motherboard support and need a primary drive that delivers strong sustained performance for video editing or large file manipulation, you're expanding your PS5 storage and can find the heatsink variant on sale for under $100 on the 1TB model, or you specifically value Samsung's reputation for quality NAND and comprehensive warranty support enough to justify the premium over cheaper alternatives that deliver 90% of the performance.

Skip this if: you're price-sensitive and can find competing Gen 4 drives like the SN850X or P5 Plus for $15-20 less with identical real-world performance, you primarily use your system for gaming and general productivity where the performance delta over Gen 3 drives proves imperceptible during actual use, you need maximum capacity per dollar and would be better served by a 2TB Gen 3 drive at the same price as a 1TB 980 PRO, or you're building a cutting-edge system where Gen 5 drives have dropped to competitive pricing and offer headroom for future DirectStorage implementations.

Advertisement
About
Privacy
Terms
© 2024, 2025 - All Rights Reserved
Brand Logo Icon | DIY SSD