Crucial P510 2TB M.2 Gen5 with Heatsink NVMe 3D NAND SSD - Crucial | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Crucial

Crucial P510 2TB M.2 Gen5 with Heatsink NVMe 3D NAND SSD

SKU: CT2000P510SSD5
R 6 259.00
Out of Stock

Unlock uncompromising speed and responsiveness with the Crucial P510 2TB PCIe Gen5 NVMe SSD—engineered for enthusiasts, gamers, and professionals who demand cutting-edge performance. Powered by Micron’s proven NAND technology, the Crucial P510 delivers blazing-fast Gen5 read and write speeds of...

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

Unlock uncompromising speed and responsiveness with the Crucial P510 2TB PCIe Gen5 NVMe SSD—engineered for enthusiasts, gamers, and professionals who demand cutting-edge performance. Powered by Micron’s proven NAND technology, the Crucial P510 delivers blazing-fast Gen5 read and write speeds of up to 10,000MB/s and 8,700MB/s, nearly doubling the performance of previous Gen4 SSDs and significantly reducing load times for games, applications, and large file transfers.

Whether you’re upgrading a high-performance desktop or a compact laptop, the M.2 2280 single-sided form factor makes installation effortless and compatible with a wide range of systems. Featuring a premium aluminium heatsink, the P510 stays cool under pressure, ensuring optimal thermal management even during prolonged workloads or intensive gaming sessions.

Designed for low power consumption, the P510 promotes longer battery life on laptops without sacrificing performance. The advanced G9 TLC NAND flash provides a perfect balance between speed, endurance, and value—making it an ideal solution for creators, power users, and competitive gamers.

With 1200TB total bytes written (TBW) endurance and a 5-year limited warranty, the Crucial P510 not only offers extreme performance but also long-term reliability. Backed by over 45 years of Micron’s industry leadership, this SSD is built to last and designed to elevate your system’s capabilities—whether you’re working, creating, or playing.

Take advantage of next-generation PCIe Gen5 x4 technology with backward compatibility for Gen4 platforms. The P510 also supports data protection and error correction features, ensuring your content stays secure and accurate.

FEATURES:

  • Powerful PCIe Gen5 NVMe performance
  • Nearly 2x faster than Gen4 performance SSDs
  • Up to 10,000 MB/s sequential read
  • Up to 8,700 MB/s sequential write
  • G9 TLC NAND
  • Stay cool with a premium aluminium heatsink
  • 5-year limited warranty

SPECIFICATIONS:

  • Interface: NVMe (PCIe Gen 5 x4)
  • Capacity: 2TB
  • Form factor: M.2 (2280)
  • SSD Endurance (TBW): 1200TB
  • Sequential Read: 10,000 MB/s
  • Sequential Write: 8,700 MB/s
  • Random Read: 1.5M IOPS
  • Random Write: 1.5M IOPS
  • Product Dimensions: 8 x 2.3 x 0.97 cm
  • Product Weight: 30g

WHAT’S IN THE BOX:

  • Crucial P510 2TB PCIe Gen5 M.2 NVMe SSD with Heatsink – Black x1
Brand Crucial
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 60 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Crucial P310 4TB M.2 Gen4 with Heatsink NVMe 3D NAND SSD
Crucial

Crucial P310 4TB M.2 Gen4 with Heatsink NVMe 3D NAND SSD

R 10 149.00

Out of Stock

CRUCIAL SSD P3 PLUS M.2 NVME 1TB
Crucial

CRUCIAL SSD P3 PLUS M.2 NVME 1TB

R 2 739.00

Out of Stock

PATRIOT SSD VP4000 M.2 NVME 2TB 2230
Patriot

PATRIOT SSD VP4000 M.2 NVME 2TB 2230

R 9 329.00

In Stock

Crucial T500 4TB M.2 NVMe Gen4 NAND SSD
Crucial

Crucial T500 4TB M.2 NVMe Gen4 NAND SSD

R 12 759.00

Out of Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!