Disk-directed IO for an out-of-core computation
- 格式:pdf
- 大小:370.79 KB
- 文档页数:18
近来一直在学习高斯,因为不精通常遇到各种错误。
结合自学的东西和查阅的资料总结出来一些错误,希望对和我一样的高斯初学者有所帮助。
1、Q:Error termination in NtrErr: ntran open failure returned to fopen. Segmentation faultE:Can't open a file.2、Q:Internal consistency error detected in FileIO for unit 1I= 4 J=0 I Fail= 1.E:Gaussian is limited to 16 GB of scratch space on the 32-bit nodes.3、Q:Out-of-memory error in routine UFChkP (IEnd= 12292175MxCore= 6291456)Use %Mem=12MW to provide the minimum amount of memory required to complete this step. Error termination via Lnk1e at Thu Feb 2 13:05:32 2006.E efault memory (6 MW, set in $GAUSS_MEMDEF) is too small for unfchk.4、Q:galloc: could not allocate memory.: Resource temporarily unavailableor Out-of-memory error in routine...or End of file in GetChg. Error termination via Lnk1e ...E:Not enough memory.5、Q:IMax=3 JMax=2 DiffMx= 0.00D+00Unable to allocate space to process matrices in G2DrvN:NAtomX= 58 NBasis= 762 NBas6D= 762 MDV1= 6291106 MinMem= 105955841.E:Gaussian has 6 MW free memory (MDV1) but requires at least 106 MW (MinMem).6、Q;Estimate disk for full transformation -677255533 words. Semi-Direct transformation. Bad length for file.E:MaxDisk has been set too low.7、Q:Error termination in NtrErr:NtrErr Called from FileIO.E:The calculation has exceeded the maximum limit of maxcyc.8、Q:Erroneous read. Read 0 instead of 6258688. fd = 4 g_readE:Disk quota or disk size exceeded. Could also be disk failure or NFS timeout.9、Q:Erroneous write. Write 8192 instead of 12288. fd = 4E:Disk quota or disk size exceeded. Could also be disk failure or NFS10、Q:orig len = 12288 left = 12288 g_writeE:timeout11、另有link错误:如:Error termination request processed by link 9999对于优化不收敛,即L9999错误,实际上是在规定的步数内没有完成优化,即还没有找到极小值点。
Querying Very Large Multi-dimensional Datasets in ADR-Extended AbstractTahsin Kurc,Chialin Chang,Renato Ferreira,Alan Sussman,Joel Saltz Institute for AdvancedComputer StudiesandDept.of Computer Science University of Maryland College Park,MD20742Dept.of Pathology Johns Hopkins MedicalInstitutions Baltimore,MD21287kurc,chialin,renato,als,saltz@1IntroductionAnalysis and processing of very large multi-dimensional scientific datasets(i.e.where data items are associated with points in a multi-dimensional attribute space)is an important component of science andengineering.Moreover,an increasing number of applications make use of very large multi-dimensional datasets.Examples of such datasets include raw and processed sensor data from satellites[12],output fromhydrodynamics and chemical transport simulations[10],and archives of medical images[1].Many applications that make use of multi-dimensional datasets have several important characteristics. Both the input and the output are often disk-resident datasets.Applications may use only a subset of all thedata available in input and output datasets.Access to data items is described by a range query,namely a multi-dimensionalbounding box in the underlying multi-dimensionalattribute space of the dataset.Only thedata items whose associated coordinates fall within the multi-dimensional box are retrieved.The processing structures of these applications also share common characteristics.Figure1shows high-level pseudo-codefor the basic processing loop in these applications.The processing steps consist of retrieving input and output data items that intersect the range query(steps1–2and4–5),mapping the coordinates of the retrievedinput items to the corresponding output items(step6),and aggregating,in some way,all the retrieved input items mapped to the same output data items(steps7–8).Correctness of the output usually does not dependon the order input data items are aggregated.The mapping function,,maps an input item to a set of output items.An intermediate data structure,referred to as an accumulator,is used to hold intermediate results during processing.For example,an accumulator can be used to keep a running sum for an averagingoperation.The aggregation function,,aggregates the value of an input item with the intermediate result stored in the accumulator element().The output dataset from a query is usually much smaller than the input dataset,hence steps4–8are called the reduction phase of the processing.Accumulator elements are allocated and initialized(step3)before the reduction phase.Another constraint is that there isOutput Dataset,Input Dataset(*Initialization*)1.foreach in do2.read3.(*Reduction*)4.foreach in do5.read6.7.foreach in do8.(*Output*)9.foreach do10.11.writeFigure1:The basic processing loop in the target applications.a one-to-one mapping between output items and accumulator elements.The intermediate results stored in the accumulator are post-processed to producefinal results(steps9–11).Typical examples of application classes that make use of multi-dimensional scientific datasets are satellite data processing applications[15,5],the Virtual Microscope and analysis of microscopy data[1], and simulation systems for water contamination studies[10].Due to limited space,we briefly describe the satellite data processing application here.In satellite data processing,earth scientists study the earth by processing remotely-sensed data continuously acquired from satellite-based sensors.Each sensor reading is associated with a position(longitude and latitude)and the time the reading was recorded.In a typical analysis[15],a range query defines a bounding box that covers a part or all of the surface of the earth over a period of time.Data items retrieved from one or more datasets are processed to generate one or more composite images of the area under study.Generating a composite image requires projection of the selected area of the earth onto a two-dimensional grid[18];each pixel in the composite image is computed by selecting the“best”sensor value that maps to the associated grid posite images can be added to the database as new datasets.We have developed an infrastructure,called the Active Data Repository(ADR)[3],that integrates stor-age,retrieval and processing of large multi-dimensional datasets on distributed memory parallel architectures with multiple disks attached to each node.ADR targets applications with the processing structure shown in Figure1.ADR is designed as a set of modular services implemented in C++.Through use of these services, ADR allows customization for application specific processing(i.e.the,,,and functions),while providing support for common operations such as memory management,data retrieval,and scheduling of processing across a parallel machine.The system architecture of ADR consists of a front-end and a parallel back-end.The front-end interacts with clients,and forwards range queries with references to user-defined processing functions to the parallel back-end.During query execution,back-end nodes retrieve input data and perform user-defined operations over the data items retrieved to generate the output products.Output products can be returned from the back-end nodes to the requesting client,or stored in ADR.Several runtime support libraries andfile systems have been developed to support efficient I/O in a parallel environment[2,6,8,9,13,14,16,17].ADR differs from these systems in several ways.First, ADR is able to carry out range queries directed at irregular spatially indexed datasets.Second,computation is an integral part of the ADR framework.With the collective I/O interfaces provided by many parallel I/O systems,data processing usually cannot begin until the entire collective I/O operation completes.Third, data placement algorithms optimized for range queries are integrated as part of the ADR framework.In this work,we discuss optimizing the execution of range queries(i.e.the processing loop shown in Figure1)on distributed memory parallel machines within the ADR framework.We describe three potential strategies for efficient execution of such queries.We evaluate scalability of these strategies for different application scenarios,varying both the number of processors and the input dataset size,using application emulators[19]to generate various application scenarios for the applications classes that motivated the design of ADR.We present experimental evaluation of the three strategies on a128-node IBM SP.2Query Execution in ADR2.1Storing Datasets in ADRA dataset is partitioned into a set of chunks to achieve high bandwidth data retrieval.A chunk consists of one or more data items,and is the unit of I/O and communication in ADR.That is,a chunk is always retrieved as a whole during query processing.As every data item is associated with a point in a multi-dimensional attribute space,every chunk is associated with a minimum bounding rectangle(MBR)that encompasses the coordinates(in the associated attribute space)of all the items in the chunk.Since data is accessed through range queries,it is desirable to have data items that are close to each other in the multi-dimensional space in the same chunk.Chunks are distributed across the disks attached to ADR back-end nodes using a declustering algorithm[7,11]to achieve I/O parallelism during query processing.Each chunk is assigned to a single disk,and is read and/or written during query processing only by the local processor to which the disk is attached.If a chunk is required for processing by one or more remote processors,it is sent to those processors by the local processor via interprocessor communication.After all data chunks are stored into the desired locations in the disk farm,an index(e.g.,an R-tree)is constructed using the MBRs of the chunks.The index is used by the back-end nodes tofind the local chunks with MBRs that intersect the range query.2.2Query PlanningA plan specifies how parts of thefinal output are computed and the order the input data chunks are retrieved for processing.Planning is carried out in two steps;tiling and workload partitioning.In the tiling step, if the output dataset is too large tofit entirely into the memory,it is partitioned into tiles.Each tile,, contains a distinct subset of the output chunks,so that the total size of the chunks in a tile is less than the amount of memory available for output data.Tiling of the output implicitly results in a tiling of the input dataset.Each input tile,,contains the input chunks that map to the output chunks in tile,.During query processing,each output tile is cached in main memory,and input chunks from the required input tiles are retrieved.Since a mapping function may map an input element to multiple output elements,an input chunk may appear in more than one input tile if the corresponding output chunks are assigned to different tiles. Hence,an input chunk may be retrieved multiple times during execution of the processing loop.Figure2 illustrates the processing loop with tiled input and output datasets.In the workload partitioning step,the workload associated with each tile(i.e.aggregation of items in input and accumulator chunks)is partitioned across processors.This is accomplished by assigning each(*Output and Input Dataset Tiles*)and for11.foreach in,do(*Initialization*)2.foreach in do3.read4.(*Reduction*)5.foreach in do6.read7.8.foreach in do9.(*Output*)10.foreach do11.12.writeFigure2:Basic processing loop with tiled input and output datasets.is the total number of tiles after tiling step.processor the responsibility for processing a subset of the input and/or accumulator chunks.2.3Query ExecutionThe processing of a query on a back-end processor progresses through four phases for each tile:1.Initialization.Accumulator chunks in the current tile are allocated space in memory and initialized.If an existing output dataset is required to initialize accumulator elements,an output chunk is retrieved by the processor that has the chunk on its local disk,and the chunk is forwarded to the processors that require it.2.Local Reduction.Input data chunks on the local disks of each back-end node are retrieved andaggregated into the accumulator chunks allocated in each processor’s memory in phase1.3.Global Combine.If necessary,results computed in each processor in phase2are combined acrossall processors to computefinal results for the accumulator chunks.4.Output Handling.Thefinal output chunks for the current tile are computed from the correspondingaccumulator chunks computed in phase3.If the query creates a new dataset,output chunks are declustered across the available disks,and each output chunk is written to the assigned disk.If the query updates an already existing dataset,the updated output chunks are written back to their original locations on the disks.A query iterates through these phases repeatedly until all tiles have been processed and the entire output dataset has been computed.Note that the reduction phase in Figure2is divided into two phases,localreduction and global combine.This is a result of workload partitioning for parallel query execution,as will be discussed in Section3.To reduce query execution time,ADR overlaps disk operations,network operations and processing as much as possible during query processing.Overlap is achieved by maintaining explicit queues for each kind of operation(data retrieval,message sends and receives,data processing)and switching between queued operations as required.Pending asynchronous I/O and communication operations in the operation queues are polled and,upon their completion,new asynchronous operations are initiated when more work is expected and memory buffer space is available.Data chunks are therefore retrieved and processed in a pipelined fashion.3Query Processing StrategiesIn this section we briefly describe three strategies that use different tiling and workload partitioning ap-proaches.More detailed descriptions of these strategies can be found in[4].We refer to an input/output data chunk stored on one of the disks attached to a processor as a local chunk on that processor.Otherwise, it is a remote chunk.A processor owns an input or output chunk if it is a local input or output chunk.A ghost chunk is a copy of an accumulator chunk allocated in the memory of a processor that does not own the corresponding output chunk.In the tiling phase of all the strategies described in this section,we use a Hilbert space-filling curve[7] to create the tiles.The goal is to minimize the total length of the boundaries of the tiles,by assigning chunks that are spatially close in the multi-dimensionalattribute space to the same tile,to reduce the number of input chunks crossing tile boundaries.The advantage of using Hilbert curves is that they have good clustering properties[11],since they preserve locality.In our implementation,the mid-point of the bounding box of each output chunk is used to generate a Hilbert curve index.The chunks are sorted with respect to this index,and selected in this order for tiling.The current implementation,however,does not explicitly take into account the mapping between the input and output chunks,and therefore in some cases there can still be many input chunks intersecting multiple tiles,despite a small boundary length.3.1Fully Replicated Accumulator(FRA)StrategyIn this scheme each processor performs processing associated with its local input chunks.The output chunks are partitioned into tiles,each of whichfits into the available local memory of a single back-end processor. When an output chunk is assigned to a tile,the corresponding accumulator chunk is put into the set of local accumulator chunks in the processor that owns the output chunk,and is assigned as a ghost chunk on all other processors.This scheme effectively replicates all of the accumulator chunks in a tile on each processor,and during the local reduction phase,each processor generates partial results for the accumulator chunks using only its local input chunks.Ghost chunks with partial results are then forwarded to the processors that own the corresponding output(accumulator)chunks during the global combine phase to produce the complete intermediate result,and eventually thefinal output product.3.2Sparsely Replicated Accumulator(SRA)StrategyThe FRA strategy replicates each accumulator chunk in every processor even if no input chunks will be aggregated into the accumulator chunks in some processors.This results in unnecessary initialization overhead in the initialization phase of query execution,and extra communication and computation in the global combine phase.The available memory in the system also is not efficiently employed,because ofunnecessary replication.Such replication may result in more tiles being created than necessary,which may cause a large number of input chunks to be retrieved from disk more than once.In SRA strategy,a ghost chunk is allocated only on processors owning at least one input chunk that projects to the corresponding accumulator chunk.The index,which contains the MBRs of all the chunks,is used to decide where ghost chunks need to be allocated.Note that the index is constructed when the dataset is loaded into ADR.3.3Distributed Accumulator(DA)StrategyIn this scheme,every processor is responsible for all processing associated with its local output chunks. Tiling is done by selecting from each processor its local output chunks until the memory space allocated for the corresponding accumulator chunks isfilled.As in the other schemes,output chunks are selected in Hilbert curve order.Since no accumulator chunks are replicated by the DA strategy,no ghost chunks are allocated.This allows DA to make more effective use of memory and produce fewer tiles than the other two schemes.As a result,fewer input chunks are likely to be retrieved for multiple tiles.Furthermore,DA avoids interprocessor communication for accumulator chunks during the initialization phase and for ghost chunks during the global combine phase,and also requires no computation in the global combine phase.The FRA and SRA strategies eliminate interprocessor communication for input chunks,by replicating all accumulator chunks.On the other hand,the distributed accumulator strategy introduces communication in the local reduction phase for input chunks;all the remote input chunks that map to the same output chunk must be forwarded to the processor that owns the output chunk.Since a projection function may map an input chunk to multiple output chunks,an input chunk may be forwarded to multiple processors.In addition,a good declustering strategy could cause almost all input chunks to be forwarded to other processors,because an input chunk and the output chunk(s)that it projects to are unlikely to be assigned to the same processor.4Experimental ResultsWe present an experimental evaluation of the three query execution strategies on a128-node IBM SP multicomputer.Each node of the SP is a thin node with256MB of memory;the nodes are connected via a High Performance Switch that provides110MB/sec peak communication bandwidth per node.Each node has one local disk with500MB of available scratch space.We allocated225MB of that space for the input dataset and25MB for the output dataset for these experiments.The AIXfilesystem on the SP nodes uses a main memoryfile cache,so we used the remaining250MB on the disk to clean thefile cache before each experiment to obtain more reliable performance results.We evaluate the query execution strategies for different application scenarios,varying the number of processors and the input dataset size.We used application emulators[19]to generate various application scenarios for the applications classes that motivated the design of ADR(see Section1).An application emulator provides a parameterized model of an application class;adjusting the parameter values makes it possible to generate different application scenarios within the application class and scale applications in a controlled way.The assignment of both input and output chunks to the disks was done using a Hilbert curve based declustering algorithm[7].Table1summarizes dataset sizes and application characteristics for three application classes;satellite data processing(SAT),analysis of microscopy data with the Virtual Microscope(VM),and water contam-ination studies(WCS).The output dataset size remainedfixed for all experiments.The column labeled Fan-in shows the average number of input chunks that map to each output chunk,while the Fan-out col-umn shows the average number of output chunks to which an input chunk maps for both the smallest andInput Dataset Computation Num.of Num.of Average(in milliseconds) App.Size Size Fan-outSA T 1.6GB–26GB25MB 4.6WCS 1.7GB–27GB17MB 1.2VM 1.5GB–24GB48MB 1.0Table1:Application characteristics.largest input datasets.The last column shows the computation time per chunk for the different phases of query execution(see Section2.3);I-LR-GC-OH represents the Initialization-Local Reduction-Global Combine-Output Handling phases.The computation times shown represent the relative computation cost of the different phases within and across the different applications.The LR value denotes the computation cost for each intersecting(input chunk,accumulator chunk)pair.Thus,an input chunk that maps to a larger number of accumulator chunks takes longer to process.In all of these applications the output datasets are regular arrays,hence each output dataset is divided into regular multi-dimensional rectangular regions.The distribution of the individual data items and the data chunks in the input dataset of SAT is irregular.This is because of the polar orbit of the satellite[12];the data chunks near the poles are more elongated on the surface of the earth than those near the equator and there are more overlapping chunks near poles.The input datasets for WCS and VM are regular dense arrays,which are partitioned into equal-sized rectangular chunks.We selected the values for the various parameters to represent typical scenarios for these application classes on the SP machine,based on our experience with the complete ADR applications.Figure3shows query execution times for the different applications.The graphs in the left column display the performance of the different strategies when the input dataset size isfixed,varying the number of processors.As is seen from thefigure,execution time decreases with increasing number of processors.The FRA and SRA strategies achieve better performance than the DA strategy on small numbers of processors for the SAT and WCS applications.However,the difference between DA and the other strategies decreases as the number of processors increases.This is because both communication volume and computation time per processor for DA decrease as the number of processors increases,whereas the overheads from the initialization and global combine phases for FRA and SRA remain almost constant.The graphs in the right column in Figure3display query execution time when the input dataset is scaled with the number of processors1.As is seen from thefigure,execution time increases for DA as the number of processors(and dataset size)increases,whereas it remains almost constant for the FRA and SRA strategies for the SAT and WCS applications.This is because the DA strategy has both higher communication volume and more load imbalance than the FRA and SRA strategies.For VM,we observed a largefluctuation in I/O times across processors,especially for large configurations,even though each processor reads the same amount of data. That is why overall execution time increases,although it should remain approximately the same.We would expect that the DA strategy should achieve better performance for VM,since the computation cost per block in VM is small,and it is a highly regular application with low fan-out of an input block to output blocks.Figures4(a)-(d)display the change in volume of communication and computation time per processor forfixed and scaled input datasets on varying number of processors1.Note that all strategies read the same amount of data from disks.However,the volume of communication for DA is proportional to the number of input chunks in each processor and the average fan-out of each input chunk,while for FRA it is proportional to the number of total output chunks.As is seen in Figure4(a),as the number of processors(a)SAT application.(b)WCSapplication.(c)VM application.Figure3:Query execution time for various applications withfixed input size(left),and scaled input size (right).increases,communication volume for DA decreases since there are fewer input chunks per processor,while communication volume remains almost constant for FRA.On the other hand,as seen in Figure4(b),the volume of communication for DA increases for scaled input size.The volume of communication for SRA implicitly depends on the average fan-in of each output chunk. If fan-in is much larger than the number of processors,it is likely that each processor will have input chunks that map to all output chunks.Thus,in such cases,SRA performance is identical to FRA.When the number of processors is greater than the fan-in,there will be fewer ghost chunks than there are output chunks for SRA,thus resulting in less overhead in the initialization and global combine phases than for FRA.This effect is observed for VM for32or more processors,and for WCS for64or more processors.As is seen in Figure4(c)-(d),the computation time does not scale perfectly.For DA this is because of load imbalance incurred during the local reduction phase,while for FRA and SRA it is due to constant overheads in the initialization and global reduction phases.The results show that all three strategies can be usefully employed for various applications under different machine configurations.We are working on cost models to automatically select the best strategy during query planning.References[1]A.Afework,M.D.Beynon,F.Bustamante,A.Demarzo,R.Ferreira,ler,M.Silberman,J.Saltz,A.Suss-man,and H.Tsang.Digital dynamic telepathology-the Virtual Microscope.In Proceedings of the1998AMIA Annual Fall Symposium.American Medical Informatics Association,Nov.1998.[2]R.Bennett,K.Bryant,A.Sussman,R.Das,and J.Saltz.Jovian:A framework for optimizing parallel I/O.InProceedings of the1994Scalable Parallel Libraries Conference,pages10–20.IEEE Computer Society Press, Oct.1994.[3]C.Chang,R.Ferreira,A.Sussman,and J.Saltz.Infrastructure for building parallel database systems for multi-dimensional data.In Proceedings of the Second Merged IPPS/SPDP(13th International Parallel Processing Symposium&10th Symposium on Parallel and Distributed Processing).IEEE Computer Society Press,Apr.1999.[4]C.Chang,T.Kurc,A.Sussman,and J.Saltz.Query planning for range queries with user-defined aggregationon multi-dimensional scientific datasets.Technical Report CS-TR-3996and UMIACS-TR-99-15,University of Maryland,Department of Computer Science and UMIACS,Feb.1999.[5]C.Chang,B.Moon,A.Acharya,C.Shock,A.Sussman,and J.Saltz.Titan:A high performance remote-sensingdatabase.In Proceedings of the1997International Conference on Data Engineering,pages375–384.IEEE Computer Society Press,Apr.1997.[6]P.F.Corbett and D.G.Feitelson.The V esta parallelfile system.ACM put.Syst.,14(3):225–264,Aug.1996.[7]C.Faloutsos and P.Bhagwat.Declustering using fractals.In Proceedings of the2nd International Conferenceon Parallel and Distributed Information Systems,pages18–25,Jan.1993.[8]J.Huber,C.L.Elford,D.A.Reed,A.A.Chien,and D.S.Blumenthal.PPFS:A high performance portableparallelfile system.In Proceedings of the9th ACM International Conference on Supercomputing,pages385–394, Barcelona,Spain,July1995.[9]D.Kotz.Disk-directed I/O for MIMD multiprocessors.In Proceedings of the1994Symposium on OperatingSystems Design and Implementation,pages61–74.ACM Press,Nov.1994.[10]T.M.Kurc,A.Sussman,and J.Saltz.Coupling multiple simulations via a high performance customizabledatabase system.In Proceedings of the Ninth SIAM Conference on Parallel Processing for Scientific Computing.SIAM,Mar.1999.(a)V olume of communication,fixed input size.SAT(left),WCS(middle),VM(right).(b)V olume of communication,scaled input size.SAT(left),WCS(middle),VM(right).(c)Computation time,fixed input size.SAT(left),WCS(middle),VM(right).(d)Computation time,scaled input size.SAT(left),WCS(middle),VM(right).Figure4:Communication volume and computation time for various applications,forfixed and scaled input data size.[11]B.Moon and J.H.Saltz.Scalability analysis of declustering methods for multidimensional range queries.IEEETransactions on Knowledge and Data Engineering,10(2):310–327,March/April1998.[12]NASA Goddard Distributed Active ArchiveCenter(DAAC).Advanced V ery High Resolution Radiometer Global Area Coverage(A VHRR GAC)data.Available at /CAMPAIGN BIO/origins.html.[13]N.Nieuwejaar and D.Kotz.The Galley parallelfile system.In Proceedings of the1996International Conferenceon Supercomputing,pages374–381.ACM Press,May1996.[14]K.E.Seamons,Y.Chen,P.Jones,J.Jozwiak,and M.Winslett.Server-directed collective I/O in Panda.InProceedings Supercomputing’95.IEEE Computer Society Press,Dec.1995.[15]C.T.Shock,C.Chang,B.Moon,A.Acharya,L.Davis,J.Saltz,and A.Sussman.The design and evaluation ofa high-performance earth science database.Parallel Computing,24(1):65–90,Jan.1998.[16]R.Thakur and A.Choudhary.An extended two-phase method for accessing sections of out-of-core arrays.Scientific Programming,5(4):301–317,Winter1996.[17]R.Thakur,A.Choudhary,R.Bordawekar,S.More,and S.Kuditipudi.Passion:Optimized I/O for parallelapplications.IEEE Computer,29(6):70–78,June1996.[18]The USGS General Cartographic Transformation Package,version 2.0.2.ftp:///pub/software/current。
Legal informationCopyright and License© Copyright 2019 HP Development Company, L.P.Reproduction, adaptation, or translation without prior written permission is prohibited, except as allowedunder the copyright laws.The information contained herein is subject to change without notice.The only warranties for HP products and services are set forth in the express warranty statementsaccompanying such products and services. Nothing herein should be construed as constituting anadditional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein.Edition 1, 10/2019Trademark CreditsAdobe®, Adobe Photoshop®, Acrobat®, and PostScript® are trademarks of Adobe Systems Incorporated.Apple and the Apple logo are trademarks of Apple Inc., registered in the U.S. and other countries.macOS is a trademark of Apple Inc., registered in the U.S. and other countries.AirPrint is a trademark of Apple Inc., registered in the U.S. and other countries.Google™ is a trademark of Google Inc.Microsoft®, Windows®, Windows® XP, and Windows Vista® are U.S. registered trademarks of MicrosoftCorporation.UNIX® is a registered trademark of The Open Group.iiiT able of contents1 Printer overview (1)Warning icons (1)Potential shock hazard (2)Printer views (2)Printer front view (2)Printer back view (4)Interface ports (4)Control-panel view (5)How to use the touchscreen control panel (7)Printer specifications (8)T echnical specifications (8)Supported operating systems (11)Mobile printing solutions (12)Printer dimensions (13)Power consumption, electrical specifications, and acoustic emissions (15)Operating-environment range (15)Printer hardware setup and software installation (16)2 Paper trays (17)Introduction (17)Load paper to Tray 1 (multipurpose tray) (17)Load Tray 1 (multipurpose tray) (18)Tray 1 paper orientation (19)Use alternative letterhead mode (24)Enable Alternative Letterhead Mode by using the printer control-panel menus (24)Load paper to Tray 2 (24)Load Tray 2 (24)Tray 2 paper orientation (26)Use alternative letterhead mode (29)Enable Alternative Letterhead Mode by using the printer control-panel menus (29)Load paper to the 550-sheet paper tray (30)Load paper to the 550-sheet paper tray (30)550-sheet paper tray paper orientation (32)Use alternative letterhead mode (35)Enable Alternative Letterhead Mode by using the printer control-panel menus (35)ivLoad paper to the 2 x 550-sheet paper trays (36)Load paper to the 2 x 550-sheet paper trays (36)2 x 550-sheet paper tray paper orientation (38)Use alternative letterhead mode (41)Enable Alternative Letterhead Mode by using the printer control-panel menus (41)Load paper to the 2,700-sheet high-capacity input paper trays (41)Load paper to the 2,700-sheet high-capacity input paper trays (41)2,700-sheet HCI paper tray paper orientation (43)Use alternative letterhead mode (45)Enable Alternative Letterhead Mode by using the printer control-panel menus (45)Load and print envelopes (46)Print envelopes (46)Envelope orientation (46)Load and print labels (47)Manually feed labels (47)Label orientation (48)3 Supplies, accessories, and parts (49)Order supplies, accessories, and parts (49)Ordering (49)Supplies and accessories (50)Maintenance/long-life consumables (51)Customer self-repair parts (51)Dynamic security (52)Configure the HP toner-cartridge-protection supply settings (53)Introduction (53)Enable or disable the Cartridge Policy feature (53)Use the printer control panel to enable the Cartridge Policy feature (54)Use the printer control panel to disable the Cartridge Policy feature (54)Use the HP Embedded Web Server (EWS) to enable the Cartridge Policy feature (54)Use the HP Embedded Web Server (EWS) to disable the Cartridge Policy feature (55)Troubleshoot Cartridge Policy control panel error messages (55)Enable or disable the Cartridge Protection feature (55)Use the printer control panel to enable the Cartridge Protection feature (56)Use the printer control panel to disable the Cartridge Protection feature (56)Use the HP Embedded Web Server (EWS) to enable the Cartridge Protection feature (56)Use the HP Embedded Web Server (EWS) to disable the Cartridge Protection feature (57)Troubleshoot Cartridge Protection control panel error messages (57)Replace the toner cartridges (58)T oner-cartridge information (58)Remove and replace the cartridges (59)Replace the imaging drums (62)Imaging drum information (62)Remove and replace the imaging drums (63)Replace the toner-collection unit (66)T oner-collection unit information (66)vRemove and replace the toner-collection unit (67)Replace the staple cartridge (M776zs model only) (70)Staple cartridge information (70)Remove and replace the staple cartridge (71)4 Print (73)Print tasks (Windows) (73)How to print (Windows) (73)Automatically print on both sides (Windows) (74)Manually print on both sides (Windows) (74)Print multiple pages per sheet (Windows) (75)Select the paper type (Windows) (75)Additional print tasks (76)Print tasks (macOS) (77)How to print (macOS) (77)Automatically print on both sides (macOS) (77)Manually print on both sides (macOS) (77)Print multiple pages per sheet (macOS) (78)Select the paper type (macOS) (78)Additional print tasks (79)Store print jobs on the printer to print later or print privately (79)Introduction (79)Create a stored job (Windows) (79)Create a stored job (macOS) (80)Print a stored job (81)Delete a stored job (81)Delete a job that is stored on the printer (81)Change the job storage limit (82)Information sent to printer for Job Accounting purposes (82)Mobile printing (82)Introduction (82)Wi-Fi, Wi-Fi Direct Print, NFC, and BLE printing (82)Enable wireless printing (83)Change the Wi-Fi Direct name (83)HP ePrint via email (83)AirPrint (84)Android embedded printing (85)Print from a USB flash drive (85)Enable the USB port for printing (85)Method one: Enable the USB port from the printer control panel (85)Method two: Enable the USB port from the HP Embedded Web Server (network-connectedprinters only) (85)Print USB documents (86)Print using high-speed USB 2.0 port (wired) (86)Method one: Enable the high-speed USB 2.0 port from the printer control panel menus (86)Method two: Enable the high-speed USB 2.0 port from the HP Embedded Web Server (network-connected printers only) (87)vi5 Copy (88)Make a copy (88)Copy on both sides (duplex) (90)Additional copy tasks (92)6 Scan (93)Set up Scan to Email (93)Introduction (93)Before you begin (93)Step one: Access the HP Embedded Web Server (EWS) (94)Step two: Configure the Network Identification settings (95)Step three: Configure the Send to Email feature (96)Method one: Basic configuration using the Email Setup Wizard (96)Method two: Advanced configuration using the Email Setup (100)Step four: Configure the Quick Sets (optional) (104)Step five: Set up Send to Email to use Office 365 Outlook (optional) (105)Introduction (105)Configure the outgoing email server (SMTP) to send an email from an Office 365 Outlookaccount (105)Set up Scan to Network Folder (108)Introduction (108)Before you begin (108)Step one: Access the HP Embedded Web Server (EWS) (108)Step two: Set up Scan to Network Folder (109)Method one: Use the Scan to Network Folder Wizard (109)Method two: Use Scan to Network Folder Setup (110)Step one: Begin the configuration (110)Step two: Configure the Scan to Network Folder settings (111)Step three: Complete the configuration (118)Set up Scan to SharePoint (118)Introduction (118)Before you begin (118)Step one: Access the HP Embedded Web Server (EWS) (118)Step two: Enable Scan to SharePoint and create a Scan to SharePoint Quick Set (119)Scan a file directly to a SharePoint site (121)Quick Set scan settings and options for Scan to SharePoint (122)Set up Scan to USB Drive (123)Introduction (124)Step one: Access the HP Embedded Web Server (EWS) (124)Step two: Enable Scan to USB Drive (124)Step three: Configure the Quick Sets (optional) (125)Default scan settings for Scan to USB Drive setup (126)Default file settings for Save to USB setup (126)Scan to email (127)Introduction (127)Scan to email (127)Scan to job storage (129)viiIntroduction (129)Scan to job storage on the printer (130)Print from job storage on the printer (132)Scan to network folder (132)Introduction (132)Scan to network folder (132)Scan to SharePoint (134)Introduction (134)Scan to SharePoint (134)Scan to USB drive (136)Introduction (136)Scan to USB drive (136)Use HP JetAdvantage business solutions (138)Additional scan tasks (138)7 Fax (140)Set up fax (140)Introduction (140)Set up fax by using the printer control panel (140)Change fax configurations (141)Fax dialing settings (141)General fax send settings (142)Fax receive settings (143)Send a fax (144)Additional fax tasks (146)8 Manage the printer (147)Advanced configuration with the HP Embedded Web Server (EWS) (147)Introduction (147)How to access the HP Embedded Web Server (EWS) (148)HP Embedded Web Server features (149)Information tab (149)General tab (149)Copy/Print tab (150)Scan/Digital Send tab (151)Fax tab (152)Supplies tab (153)Troubleshooting tab (153)Security tab (153)HP Web Services tab (154)Networking tab (154)Other Links list (156)Configure IP network settings (157)Printer sharing disclaimer (157)View or change network settings (157)Rename the printer on a network (157)viiiManually configure IPv4 TCP/IP parameters from the control panel (158)Manually configure IPv6 TCP/IP parameters from the control panel (158)Link speed and duplex settings (159)Printer security features (160)Introduction (160)Security statements (160)Assign an administrator password (160)Use the HP Embedded Web Server (EWS) to set the password (160)Provide user access credentials at the printer control panel (161)IP Security (161)Encryption support: HP High Performance Secure Hard Disks (161)Lock the formatter (161)Energy-conservation settings (161)Set the sleep timer and configure the printer to use 1 watt or less of power (161)Set the sleep schedule (162)Set the idle settings (162)HP Web Jetadmin (163)Software and firmware updates (163)9 Solve problems (164)Customer support (164)Control panel help system (165)Reset factory settings (165)Introduction (165)Method one: Reset factory settings from the printer control panel (165)Method two: Reset factory settings from the HP Embedded Web Server (network-connectedprinters only) (166)A “Cartridge is low” or “Cartridge is very low” message displays on the printer control panel (166)Change the “Very Low” settings (166)Change the “Very Low” settings at the control panel (166)For printers with fax capability (167)Order supplies (167)Printer does not pick up paper or misfeeds (167)Introduction (167)The printer does not pick up paper (167)The printer picks up multiple sheets of paper (171)The document feeder jams, skews, or picks up multiple sheets of paper (174)Clear paper jams (174)Introduction (174)Paper jam locations (174)Auto-navigation for clearing paper jams (175)Experiencing frequent or recurring paper jams? (175)Clear paper jams in the document feeder - 31.13.yz (176)Clear paper jams in Tray 1 (13.A1) (177)Clear paper jams in Tray 2 (13.A2) (182)Clear paper jams in the fuser (13.B9, 13.B2, 13.FF) (188)ixClear paper jams in the duplex area (13.D3) (194)Clear paper jams in the 550-sheet trays (13.A3, 13.A4) (199)Clear paper jams in the 2 x 550 paper trays (13.A4, 13.A5) (206)Clear paper jams in the 2,700-sheet high-capacity input paper trays (13.A3, 13.A4, 13.A5, 13.A7) (213)Resolving color print quality problems (220)Introduction (220)Troubleshoot print quality (221)Update the printer firmware (221)Print from a different software program (221)Check the paper-type setting for the print job (221)Check the paper type setting on the printer (221)Check the paper type setting (Windows) (221)Check the paper type setting (macOS) (222)Check toner-cartridge status (222)Step one: Print the Supplies Status Page (222)Step two: Check supplies status (222)Print a cleaning page (222)Visually inspect the toner cartridge or cartridges (223)Check paper and the printing environment (223)Step one: Use paper that meets HP specifications (223)Step two: Check the environment (223)Step three: Set the individual tray alignment (224)Try a different print driver (224)Troubleshoot color quality (225)Calibrate the printer to align the colors (225)Troubleshoot image defects (225)Improve copy image quality (233)Check the scanner glass for dirt and smudges (233)Calibrate the scanner (234)Check the paper settings (235)Check the paper selection options (235)Check the image-adjustment settings (235)Optimize copy quality for text or pictures (236)Edge-to-edge copying (236)Improve scan image quality (236)Check the scanner glass for dirt and smudges (237)Check the resolution settings (238)Check the color settings (238)Check the image-adjustment settings (239)Optimize scan quality for text or pictures (239)Check the output-quality settings (240)Improve fax image quality (240)Check the scanner glass for dirt and smudges (240)Check the send-fax resolution settings (242)Check the image-adjustment settings (242)Optimize fax quality for text or pictures (242)Check the error-correction setting (243)xSend to a different fax machine (243)Check the sender's fax machine (243)Solve wired network problems (244)Introduction (244)Poor physical connection (244)The computer is unable to communicate with the printer (244)The printer is using incorrect link and duplex settings for the network (245)New software programs might be causing compatibility problems (245)The computer or workstation might be set up incorrectly (245)The printer is disabled, or other network settings are incorrect (245)Solve wireless network problems (245)Introduction (245)Wireless connectivity checklist (245)The printer does not print after the wireless configuration completes (246)The printer does not print, and the computer has a third-party firewall installed (246)The wireless connection does not work after moving the wireless router or printer (247)Cannot connect more computers to the wireless printer (247)The wireless printer loses communication when connected to a VPN (247)The network does not appear in the wireless networks list (247)The wireless network is not functioning (247)Reduce interference on a wireless network (248)Solve fax problems (248)Checklist for solving fax problems (248)What type of phone line are you using? (249)Are you using a surge-protection device? (249)Are you using a phone company voice-messaging service or an answering machine? (249)Does your phone line have a call-waiting feature? (249)Check fax accessory status (249)General fax problems (250)The fax failed to send (250)No fax address book button displays (250)Not able to locate the Fax settings in HP Web Jetadmin (250)The header is appended to the top of the page when the overlay option is enabled (251)A mix of names and numbers is in the recipients box (251)A one-page fax prints as two pages (251)A document stops in the document feeder in the middle of faxing (251)The volume for sounds coming from the fax accessory is too high or too low (251)Index (252)xiPrinter overview1Review the location of features on the printer, the physical and technical specifications of the printer,and where to locate setup information.For video assistance, see /videos/LaserJet.The following information is correct at the time of publication. For current information, see /support/colorljM776MFP.For more information:HP's all-inclusive help for the printer includes the following information:●Install and configure●Learn and use●Solve problems●Download software and firmware updates●Join support forums●Find warranty and regulatory informationWarning iconsUse caution if you see a warning icon on your HP printer, as indicated in the icon definitions.●Caution: Electric shock●Caution: Hot surface●Caution: Keep body parts away from moving partsPrinter overview1●Caution: Sharp edge in close proximity●WarningPotential shock hazardReview this important safety information.●Read and understand these safety statements to avoid an electrical shock hazard.●Always follow basic safety precautions when using this product to reduce risk of injury from fire orelectric shock.●Read and understand all instructions in the user guide.●Observe all warnings and instructions marked on the product.●Use only a grounded electrical outlet when connecting the product to a power source. If you do notknow whether the outlet is grounded, check with a qualified electrician.●Do not touch the contacts on any of the sockets on the product. Replace damaged cordsimmediately.●Unplug this product from wall outlets before cleaning.●Do not install or use this product near water or when you are wet.●Install the product securely on a stable surface.●Install the product in a protected location where no one can step on or trip over the power cord.Printer viewsIdentify certain parts of the printer and the control panel.Printer front viewLocate features on the front of the printer.2Chapter 1 Printer overviewPrinter front view3Printer back viewLocate features on the back of the printer.Interface portsLocate the interface ports on the printer formatter. 4Chapter 1 Printer overviewControl-panel viewThe control panel provides access to the printer features and indicates the current status of the printer.NOTE:Tilt the control panel for easier viewing.The Home screen provides access to the printer features and indicates the current status of the printer.screens.NOTE:The features that appear on the Home screen can vary, depending on the printerconfiguration.Control-panel view5Figure 1-1Control-panel view?i 12:42 PM6Chapter 1 Printer overviewHow to use the touchscreen control panelPerform the following actions to use the printer touchscreen control panel.T ouchT ouch an item on the screen to select that item or open that menu. Also, when scrolling T ouch the Settings icon to open the Settings app.How to use the touchscreen control panel 7SwipeT ouch the screen and then move your finger horizontally to scroll the screen sideways.Swipe until the Settings app displays.Printer specificationsDetermine the specifications for your printer model.IMPORTANT:The following specifications are correct at the time of publication, but they are subject to change. For current information, see /support/colorljM776MFP .T echnical specificationsReview the printer technical specifications.Product numbers for each model ●M776dn - #T3U55A ●Flow M776z - #3WT91A ●Flow M776zs - #T3U56APaper handling specificationsPaper handling features Tray 1 (100-sheet capacity)Included Included Included Tray 2 (550-sheet capacity)IncludedIncludedIncluded8Chapter 1 Printer overview550-sheet paper trayOptional Included Not included NOTE:The M776dn models accept one optional550-sheet tray.Optional Included Included2 x 550-sheet paper tray and standNOTE:The M776dn models accept one optional550-sheet tray that may be installed on top of thestand.Optional Not included Not included2,700-sheet high-capacity input (HCI) paper trayand standNOTE:The M776dn models accept one optional550-sheet tray that may be installed on top of theoptional printer stand.Printer standOptional Not included Not included NOTE:The M776dn models accept one optional550-sheet tray that may be installed on top of theoptional printer stand.Inner finisher accessory Not included Not included Included Automatic duplex printing Included IncludedIncludedIncluded Included Included10/100/1000 Ethernet LAN connection with IPv4and IPv6Hi-Speed USB 2.0Included Included IncludedIncluded Included IncludedEasy-access USB port for printing from a USBflash drive or upgrading the firmwareIncluded Included Included Hardware Integration Pocket for connectingaccessory and third-party devicesHP Internal USB Ports Optional Optional OptionalOptional Optional OptionalHP Jetdirect 2900nw Print Server accessory forWi-Fi connectivity and an additional Ethernet portOptional IncludedIncludedHP Jetdirect 3100w accessory for Wi-Fi, BLE, NFC,and proximity badge readingPrints 45 pages per minute (ppm) on Letter-sizepaper and 46 ppm on A4-size paperEasy-access USB printing for printing from a USBIncluded Included Includedflash driveT echnical specifications9Included Included Included Store jobs in the printer memory to print later orprint privatelyScans 100 pages per minute (ppm) on A4 andIncluded Included Included letter-size paper one-sidedIncluded Included Included 200-page document feeder with dual-headscanning for single-pass duplex copying andscanningNot included Included Included HP EveryPage T echnologies including ultrasonicmulti-feed detectionNot included Included Included Embedded optical character recognition (OCR)provides the ability to convert printed pages intotext that can be edited or searched using acomputerIncluded Included Included SMART Label feature provides paper-edgedetection for automatic page croppingIncluded Included Included Automatic page orientation for pages that haveat least 100 characters of textIncluded Automatic tone adjustment sets contrast,Included Includedbrightness, and background removal for eachpageIncluded Included Includedfolders on a networkIncludedSend documents to SharePoint®Included IncludedIncluded Included Included NOTE:Memory reported on the configurationpage will change from 2.5 GB to 3 GB with theoptional 1 GB SODIMM installed.Mass storage: 500 GB hard disk drive Included Included IncludedSecurity: HP Trusted Platform Module (TPM)Included Included IncludedT ouchscreen control panel Included Included IncludedRetractable keyboard Not included Included Included 10Chapter 1 Printer overviewFax Optional Included IncludedSupported operating systemsUse the following information to ensure printer compatibility with your computer operating system.Linux: For information and print drivers for Linux, go to /go/linuxprinting.UNIX: For information and print drivers for UNIX®, go to /go/unixmodelscripts.The following information applies to the printer-specific Windows HP PCL 6 print drivers, HP print driversfor macOS, and to the software installer.Windows: Download HP Easy Start from /LaserJet to install the HP print driver. Or, go tothe printer-support website for this printer: /support/colorljM776MFP to download the printdriver or the software installer to install the HP print driver.macOS: Mac computers are supported with this printer. Download HP Easy Start either from /LaserJet or from the Printer Support page, and then use HP Easy Start to install the HP print driver.1.Go to /LaserJet.2.Follow the steps provided to download the printer software.Windows 7, 32-bit and 64-bit The “HP PCL 6” printer-specific print driver is installed for this operating system aspart of the software installation.Windows 8.1, 32-bit and 64-bit The “HP PCL-6” V4 printer-specific print driver is installed for this operating systemas part of the software installation.Windows 10, 32-bit and 64-bit The “HP PCL-6” V4 printer-specific print driver is installed for this operating systemas part of the software installation.Windows Server 2008 R2, SP 1, 64-bit The PCL 6 printer-specific print driver is available for download from the printer-support website. Download the driver, and then use the Microsoft Add Printer tool toinstall it.Windows Server 2012, 64-bit The PCL 6 printer-specific print driver is available for download from the printer-support website. Download the driver, and then use the Microsoft Add Printer tool toinstall it.Windows Server 2012 R2, 64-bit The PCL 6 printer-specific print driver is available for download from the printer-support website. Download the driver, and then use the Microsoft Add Printer tool toinstall it.Windows Server 2016, 64-bit The PCL 6 printer-specific print driver is available for download from the printer-support website. Download the driver, and then use the Microsoft Add Printer tool toinstall it.Windows Server 2019, 64-bit The PCL 6 printer-specific print driver is available for download from the printer-support website. Download the driver, and then use the Microsoft Add Printer tool toinstall it.Supported operating systems11macOS 10.13 High Sierra, macOS 10.14 MojaveDownload HP Easy Start from /LaserJet , and then use it to install the print driver.NOTE:Supported operating systems can change.NOTE:For a current list of supported operating systems and HP’s all-inclusive help for the printer, go to /support/colorljM776MFP .NOTE:For details on client and server operating systems and for HP UPD driver support for this printer, go to /go/upd . Under Additional information , click Specifications .●Internet connection●Dedicated USB 1.1 or 2.0 connection or a network connection● 2 GB of available hard-disk space ●1 GB RAM (32-bit) or2 GB RAM (64-bit)●Internet connection●Dedicated USB 1.1 or 2.0 connection or a network connection●1.5 GB of available hard-disk spaceNOTE:The Windows software installer installs the HP Smart Device Agent Base service. The file size is less than 100 kb. Its only function is to check for printers connected via USB hourly. No data is collected. If a USB printer is found, it then tries to locate a JetAdvantage Management Connector (JAMc) instance on the network. If a JAMc is found, the HP Smart Device Agent Base is securelyupgraded to a full Smart Device Agent from JAMc, which will then allow printed pages to be accounted for in a Managed Print Services (MPS) account. The driver-only web packs downloaded from for the printer and installed through the Add Printer wizard do not install this service.T o uninstall the service, open the Control Panel , select Programs or Programs and Features , and then select Add/Remove Programs or Uninstall a Programto remove the service. The file name isHPSmartDeviceAgentBase.Mobile printing solutionsHP offers multiple mobile printing solutions to enable easy printing to an HP printer from a laptop, tablet, smartphone, or other mobile device.T o see the full list and to determine the best choice, go to /go/MobilePrinting .NOTE:Update the printer firmware to ensure all mobile printing capabilities are supported.●Wi-Fi Direct (wireless models only, with HP Jetdirect 3100w BLE/NFC/Wireless accessory installed)●HP ePrint via email (Requires HP Web Services to be enabled and the printer to be registered with HP Connected)●HP Smart app ●Google Cloud Print12Chapter 1 Printer overview。
FIELD SERVICE SOFTWARE ASSISTANCE BROCHURE O S - 8Prepared by:Rick MooreINTRODUCTIONThis is a reference document for Field Service use in diagnosing system problems. The information presented in this chapter is extracted from various OS-8 reference manuals and literature which are listed in the appendix.It is not intended to be a course on OS-8 or a substitute for standard DEC software manuals. However, the topics presented here are some of the more commonly used features and some of the commands that should help you to better serve your customer through an enhanced knowledge of his OS-8 operating system.It is strongly recommended that you be extremely careful using your customer's software as a little knowledge is a dangerous thing. If you do work on a customer's files, be sure to use copies of his system only. Tell him what you feel the problem is and let him take any corrective action.OS-8 consists of an executive and library of system programs which reside on a mass storage device called a "system device". This could be a disk, dectape or floppy unit. The executive supervises the overall program processing and consists of the following four major components:- Keyboard monitor ( KMON )- Command Decoder ( CD )- Device Handlers- User Service Routine ( USR )The Keyboard Monitor provides communications between the user and the OS-8 Executive. The root segment of the monitor resides perminently in memory and occupies 256 words. Commands from the console terminal are interperted and whenever needed, the CommandDecoder, USR, KMON, and ODT are brought into memory in a series of overlays while the contents of the memory used is swapped out to the system scratch area. In this manner it is possible to run a baseline system in only 8K words of memory.The commands that are executed directly from the KMON are:ASsign - assigns a new, user defined device name to a perminant device.DEASsign - restores perminant device namesGET - loads core image files into memory from a deviceSTART - starts execution of a program already in memoryRUn - loads core image (.SV) files into memory from a device and starts executionR - loads core image (.SV) files into memory from the SYStem device and starts executionSAve - creates core image programs on a deviceODt - invokes the Octal Debugging TechniqueDAte - sets / prints the system dateThe Command Decoder is called when a system program needs additional information from the operator concerning files to be acted upon or devices to be used. You are in the Command Decoder whenever the prompt character "*" is issued.Understanding the Command Decoder line format is probably the most important step to successful usage of the OS-8 Operating System. It is as follows:*OUTDEV:OUTFIL.EX<INDEV:INFILE.EX,INFILE.EX/SW1/SW2=N... to translate ...OUTDEV: - the output device (SYS:,RKB0:,DTA0:,LPT:) OUTFIL.EX - the name of the output file and it's extension INDEV: - the input deviceINFILE.EX - the name of the input file and the extensionSW? - an optional switch ... differint for each program=N - numerical value (ie: in direct =N# of columns)There may be 0-3 input files, 0-9 output files, 0-3 option switches, depending on the requirements of the individual program. In several programs, it is not necessary to specify every detail ...certain programs have default values for devices, switches, etc. The only way to be sure of this is to know the program you are working with.Again, the value of learning the command decoder format cannot be overstressed ... the same basic format is used thoughout DEC software. (ie: RT-11, RSTS, etc.)Device Handlers are subroutines which handle data transfer to and from peripheral devices. Device handlers for the particular hardware system you are using are activated by the program "BUILD". These subroutines are then available to all OS-8 programs. It is through the use of device handlers that a sort of "device independence" is acheived.The USR is a collection of subroutines that perform operations of opening and closing files, loading device handlers, program chaining, and calling the CD. The USR provides these functions not only for the system itself, but for any programs running under OS-8.INITIALIZING OS-8Mount the OS-8 System on the appropriate hardware and execute the bootstrap. This may be as simple as pressing a "BOOT" button or require a toggle-in program from the operator's console. Various bootstraps are listed in the appendix.After the bootstrap is executed, the monitor will print a dot "." on the console. At this point, KMON is active and the system is ready to accept one of the monitor level commands listed on page 1.CCLThe Concise Command Language ia a means of providing an easy to understand "English-like" command interface between the operator and the monitor. It translates the commands, chains to the appropriate system programs, passes arguments and filespecs, and starts execution. Any CCL command can be simulated by typing the necessary monitor and CD responses manually. For example:.DIR is equivalent to .R DIRECT*TTY:<SYS:/E=2.COPY RXA1:<RKA0: is equivalent to .R FOTP*RXA1:*.*<RKA0:*.*The use of CCL is optional in OS-8; manditory in OS-78. This is because you cannot normally access monitor level commands in OS-78. There is a way around this; by typing ".SET SYS OS8" it is possible to turn on this attribute.GETTING DIRECTORIES.DIR - types directory of system device on the console.DIR-L - prints directory of system device on line printer.DIR RKB0:-L - prints directory of device RKB0 on line printerSETThe program "SET.SV" is called by the ".SET" CCL command and can be used to modify some of the attributes of the various device handlers. Some useful ones are:.SET SYS OS8 - allows monitor level commands in OS-78..SET SYS OS78 - normal OS-78 mode; CCL commands only.SET SYS INIT - causes the command file "INIT.CM" to be executed upon boot-up..SET SYS INIT [cmd] - causes the command [cmd] to be executed upon boot-up..SET SYS NO INIT - negates the above.SET LPT LA78 - allows PDP-8A (M8316) parrallel port as controller for LA-180 (device code=0570).SET LPT LA8A - restores LPT to normal 0660 device code.SET TTY SCOPE - causes a rubout to actually erase the character from the screen..SET TTY NO SCOPE - causes the rubout to echo the character/slash combination for hardcopy terminals..SET TTY PAUSE - causes the terminal to pause every "height" lines for ease of reading..SET TTY HEIGHT 24 - tells the handler the screen has 24 lines.SET TTY WIDTH 80 - allows 80 character width to VT52 screen*** WARNING ***The command ".SET SYS NO INIT" must be given before attempting to use the "BUILD" program, since execution of the "INIT.CM" file or any CCL command will cause the previous contents of memory and the system scratch area to be altered. Also, since the process of executing this file may entail several overlays, the usefullness of it on any media except disks or diskettes is questionable.OS-8 FILESThere are three standard types of OS-8 file formats used by OS-8 and associated system programs; ASCII, Binary and Core Image (.SV).ASCII and Binary files are packed three characters to every two 12 bit words as follows:-----------------------------------------------| | |Word 1 | Char. 3 | Character 1 || (bits 0-3) | (bits 0-7) || | |-----------------------------------------------| | |Word 2 | Char. 3 | Character 2 || (bits (4-7) | (bits 0-7) || | |-----------------------------------------------0 - 3 4 - 11In Binary files, the binary data must be preceded by one or more frames of leader/trailer code (ASCII 200 code). The first character must be either 100-177 octal (origin setting for absolute binary files), 240-257 octal (a COMMON declaration frame for relocatable binary files), or 300 octal which is an origin setting. The end of binary data is one or more frames of leader trailer code. ASCII and Binary files are terminated by a CTRL/Z code (ACSII 232).A Core Image file consists of a header followed by the actual core image. The header is called the Core Control Block (CCB). It consists of first 128 words of the first block (256 words) of the file. The CCB is a table of information that contains the length of the file, the program's starting address, and the Job Status Word (JSW). The CCB for a program at the time it is loaded into core is always saved in words 200-377 (octal) of block 37 on the system's scratch area. It is placed there by the GET or RUN operations or by the ABSLDR program. This information is then used when performing a SAVE without arguments.FILE NAMES and EXTENSIONSFiles are referenced symbolically by a name of up to six characters followed, optionally, by a period and a two character extension. The extension to a file name is generally used to type the files according to their formats or defaults to particular system programs.In most cases, the user will want to conform to the standard file name extensions established for OS-8. If the extension is not specified for a files, some system programs will append an assumed extension by default. This default extension can be overidden by stating the extension in the CD line explicedly.The most common OS-8 standard default extensions are:SV - core image programsBN - binary programsPA - PAL8 assembly language sourcesBA - BASIC source filesBI - BATCH control filesSY - system headsDG - diagnostic program **BX - DECX8 exercisor modules **X8 - customised DECX8 system exercisor **** refers to psuedo standards imposed by the New England District PDP-8 Diagnostic System.FILE MANIPULATIONSFiles can be transfered between OS-8 devices by using either "FOTP.SV" (File Oriented Transfer Program) or "PIP.SV" (Peripheral Interchange Program) or the CCL commands that call them. These commands and their uses are:COPy - copies files from one device to anotherDELete - deletes files from a deviceLIst - lists an ASCII files on the LPTREName - changes the name of a file in the directory SQuish - eliminates all empty and deleted files on a deviceTYpe - types an ASCII file on the console terminal ZERO - zeroes the directory of a device, deleting all existing files on that deviceFor example, to copy file FOO.PA from RXA1: to RKB0:.COPY RKB0:<RXA1:FOO.PA( note the similiarity between this and the format ofthe Command Decoder Line on page 2.)To copy an entire device using PIP and FOTP type:.R PIP first transfer the system heads *RKA1:<RKA0:/Y/Z*RKB1:<RKB0:/Y/Z.R FOTP now all the files*RKA1:<RKA0:*.* using wildcard transfers*RKB1:<RKB0:*.*For floppies, it is easier since the program "RXCOPY.SV" or the CCL command ".DUPLicate" will copy the entire device.SYSTEM HEADSThe "/Y" option of PIP.SV can be used for system head manipulation. A system head is 50 blocks long and is located at the beginning of the system device. It contains the system bootstrap, the monitor, and all its overlays. System heads are sometimes stored as files on a device for ease of use with the extension ".SY".To move a system head:.R PIP*RKA1:<RKA0:/Yif "RKA1" is a virgin device, a skeleton directory must be created, so type:*RKA1:<RKA0:/Y/ZUSING WILDCARDSCertain commands allow wildcards in the file name specifications. These commands are COPY, DELETE, DIRECT, LIST, RENAME, and TYPE.Wildcards allow a filename or extension to be totally replaced with an asterisk (*) or partially repalced with a question mark (?). Wildcards are particularly useful when doing multiple file transfers. This is illustrated in the following examples:TEST1.* - all files with the name TEST1 and any extension*.BN - all files with a BN extension and any name*.* - all files with any name and any extensionTEST2.B? - all files with the name TEST2 and any extension starting with a BTES??.PA - all files with a PA extension and any name from 3 to 5 characters beginning with TESthe asterisk amd question mark can be used together.* - all files with any extension and with file names of three characters or lessBUILDThe program "BUILD.SV" is the system generation program for OS-8 which allows the user to:1. Maintain and update device handlers in an existing OS-8 system.2. Add device handlers to a new or existing system.3. Change the system characteristics to reflect hardware modifications.Device handlers are supplied with the OS-8 system and are in the format of Binary (.BN) files.To run the Build program, type:.RUN SYS BUILDNOTE:It is important that the user specify the "RUN" command, rather than the "R" command when loading BUILD into core. This will allow the CCB to be stored on the system scratch area for use with the SAVE command!Also, since the system scratch area is used at times when the "INIT.CM" file is executed, it is imperative that the command ".SET SYS NO INIT" be given prior to beginning the BUILD process. After the program is SAVEd, ".SET SYS INIT" can be reinstituted.This matter cannot be overemphisized ... SAving "BUILD" without these precautions will appear to work and the system will boot without failure, however, the next time BUILD is run, it will not work! This is because the proper CCB parameters will have been lost.RUNNING BUILDChanging a system's parameters can be a complicated procedure with too many variables to be explained in this document. For complete instructions on BUILD, see the appropriated OS-8 Manual.- DEVICESSome of the devices that are available in the OS-8 system are:SYS: - the system deviceDSK: - the default device (usually SYS:)RKA0: - "A" side of RK05 drive #0RKB0: - "B" side of RK05 drive #0TTY: - console teletypeLPT: - line printerLQP: - letter quality printer (Diablo)PTR: - paper tape readerPTP: - paper tape punchDTA0: - dectape drive #0DTA1: - dectape drive #1RXA0: - RX01 floppy drive #0RXA1: - RX01 floppy drive #1RL0A: - RL01 area "A" drive 0RL0B: - RL01 area "B" drive 0RL0C: - RL01 area "C" drive 0FUTILThe OS-8 File UTILity program was orginally developed by Jim Crapuchettes of Menlo Computer Associate,Inc., Menlo Park, CA. It is now included within the OS-8 Extension Kit after release V3D, and is also contained on the New England District PDP-8 Diagnostic System after release V8.04.FUTIL enables a user to examine and modify the contents of mass storage devices, including the SYStem device, and is therefore as dangerous as it is useful! It can be used to recover damaged files, repair destroyed directories, patch programs on the mass storage device, and check for bad blocks on the device.It is this last feature that is particularly useful to us in Field Service as we often have questions concerning the validity of a customer's disk or diskette. The following procedure can verify this:.R FUTILSET DEVICE RXA0 floppy drive 0 is the target deviceSCAN 0-755 scans the 756 (octal) blocks on the deviceEXIT returns to OS-8If any bad blocks were encountered, the program would reportBAD BLOCK nnn where "nnn" was faultyThe cause of this could be due to either a bad CRC character due to blown data (can be recopied) or blown format (device must be reformatted). In the case of floppies, the later condition is fatal as they cannot be reformatted.FUTIL can be used to scan devices regardless of their program contents, for example, OS-8, COS 300, or any customer written file structure can be scanned, as long as standard sector format is used.to SCAN an RK05 Disk:.R FUTILSET DEVICE RKA0 or RKA1, etc.SCAN 0-6257 there are 6260 blocksSET DEVICE RKB0 now the other sideSCAN 0-6257EXIT.NOTE:At this time, a note on the "sides" of a disk is in order. The RK05 is broken up into two (2) logical devices called "RKA0" and "RKB0" as the RL01 is broken into three (3) devices called "RL0A", RL0B", and "RL0C" by OS-8. This is because of the system's inability to address the entire disk and the limited number of entries the directories can hold.These "sides" are actually not physical sides (who ever heard of a three sided RL01), but refer (on the RK05) to the first 6260 sectors as "RKA0" and the remaining 6260 sectors as "RKB0". A look at the hardware shows that after the sector counter overflows (at 16 sectors) the heads switch to the other surface. After the sector counter overflows again, the heads switch back and then the cylinder address increments. Thus RKA0 is on the outer tracks of the disk and RKB0 is on the inner tracks.。
Study on Japanese Culture in Tora-san Series FilmsQin Wang1,21School of Foreign Languages,Yan’an University2Graduate School of Integrated Science and Art,University of East Asia, Yamaguchi,JapanAbstract: The comedy directed by Mr. Yoji Yamada, named The Story of Tora-san, is well-known in Japan, and even has a certain influence in Asia and even the world. The reason why the play was so successful was not only rely on it’s humor, but also it’s complete differences from Hollywood, showing the unique social conflicts and family conflicts in Japan, reflecting the unique local customs and the most real Japanese traditional culture, which makes the Japanese audience laugh and has a long-term gratitude and triggers their deep thinking. A study on the Tora-san Series Films is equal to a study of the most real Japanese traditional culture.Keywords: Tora-san; Film; Japanese culture; ResearchDOI:10.47297/ wsprolaadWSP2634-786504.202203011. IntroductionI n 1990, the Japanese went to the Berlin International Film Festival with confidence with the “Tora-san series films”. But to the surprise of the Japanese, it was rejected soon. The reason was that foreigners could not understand why Japanese people were so obsessed to watch “Tora-san”. Although “Tora-san” was not as popular abroad as it was in Japan, and even some foreigners cannot understand why “Tora-san” was so popular in the hearts of Japanese people, even though it was thwarted at the Berlin International Film Festival. But for Japanese people, even if Tora-san dis not receive recognition and understanding abroad, it would not affect Japanese people’s love for Tora-san and their obsession with Tora-san in the slightest. Because in the hearts of Japanese people, “Tora-san” is actually the traditional culture of Japanese people, which shows how unshakable the status of “Tora-san” is in the minds of Japanese people.About the Author: Qin Wang was born in Yan’an, Shaanxi Province, China, in 1984. She is a Associate Professor in the School of Foreign Languages, Yan’an University, China. She as a PhD candidate now, studying in University of East Asia , Japan. Research direction is Japanese culture.Funded project: This research results has been financed by the Horizontal Project of Shaanxi Star Vision Film Co. LTD 《A research on Japanese culture in “ Tora-san “ film series》(YD2019036).Research on Literary and Art Development Vol.3 No.1 20222. Background of The Story of Tora-san(1) The Great Cultural Revolution in JapanThe first episode of “The Story of Tora-san” was broadcast in 1969 and the last episode was broadcast in 1995, and the whole series lasted 26 years. The film was recorded until the death of Mr. Kiyoshi Watami, who played the lead role of Tora-san. From 1960 to 1979, during the Great Cultural Revolution in China, Japan also saw the Cultural Revolution, which was a cultural revolution that celebrated Mao Zedong’s thought and opposed American imperialism. It was a cultural revolutionary movement that celebrated Mao Zedong’s thought and opposed U.S. imperialism, which was also the “left-wing movement” in Japan. At the beginning of the Cultural Revolution in Japan, students’ movements were the mainstream, and in the 1960s, when the student movement reached a low ebb, the Japanese Red Army took over the banner, and the suppressed Red Army was a microcosm of the society at that time. For many Japanese youth at that time, U.S. imperialism was the symbol of evil and China was the symbol of revolution, and Chairman Mao was the common mentor of all revolutionary youth in the world. It was not until 1979, when China entered the period of reform and opening up, that the external spiritual support for the left-wing youth in Japan was cut off, and the left-wing movements in Japan gradually fell into a low point and eventually disappeared historically.(2) Japan’s “Bubble Economy”From late 1980s to the early 1990s in Japan, Japan experienced the second rapid economic development period after 1960s, which was due to the support of a lot of opportunities, and hit the highest peak of economic development in 1989. But there is no corresponding industrial support, so it looks like bubble, and is later called “bubble economy”. Because of this, in the early 1990s, after the collapse of the bubble, Japanese economy collapsed, which led to a large number of Japanese people losing their jobs and the living conditions of the ordinary people. The ten years after that, the Japanese economy was in a depression of almost 0 growth.3. Japanese Culture in The Story of Tora-sanAlthough there are 48 films in the series of “Tora-san” so far, there are only three core themes running through the whole play: homesickness, travel and love.(1) HomesicknessTora-san appeared on the screen as a typical ordinary civilian with no rights, no status, and no money. The main character Tora-san ran away from home because of an quarrel with his family. He traveled away all the year round, and met all kinds of Japanese women with them. Although the ending was always helpless to break up without any result. However, Tora-san still left his hometown again with regret and set foot in the distance again. His love was undoubtedly a failure, but no matter how frustrated, there were still kind and lovely sisters and family waiting for him to go home in his hometown, tokuga District, Tokyo. He was stubborn and not sophisticated, but his family was always sincerely, tolerant and sincerely looking forward to his return. The little nest upstairs wasResearch on Literary and Art Development Vol.3 No.1 2022 always reserved for him, because it was his home, only because they were his family. However, Tora-san would still think about his sister Cherry Blossom’s happiness after marriage, whether Manman was still worrying about going to school, whether the family were in good health, and so on. Home and family are always spiritual harbors to depend on. Wasn’t it the “home” that Japanese audiences were looking for when the rapid industrialization of Japan led to the loss of family feeling and spiritual home? Perhaps it is because they touch the deepest heart of Japanese audiences that Japanese audiences find some kind of comfort and compensation in the Story of Tora-san.(2) TravelTora-san is a prodigal wandering around, but he still holds hope for life when he runs into a wall outside. Just as the Japanese like traveling, Japan is a big tourist country. Every year in the golden season of traveling, a large number of Japanese people travel around the country. They have a stunning variety of study trips, sightseeing trips and so on. Japan’s modern tourism is even a special scenic spot. The meaning of travel for most Japanese is not simply to watch or play, but to get the insight of life from what they see and think. It can also be said that travel is life. Life is a journey, even if travel is adventure, exploration, experience and growth. This is the lifestyle imprinted on the bones of Japanese people from ancient times to today, just like the wandering surfers. In this way, we can understand why the Japanese love Tora-san so much - because he yearned for freedom, and in these days of wandering around, he silently wrote about his happiness, his troubles and pains, which constitutes the chapter of his life. Although plain, this is a unique and irreplaceable life for him!(3) LoveThe story of the series always ends with his helpless breakup with his beloved woman and regrets that his love as a bottom-level people failed, which is also one of the core of the play, but at the same time, it also reflects the unique Japanese philosophical aesthetics, that is, the “Romantic Esthetics of Lost Love”, which also touches the hearts of many Japanese audiences. Just like Sakuragi Hanamichi in the later “SLAM DUNK”, it is constantly shaken, but still believe in love and still face life positively. This kind of spirit had a unique charm for the lower-level employees living under the strict hierarchy system in Japan at that time, which was one of the important reasons why Tora-san had an unshakable position in Japanese audience.Tora-san’s series of movies reflect the social changes at that time and the changes of general people’s minds through the way of comedy and the story plot. Mr. Yamada cleverly completed a totally different story in a similar scenario, and through the screen, expressed the mood of Japanese people in the social background at that time, so that the Japanese audience laughed, but also generated a yearning and resonance.4. ConclusionIn the last story of the series of movies, Tora-san and Lily met each other for a long time and worked together to achieve the happiness of a man. Looking at the lover’s eventual family, the lily could not help but shed tears. Tora-san raised his courage toResearch on Literary and Art Development Vol.3 No.1 2022embrace the lily, but did not step out after all. The story ends again with regret. If there is another episode, Tora-san might be able to have his long-cherished love, or abandon the lily as helplessly as the previous one, and then wander around on his own. However, the episode ends as usual. However, Tora-san seems to have touched his aspiring happy life even further than his usual story. This end makes the audience feel that the end of the film series is not a farewell, but a restart of his own life. This open-ended ending leaves space for Japanese audiences to reverberate. Everyone has different answers about what life will be like after watching Tora-san. Perhaps longing for future and happiness is exactly what Mr. Yamada wants to convey to audience from his series of works.References[1] Yanlong Yang. "The Spatial Construction and Value Orientation of Japanese CommonCinema in the Context of Globalization" [J]. Movie Literature, 2021 (10): 36-39.[2] Xiuli Lu. "A Brief Analysis of the View of Love in Japanese Movie “Hard for Men”"[J].Movie Literature, 2011 (14): 76-77.[3] Xiuli Lu. "Seeing Japanese Family Consciousness from Japanese Movies--Take the Movie“Hard for Men” as an Example"[J]. Movie Literature, 2010 (24): 36-37.。
pixel Patterns Euler perimeter (equivalent interac t alternative Syntax capabilities民主democracy 科学science Approach motor diagnosis applications确no-stationary 不了harmonic by means of FFT aturation or control interaction broken bars and shorted stator turns using winding operation o到induction motor 解voltage component.C axial flux and d-q current and voltage component. majority of them based on destructive effect Stator winding faults functions (IMF) of the signal being analyzed; thus, it is notfunctions (IMF) of the signal being analyzed; thus, it is notphase-to-phase phase-to-ground phase否Armature faults tolerant in the presence of any single point I. INTRODUCTION intrinsic mode functions Index Terms Decompositiondemonstrateanalysis V alidate表明instantaneous frequencies 成本a collection of intrinsic mode functions analyzedStator conditionsanalyzes studypresents paper Abstract Wigner Ville DistributionDecompositionDetectionPermanent Magnet Synchronous MotorWignerDecomposition Ville Distribution failures in synchronous machines. demonstrateExperimental laboratory results validate instantaneous frequencies resulting Hilbert–Huang transform collection intrinsic mode Stator Current simulationmeans of speed transients circuit include either saturation or control interactions. From yearsfailures for Permanent Magnet Synchronous Motor analyzes Wigner Ville Distribution means oEmpirical Mode Decomposition Short Circuit Fault Short Circuit itCircuit Fault Detection in PMSMC Sequencer axial flux and d-q current and voltage component. Inter-integrated circuit moduleperipheralIntegrated Emulation synchronous serial I/OversionPlus Segregates Peripheral Framessegregatesdecoupled from increasing CPU clock speeds timing of peripheralsis fed into VBvalidfree running up counter maskedinterrupt linesblockBranch to SCI, skip ADC calibrationpresents a unified memory linker.execute code or for data variables. The partitioningprocessor Memory BusMultiplexes Frame V ersions Migration ninterference. icritical code locationsprogrammable strobe timingmultiplexes enables glueless interface Strobe programmableExternally modifiedExtending Asynchronous Stack on C28x devices, are mapped to both program and data space. Hence,Embedded Mapped flash/OTP Pipelining V alidate Strobe uniqueversioninterconnect.ArchitectureFetches Simultaneous data1-wait Random min Paged FLASH Programmable Programmed via Sectors configuration*spurious Certain memory ranges are EALLOW protected against sp restricted tPeripheralFrame Espeed transients nhanced capture input/output 2 tie conversionceramic bypass capacitorPositive Outpunce Medium Output.External Current Bias Resistor. Low Reference (executionDevice high-impedance stated for TI. Must be left unconnected. (I/O)Reserved fEmulatoEmulator adequate protection.internal pullup internal pulldown d Controller Area NetworkMultichannel Buffered Serial Port (McBSP)/SPI32-bit Capture inputs or auxiliary PWM outputsrespectivelyabbreviateddemanding control applications.Disable Individual Peripheral ClocksEmulation FeaturesJTAG Boundary Scan SupportProgrammableInternal or External ReferenceChannel Input MultiplexerUp to 6 Event Capture InpPWM OQuadrature Encoder InterfacesHRPWMUp to 6 HRPWM Outputs With 150 ps MEPResolutionPrevents Firmware Reverse EngineeringBlockOscillator–Dynamic PLL RatioSci pci capture modules失落Release note RTX Runtime Development KitEvaluationV ersion expires evaluation starvation exception. Issues That Have Been Resolved In RTX 7.0 execute real-time applications in the releasereleaseadministrator privileges. versionslog logout ofthe domainActive Directory, multiprocessor (MP) systems two process processorUpdate the “Emergency Recovery” disk for the system (i Computer node (click on the plus sign) to show its leaf. Computer nodeHardware>Device Manager HAL type. rebootedX Samples directory hear a steady 1 KHz tone for 15 seconds along with a histogramof the systems response time measurements. purchase order is processedRTX environment along with providing networking support to the RTX Peripherals hihg-resolution modules network core dual mac interface chip oscillator expansion fir reverse 复制I am always on you side 横波斯湾纵波pertain inertial magnitude vibration vibrate Amplitude expenditure quantify calibrate analogous constraint intelligible extraneous amplification modify sector portion ancestry barest precisseness intermediate usable pulse tolerances detail filter transducer spindle contact springmass elastic orifice buoyant venturi vane propeller opt contactor ical photoelectric cell lenses optical filters amplify attenuating telemeter integrate fiber resistance displacement index electron column 圆锥taper 正alphanumeric readout ink light beam photographic magnetic compute strain deed selectivein integration differentiating telemeter s ek comprehensible senses intend recognitione exception indicating oscilloscope oscillograph light beam odometer voltmeter cylinder piston stem scale division bears against compress applied indicate velocity voltage addition attenuatean anatrlog respect thereby velocity linear adynamic response available optimum component importan bond gage manufacture applied apply unit structure gage install ambiguous substituted predetermined period ic nonrepetitive transient aperiodi transient response wavefront static productivity significant management discipline detection prediction profitability inspectoion boundary catastrophic compensation Dictate unmanend rugged intrusive viscosity load consistency force Turbidity density optical refraction nucleonic mass overall monitors discrete frepuency monitor 连续的确shock pulse monitor signal averaging capacitive sensorinherent properties possess stiffness oscillates equilibrium bandwidth peak amplitude bar digits arrow minor source refresh ezplot subscript indices propertypertinent subject numerical upon represent significance interplay variable systematic manipulation deviations loosely procedures terminologies theory statisticalhypotheses theoretical calculate prime universe finite diameter 半径radius radii semidiameter marbles represent nebulous infinite yield specimen sample coal unit analytical velocity vacuo evaluated apparatus cumulative multisample intent estimate indicated applied express inasmuch resort thereof interchangeably instrument specification amount bias systematic alibration recure resolution precisionsensitivity illegitimate blunder computational chaotic insidious repetitive recure susceptible statistical propagation probability predictn predetermined dispersed termed deviation insertion coefficientjustify readout warranted take into account orifice sharpedged assumed incremental variations unrun ignite soak taper ball b dramatically rotating manifest degradation spectrum earing harmonics duration assume sharpedged微米micrometer micron 分米decimeter毫米coefficient nominal diverter synchronization distribution 厘米centimeter spall overroll stress short duration Domain rectification rectificate simulate harmonic resultant series summation sumtossed rigorous favorable heads and tails preclude 排除万难premise 前提likelihook dice histogram manipulate applicable disperse 分散curve premise dashsolid curve standard deviation arithmetic mean 方差epuation equation normal datum date date 操作entity 空虚vacuity 支持sustain bear abet aegis auspice 擦brush rub wipe scrape 资源exploit essence exploition polarization ultimately productive force develop configue abort palette captain label updates relevance autostemming off morniting monitoring abstract program standard deviationssu bset cluster attribute time stamp variant chart graph error outweigh essent issueial iillusion dramatically extraordinary contribute to contentment adopt meaningful phenomenon employees acknowledge laborious consequently funds fees tuition soar ing dramatically authors interpreting basis engineer comparison calibrate inch ancestry wavelength krypton radio strip transduction electricalintegrate ion differentiating telemetering comprehensible recognition indicating odometer voltmeters tire automobile cylinder piston resisting stem division bear compresses applied summing voltage accelerometer galvanometer type amplifieramplifie r resistance bios bond pdf PDF eq ordinate uatio n 横坐标abscissa 寝室bedchamber 宿舍dorm dormitory hostel lodging house symmetrical abide bia s error offset duplicateghost kid video badges porn demo embed blockset neural 铣刀sensor fusion fuck disastrous solitary absurd kindergartens nursery unfavorable devote supervise far outweigh profound raptures mere mention artisticand forever sculptures galleries rarities maintain essential essence infrastructure priority advocate invest sum inrural emigrants peasants sociologists scarce worsened loneliness obstacle alien dormitory library homelessness smoothly ashion merely 党员干部团员duplicate analyze application interpolation dimension data socket phase specify propertites binary byte scan refnum fret bound imaginary command state usage blunder sophisticated susceptible simplest doubted legitimate stem calibration synchronized fabrication vector described angel 键盘columns. Network layer bias competitive overall monitor discrete frequency monitor shock pulse kurtosis cepstrum analysis inductive sn capacitive electrically conducting filtersoptical oil turbidity magnetic plugs centrifuges particle counter ferrography wear debris acoustic debris strain access blower boiler brazing cou peak value sd plingkurtosis standard deviation skewness phase geometric mean arithmetic mean crest factorroot mean square handler polling adspacer config phase peak vector RMS transpose pertain operation performance develop angular fashion voltage mutual levels of significance thorough evaluation realize derive illegitimate source determination essential precision error competitive truncated valid 本科隐私intimacy 专业检测技术the technology of measurement and instrument仪器仪表vt九月份获得奖情况陇望蜀奖学金奖励制度成绩一等三好学生优秀excellent student 机器人优胜w 奖奖励比赛robot 竞赛活动t物理学competition of physics 软件包熟练master 轻松简单software of office 流利流畅娴熟熟悉familiarly 担任委员assume the commissioner of propagandize of class 宣传计量实习期practice of measurement The 2nd. Heavy Machinery Manufacturing Factory/Plant Practice of measurement inThe 2nd Heavy Machinery Manufacturing Factory in China 八月☐Aa电子工艺实习期technics of electron 实验室课程设计实习期Assume the commissioner of propagandize of class for one year and studying of☐担当担任make occupy act 宣传Ability to deal with personnel at all levels effectively. Ability to work independent1y, mature and resourceful.☐个人评价individual生产测试工程师production testing engineer 参加革命加入实验室友laboratory 困难重重师兄坚持原则优点缺点心理素质惊艳心态认真对待graveness 党员成绩斐然改进arrogance 源头确original 资源宠物form unit spuninst1)讲述DSP 的CPU,memory,program memory addressing,data memory addressin EVM 板,DSK 等原理图,完成DSP 、各控制信号管脚的连接、JTAG口的CCS supply Peripheral BusMemory Bus (Harvard Bus Architecture) . External Interface (XINTFExpansion (PIE) Block3.3 Register Map.Device Emulation Registers fpgaInterface JTAG test reset with internal pulldown. TRST, when driven high, gives the scan system control of the operations of the device. If this signal is not connected or driven low, the device operates in its functional mode, and the test reset signals are ignored.NOTE: TRST is an active high test pin and must be maintained low at all times during normal device operation. An external pulldown resistor is recommended on this pin. Thevalue of this resistor should be based on drive strength of the debugger pods applicable tothe design. A 2.2-k? resistor generally offers adequate protection. Since this isapplication-specific, it is recommended that each target board be validated for properoperation of the debugger and the application. (I, ↓){}Firmware Reverse Engineering Event Capture Inputs Serial Port Peripherals Multiplexed GPIO Pins With Input FilteringBoundary Scan SupportEmulation Featureunitauxiliary PWM QEPMultichannel Buffered Serial Port Serial Peripheral Interface (SPI)Serial PortTable 2-3 describes the signals. The GPIO function (shown in Italics) is the default at reset.alternate functions.indicated). All GPIO pins are I/O/Z and have an internal pullupenabled upon reset.,JTAGInternal Reference Positive Output.ceramic bypassADCREFP 56 P5 P5capa citor of 2.2 μF to analog ground. (O)Memory blocks are not to scale.Peripheral FrameAssumes。
专利名称:Optical Information Recorder (ReflectionHolographic Memory Device)发明人:Osamu Matoba,Yuji Yokohama申请号:US11794727申请日:20051107公开号:US20090122376A1公开日:20090514专利内容由知识产权出版社提供专利附图:摘要:A holographic memory in which a disk recording medium having a mechanism for operating an optical pick-up system is used, signal and reference light beams are so coaxially directed as to be opposed, the polarization planes of the signal with each otheron the disk recording medium and which is well compatible with existing techniques and high in cost performance when manufactured as a product. The reflection holographic memory comprises random-phase modulation multiplex recording means disposed in the light guide of the signal and/or reference light beams and a spatial-shift multiplex recording means so as to increase the recording capacity. Signals are recorded in the thickness direction of the disk so as to further increase the recoding capacity. That is, by combining random-phase modulation multiplex recording and spatial-shift multiplex recording, the recording density is enhanced tens to hundreds times to improve the recording capacity of multilayer type by using a micro recording area of the reflection hologram. Simultaneously, the encryption effect can be produced by the random-phase modulation multiplex recording.申请人:Osamu Matoba,Yuji Yokohama地址:Hyogo JP,Hyogo JP国籍:JP,JP更多信息请下载全文后查看。
[由于io设备错误]由于IO设备错误篇一: 由于IO设备错误一、不使用机箱上的前置USB口或者是USB延长线,尽量使用主板上的USB接口也就是在机箱后面的USB接口。
原因是:机箱上的前置USB口和USB延长线都是采用USB 1.1结构,而现在的移动硬盘或者U盘都是USB 2.0接口,故在USB 1.1集线器插座上使用则会不定时出错。
即使有些前置USB接口是2.0标准,也可能因为重复接线的原因导致电阻升高,使得USB 2.0接口供电不足。
现在有的电脑有好几个usb接口,一般机箱前面两个,后面四个,其中后面四个中的两个在鼠标键盘接口附近,两个在网卡附近,当我使用前置两个USB接口时移动硬盘没有反应,用在鼠标键盘接口附近的USB接口可以读出来但在拷贝一些文件的时候提示“I/O设备错误,无法运行此项请求“。
最后用在网卡附近的USB接口就一点问题没有。
二、对移动硬盘进行磁盘碎片整理。
原因:移动硬盘经常进行复制、剪贴操作,会在磁道中留下很多的垃圾文件碎片。
也可以使用windows自带的磁盘校检修复的dos 命令chkdsk/f;/p;/v如果长时间没有整理磁盘,偶尔心血来潮要整理得话,推荐先拿它校检一次。
语法:chkdsk [drive:][/p][/r][/f]推荐参数/f,例如:F:\>chkdsk /f 回车三、如果把数据线插到机箱后面电脑还是不能正常地读取数据,还有以下几种可能:引用1:主板比较老,USB驱动程序没装。
3:如果在别人的机子上能用,在自己的机子上却用不了。
这种情况=>硬盘应该没有问题,升级主版驱动试试。
4:如果还是不行的话,看看主板的usb接口是否有问题,试着插另外的usb设备试一下。
5:如果是mp3的话请按照以下方法试一下:取出电池---按住开机键,与电脑连接---打开升级工具,选择机型---下载固件---”固件升级”--”确定”---进行升级ing...;升级完成后就可以了。
ADMe Avamar Data Migration Enabler Compatibility and Interoperability MatrixOctober 1, 2020Overview of ADMeADMe–Avamar Data Migration Enabler is a utility providing automation around the need for extending the retention of Avamar backup data by migrating their content to a different storage medium such as tape, disk or cloud based storage. Backup data is re-hydrated to a staging disk area using a structured top level folder layout for organizational purposes and from there can be automatically backed up to a tape application using a standard file system backup. When staged to cloud enabled storage files are automatically uploaded to it potentially eliminating the need for a tape application. The migration process entails three distinct phases, a client/backup selection phase to identify the backups to act on, a rehydration or staging phase followed by an optional tape backup or cloud synchronization phase. These phases are automated end-to-end using ADMe Job policies eliminating the need for any manual intervention or localized scripting. Each phase can also be performed interactively or by job policies as required.ADMe Interoperability Matrix1.Only FS backups are supported from a Networker dedup node (deprecated)2.Best effort support for recovery from existing AER tapes1.Rehydrate mode recovers Avamar backup data to its original file format with no dependency on Avamar in order to utilize the file data2.Archive Mode recovers Avamar backup data to a streamed PAX file format similar to that used by AER but has a 100% dependency on the need for an Avamar GSAN to import it back to in order to be able to recover its contents3.OS versions chosen must be valid and supported by both Avamar and the tape application being used1.The use of non EMC tape applications are the responsibility of the user2.Avamar used as a target destination when migrating from a GSAN only or GSAN + DD system to a GSAN/DD Griffin system3.Backup Exec 2012 and previous versions are supported4.Full end-to-end automation only available with a Windows staging serverworker version should be latest supported by Dell EMC1.Cloud enabler tools other than EMC Geo-Drive are the responsibility of the user2.Amazon support is the responsibility of the user3.Support for any cloud provider is feasible assuming its object storage can be presented via iSCSI, CIFS or NFS4.Archive mode should be used as a last resort due to its dependency on the need for Avamar GSAN storage to which it mustbe imported to convert it to a usable format5.All future support of Cloud Array has been deprecated as the CA product is discontinuedNotes:1.NDMP for Isilon requires Avamar version 7.1 or higher2.Oracle has a dependency requiring it to be re-ingested to an Avamar system when recovering it from tape3.SAP with Oracle will be treated as flat files and may require user action to ensure appropriate backups are being selected.Due to backup selection challenges, consider SAP support as a best effort only.rge NDMP backups recovered in Archive mode may result in a PAX file size exceeding the max file size permitted by the staging server OS and filesystem5.NDMP redirected recoveries to Windows or Linux FS does not preserve NAS specific ACLS or Extended File Attributes for Windows6.NDMP Support for NetApp is discontinued due to its poor rehydration performance from Avamar and other technical challenges7. A Celera/VNX using its Space reduced Backup feature, must have this feature disabled by setting it to 0 and a new Lvl-0 backup performed afterwards. Refer to ETA 495263 available from ADMe home page8.SharePoint support is limited as it performs a directed recovery of the complete backup content to an out of place directory which may not be useful in all situations。
CD PLAYER WITH AM/FM RADIOAND BLUETOOTH® AUDIO PLAYERUSER MANUALThank you for purchasing a Buddee Audio Player.For optimum performance and safety, read these instructions carefully before connecting, operating or adjusting this product. Refer to this manual for future reference.INTRODUCTIONThis compact and stylish Audio Player from Buddee is the total solution for all your music needs. It has an easy to navigate and user-friendly interface that will have you instantly pumping out your favorite tunes. With CD, AM/FM radio and Bluetooth® connectivity you can play audio in whichever format you want.FEATURES . • AM/FM radio • Bluetooth® audio player • LCD display • Audio input jackPACKAGE CONTENTSBefore attempting to use this unit, please check thepackaging and make sure the following items are contained in the shipping carton: • Main unit (CD Player with radio) • Power cable• User manualDEVICE CONTROLS 1. FM antenna 2. Handle3. CD door open/close4. Repeat/Program5. Previous6. Stop7. Play/Pause 8. Next 9. BT./CD10. LCD display 11. Speaker12. Tunning knob 13. Band switch 14. Earphone jack 15. Audio input jack 16. Function switch 17. Volume knob 18. AC socketTECHNICAL SPECIFICATIONSPower supply: AC 220V-240V 50Hz 10W Battery: 9V (UM-2X6)Output power: 1W+1WCD playback frequency: 31.5Hz-16kHz ± 3dB CD signal/noise ratio: ≥50dB CD sampling frequency: 44.1kHFrequency range: FM 88-108MHz, AM 530-1710KHz Speaker impedance: 8Ω +8Ω (ohm) Dimensions: 212(L) + 200(W) + 155(H)mmWeight: Approx. 1.18KG (battery not included)POWER SUPPLYRequires 6 x C batteries (not included).1. Insert power cord plug into a standard wall outlet and switch the power supply switch to”ON”.Caution: using other types of power cords may cause fire or electric shock2. Install batteries in battery compartment. C batteries only, ensure the batteries are installed with the correct polarity (- to -, + to +). Batteries should be replaced when:broadcast sound changes to noise, when the sound becomes diminished and distorted, or when the CD player is incapable of reading a disk.CAUTION: Do not mix different types of batteries or use old batteries and new batteries together. Never charge, heat or break the battery. When taking out a used battery, if it is found that the battery has leaked, the battery should be taken out and the leaked liquid should be thoroughly wiped out.© Buddee Gear 2016. All rights reserved. The Bluetooth® word mark and logos are registered trademarks owned by Bluetooth SIG, Inc. and any use of such marks by Buddee Gear Pty Ltd. is under license. Other trademarks and trade names are those of their respective owners.Made in ChinaOPERATION OF CD/AUX FUNCTION1. Slide the function switch to the “BT/CD/AUX” Position.2. Press the CD door to open, insert the CD disk (shiny side down) and close the CD door. The player will play the first song and the LCD will display the track number.3. Adjust the volume with the volume knob.4. Press the PLAY/PAUSE button to temporarily pause playback, press again to resume playback.5. Press the STOP button to stop playback.6. To change tracks at any time press PREV or NEXT button.7. To set repeat mode, press the REP./PROG button repeatedly to choose the desired mode: repeat current track, repeat whole disc, shuffle, off.8. To program a sequence, when play is stopped, press the REP./PROG button to enter program status (The LCD display will flash as picture below) and press PREV or NEXT button to choose the track. After the track is chosen, press theREP./PROG button. You can program as many as 10 tracks.Press the PLAY/PAUSE button to play the music in programmed sequence. To cancel the program, press the STOP button.LISTENING TO THE RADIO1. Slide the function switch to RADIO.2. Slide the band switch to the desired band.3. Rotate the volume knob to adjust the volume4. Rotate the tuning knob to set the desired frequency. TO ENHANCE RADIO RECEPTION FM: Extend the antennaAM: Adjust the direction of the player BLUETOOTH® FUNCTION1. Slide the function switch to BT/CD/AUX.2. In the Bluetooth® setting on your device select“BD-BMBOX-1” to pair. The Bluetooth® indicator will light up once your device is paired. (If your device prompts you to enter password, please enter 0000.)3. After your device has been paired, you can play music from your device through the Audio Player.4. After your device has been paired hold STOP button to stop searching for new Bluetooth® device.5. To disconnect Bluetooth® during music playback, hold PLAY/PAUSE button.6. To answer a phone call during music playback, press PLAY/PAUSE button once, and to reject, press twice.7. To use the hands free function during music playback, pressPLAY/PAUSE button once.IMPORTANT SAFETY INFORMATIONAPPLICATION ENVIRONMENT1. Please do not use the player near water, wet places or any heat sources.2. Please place the product on a flat surface with sufficient ventilation. A space greater 10cm at the top and the back, and greater than 5cm at both sides should be left for the product. The ventilation openings should not be covered with items such as newspaper, table cloth, curtain, etc.3. Do not place on a bed, wool blanket or in a bookcase, cupboard or hermetic sealing frame or any other similar objects or places.POWER SUPPLY1. When pulling out the power cord, pull the plug. Do not pull from the power cord.2. Do not touch the AC power supply plug when your hand is wet, since it may cause an electric shock.3. The power cord should be placed in a fixed position to avoid twisting or being stepped on. Do not use an AC power socket with thin and elongated electrical wires. A heavy load for the socket may cause fire or an electrical shock accident.4. When the main plug or appliance coupler is used as the disconnect device, the disconnect device shall remain readily operable. To completely disconnect from the power input, the main plug of the CD player should be disconnected from the device.5. When the product is not in use for a long time, pull out the AC power supply plug from the power supply socket or take out the battery.AUX INThis player can be used as amplifier for your audio device. Plug your audio device output jack into the audio input jack, then slide the function switch to AUX in position and the player will play your input audio signal.EARPHONE JACKFor private listening, insert your headphones into the 3.5mm headphone jack. The sound will be automatically directed to you headphones instead of the speaker.Caution: Listening at high power for a long time could damage your hearing.DISPOSALElectrical goods should not be disposed of with household waste. Check local regulations for disposal of electrical goods and to find your nearest recycling facility.This Compact disk player is classified as a“CLASS 1 LASER PRODUCT”.DANGER: Invisible laser radiation when opened and interlock is broken. Avoid direct exposure to beam.TROUBLESHOOTING GUIDEPROBLEM POSSIBLE CAUSES SOLUTION The player does not workNotavailable to playNo soundThe sound stopsThe power supply plug has not been inserted to the socket properly.The power switch is not turned on.The disk is not placed properly.The disk is not compatible.CD door not closed.Operation method is incorrect.The volume is too low.The disk or the laser lens is dirty.The disk is scratched or damaged.Insert the power supply plug in the socket securely.Push the power switch to “ON”.Place the disk properly, with the printed surface facing upwards.Insert a compatible disc.Close the CD door.Ensure you are following the instructions correctly.Increase the volume.Clean the disk or laser lens.Change for an undamaged disk.。
Personal Background:Michael Dell Dell Computer 3-year return:4,200% Age:45 CEO since:1984个人资料:迈克尔·戴尔戴尔计算机3年内的利润:4200%年龄:45岁成为首席执行官的年份:1984年。
It's often said in business that some event—— good or bad——happened on a particular chief execu tive's “watch.” It's a nautical expression suggesting that the enterprise is a ship and that this particular chief executive took the helm at some moment mid-journey,just in time to land a great white whale or hit an iceberg. Good or bad,that course and the event that followed were already set before the CEO entered the pilothouse. The idea is that CEOs come and go,but great companies go on forever.商界经常称某些事件——无论是好的或者糟糕的——常常发生在某个特别的首席执行官的值班时间。
这是海员的说法,说明企业就是一艘船,而这位特别的首席长官在航行途中某段时间掌着舵,恰好此时捕得一条巨大的白鲸或者撞上了冰山。
好的或者糟糕的路线以及紧随其后的结果在CEO进入操舵室前就已成定局了。
这种观念就是说CEO们变来变去,但是好的公司会一直在运转。
The V2401/2402 Series embedded computers are based on the Intel Atom N270 x86 processor, and feature 4 RS-232/422/485 serial ports, 8 RS-232 serial ports, dual Gigabit LAN ports, 6 USB 2.0 hosts, and a CompactFlash socket. The V2401 computer provides VGA, DVI, and LVDS outputs, and the V2402 computer provides both VGA and DVI outputs, making them particularly well-suited for industrial applications such as SCADA and factory automation.The V2401 and V2402 come with 4 RS-232/422/485 serial ports, and the V2401 has an additional 8 RS-232 ports, making them ideal for connecting a wide range of serial devices, and the dual 10/100/1000 Mbps Ethernet ports offer a reliable solution for network redundancy, Front View promising continuous operation for data communication and management. As an added convenience, the V2401/2402 computers have 4 DIs, and 4 DOs for connecting digital input/output devices. In addition, the CompactFlash and USB sockets provide the V2401/2402 computers with the reliability needed for industrial applications that require data buffering and storage expansion.Pre-installed with Linux, Windows CE 6.0, or Windows Embedded Standard 2009, the V2401/2402 Series provides programmers with a friendly environment for developing sophisticated, bug-free application software at a low cost.In addition, the V2402 series also offers -40 to 70°C wide temperature models for harsh environments.V2401/2402 SeriesOverviewAppearancePower/Storage 10/100/1000 Mbps(V2401)Rear ViewHardware SpecificationsComputerCPU: Intel Atom N270 1.6 GHz processorOS (pre-installed): Linux, Windows CE 6.0 or Windows Embedded Standard 2009System Chipset: Intel 945GSE + ICH7-MBIOS: 8 Mbit Flash BIOS, SPI type, ACPI function supportedFSB: 400/533 MHzSystem Memory: 2 GB capacity, 1 GB pre-installed: 1 x 2 GBDDR2-533 200 pin SO-DIMM SDRAM slotUSB: USB 2.0 compliant hosts x 6, type A connector, supports system boot upStorageBuilt-in: 2 GB onboard industrial DOM to store OSStorage Expansion: CompactFlash socket for CF card expansion, supporting CF Type-I/II socket with DMA modeHDD Support: 1 SATA-II connector for HDD expansionOther PeripheralsKB/MS: 1 PS/2 interface supporting standard PS/2 keyboard and mouse through Y-type cableAudio: HD audio, with line-in and line-out interfaceDisplayGraphics Controller: Intel Gen 2.5 Integrated Graphics Engine, 250 MHz core render clock and 200 MHz core display clock at 1.05-V core voltage VGA Interface: DB15 female connectorLVDS Interface: Onboard HIROSE DF13-40DP-1.25 V connector (V2401 only)DVI Interface: DVI-connector (chrontel CH7307 SDVO to DVI transmitter)Ethernet InterfaceLAN: 2 auto-sensing 10/100/1000 Mbps ports (RJ45)Serial InterfaceSerial Standards:• V2401/2402: 4 RS-232/422/485 ports*, software selectable (DB9 male connector)• V2401 only: 8 RS-232 ports (68-pin VHDC connector)*COM1’s pin 9 signal can be set by jumper as N/C (default), +5 V, or +12 V ESD Protection: 4 kV for all signalsSerial Communication ParametersData Bits: 5, 6, 7, 8Stop Bits: 1, 1.5, 2Parity: None, Even, Odd, Space, MarkFlow Control: RTS/CTS, XON/XOFF, ADDC® (automatic data direction control) for RS-485Baudrate: 50 bps to 921.6 kbps (non-standard baudrates supported; see user’s manual for details)Serial LEDs RS-232/422/485RS-232 Serial Port x 8 DI x 4Software SpecificationsSerial SignalsRS-232: TxD, RxD, DTR, DSR, RTS, CTS, DCD, GND RS-422: TxD+, TxD-, RxD+, RxD-, GND RS-485-4w: TxD+, TxD-, RxD+, RxD-, GND RS-485-2w: Data+, Data-, GNDDigital InputInput Channels: 4, source type Input Voltage: 0 to 30 VDC at 25 Hz Digital Input Levels for Dry Contacts: • Logic level 0: Close to GND • Logic level 1: OpenDigital Input Levels for Wet Contacts: • Logic level 0: +3 V max.• Logic level 1: +10 V to +30 V (Source to DI)Isolation: 3 kV opticalDigital OutputOutput Channels: 4, sink typeOutput Current: Max. 200 mA per channelOn-state Voltage: 24 VDC nominal, open collector to 30 VDC Connector Type: 10-pin screw terminal block (4 DI points, 4 DO points, DI Source, GND)Isolation: 3 kV optical isolationLEDsSystem: Power, StorageLAN: 100M/Link x 2, 1000M/Link x 2 (on connector)Switches and ButtonsPower Switch: on/off (front panel)Reset Button: For warm reboot (rear panel)Physical CharacteristicsHousing: Aluminum Weight:• V2401: 2.1 kg • V2402: 2 kg Dimensions:Without ears: 250 x 57 x 152 mm (9.84 x 2.24 x 5.98 in)With ears: 275 x 63 x 152 mm (10.83 x 2.48 x 5.98 in)Mounting: DIN rail, wall, VESAEnvironmental LimitsOperating Temperature:• Standard models: -10 to 60°C (14 to 140°F) • Wide temp. models : -40 to 70°C (-40 to 158°F)Storage Temperature: -40 to 85°C (-40 to 185°F)Ambient Relative Humidity: 5 to 95% (non-condensing)Anti-vibration: 5 g rms @ IEC-68-2-34, random wave, 5-500 Hz, 1 hr/axisAnti-shock: 50 g @ IEC-68-2-27, half sine wave, 11 msPower RequirementsInput Voltage: 9 to 36 VDC (3-pin terminal block for V+, V-, SG)Power Consumption: 26 W (without LVDS output) 2.9 A @ 9 VDC 1.08 A @ 24 VDC 720 mA @ 36 VDCStandards and CertificationsSafety: UL 508, UL 60950-1, CSA C22.2 No. 60950-1-07, EN 60950-1, CCC (GB9254, GB17625.1)EMC: EN 55022 Class A, EN 61000-3-2 Class D, EN 61000-3-3, EN 55024, FCC Part 15 Subpart B Class A Wheeled Vehicles: e-Mark (e4)Green Product: RoHS, CRoHS, WEEEReliabilityAutomatic Reboot Trigger: Built-in WDT (watchdog timer) supporting 1-255 level time interval system reset, software programmable MTBF (mean time between failures): V2401: 238,762 hrs V2402: 228,172 hrsWarrantyWarranty Period: 3 yearsDetails: See /warrantyLinuxOS: Linux 2.6.26, Debian Lenny 5.0File System: EXT2Internet Protocol Suite: TCP, UDP, IPv4, SNMPv1/v2c/v3, ICMP, ARP, HTTP, CHAP, PAP, SSH 1.0/2.0, SSL, DHCP, NTP, NFS, Telnet, FTP, TFTP, PPP, PPPoEInternet Security: OpenVPN, iptables firewallWeb Server (Apache): Allows you to create and manage web sites; supports PHP and XMLTerminal Server (SSH): Provides secure encrypted communications between two un-trusted hosts over an insecure networkDial-up Networking: PPP Daemon for Linux that allows Unix machines to connect to the Internet through dialup lines, using the PPP protocol, as a PPP server or client. Works with ‘chat’, ‘dip’, and ‘diald’, among (many) others. Supports IP, TCP, UDP, and (for Linux) IPX (Novell).File Server: Enables remote clients to access files and other resources over the networkWatchdog: Features a hardware function to trigger system reset in a user specified time interval (Moxa API provided)Application Development Software:• Moxa API Library (Watchdog timer, Moxa serial I/O control, Moxa DI/DO API)• GNU C/C++ compiler • GNU C library • PerlWindows XP EmbeddedOS: Windows Embedded Standard 2009 SP3File System: NTFSInternet Protocol Suite: DHCP, DNS, FTP, HTTP, SNTP, NTP, Telnet, SMTP, SNMPv2, TCP, UDP, IPv4, ICMP, IGMP, IPsec, TAPI, ICS, PPP, CHAP, EAP, PPPoE, PPTP, NetBIOSWeb Server (IIS): Allows users to create and manage websitesSilverlight 2.0: A free runtime that powers rich application experiences and delivers high quality, interactive video across multiple platforms and browsers, using the .NET frameworkRemote Registry Service: Enables remote users to modify registry settings on this computerRemote Desktop: The Terminal Server Remote Desktop component provides remote access for the desktop of a computer running Terminal ServicesWatchdog: Features a hardware function to trigger system reset in a user specified time interval (Moxa API provided)Enhanced Writer Filter: Redirect disk write operations to volatile (RAM) or non-volatile (disk) storageFile Based Write Filter: The File Based Write Filter (FBWF) component redirects all write requests directed at protected volumes to the overlay cache, which records and displays the changes while preserving the protected status of the target volume.Application Development Software: • Moxa API Library• Microsoft .Net Framework 3.5 with SP1• Active Directory Service Interface (ADSI) Core • Active Template Library (ATL), 2.0 • Common Control Libraries • Common File Dialogs• Direct3D, DirectPlay, DirectShow, and Direct show filtersOrdering InformationAvailable ModelsV2401-CE: x86 ready-to-run embedded computer with Intel Atom N270, VGA, LVDS, DVI, Audio, 2 LANs, 12 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF, WinCE 6.0V2401-XPE: x86 ready-to-run embedded computer with Intel Atom N270, VGA, LVDS, DVI, Audio, 2 LANs, 12 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF, Windows Embedded Standard 2009V2401-LX: x86 ready-to-run embedded computer with Intel Atom N270, VGA, LVDS, DVI, Audio, 2 LANs, 12 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF, Linux 2.6V2402-CE: x86 ready-to-run embedded computer with Intel Atom N270, VGA, DVI, Audio, 2 LANs, 4 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF, WinCE 6.0V2402-XPE: x86 ready-to-run embedded computer with Intel Atom N270, VGA, DVI, Audio, 2 LANs, 4 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF, Windows Embedded Standard 2009, -10 to 60°C operating temperatureV2402-LX: x86 ready-to-run embedded computer with Intel Atom N270, VGA, DVI, Audio, 2 LANs, 4 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF, Linux 2.6, -10 to 60°C operating temperatureV2402-T-XPE: x86 ready-to-run embedded computer with Intel Atom N270, VGA, DVI, Audio, 2 LANs, 4 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF, Windows Embedded Standard 2009, -40 to 70°C operating temperatureV2402-T-LX: x86 ready-to-run embedded computer with Intel Atom N270, VGA, DVI, Audio, 2 LANs, 4 serial ports, 4 DIs, 4 DOs, 6 USB 2.0 ports, CF,Linux 2.6, -40 to 70°C operating temperatureOptional Accessories (can be purchased separately) CBL-M68M9x8-100: 8-port RS-232 cable with VHDC connector PWR-24250-DT-S1: Power adaptorPWC-C7US-2B-183: Power cord with 2-pin connector, USA plug PWC-C7EU-2B-183: Power cord with 2-pin connector, Euro plug PWC-C7UK-2B-183: Power cord with 2-pin connector, British plug PWC-C7AU-2B-183: Power cord with 2-pin connector, Australia plug PWC-C7CN-2B-183: Power cord with 2-pin connector, China plug FK-75125-01: Hard disk installation package (for SSD)DK-DC50131-01: DIN-Rail mounting kit Package Checklist• V2401 or V2402 embedded computer • Terminal block to power jack converter • PS2 to KB/MS Y-type cable• Wall mounting kit• Documentation and software CD or DVD • Quick installation guide (printed)• Warranty card• Mapi32 Libraries• Message Queuing (MSMQ) Core• Microsoft Visual C++ Run Time Libraries• Power Management dynamic-link library• RPC• Windows API, Script Engines, and WMIWindows Embedded CE 6.0OS: Windows Embedded CE 6.0 R3File System: FAT (for on-board flash)Internet Protocol Suite: TCP, UDP, IPv4, SNMPv2, ICMP, IGMP, ARP, HTTP, CHAP, PAP, SSL, DHCP, SNTP, SMTP, Telnet, FTP, PPPWeb Server (WinCE IIS): Supports ASP, ISAPI Secure Socket Layer (SSL 2/3) and Transport Layer Security (TLS/SSL 3.1) publickey-based protocols, and Web Administration ISAPI ExtensionsDial-up Networking: Supports RAS client API and PPP, Extensible Authentication Protocol (EAP), and RAS scriptingFile Server: Enables remote clients to access files and other resources over the networkWatchdog: Features a hardware function to trigger system reset in a user specified time interval. (Moxa API provided)Application Development Software:• Moxa WinCE 6.0 SDK• Moxa API Library• C Libraries and Run-times• Component Services (COM and DCOM)• Microsoft® .NET Compact Framework 2.0• XML, including DOM, XQL, XPATH, XSLT, SAX, SAX2• SOAP Toolkit Client• Winsock 2.2。
DA-820SeriesIntel®3rd Gen Core™CPU,IEC-61850,3U rackmount computer with PRP/HSR card supportFeatures and Benefits•IEC61850-3,IEEE1613,and IEC60255compliant for power substationautomation systems•Intel®Celeron™/Intel®Core™i3and i7CPU and QM77chipset•1CFast slot for the OS and4SATA III slots for storage expansion(supportsIntel®RST RAID0/1/5/10)•6USB2.0ports for high-speed peripherals•3PCIe x1slots and2PCI slots for expansion modules•1PCIe x16slot for an additional video card•Highly reliable design,supporting dual power and PRP/HSR technology(withPRP/HSR expansion module)•Onboard TPM module for enhanced cybersecurityCertificationsIntroductionThe DA-820Series is based on the Intel®Celeron™/Intel®Core™i3or i7CPU,and QM77chipset,which supports the standard x86OS and comes with2VGA ports,6USB ports,4Gigabit LAN ports,and23-in-1RS-232/422/485serial ports.The DA-820is equipped with a4SATA disk interface and supports RAID0/1/5/10functionality.The DA-820is specifically designed for substation applications that require precise time synchronization and adherence to the IEC61850-3standards.The flexible design makes the DA-820suitable for local SCADA,environmental monitoring,video surveillance,protocol conversion,and PRP/HSR redundancy applications.In addition,the cybersecurity functions make the DA-820an ideal solution for secure network communication applications.The DA-820complies with the IEC60255standard to enable the protection of electrical relays in a smart substation.IEC60255is one of the most widely used standards for testing relays and protection equipment,and compliance ensures that the DA-820will work reliably and seamlessly with IEDs(intelligent electronic devices)as a part of a robust substation automation system.The housing is a standard3U,19-inch wide,rack-mountable rugged enclosure.This robust,rack-mountable design provides the hardened protection needed for industrial environment applications.Smart Recovery FunctionThe DA-820’s Smart Recovery function makes it easy to troubleshoot system software errors on computers to minimize downtime.Engineers who are experts in a particular vertical market may not have enough computer domain knowledge to know how to fix operating system problems.Moxa Smart Recovery™is an automated BIOS-level recovery system tool that allows engineers to automatically trigger OS recovery to minimize downtime.Proactive Monitoring FunctionMoxa Proactive Monitoring is a small-footprint,resource-friendly,easy-to-use utility that allows users to track a number of system parameters. Users can view the current parameter values for these key parts by simply clicking on the icons corresponding to the parameters in the user er-defined key part indicators(KPIs)are used to monitor the computer’s key parts.Visible and/or audio alerts are triggered automatically via relay and SNMP traps when these KPIs exceed their preset threshold values,making it extremely convenient for operators to avoid system downtime by setting up predictive maintenance tasks well in advance.AppearanceFront View Rear ViewSpecificationsComputerCPU Intel®Celeron®Processor1047UE(2M cache,1.40GHz)Intel®Core™i3-3217UE Processor(3M cache,1.6GHz)Intel®Core™i7-3555LE Processor(4M cache,up to3.20GHz)Intel®Core™i7-3612QE Processor(6M cache,up to3.10GHz)System Chipset Mobile Intel®QM77Express ChipsetGraphics Controller Intel®HD Graphics4000(integrated)System Memory Slot SODIMM DDR3/DDR3L slot x2DRAM16GB max.capacity(204-pin SODIMM x2,each supporting unbuffered ECC DDR3memory at1333and1600MT/s and8GB maximum per module)Supported OS Windows7Pro for Embedded SystemsWindows Embedded Standard7(WS7P)64-bitLinux Debian7Note:OS available by CTOSStorage Slot 2.5-inch HDD/SSD slots x4CFast slot x1Computer InterfaceEthernet Ports Auto-sensing10/100/1000Mbps ports(RJ45connector)x4Serial Ports RS-232/422/485ports x2,software selectable(DB9male)USB2.0USB2.0hosts x6,type-A connectorsExpansion Slots PCIe x1slots x3PCIe x16slot x1PCI slots x2Video Input VGA x2,15-pin D-sub connector(female)LED IndicatorsSystem Power x1Storage x1Programmable x8LAN8per port(10/100/1000Mbps)Serial2per port(Tx,Rx)Serial InterfaceBaudrate50bps to115.2kbpsConnector DB9maleESD8kV(level4)Isolation2kVSerial Standards RS-232/422/485Surge2kVSerial SignalsRS-232TxD,RxD,RTS,CTS,DTR,DSR,DCD,GND RS-422Tx+,Tx-,Rx+,Rx-,GNDRS-485-2w Data+,Data-,GNDRS-485-4w Tx+,Tx-,Rx+,Rx-,GNDPower ParametersPower Button Reset button(front panel)ON/OFF(rear panel)Power Consumption60W(max.)Physical CharacteristicsHousing MetalDimensions(without ears)361x440x133mm(14.23x17.32x5.24in) Weight14,000g(31.11lb)Installation19-inch rack mountingEnvironmental LimitsOperating Temperature Standard Models:-40to60°C(-40to140°F)Wide Temp.Models:-40to75°C(-40to167°F) Storage Temperature(package included)-40to85°C(-40to185°F)Ambient Relative Humidity5to95%(non-condensing)Standards and CertificationsEMC EN61000-6-2/-6-4EMI CISPR32,FCC Part15B Class AEMS IEC61000-4-11DIPsIEC61000-4-2ESD:Contact:8kV;Air:15kVIEC61000-4-3RS:80MHz to1GHz:10V/mIEC61000-4-4EFT:Power:4kV;Signal:4kVIEC61000-4-5Surge:Power:4kV;Signal:4kVIEC61000-4-6CS:10VIEC61000-4-8:20A/mPower Substation IEC61850-3,IEEE1613Protection Relay IEC60255Safety EN60950-1,IEC60950-1,UL60950-1Shock IEC60068-2-27,IEC60870-2-2,IEC61850-3Edition1.0 DeclarationGreen Product RoHS,CRoHS,WEEEMTBFTime DA-820-C1-SP-HV-T:193,537hrsDA-820-C1-DP-HV-T:222,207hrsDA-820-C1-SP-LV-T:283,281hrsDA-820-C1-DP-LV-T:288,116hrsDA-820-C3-SP-HV-T:193,537hrsDA-820-C3-DP-HV-T:222,207hrsDA-820-C3-SP-LV-T:283,281hrsDA-820-C3-DP-LV-T:288,116hrsDA-820-C7-SP-HV-T:191,570hrsDA-820-C7-DP-HV-T:219,618hrsDA-820-C7-SP-LV-T:240,015hrsDA-820-C7-DP-LV-T:285,508hrsDA-820-C8-SP-HV:172,182hrsDA-820-C8-DP-HV:194,509hrsDA-820-C8-SP-LV:240,015hrsDA-820-C8-DP-LV:285,508hrsStandards Telcordia(Bellcore)Standard TR/SRWarrantyWarranty Period3yearsDetails See /warrantyPackage ContentsDevice1x DA-820Series computerInstallation Kit1x rack-mounting earDocumentation1x quick installation guide1x warranty cardNote This product requires additional modules(sold separately)to function. DimensionsOrdering InformationDA-820-C8-SP-HV i7-3612QE Single✓–-40to60°C DA-820-C8-DP-HV i7-3612QE Dual✓–-40to60°C DA-820-C8-SP-LV i7-3612QE Single–✓-40to60°C DA-820-C8-DP-LV i7-3612QE Dual–✓-40to60°C DA-820-C7-SP-HV i7-3555LE Single✓–-40to60°C DA-820-C7-SP-HV-T i7-3555LE Single✓–-40to75°C DA-820-C7-DP-HV i7-3555LE Dual✓–-40to60°C DA-820-C7-DP-HV-T i7-3555LE Dual✓–-40to75°C DA-820-C7-SP-LV-T i7-3555LE Single–✓-40to75°C DA-820-C7-DP-LV-T i7-3555LE Dual–✓-40to75°C DA-820-C3-SP-HV-T i3-3217UE Single✓–-40to75°C DA-820-C3-DP-HV-T i3-3217UE Dual✓–-40to75°C DA-820-C3-SP-LV-T i3-3217UE Single–✓-40to75°C DA-820-C3-DP-LV-T i3-3217UE Dual–✓-40to75°C DA-820-C1-SP-HV-T Celeron1047UE Single✓–-40to75°C DA-820-C1-DP-HV-T Celeron1047UE Dual✓–-40to75°C DA-820-C1-SP-LV-T Celeron1047UE Single–✓-40to75°C DA-820-C1-DP-LV-T Celeron1047UE Dual–✓-40to75°C Accessories(sold separately)Expansion ModulesDA-IRIG-B-S-02-T IRIG-B expansion module,PCI interface,1fiber IRIG-B in,1DB9M in/out,1DB9M outDA-IRIG-B-S-04-T IRIG-B expansion module,PCI interface,1fiber IRIG-B in,1DB9M in/out,3DB9M outDA-PRP-HSR2-port Gigabit Ethernet expansion module compliant with IEC62439-3protocol for DA-820Seriesindustrial computersDE-GX02-SFP-T2-port1000Mbps fiber card,SFP slot x2,PCIe interface(SFP module excluded)DE-FX02-SFP-T2-port100Mbps fiber card,SFP slot x2,PCIe interface(SFP module excluded)CablesCBL-RG58AUBNCMF9-150DB9female to BNC male cable for the DA-IRIG-B-S-02-T and DA-IRIG-B-S-04-T,1.5m ConnectorsMini DB9F-to-TB DB9female to terminal block connectorStorage KitsFAN-KIT-82001DA-820HDD/SSD kit with heat dissipation vent for heat dispatch and lock for securityFAN-KIT-82002DA-820HDD/SSD kit with heat dissipation vent for heat dispatch(lock not included)HDD-DOOR-LOCK-82001DA-820HDD/SSD kit with lock for securityUSB Dongle KitsUSB Dongle Kit Internal USB dongle kit installation packageThermal KitsDDR3-THERMAL-KIT-82001DDR3SDRAM thermal kit©Moxa Inc.All rights reserved.Updated Feb21,2020.This document and any portion thereof may not be reproduced or used in any manner whatsoever without the express written permission of Moxa Inc.Product specifications subject to change without notice.Visit our website for the most up-to-date product information.。
移动硬盘由于I/O设备错误,无法运行此项请求标签:移动硬盘硬盘320G的移动分了四个区硬盘最后一个无法打开其余的正常运行是否I/O地址冲突的原因?里面有重要的数据不格式化的情况下如何决绝这是因为你不正常关机或死机造成的这个原因建议磁盘修复2种方法:(随便哪一种都可以)1、打开我的电脑-在要修复的盘符上点鼠标右键-属性-工具-点开始检查-把自动修复文件系统错误打勾-确定-就可以了(如果出现对话框就点“是”最好每个盘都修复一下然后再重启就会自动修复刚才没修复过的盘(重启后不要按任何键否则就不会修复了)2、点开始-运行-输入 CHKDSK K:/f 回车按Y 让磁盘自动修复后就可以了,(最好每个盘都修复一下,最后修复C盘CHKDS K c:/f 如果当中提示重启才能修复按Y 在修复另外个盘符,然后再重启就会自动修复刚才没修复过的盘(重启后不要按任何键否则就不会修复了)1.将移动硬盘连到电脑上,在我的电脑中能看到移动硬盘的盘符G H I.2.点开始---所有程序--附件---进入DOS命令符模式;3. 输入"chkdsk g:/f"后回车,注意chkd sk后面加个空格.系统会自动检测并修复移动硬盘G分区的错误,其它H和I也是一样操作,只不过把g换成相应的h和i就可以了.你先用chk dsk命令试试,看能否解决问题.如果不行估计就是硬盘有坏道了,得用坏道修复工具.补充: 如果插上都看不到移动硬盘的盘符就没法进行了,你右键点我的电脑-属性-硬件-设备管理器-磁盘驱动器,看是否有移动硬盘的型号? 如果看不到,很有可能移动硬盘有问题.这个操作不是格式化,放心,问题一中的坏文件有可能会解决.不是一定的.如果有坏道,chkdsk 也没有办法的.如果数据重要就找51R ecove ry。
DatasheetFUJITSU Tablet STYLISTIC Q739Tablet Mobility Meets Notebook ProductivityThe FUJITSU Tablet STYLISTIC Q739 is a highly durable and secure 2–in-1 detachable tablet that meets the demands of today’s mobile professionals. Its 33.8 cm (13.3”) FHD anti-glare display with pen and touch support, and 8th generation Intel® Core™ i7 processor technology ensure excellent performance, even when you’re on the go.Tablet mobility and notebook productivity in one deviceAllows you to be productive even in unconventional working environments■ Highly durable 2 in 1 detachable with reinforced corners, powered by the latest 8th generationIntel® Core ™ processor■ Military Standard MIL-STD-810G compliant durability ■ Additional backlit keyboard dock with LAN port ■ Optional TPU cover for more robustnessConvenience at workEnjoy the viewing angle of a large screen even when you are mobile■ 33.8 cm (13.3”) Full HD anti-glare display and pen input with WACOM AES technology,supporting 4K pressure levels■ Pen garage with inductive charging functionalityLean and agileMore freedom to work from anywhere at anytime■ Weight starting at 789 g, the device offers you ultimate portabilityLong battery lifeAll-day battery life lets you be productive even when you are on the move ■ Up to 10 hours 40 mins of battery lifeSpecificationProcessor family Intel® Core™ i7-8665U Processor (Quad Cores, 8M Cache, 1.9 GHz, up to 4.80 GHz, Intel® vPro TM)Intel® Core™ i5-8365U Processor (Quad Cores, 6M Cache, 1.6 GHz, up to 4.10 GHz, Intel® vPro TM) Chipset Chipset is integrated with processorOperating system Windows 10 Pro. Fujitsu recommends Windows 10 Pro.1Windows 10 Home1Maximum RAM capacity Up to 16 GB LPDDR3-2133 (on board)Internal storage2SSD SATA, 128 GB / 256 GB, M.2SSD SATA, 128 GB / 256 GB / 512 GB, M.2, SED/OPAL2Display 33.8 cm (13.3”), Full HD, glare/ anti-glare display, 1,920 x 1,080 pixel, 700:1, 330 cd/m² Graphics3Intel® UHD Graphics 620LAN Intel® Ethernet Connection I219-LM (via cradle/ keyboard)WLAN Intel® Dual Band Wireless-AC 9560 802.11ac/a/b/g/n (2x2) and Bluetooth® 5.0Interfaces 1 DC-in1 Combo Audio/Microphone1 USB 3.1 Gen2 Type-C TM (with power delivery function)1 USB 3.1 Gen 11 USB 2.01 micro HDMI1 AES Pen garageExpansion slots 1 microSD (supports microSD, microSDHC, microSDXC)1 microSIM (available when WWAN installed)Keyboard docking (Optional accessory) US Keyboard w/backlit1 Ethernet RJ-45Cradle (Optional accessory) 1 DC-in3 USB 3.1 Gen 11 HDMI1 VGA1 Ethernet RJ-45 (10/100/1000)1 Kensington lock slot (lock to be purchased separately)Security Integrated Fingerprint sensor (Optional)Integrated Smartcard reader (Optional)Trusted Platform Module (TPM 2.0) (Optional)Fujitsu Workplace ProtectFujitsu AuthConductor TM Client BasicFujitsu BIOS/ Hard Disk password protectionKensington lock slot (lock to be purchased separately)Manageability Intel® AMT (depending on processer)WOL, WOM, PXE, WFM 2.0 Compliant DMIAdditional Software Waves MaxxAudio (audio enhancer)Fujitsu Bonus AppsFujitsu Battery UtilityFujitsu Function Key Lock UtilityFujitsu Function ManagerFujitsu LIFEBOOK Application PanelFujitsu Mic Mute UtilityFujitsu Mobility Center Extension UtilityFujitsu Pointing Device UtilityFujitsu System Extension UtilityMicrosoft Office TrialMcAfee Multi Access Internet Security TrialSierra Wireless Skylight (only available on preconfigured devices with WWAN)AC Adapter 19 V/ 65 W (3.42 A), 100 V – 240 V, 50 Hz – 60 Hz, 3-pin (grounded) stick typeBattery 3-cell, 38 Wh; Up to 10hrs 40mins5Quick Charge: Up to 80% charging in 1 hourDimension (W x D x H) 315 x 200.9 x 9.7 mmWeight Slate starts from 789 g, keyboard docking starts from 585 gWarranty 1 year warranty (depending on country); Warranty upgrades available, sold separately Compliance Product: STYLISTIC Q739Model: PQ13BEnvironmental Compliance RoHS; ENERGY STAR® 7.1; EPEAT® Bronze (dedicated regions)Recommended AccessoriesCradle Get better efficiency, flexibility and expandability with the STYLISTIC cradle. The cradle is the perfect dockingsolution for your STYLISTIC device, whether in the office or at home, it takes just a second to attach your device tothe cradle and get connected to peripherals such as an external display, keyboard and mouse. Your workplace issimple and tidy while you are ready to work with your Fujitsu device.Backlit Keyboard docking Enjoy the benefits of a physical back-lit keyboard dock connection which is more reliable and hassle free. With theattached keyboard dock you get the ability to prop the tablet up and fold it over the tablet’s screen to protec t it,especially when you are mobile.USB Type-C TM Port Replicator Flexibility, expandability, desktop replacement, investment protection3x USB 3.1 Gen 1, DisplayPort, VGA, HDMI, RJ-45AC Adapter LIFEBOOK Power your notebook at work, at home or on the road with a second power source. You can easily recharge yournotebook everywhere. Depending on your notebook you can choose from various AC Adapters ranging from a sticktype adapter to standard adapters, or even the innovative ECO AC Adapter.TPU Cover The protective bumper case kit is designed to prevent damages to your STYLISTIC Q739. Openings of the coverallow you to access all ports and buttons while the hand strap on the back of the case fives you a firm grip whileworking with your tablet outside the office.More informationIn addition to Fujitsu Tablet STYLISTIC Q739, Fujitsu provides a range of platform solutions. They combine reliable Fujitsu products with the best in services, know-how and worldwide partnerships.Fujitsu PortfolioBuild on industry standards, Fujitsu offers a full portfolio of IT hardware and software products, services, solutions and cloud offering, ranging from clients to datacenter solutions and includes the broad stack of Business Solutions, as well as the full stack of Cloud offering. This allows customers to leverage from alternative sourcing and delivery models to increase their business agility and to improve their IT operation’s reliability.Computing Products/global/products/computing/Software/software/To learn more about Fujitsu Tablet STYLISTIC Q739, please contact your Fujitsu sales representative, Fujitsu Business partner, or visit our website.All rights reserved, including intellectual property rights. Technical data subject to modifications and delivery subject to availability. Any liability that the data and illustrations are complete, actual or correct is excluded.Designations may be trademarks and/or copyrights of the respective manufacturer, the use of which by third parties for their own purposes may infringe the rights of such owner.For further information see /terms © 2019 Fujitsu Business Technologies Asia Pacific LimitedFujitsu Green Policy Innovation is our worldwide project for reducing burdens on the environment.Using our global know-how, we aim to contribute to the creation of a sustainable environment for future generations through IT.Please find further information at/global/about/environment/Technical data are subject to modification and delivery subject to availability. Any liability that the data and illustrations are complete, actual or correct is excluded. Designations may be trademarks and/or copyrights of the respective manufacturer, the use of which by third parties for their own purposes may infringe the rights of such owner.HONG KONGFujitsu Business Technologies Asia Pacific Ltd. Tel: (852) 3910-8228Email:***********************.com /pcSINGAPOREFujitsu Asia Pte Ltd. Tel: (65) 6710-5403Email:***************.com /pcCHINAFujitsu (China) Holdings Co., Ltd. – PC China Division Tel:(86*************Email:*************************.com /pcINDONESIAPT Fujitsu Indonesia Tel: (62) 21-570-9330Email:*********************.com /pcPHILIPPINESFujitsu Philippines, Inc. Tel: (63) 2-841-8488Email:***************.com /pcMALAYSIAFujitsu (Malaysia) Sdn. Bhd Tel: (60) 3-8230-4188Email:*********************.com /pcTAIWANFujitsu Taiwan Ltd.Tel: (886) 02-2311-2255Email:*******************.com /pcTHAILANDFujitsu (Thailand) Co., Ltd. Tel: (66) 0-2302-1500 Email:***************.com /pcVIETNAMFujitsu Vietnam Limited (Hanoi) Tel: (84) 4-2220-3113Email:****************.com /pcNote: For countries not listed above, please contact our Hong Kong office.Specification disclaimersNot all features are available in all editions or versions of Windows. Systems may require upgraded and/or separately purchased hardware, drivers, software or BIOS update to take full advantage of Windows functionality. Windows 10 is automatically updated, which is always enabled. ISP fees may apply and additional requirements may apply over time for updates. GB = 1 billion bytes. TB = 1 trillion bytes, when referring to hard disk drive capacity. Accessible capacity may vary, also depending on used software. Up to 20 GB of HDD space is reserved for system recovery. Shared memory depending on main memory size and operating system. WWAN module is optional and requires separately purchased service contract. Check with service provider for coverage and availability in your area. Connection speeds will vary due to location, environment, network conditions, and other factors. Battery runtime information is based on worldwide acknowledged BAPCo® MobileMark® 2014 (office productivity). Refer to for additional details. The BAPCo® MobileMark® Benchmark provides results that enable direct product comparisons between manufacturers. It does not guarantee any specific battery runtime which actually can be lower and may vary depending on product model, configuration, application and power management settings. The battery capacity decreases slightly with every re-charge and over its lifetime.FUJITSU shall not be liable for technical or editorial errors or omissions contained herein. Ultrabook, Celeron, Celeron Inside, Core Inside, Intel, Intel Logo, Intel Atom, Intel Atom Inside, Intel Core, Intel Inside, Intel Inside Logo, Intel vPro, Itanium, Itanium Inside, Pentium, Pentium Inside, vPro Inside, Xeon, and Xeon Inside are trademarks of Intel Corporation or its subsidiaries in the U.S. and/or other countries. USB Type-C™ and USB -C™ are trademarks of USB Implementers Forum. All other trademarks are the property of their respective owners.All rights reserved, including intellectual property rights. Technical data subject to modifications and delivery subject to availability. Any liability that the data and illustrations are complete, actual or correct is excluded. Designations may be trademarks and/or copyrights of the respective manufacturer, the use of which by third parties for their own purposes may infringe the rights of such owner. For further information see /terms . © 2019 Fujitsu Business Technologies Asia Pacific Limited Last Update: 6November 2019。
Windows错误代码,当window弹出一个错误时,都会提示一个错误信息。
一般的都会以用户看得懂的提示展示出来。
但是,有时候windows的提示会以错误码的形式展示出来。
所以,了解一些简单的错误码。
有助于对一些重大错误的避免。
windows错误代码含义和解决方案1.代码一览表1 0×00000001 不正确的函数。
2 0×00000002 系统找不到指定的档案。
3 0×00000003 系统找不到指定的路径。
4 0×00000004 系统无法开启档案。
5 0×00000005 拒绝存取。
6 0×00000006 无效的代码。
7 0×00000007 储存体控制区块已毁。
8 0×00000008 储存体空间不足,无法处理这个指令。
9 0×00000009 储存体控制区块地址无效。
10 0×0000000A 环境不正确。
11 0×0000000B 尝试加载一个格式错误的程序。
12 0×0000000C 存取码错误。
13 0×0000000D 资料错误。
14 0×0000000E 储存体空间不够,无法完成这项作业。
15 0×0000000F 系统找不到指定的磁盘驱动器。
17 0×00000011 系统无法将档案移到其它的磁盘驱动器。
18 0×00000012 没有任何档案。
19 0×00000013 储存媒体为写保护状态。
20 0×00000014 系统找不到指定的装置。
21 0×00000015 装置尚未就绪。
22 0×00000016 装置无法识别指令。
23 0×00000017 资料错误(cyclic redundancy check)24 0×00000018 程序发出一个长度错误的指令。
MAGNETO-OPTICAL DRIVEHANDLING GUIDENote:This handbook briefly represents notes on handling themagneto-optical drive and magneto-optical cartridge.Please use the handbook in combination with the productmanual.C119-E075-01ENREVISION RECORDEdition Date published Revised contents01Sep., 1998Specification No.: C119-E075-**ENThe contents of this manual is subject tochange without prior notice.All Rights Reserved.Copyright © 1998 FUJITSU LIMITEDC119-E075-01EN iThis page is intentionally left blank.PREFACEGreater reliability has been required as the accuracy of magneto-optical (MO) drives has increased in recent years.As MO drives become more compact and lightweight, they are more easily damaged by shocks and static electricity and may break down or lose data.Therefore, to operate the drive in a suitable environment and ensure reliability, follow instructions in the MO Drive Operation Handling Guide.C119-E075-01EN iiiThis page is intentionally left blank.CONTENTSpage PREFACEBASIC HANDLING INSTRUCTIONS (1)General Instructions (1)Handling of the Package (3)Cautions on Incoming Inspection (4)Precautions at Assembling and Testing (6)Cleaning (8)Packing for Transporting/Returning (8)SPECIFICATIONS, EQUIPMENT AND PACKING BOXES (9)Shock Standards and Reference Values (9)Recommended Tool (9)Single Packing Box (10)Multiple Packing Box (11)C119-E075-01EN vThis page is intentionally left blank.BASIC HANDLING INSTRUCTIONS•General Instructions• Handling of the Package• Cautions on Incoming Inspection• Precautions at Assembling and Testing• Cleaning• Packing for Transporting/Returning• General Instructions(1)Static ElectricityHandle the drive in a safe environment to prevent them from damage by static electricity. In particular, static electricity precautions must be followed after the drive is taken out of the anti-static bag. When work on the drive is complete, be sure to store it with anti-static bag.Put on the wrist band.After taking the drive out of its packing box, place it on an anti-static mat.EarthAnti-static matWrist bandC119-E075-01EN12C119-E075-01EN(2)Shocks and VibrationsThe drive may be damaged and data may be lost due to shocks during handling. Handle thedrive with care.Do not stack when carrying.Do not place drive vertically to avoid falling down.Do not knock drives together.Do not drop.Do not press hands strongly on the drive.C119-E075-01EN 3•Handling of the PackageThe drive may be damaged and data may be lost due to shocks during handling. Handle the drive with care.Keep the packing box dry.Do not stand on the packing box.Do not drop the packing box.Take care when stacking the packing boxes. Donot stack boxes higher than the limits below.Master carton containing 12 single packing boxes8 layers Master carton containing 24 single packing boxes 4 layers Multiple packing box (containing 20 drives)6 layers4C119-E075-01EN•Caution on Incoming InspectionOn incoming inspection, check that the packing boxes have not been damaged during transport.(1)Storage and Operating EnvironmentOpening the packing box at low temperature may cause condensation which may damage the drive. Leave the drive until it will reach room temperature before opening the package ortesting the drive.Do not leave in a hot or cold humid environment.Leave the packing box warm to the operating temperature.Storage temperature Warming time 0 ºC 4 hours min. atoperating temperature – 20 ºC6 hours min. atoperating temperatureWarming upC119-E075-01EN 5(2)Handling Drive After UnpackingIf the drive is temporarily placed on a case after it is removed from the packing box, stick anti-static and anti-shock mats to the bottom and sides of thecase.When the drive is temporarily placed on the case,make sure that shocks and vibrations are nottransmitted from the floor.The anti-static effects are lost if the drive is placed on top of the conductive bag. The drive may be damaged.Place the anti-shock mat on the workbench andplace the anti-static mat on top of it.Anti-static matAnti-shock matAnti-shock matAnti-static mat6C119-E075-01EN(3)Power Supply1)To prevent it from damage by the electrical system, do not connect or disconnect thepower supply, cables, or connectors while the drive power switch is on.2)When cleaning a drive, wipe the outside surfaces only, taking care that no cleaning liquidgets inside the drive.•Precautions at Assembling and Testing(1)Moving the DriveWhen transporting drives on a trolley or belt conveyor, take measures to prevent shocks and vibrations being transmitted to the drives.Never move a drive during operation. Valuable data may be lost.C119-E075-01EN 7(2)Tools for Mounting and Operation• Use an electric torque driver.• Do not exceed the specified torque.M3 and No. 6-32UNC: 4 to 4.6 kg-cm• Recommended mounting flatness: 0.2 mm max.• System-casing clearance: 1.5 mm min.(3)Handling MO CartridgeNever manually eject the MO cartridge during operation or immediately after turning off the power. Valuable data may be lost.Wait at least 15 seconds after turning off the power before manually ejecting the MO cartridge.8C119-E075-01EN•Cleaning(1)Cleaning the DriveClean the drive regularly, or the drive get performance reduction caused by contamination.The optical head is contaminated with dirt, dust, and/or tabacco smoke in the air.The cleaning frequency depends on the operating environment of the drive.As a guideline, clean the drive every 6 months.See Appendix for information on the head cleaner.(2)Cleaning the MO CartridgeClean the MO cartridge regularly, or the drive get performance reduction caused by contamination.The MO cartridge is contaminated with dirt, dust, and/or tabacco smoke in the air.The cleaning frequency depends on the operating environment of the drive.As a guideline, clean the MO cartridge every 300 operating hours, or once every 2 or 3 months.See Appendix for information on the disk cleaner kit.•Packing for Transporting/ReturningTo protect the drive from shock, static-electric, or humidity damage when returning it to the manufacturer, pack it as it was received.The drive may be unrepairable if it is damaged during return to the manufacturer.Always use the multiple packing box when transporting 20 drives, even when returning damaged drives. Use single packing boxes to return 19 or fewer drives.Contact your local sales support office if the original packing box is not available.Special unit packages.Use the dedicated packing boxes.SPECIFICATIONS, EQUIPMENT AND PACKING BOXES• Shock Standards and Reference Values• Recommended Tool• Single Packing Box• Multiple Packing Box• Shock Standards and Reference ValuesStandard during operation: 2Gnon-operation:50GReference valuesDrop height 5 mm10 mm15 mm20 mmShock test result74 G123 G155 G162 GMeasuring method:The drive is placed on a steel bench with the printed circuit board downward. Then theinterface connector side is lifted up and the drive dropped. The test is repeated 5 times andthe average result calculated.• Recommended ToolDescription ModelHead cleaner CA90002-C980C119-E075-01EN910C119-E075-01EN•Single Packing Box* A pulp molding is used as a shock-absorbent material in this box.*Single packing box can be contained in a master carton.*Two types of master carton are available;12 and 24 single packing box type.Retainer (central)Retainer (front and rear)Conductive bagDesiccantC119-E075-01EN 11•Multiple Packing Box*Corrugated paper is used as the shock-absorbent material in this box.*This box contains just 20 drives.DividersFUJITSU LIMITEDBusiness PlanningSolid Square East Tower580 Horikawa-cho,Saiwai-ku, Kawasaki,210-0913, JapanTEL:81-44-540-4056FAX:81-44-540-4123FUJITSU COMPUTER PRODUCTS OF AMERICA, INC. 2904 Orchard Parkway, San Jose,California 95134-2009, U.S.A.TEL:1-408-432-6333FAX:1-408-432-3908FUJITSU CANADA INC.2800 Matheson Blvd. East, Mississauga, Toronto, Ontario L4W 4X5, CANADATEL:1-905-602-5454FAX:1-905-602-5457FUJITSU EUROPE LIMITED2, Longwalk Road, Stockley Park, Uxbridge,Middlesex UB11 1AB, ENGLANDTEL:44-81-573-4444FAX:44-81-573-2643FUJITSU DEUTSCHLAND GmbHFrankfurter Ring 211, 80807 München, GERMANY TEL:49-89-323780FAX:49-89-32378100FUJITSU NORDIC ABKung Hans Väg 12, S-192 68 Sollentura, SWEDEN TEL:46-8-626-6000FAX:46-8-626-6711FUJITSU ITALIA S.p.A.Via Nazario Sauro, 38 20099 Sesto S. Giovanni (MI), ITALY TEL:39-2-26294-1FAX:39-2-26294-201FUJITSU FRANCE S.A.I, Place des Etas-Unis, SILIC 310,94588 Rungis Cedex, FRANCETEL:33-1-41-80-38-80FAX:33-1-41-80-38-66FUJITSU ICL ESPAÑA S.A.Almagro 40, 28010 Madrid, SPAINTEL:34-91-681-8100FAX:34-91-681-8125FUJITSU AUSTRALIA LIMITED2 Julius Avenue (Cnr Delhi Road) North Ryde N.S.W. 2113, AUSTRALIATEL:61-2-9776-4555FAX:61-2-9776-4556FUJITSU HONG KONG LTD.Room 2521, Sun Hung Kai Centre, 30 Harbour Road, HONG HONGTEL:852-2827-5780FAX:852-2827-4724FUJITSU KOREA LTD.Coryo Finance Center Bldg, 23-6, YoulDo-Dong,Young DungPo-Gu, Seoul, Republic of KOREATEL:82-2-3787-6000FAX:82-2-3787-6070FUJITSU COMPUTERS (SINGAPORE) PTE. LTD20 Science Park Road #03-01,TELETECH PARK SINGAPORE SCIENCE PARK II,Singapore 117674TEL:65-777-6577FAX:65-771-5499FUJITSU TAIWAN LTD.8F, Hun Tai Center, 168-170, Tun Hwa North Road,1st Sec., Taipei, TAIWANTEL:886-2-545-7700FAX:886-2-717-4644FUJITSU SYSTEMS BUSINESS (MALAYSIA) SDN. BHD. Fujitsu Plaza, 1A, Jalan Tandang 204, P.O. Box 636 Pejabat Pos Jalan Sultan46770 Petaling Jaya, Selangor Darul Ehsan, MalaysiaTEL:60-3-793-3888FAX:60-3-793-0888FUJITSU SYSTEMS BUSINESS (THAILAND) LTD.12th F1., Olympia Thai Tower, 444 Rachadapisek Road, Samsennok, Huay Kwang, Bangkok 10320, ThailandTEL:66-2-512-6066FAX:66-2-512-606810Comments concerning this manual can be directed to one of the following addresses:FUJITSU LIMITEDThank you for your interest. Please send this sheet to one of the addresses in a left page.。