IMBA-Q770 ATX Motherboard

Total Page:16

File Type:pdf, Size:1020Kb

IMBA-Q770 ATX Motherboard IMBA-Q770 ATX Motherboard MODEL: IMBA-Q770 ATX Motherboard for 22nm LGA 1155 Intel® Core™ i7/i5/i3 CPU, Intel® Q77 Chipset, DDR3, Dual HDMI/DVI-I, Dual Intel® PCIe GbE, USB 3.0, SATA 6Gb/s, HD Audio and RoHS User Manual Page i Rev. 1.03 – 23 April, 2014 IMBA-Q770 ATX Motherboard Revision Date Version Changes 23 April, 2014 1.03 Updated Section 2.4: Optional Items 13 December, 2013 1.02 Updated parallel port connector pinouts 4 February, 2013 1.01 Added RAID support description 13 August, 2012 1.00 Initial release Page ii IMBA-Q770 ATX Motherboard Copyright COPYRIGHT NOTICE The information in this document is subject to change without prior notice in order to improve reliability, design and function and does not represent a commitment on the part of the manufacturer. In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages. This document contains proprietary information protected by copyright. All rights are reserved. No part of this manual may be reproduced by any mechanical, electronic, or other means in any form without prior written permission of the manufacturer. TRADEMARKS All registered trademarks and product names mentioned herein are used for identification purposes only and may be trademarks and/or registered trademarks of their respective owners. Page iii IMBA-Q770 ATX Motherboard Table of Contents 1 INTRODUCTION.......................................................................................................... 1 1.1 INTRODUCTION........................................................................................................... 2 1.2 FEATURES................................................................................................................... 2 1.3 CONNECTORS ............................................................................................................. 3 1.4 DIMENSIONS............................................................................................................... 4 1.5 DATA FLOW................................................................................................................ 5 1.6 TECHNICAL SPECIFICATIONS ...................................................................................... 6 2 PACKING LIST............................................................................................................. 9 2.1 ANTI-STATIC PRECAUTIONS...................................................................................... 10 2.2 UNPACKING PRECAUTIONS....................................................................................... 10 2.3 PACKING LIST............................................................................................................11 2.4 OPTIONAL ITEMS...................................................................................................... 12 3 CONNECTORS ........................................................................................................... 14 3.1 PERIPHERAL INTERFACE CONNECTORS..................................................................... 15 3.1.1 IMBA-Q770 Layout.......................................................................................... 15 3.1.2 Peripheral Interface Connectors ..................................................................... 16 3.1.3 External Interface Panel Connectors............................................................... 17 3.2 INTERNAL PERIPHERAL CONNECTORS ...................................................................... 17 3.2.1 +12V Power Connector ................................................................................... 17 3.2.2 ATX Power Connector ..................................................................................... 18 3.2.3 Battery Connectors .......................................................................................... 20 3.2.4 DDR3 DIMM Slots........................................................................................... 21 3.2.5 Digital I/O Connector...................................................................................... 21 3.2.6 Fan Connector (CPU)...................................................................................... 22 3.2.7 Fan Connectors (System)................................................................................. 23 3.2.8 Front Panel Audio Connector.......................................................................... 24 3.2.9 Front Panel Connector .................................................................................... 25 3.2.10 I2C Connector................................................................................................ 26 3.2.11 Keyboard/Mouse Connector........................................................................... 27 Page iv IMBA-Q770 ATX Motherboard 3.2.12 Parallel Port Connector ................................................................................ 28 3.2.13 PCI Slots ........................................................................................................ 29 3.2.14 PCIe x1 Slots.................................................................................................. 30 3.2.15 PCI Express x4 Slot........................................................................................ 31 3.2.16 PCI Express x16 Slot...................................................................................... 31 3.2.17 SATA 3Gb/s Drive Connectors....................................................................... 32 3.2.18 SATA 6Gb/s Drive Connectors....................................................................... 33 3.2.19 Serial Port Connector, RS-422/485................................................................ 34 3.2.20 Serial Port Connectors, RS-232..................................................................... 35 3.2.21 SMBus Connector .......................................................................................... 36 3.2.22 SPI ROM Connector ...................................................................................... 37 3.2.23 TPM Connector.............................................................................................. 38 3.2.24 USB Connectors............................................................................................. 39 3.3 EXTERNAL PERIPHERAL INTERFACE CONNECTOR PANEL ......................................... 40 3.3.1 Audio Connector .............................................................................................. 40 3.3.2 Ethernet and USB 3.0 Connectors................................................................... 41 3.3.3 HDMI Connectors............................................................................................ 42 3.3.4 RS-232 Serial Port (COM1) and DVI-I Connector ......................................... 43 3.3.5 USB 2.0 Connector .......................................................................................... 45 4 INSTALLATION ......................................................................................................... 46 4.1 ANTI-STATIC PRECAUTIONS...................................................................................... 47 4.2 INSTALLATION CONSIDERATIONS.............................................................................. 47 4.2.1 Socket LGA1155 CPU Installation .................................................................. 49 4.2.2 Socket LGA1155 Cooling Kit Installation........................................................ 52 4.2.3 DIMM Installation ........................................................................................... 54 4.3 JUMPER SETTINGS .................................................................................................... 55 4.3.1 AT/ATX Power Select Jumper.......................................................................... 56 4.3.2 Clear CMOS Jumper........................................................................................ 56 4.3.3 DVI-I/VGA Select Jumper................................................................................ 57 4.3.4 Flash Descriptor Security Override................................................................. 58 4.3.5 USB Power Select Jumpers.............................................................................. 59 4.3.6 Wake-on LAN Jumper ...................................................................................... 60 4.4 INTERNAL PERIPHERAL DEVICE CONNECTIONS........................................................ 61 4.4.1 SATA Drive Connection ................................................................................... 61 Page v IMBA-Q770 ATX Motherboard 4.5 EXTERNAL PERIPHERAL INTERFACE CONNECTION ................................................... 62 4.5.1 Audio Connector .............................................................................................. 62 4.5.2 DVI-I Display Device Connection ................................................................... 63 4.5.3 HDMI Display Device Connection .................................................................. 64 4.5.4 LAN Connection............................................................................................... 65 4.5.5 Serial Device Connection ................................................................................ 66 4.5.6 USB Connection (Dual Connector) ................................................................
Recommended publications
  • SOS Internals
    Understanding a Simple Operating System SOS is a Simple Operating System designed for the 32-bit x86 architecture. Its purpose is to understand basic concepts of operating system design. These notes are meant to help you recall the class discussions. Chapter 1 : Starting Up SOS 3 Registers in the IA-32 x86 Architecture BIOS (Basic Input/Ouput System) Routines Real Mode Addressing Organization of SOS on Disk and Memory Master Boot Record SOS Startup A20 Line 32-bit Protected Mode Addressing Privilege Level Global Descriptor Table (GDT) More on Privilege Levels The GDT Setup Enabling Protected Mode Calling main() Chapter 2 : SOS Initializations 10 In main() Disk Initialization Display Initialization Setting Up Interrupt Handlers Interrupt Descriptor Table (IDT) A Default Interrupt Handler Load IDT The Programmable Interrupt Controller (PIC) The Keyboard Interrupt Handler Starting the Console Putting It All Together Chapter 3: SOS1 – Single-tasking SOS 16 Running User Programs GDT Entries Default Exception Handler User Programs Executable Format System Calls Creating User Programs The run Command Understanding a Simple Operating System The DUMB Memory Manager Program Address Space Process Control Block Switching to a User Program Kernel-Mode Stack Chapter 4 : SOS2 – Multi-tasking SOS 24 Running Multiple User Programs NAÏVE Memory Manager Programmable Interval Timer (PIT) Process States Timer Interrupt Handler Sleep System Call The run Command Process Queue The Scheduler The Complete Picture ps Command Chapter 5 : SOS3 – Paging in SOS 31
    [Show full text]
  • ICE-BDE-T7 COM Express Module
    ICE-BDE-T7 COM Express Module MODEL: ICE-BDE-T7 COM Express R3.0 Module (Type 7) with Intel® Xeon® Processor D-1548/D-1518/D-1508, Two ECC DDR4 SO-DIMM, GbE, 10G KR, NCSI, SATA 6Gb/s, PCIe Gen3 and RoHS User Manual Page i Rev. 1.01 – January 30, 2019 ICE-BDE-T7 COM Express Module Revision Date Version Changes January 30, 2019 1.01 Added a new SKU - ICE-BDE-T7-1508 December 13, 2017 1.00 Initial release Page ii ICE-BDE-T7 COM Express Module Copyright COPYRIGHT NOTICE The information in this document is subject to change without prior notice in order to improve reliability, design and function and does not represent a commitment on the part of the manufacturer. In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages. This document contains proprietary information protected by copyright. All rights are reserved. No part of this manual may be reproduced by any mechanical, electronic, or other means in any form without prior written permission of the manufacturer. TRADEMARKS All registered trademarks and product names mentioned herein are used for identification purposes only and may be trademarks and/or registered trademarks of their respective owners. Page iii ICE-BDE-T7 COM Express Module Manual Conventions WARNING Warnings appear where overlooked details may cause damage to the equipment or result in personal injury. Warnings should be taken seriously.
    [Show full text]
  • PCIE-Q870-I2 PICMG 1.3 CPU Card
    PCIE-Q870-i2 PICMG 1.3 CPU Card MODEL: PCIE-Q870-i2 Full-Size PICMG 1.3 CPU Card Supports LGA1150 Intel® Core™ i7/i5/i3, Pentium® or Celeron® CPU, Intel® Q87 Chipset, DDR3, VGA, iDP, Dual Intel® PCIe GbE, SATA 6Gb/s, PCIe Mini, mSATA, RS-232, HD Audio, iRIS-2400 and RoHS User Manual Page i Rev. 1.05 – November 13, 2015 PCIE-Q870-i2 PICMG 1.3 CPU Card Revision Date Version Changes November 13, 2015 1.05 Updated Section 1.6: Technical Specifications Updated Section 2.4: Optional Items Updated Chapter 5: BIOS March 23, 2015 1.04 Updated Section 4.3.3: Flash Descriptor Security Override Jumper November 5, 2014 1.03 Updated PCIe specifications on page 7 June 16, 2014 1.02 Modified LAN pinouts Updated Chapter 2: Packing List March 24, 2014 1.01 Deleted I2C information Updated Section 2.4: Optional Items January 14, 2014 1.00 Initial release Page ii PCIE-Q870-i2 PICMG 1.3 CPU Card Copyright COPYRIGHT NOTICE The information in this document is subject to change without prior notice in order to improve reliability, design and function and does not represent a commitment on the part of the manufacturer. In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages. This document contains proprietary information protected by copyright. All rights are reserved. No part of this manual may be reproduced by any mechanical, electronic, or other means in any form without prior written permission of the manufacturer.
    [Show full text]
  • IMBA-C2360-I2 ATX Motherboard
    IMBA-C2360-i2 ATX Motherboard MODEL: IMBA-C2360-i2 ATX Motherboard Supports 6th Generation LGA1151 Intel® Xeon® E3-1200 v5 Series, Core™ i3, Pentium® or Celeron® CPU, Intel® C236 Chipset, DDR4, HDMI 2.0, DVI-D, VGA, Dual Intel® PCIe GbE, SATA 6Gb/s, USB 3.0, HD Audio, IPMI 2.0 and RoHS User Manual Page i Rev. 1.01 – October 24, 2016 IMBA-C2360-i2 ATX Motherboard Revision Date Version Changes October 24, 2016 1.01 Modified the display output spec of the DVI-D, HDMI and iDP connectors (page 7) July 21, 2016 1.00 Initial release Page ii IMBA-C2360-i2 ATX Motherboard Copyright COPYRIGHT NOTICE The information in this document is subject to change without prior notice in order to improve reliability, design and function and does not represent a commitment on the part of the manufacturer. In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages. This document contains proprietary information protected by copyright. All rights are reserved. No part of this manual may be reproduced by any mechanical, electronic, or other means in any form without prior written permission of the manufacturer. TRADEMARKS All registered trademarks and product names mentioned herein are used for identification purposes only and may be trademarks and/or registered trademarks of their respective owners. Page iii IMBA-C2360-i2 ATX Motherboard Manual Conventions WARNING Warnings appear where overlooked details may cause damage to the equipment or result in personal injury.
    [Show full text]
  • PCIE-Q370 Full-Size PICMG 1.3 CPU Card
    PCIE-Q370 Full-size PICMG 1.3 CPU Card MODEL: PCIE-Q370 Full-Size PICMG 1.3 CPU Card Supports LGA1151 8th Gen. Intel® Core™ i7/i5/i3, Pentium® or Celeron® CPU, Intel® Q370 Chipset, DDR4, VGA, Dual Intel® PCIe GbE, USB 3.1, SATA 6Gb/s, M.2, RS-232, HD Audio and RoHS User Manual Page i Rev. 1.00 – September 21, 2018 PCIE-Q370 Full-size PICMG 1.3 CPU Card Revision Date Version Changes September 21, 2018 1.00 Initial release Page ii PCIE-Q370 Full-size PICMG 1.3 CPU Card Copyright COPYRIGHT NOTICE The information in this document is subject to change without prior notice in order to improve reliability, design and function and does not represent a commitment on the part of the manufacturer. In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages. This document contains proprietary information protected by copyright. All rights are reserved. No part of this manual may be reproduced by any mechanical, electronic, or other means in any form without prior written permission of the manufacturer. TRADEMARKS All registered trademarks and product names mentioned herein are used for identification purposes only and may be trademarks and/or registered trademarks of their respective owners. Page iii PCIE-Q370 Full-size PICMG 1.3 CPU Card Manual Conventions WARNING Warnings appear where overlooked details may cause damage to the equipment or result in personal injury.
    [Show full text]
  • CS401 - Computer Architecture and Assembly Language Programming New Lecture Wise Questions& Answers for Final Terms Prepared by “Virtualians.Pk”
    CS401 - Computer Architecture and Assembly Language Programming New Lecture Wise Questions& Answers for final terms Prepared BY “Virtualians.pk” Lecture no 23: Q)what are the basic purposes/operations of the "BIOS vs DOS"? The BIOS software is built into the PC, and is the first code run by a PC when powered on ('boot firmware'). When the PC starts up, the first job for the BIOS is the power-on self-test, which initializes and identifies system devices such as the CPU, RAM, video display card, keyboard and mouse, hard disk drive, optical disc drive and other hardware. The BIOS then locates boot loader software held on a peripheral device (designated as a 'boot device'), such as a hard disk or a CD/DVD, and loads and executes that software, giving it control of the PC. This process is known as booting, or booting up, which is short for bootstrapping. DOS is an operating system for x86-based personal computers. It was the most commonly used member of the DOS family of operating systems Q)what is firmware? In electronic systems and computing, firmware is the combination of persistent memory and program code and data stored in it. Typical examples of devices containing firmware are embedded systems (such as traffic lights, consumer appliances, and digital watches), computers, computer peripherals, mobile phones, and digital cameras. The firmware contained in these devices provides the control program for the device. Firmware is held in non-volatile memory devices such as ROM, EPROM, or flash memory. Q)What is effect of SP when we push something in stack? Please explain in detail with example.
    [Show full text]
  • 2801340 User's Manual Version 1.0 Mini-ITX Motherboard
    2801340 User’s Manual Mini-ITX Motherboard Version 1.0 Copyrights This document is copyrighted and all rights are reserved. It does not allow any non authorization in copied, photocopied, translated or reproduced to any electronic or machine readable form in whole or in part without prior written consent from the manufacturer. In general, the manufacturer will not be liable for any direct, indirect, special, incidental or consequential damages arising from the use of inability to use the product or documentation, even if advised of the possibility of such damages. The manufacturer keeps the rights in the subject to change the contents of this document without prior notices in order to improve the function design, performance, quality and reliability. The author assumes no responsibility for any errors or omissions, which may appear in this document, nor does it make a commitment to update the information contained herein. Trademarks Intel is a registered trademark of Intel Corporation. Award is a registered trademark of Award Software, Inc. All other trademarks, products and or product's name mentioned herein are mentioned for identification purposes only, and may be trademarks and/or registered trademarks of their respective companies or owners. 2801340 Mini-ITX Motherboard Packing List NOTE: If any of the components listed in the checklist below are missing, please do not proceed with the installation. Contact Global American at (603) 886-3900, Toll Free (US only) at (800) 833-3999. The items listed below should all be included in the 2801340 package. 1 x 2801340 single board computer 1 x IDE cable 1 x SATA power cable 2 x SATA cables 1 x Dual RS-232 cable 1 x DVI-to-VGA adapter (DVI models only) 1 x I/O shielding 1 x Mini jumper pack 1 x Utility CD 1 x QIG (quick installation guide) Images of the above items are shown in Chapter 3.
    [Show full text]
  • TANK-800 Embedded System
    TANK-800 Embedded System MODEL: TANK-800 Fanless Embedded System with Intel® Atom™ D525 Dual Core CPU, VGA, Two Gigabit Ethernet, Four USB, RS-232/422/485, RoHS Compliant User Manual Page i Rev. 1.15 – September 10, 2015 TANK-800 Embedded System Revision Date Version Changes September 10, 2015 1.15 Updated memory spec September 2, 2013 1.14 Updated Section 3.4: System Fan Installation April 2, 2013 1.13 Added the maximum dimensions of an expansion card in Section 1.7 February 5, 2013 1.12 Updated the optional system fan P/N May 10, 2012 1.11 Updated Section 1.7: Backplane Options December 5, 2011 1.10 Updated Section 2.3: Unpacking Checklist Updated Section 3.7.9: RJ-45 RS-422/485 Serial Ports Updated Appendix A: One Key Recovery November 3, 2011 1.00 Initial release Page ii TANK-800 Embedded System Copyright COPYRIGHT NOTICE The information in this document is subject to change without prior notice in order to improve reliability, design and function and does not represent a commitment on the part of the manufacturer. In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages. This document contains proprietary information protected by copyright. All rights are reserved. No part of this manual may be reproduced by any mechanical, electronic, or other means in any form without prior written permission of the manufacturer. TRADEMARKS All registered trademarks and product names mentioned herein are used for identification purposes only and may be trademarks and/or registered trademarks of their respective owners.
    [Show full text]
  • BIOS Setup (For Naples Server Platform)
    BIOS Setup (For Naples Server Platform) User’s Guide Rev.1.1 Copyright © 2017 GIGA-BYTE TECHNOLOGY CO., LTD. All rights reserved. The trademarks mentioned in this manual are legally registered to their respective owners. Disclaimer Information in this manual is protected by copyright laws and is the property of GIGABYTE. Changes to the specifications and features in this manual may be made by GIGABYTE without prior notice. No part of this manual may be reproduced, copied, translated, transmitted, or published in any form or by any means without GIGABYTE's prior written permission. Documentation Classifications In order to assist in the use of this product, GIGABYTE provides the following types of documentations: For detailed product information, carefully read the User's Manual. For more information, visit our website at: http://b2b.gigabyte.com You are a professional? Get an access to our complete source of sales, marketing & technical materials at: http://reseller.b2b.gigabyte.com Table of Contents Chapter 1 BIOS Setup ....................................................................................................5 1-1 The Main Menu ................................................................................................ 7 1-2 Advanced Menu ............................................................................................... 9 1-2-1 iSCSI Configuration ................................................................................................10 1-2-2 QLogic 577xx/578xx 10 Gb Ethernet BCM57810 ...................................................11
    [Show full text]
  • IEI Integration WSB-Q354 Manual
    Full-service, independent repair center -~ ARTISAN® with experienced engineers and technicians on staff. TECHNOLOGY GROUP ~I We buy your excess, underutilized, and idle equipment along with credit for buybacks and trade-ins. Custom engineering Your definitive source so your equipment works exactly as you specify. for quality pre-owned • Critical and expedited services • Leasing / Rentals/ Demos equipment. • In stock/ Ready-to-ship • !TAR-certified secure asset solutions Expert team I Trust guarantee I 100% satisfaction Artisan Technology Group (217) 352-9330 | [email protected] | artisantg.com All trademarks, brand names, and brands appearing herein are the property o f their respective owners. Visit our website - Click HERE WSB-Q354 PICMG 1.0 CPU Card ` IEI Technology Corp. MODEL: WSB-Q354 Intel® Q35 Northbridge PICMG 1.0 CPU Card Supports LGA 775 Intel® Core™2 Quad/Core™2 Duo/Celeron® CPU, 8 GB DDR2, Six SATA 3Gb/s, Seven USB 2.0 and Dual PCIe GbE User Manual Page I Rev. 4.20 – 20 May, 2013 WSB-Q354 PICMG 1.0 CPU Card Revision Date Version Changes 20 May, 2013 4.20 Updated for R42 version September, 2011 4.10 Updated for R41 version December, 2010 4.00 Updated for R40 version April, 2008 1.00 Initial release Page II WSB-Q354 PICMG 1.0 CPU Card Copyright COPYRIGHT NOTICE The information in this document is subject to change without prior notice in order to improve reliability, design and function and does not represent a commitment on the part of the manufacturer. In no event will the manufacturer be liable for direct, indirect, special, incidental, or consequential damages arising out of the use or inability to use the product or documentation, even if advised of the possibility of such damages.
    [Show full text]
  • PCIE-Q350 PICMG 1.3 CPU Card
    PCIE-Q350 PICMG 1.3 CPU Card PCIE-Q350 CPU Card IEI Technology Corp. MODEL: PCIE-Q350 Intel® Q35 Northbridge PICMG 1.3 CPU Card supports Intel® LGA775 Core™2 Quad/Core™2 Duo/Celeron® CPU 8GB DDR2, Six SATA 3Gb/s, Twelve USB 2.0 One PCIe x16, Four PCIe x4, Four PCI and PCIe GbE User Manual Page I Rev. 1.30 – 16 May, 2013 PCIE-Q350 PICMG 1.3 CPU Card Revision Date Version Changes 16 May, 2013 1.30 Updated for R13 version. 25 October, 2012 1.20 Updated for R12 version. 23 February, 2011 1.12 Modified Chapter 6: BIOS Screens. 20 May, 2009 1.11 Modified compatible operating system list in Appendix G. 24 November, 2008 1.10 Changed the rear panel dimension drawing in Chapter 2 30 August, 2007 1.00 Initial release Page II PCIE-Q350 PICMG 1.3 CPU Card Manual Conventions WARNING! Warnings appear where overlooked details may cause damage to the equipment or result in personal injury. Warnings should be taken seriously. Warnings are easy to recognize. The word “warning” is written as “WARNING,” both capitalized and bold and is followed by text. The text is the warning message. A warning message is shown below: WARNING: This is an example of a warning message. Failure to adhere to warning messages may result in permanent damage to the PCIE-Q350 or personal injury to the user. Please take warning messages seriously. CAUTION! Cautionary messages should also be heeded to help reduce the chance of losing data or damaging the PCIE-Q350.
    [Show full text]
  • Flare-On 5: Challenge 12 Solution - Suspicious Floppy Disk
    Flare-On 5: Challenge 12 Solution - Suspicious Floppy Disk Challenge Author: Nick Harbour Background This challenge is framed as spy tool. You are told that we found a suspicious floppy disk that we suspect was given to spies to transmit secret messages. The spies were given the password but you weren’t. You need to figure out the hidden message. Running the floopy disk I recommend using the Bochs emulator for this challenge. You can start up a minimal x86 VM and add this disk image as a bootable floppy drive. Plus, the bochs image is directly loadable and debuggable with IDA Pro. If you load the floppy correctly with bochs you will see the screen shown in Figure 1 below. FireEye, Inc., 1440 McCarthy Blvd., Milpitas, CA 95035 | +1 408.321.6300 | +1 877.FIREEYE (347.3393) | [email protected] | www.FireEye.com 1 Figure 1: Bochs Initial Bootup Before we attempt to look closer at the contents of the floopy disk we can determine that the program that is launched in the boot sequence that appears to be prompting for the password is named infohelp.exe. If you hit Ctrl-C here it will terminate the batch job (autoexec.bat) and return you to the command prompt. Using the DIR command here will show you the list of files as shown in Figure 2 below. Figure 2: Floppy disk contents You can see from the file timestamps that many of the files on this disk are old. This floopy disk was originally generated with WindowXP using a “format /s” command to create a bootable floppy.
    [Show full text]