Menu
Your Cart

M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten

M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
M.2 (10Gbps) NVMe/NGFF SSD Enclosure Onten
  • Price: TK 2,300/-
  • Stock: In Stock
  • Model: OTN-UCA322+
TK 2,300/-
Ex Tax: TK 2,300/-

Key Features

    • Model: OTN-UCA322+
    • Output port: M.2 M-key
    • Support protocol: NVMe/NGFF
    • Transmission Speed: 10GBPS
    • Supported M.2: 2230, 2242, 2260, 2280
    • Warranty : 1 Year
Specification
General Feature
BrandOnten
ModelOTN-UCA322+
Storage
Storage TypeM.2 (10Gbps) NVMe/NGFF - SSD
Physical Attributes
ColorDark Green Metal
ConnectorUSB & Type-C
Compatible WithSupported M.2: 2230, 2242, 2260, 2280 & ALL NVMe
Warranty Information
Warranty1 Year
Description

Onten M.2 SSD Enclosure (NGFF & NVMe)

The Onten M.2 SSD Enclosure supports both M.2 (NGFF) and M.2 NVMe SSDs, providing an exceptional storage solution with ultra-fast 10Gbps data transfer speed. Equipped with USB 3.0 and Type-C interfaces, this enclosure ensures high-speed, reliable performance for professionals and tech enthusiasts who require maximum efficiency. Whether you're transferring large files, upgrading your system, or repurposing your SSD, the Onten M.2 enclosure offers seamless connectivity and robust protection for your drive.

Features

  • Supports M.2 NGFF & M.2 NVMe SSDs
  • USB 3.0 & Type-C Ports for ultra-fast 10Gbps data transfer
  • Compact & Durable Design for portability and reliability
  • 1-Year Warranty for peace of mind


Buying Suggestion From Dear IT Solution

Perfect for users who need rapid file access and high-performance storage, the Onten M.2 SSD Enclosure offers lightning-fast speeds and dual compatibility with NGFF and NVMe SSDs. Ideal for connecting your M.2 SSD to laptops, desktops, or any device supporting USB 3.0 or Type-C, this enclosure is a versatile and reliable option for various storage needs.

Buy the Onten M.2 SSD Enclosure today at Dear IT Solution for the best price in Bangladesh. Experience 10Gbps speeds, premium quality, and a 1-year warranty. Shop online or visit our showroom!

Review

Write a review

Note: HTML is not translated!
Bad Good
Critial Path: Hello world!
Hello world!
/** * @license * Copyright 2017 Google LLC * SPDX-License-Identifier: Apache-2.0 *//** * @fileoverview Diagnostic audit that lists all JavaScript libraries detected on the page */import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js';const UIStrings = { /** Title of a Lighthouse audit that provides detail on the Javascript libraries that are used on the page. */ title: 'Detected JavaScript libraries', /** Description of a Lighthouse audit that tells the user what this audit is detecting. This is displayed after a user expands the section to see more. No character length limits. */ description: 'All front-end JavaScript libraries detected on the page. [Learn more about this JavaScript library detection diagnostic audit](https://developer.chrome.com/docs/lighthouse/best-practices/js-libraries/).', /** Label for a column in a data table; entries will be the version numbers of the detected Javascript libraries. */ columnVersion: 'Version', };const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings);class JsLibrariesAudit extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'js-libraries', title: str_(UIStrings.title), scoreDisplayMode: Audit.SCORING_MODES.INFORMATIVE, description: str_(UIStrings.description), requiredArtifacts: ['Stacks'], }; }/** * @param {LH.Artifacts} artifacts * @return {LH.Audit.Product} */ static audit(artifacts) { const libDetails = artifacts.Stacks .filter(stack => stack.detector === 'js') // Don't show the fast paths in the table. .filter(stack => !stack.id.endsWith('-fast')) .map(stack => ({ name: stack.name, version: stack.version, npm: stack.npm, }));/** @type {LH.Audit.Details.Table['headings']} */ const headings = [ {key: 'name', valueType: 'text', label: str_(i18n.UIStrings.columnName)}, {key: 'version', valueType: 'text', label: str_(UIStrings.columnVersion)}, ]; const details = Audit.makeTableDetails(headings, libDetails);const debugData = { type: /** @type {const} */ ('debugdata'), stacks: artifacts.Stacks.map(stack => { return { id: stack.id, version: stack.version, }; }), };if (!libDetails.length) { return {score: null, notApplicable: true}; }return { score: 1, // Always pass for now. details: { ...details, debugData, }, }; } }export default JsLibrariesAudit; export {UIStrings};