Menu
Your Cart

Toshiba S300 6TB 5400rpm 3.5" Surveillance Hard Disk Drive

Toshiba S300 6TB 5400rpm 3.5" Surveillance Hard Disk Drive
-13 %
Toshiba S300 6TB 5400rpm 3.5" Surveillance Hard Disk Drive
  • Price: TK 18,900/-
  • special price: TK 16,500/-
  • Stock: In Stock
  • Model: S300
  • MPN: HDWT860UZSVA
TK 16,500/-
TK 18,900/-
Ex Tax: TK 16,500/-

Key Features

    • MPN: HDWT860UZSVA
    • Model: S300
    • Form factor: 3,5-inch
    • Interface: 6.0 Gbit/s
    • Buffer size: 256 MB
    • Cameras supported: up to 64
    Specification
    General Feature
    Type SATA Hard Drive
    Capacity6 TB
    sizeBuffer size: 256 MB
    RPM Class5,400 rpm
    Interface6.0 Gbit/s
    Warranty Information
    Warranty03 Year
    Description

    Toshiba S300 6TB 5400rpm 3.5" Surveillance Hard Disk Drive

    The Toshiba  S300 6TB  5400rpm 3.5" Surveillance Hard Disk Drive is an advanced storage solution specifically designed for surveillance systems, offering exceptional reliability and large storage capacity. With a massive 6TB capacity, this hard drive is perfect for storing extensive hours of high-definition video footage from multiple security cameras, making it ideal for home, office, or enterprise-level surveillance setups.

    Engineered to support 24/7 operation, the Toshiba  S300 ​​​​​​​ensures consistent and dependable performance. Its 5400 RPM rotational speed and optimized firmware deliver smooth data recording and retrieval, supporting up to 64 high-resolution video streams simultaneously. This makes it a perfect fit for DVRs, NVRs, and other surveillance system configurations requiring uninterrupted operation.

    The Toshiba  S300 6TB Surveillance Hard Drive features advanced durability and data protection technologies, including rotational vibration (RV) sensors to ensure stable performance in multi-drive setups. Its heat-resistant components and energy-efficient operation make it a reliable choice for environments with demanding workloads and varying conditions.

    Designed with a standard 3.5-inch form factor and a SATA 6.0 Gb/s interface, the Toshiba S300 Hard Drive is easy to install and compatible with a wide range of surveillance devices. Whether you’re upgrading an existing system or building a new one, this hard drive delivers the capacity, efficiency, and performance required for seamless surveillance operations.

    Buying Suggestions from Dear IT Solution

    For customers in Bangladesh seeking a dependable and high-capacity surveillance hard drive, the Toshiba  S300 6TB 5400rpm 3.5" Surveillance Hard Disk Drive is available at Dear IT Solution, your trusted source for premium IT products.

    At Dear IT Solution, we offer the Toshiba S300 Hard Drive at a competitive price, making it an affordable and effective solution for upgrading your surveillance system. Our convenient online shopping platform ensures a hassle-free experience, with fast delivery to your location.

    We are committed to providing high-quality products that meet your needs. Each item is thoroughly tested to ensure performance and reliability. If you have any questions or need guidance regarding the Toshiba S300 6TB 5400rpm 3.5" Surveillance Hard Disk Drive, our expert team at Dear IT Solution is here to assist you in making the right choice.

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