Menu
Your Cart

Cudy PE10 Single Port PCI Express Gigabit LAN Card

Cudy PE10 Single Port PCI Express Gigabit LAN Card
Cudy PE10 Single Port PCI Express Gigabit LAN Card
Cudy PE10 Single Port PCI Express Gigabit LAN Card
Cudy PE10 Single Port PCI Express Gigabit LAN Card
Cudy PE10 Single Port PCI Express Gigabit LAN Card
Cudy PE10 Single Port PCI Express Gigabit LAN Card
Cudy PE10 Single Port PCI Express Gigabit LAN Card
  • Price: TK 790/-
  • Stock: In Stock
  • Model: PE10
TK 790/-
Ex Tax: TK 790/-

Key Features

    • Model: PE10
    • Upgrade your ethernet to super fast 10/100/1000Mbps
    • Remotely power on/off your computer with WOL
    • Dual Brackets compatible with mini and standard size PC
    • Compatible with Windows, Linux, Mac OS
    Specification
    General Feature
    BrandCudy
    ModelPE10
    Interface1*10/100/1000Mbps RJ45 Network interface Support network adaptation
    Physical Attributes
    Dimensions12*75*55mm
    Compatible WithPCIE-16X/PCIE-4X/PCIE-8X/PCIE-1X
    Warranty Information
    Warranty01 Year
    Description

    Cudy PE10 Single Port PCI Express Gigabit LAN Card

    The Cudy PE10 Single Port PCI Express Gigabit LAN Card is an essential networking accessory designed to enhance your computer’s network capabilities. With Gigabit Ethernet speeds, it ensures fast, stable, and reliable wired connections for your desktop PC or server. Perfect for home offices, gaming setups, and professional environments, the PE10 LAN card provides an easy upgrade for computers that require high-speed, wired internet access.

    This PCIe LAN card supports 10/100/1000Mbps speeds, making it ideal for applications such as high-definition video streaming, online gaming, and data transfer-heavy tasks. The card is built to optimize network performance while providing a reliable and consistent connection, even in high-traffic environments.

    The Cudy PE10 is designed with plug-and-play installation, which means you can quickly install it into your desktop PC via the PCIe slot. There’s no need for complex configurations, making it user-friendly for both novice and experienced users alike. The full-duplex capability ensures that both send and receive data can happen simultaneously, maximizing your connection efficiency.

    Built with advanced chipsets and high-quality components, the Cudy PE10 offers exceptional durability and longevity. Its low power consumption design helps keep your system running efficiently, ensuring you get the most out of your hardware.

    Whether you are upgrading an existing setup or building a new system, the Cudy PE10 Single Port PCI Express Gigabit LAN Card is a reliable, cost-effective solution to meet your network connectivity needs. It’s also backward compatible with 10/100Mbps Ethernet devices, making it a versatile choice for all types of network environments.

    Buy Cudy PE10 Single Port PCI Express Gigabit LAN Card from Dear IT Solution

    Purchase the Cudy PE10 Single Port PCI Express Gigabit LAN Card at the best price in Bangladesh from Dear IT Solution. We ensure best quality products insured in Bangladesh. Visit our store or order online today to boost your network performance with this reliable and cost-effective LAN card

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