Menu
Your Cart

Toshiba S300 2TB 5400rpm 3.5" Surveillance Hard Drive

Toshiba S300 2TB 5400rpm 3.5" Surveillance Hard Drive
-18 %
Toshiba S300 2TB 5400rpm 3.5" Surveillance Hard Drive
  • Price: TK 8,300/-
  • special price: TK 6,800/-
  • Stock: In Stock
  • Model: S300
  • MPN: HDWT720UZSVA
TK 6,800/-
TK 8,300/-
Ex Tax: TK 6,800/-

Key Features

    • MPN: HDWT720UZSVA
    • Model: Toshiba S300
    • Buffer size: 128 MB<
    • Form factor: 3,5-inch
    • Interface: 6.0 Gbit/s
    • Cameras supported: up to 64
    Specification
    General Feature
    TypeSATA Hard Disk Drive
    Capacity2 TB
    sizeBuffer size: 128 MB
    RPM Class5,400 rpm
    Interface6.0 Gbit/s
    Warranty Information
    Warranty02 Year
    Description

    Toshiba S300 2TB 5400rpm 3.5" Surveillance Hard Drive

    The Toshiba S300 2TB 5400rpm 3.5" Surveillance Hard Drive is specifically designed for surveillance systems, ensuring reliable and continuous performance to keep your data safe. With a 2TB storage capacity, it provides ample space to store hours of high-definition video footage from multiple security cameras, making it an ideal choice for home, office, or industrial surveillance setups.

    This hard drive is engineered to handle the demanding needs of 24/7 video recording. Its 5400 RPM speed ensures stable and consistent data transfer, while Toshiba’s innovative technology enhances reliability for long-term use. The Toshiba S300supports up to 64 high-definition video streams, making it suitable for multi-camera systems that require uninterrupted data recording and playback.

    The Toshiba S300 Surveillance Hard Drive is built to withstand the unique requirements of surveillance environments. It features advanced features like rotational vibration (RV) sensors to minimize data errors in multi-drive setups and heat resistance for optimal performance under varying conditions. This drive ensures low power consumption and quiet operation, making it an efficient and discreet addition to your surveillance system.

    Its 3.5-inch form factor and SATA interface make it easy to integrate into a wide range of DVRs and NVRs. Whether you’re upgrading an existing system or building a new one, the Toshiba S300 2TB Hard Drive offers the reliability, durability, and performance needed for consistent video recording and storage.

    Buying Suggestions from Dear IT Solution

    If you’re in Bangladesh and looking for a dependable surveillance hard drive, the Toshiba S300 2TB 5400rpm 3.5" Surveillance Hard Drive is available at Dear IT Solution. We provide genuine and high-quality products to meet the diverse needs of our customers, ensuring the best value for your investment.

    At Dear IT Solution , the Toshiba S300 Surveillance Hard Drive is competitively priced, offering an affordable yet high-performance option for your security system. Our seamless online shopping experience ensures you can find, order, and receive your product without hassle.

    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};