服务指南A1服务指南名称
Lenovo ThinkSystem服务器上使用GPU作为控制台显示适配器的指南说明书
Front coverUsing a GPU as a Console Display Adapter on a Lenovo ThinkSystem Server running LinuxExplains how to use a GPU to drive local video displays Provides step-by-step instructions on how to configure LinuxCovers both runlevel 3 text mode and X server mode Provides examples using an NVIDIA GPUXiaochun LiClick here to check for updatesAbstractAll Lenovo® ThinkSystem™ servers have an onboard video adapter to drive the video displayattached to the server’s VGA port. Many ThinkSystem servers also support a GraphicsProcessing Unit (GPU), and some of these GPUs offer additional video ports (typicallyDisplayPort or HDMI).GPUs on servers are typically used to offload tasks off the server CPU, including AI, VDI, andrendering tasks. Customers may want to also use the GPU to drive one or more monitorslocally attached to the server, however, most Linux Server OS releases do not easily enablesuch local display support.This paper provides guidance on enabling GPUs for use with local displays. The paper is forLinux administrators wishing to use a GPU installed in a ThinkSystem server to drive one ormore local video monitors.At Lenovo Press, we bring together experts to produce technical publications around topics ofimportance to you, providing information and best practices for using Lenovo products andsolutions to solve IT challenges.See a list of our most recent publications at the Lenovo Press web site:Do you have the latest version? We update our papers from time to time, so checkwhether you have the latest version of this document by clicking the Check for Updatesbutton on the front page of the PDF. Pressing this button will take you to a web page thatwill tell you if you are reading the latest version of the document and give you a link to thelatest if needed. While you’re there, you can also sign up to get notified via email wheneverwe make an update.ContentsIntroduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3Enabling a GPU in text mode. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3Enabling a GPU when logging in to Linux via the GUI. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4References. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8Author. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9Notices. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10Trademarks . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 2Using a GPU as a Console Display Adapter on a Lenovo ThinkSystem Server running LinuxIntroductionThe local console of Linux server operating systems can run in text mode, where the server isrun on runlevel 3, or in graphical mode, where X server is used to provide graphical servicesto the local display.Our testing environment was based on the following servers:ThinkSystem ST550 with the NVIDIA P2000 GPUThinkSystem SR630 with the NVIDIA P2000 GPUThinkSystem SR650 with the NVIDIA P620 GPUWe eveluated various versions of Red Hat Enterprise Linux installed on these servers,RHEL7.3, RHEL7.4, RHEL7.5, RHEL7.6, and RHEL7.7Enabling a GPU in text modeThis section describes how to enable a NVIDIA GPU to operate in text mode in the Linuxconsole. For graphics cards provided by other manufacturers, the steps may be slightlydifferent.Some open-source drivers included in the released server OS have defects. For example, thenouveau drivers have issues with RandR 1.3 libs. Therefore, it is advised that you use theproprietary driver offered by the graphics card manufacturer.To install the proprietary driver based on RHEL7.x, perform the following steps:1.Download the appropriate NVIDIA driver for your graphics controller from the GPU vendorweb site:2.Run the following commands to install the proprietary driver of NVIDIA. The driver cannotbe installed if the X server is running on the system, so ensure that the system is started intext mode (runlevel 3):# init 3# sh nvidia_filename.runEnsure that this driver is saved in the local disk of the target system. Installing from anexternal device, such as a flash drive, will cause known issues such as an installationfailure.3.Edit Grub 2 to blacklist the nouveau driver. Edit /etc/default/grub and add the following tothe GRUB_CMDLINE_LINUX line:rd.driver.blacklist=nouveau nouveau.modeset=0 fbcon=map:10The kernel parameter configuration rd.driver.blacklist=nouveau nouveau.modeset=0blacklists the nouveau driver module to disable it from getting loaded at boot frominitramfs.For the kernel parameter configuration fbcon=map:10, the value 10 is the correspondencebetween fb and tty, indicating which graphics card driver gets mapped to which console.Therefore, you can use hot keys such as Ctrl+Alt+F1 to switch the display console to thegraphics card that we want to display under runlevel 3.4.Rebuild the grub.cfg file by running one of the following commands:Legacy BIOS:© Copyright Lenovo 2019. All rights reserved.3# grub2-mkconfig -o /boot/grub2/grub.cfgUEFI BIOS:# grub2-mkconfig -o /boot/efi/EFI/redhat/grub.cfg5.Edit the /etc/modprobe.d/blacklist.conf file and add the following line to it, so that this isadded into initramfs at rebuild:blacklist nouveau6.Back up the current initramfs and build a new one as follows:# mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img# dracut /boot/initramfs-$(uname -r).img $(uname -r)7.Run the following command to set the default runlevel of the text mode in systemd:# systemctl set-default multi-user.target8.Restart the system.The system should not load the nouveau module now at boot.Enabling a GPU when logging in to Linux via the GUIMost Linux OS releases will start the X server when using a GUI as the local display. Thexorg.conf file provided by the X server is the configuration file for Xorg, and it needs to bemodified for X server to work on a ThinkSystem GPU. This file supports various configurationparameters to configure the graphics cards, monitors, input devices, and the layout of theXorg server on the server.For further details about the xorg.conf file, run the following man command on the terminal:man xorg.confAll the following operations are performed based on RHEL7.x.Checking the graphics card information in the serverThe first step is determine the PCIe configuration of the GPU, as follows:1.Obtain the bus IDs of available graphics cards using the lspci command, as follows:[root@localhost ~]# lspci |grep -i vga02:00.0 VGA compatible controller: Matrox Electronics Systems Ltd. MGA G200e [Pilot]ServerEngines (SEP1) (rev 42)5b:00.0 VGA compatible controller: NVIDIA Corporation GP106GL [Quadro P2000] (rev a1)[root@localhost ~]#Figure 1 Finding the bus IDsIn the output of the command, the numbers at the beginning of the entries indicate the busIDs of the cards that are currently available on the machine. In our example, this is30:00.0. The output is in hexidecimal.4Using a GPU as a Console Display Adapter on a Lenovo ThinkSystem Server running Linux2.Determine what kinds of driver a graphics card has been loaded with, using the followingcommand.[root@localhost ~]# lspci -vnn |grep -i VGA -A 2002:00.0 VGA compatible controller [0300]: Matrox Electronics Systems Ltd. MGA G200e [Pilot] ServerEngines (SEP1) [102b:0522] (rev 42) (prog-if 00 [VGA controller])Subsystem: Emulex Corporation Device [19a2:0101]Flags: bus master, fast devsel, latency 0, IRQ 16, NUMA node 0Memory at d8000000 (32-bit, non-prefetchable) [size=16M]Memory at d9a10000 (32-bit, non-prefetchable) [size=16K]Memory at d9000000 (32-bit, non-prefetchable) [size=8M]Expansion ROM at d9a00000 [disabled] [size=64K]Capabilities: [dc] Power Management version 2Capabilities: [54] MSI: Enable- Count=1/1 Maskable- 64bit-Kernel driver in use: mgag200Kernel modules: mgag200--5b:00.0 VGA compatible controller [0300]: NVIDIA Corporation GP106GL [Quadro P2000] [10de:1c30] (rev a1) (prog-if 00 [VGA controller])Subsystem: NVIDIA Corporation Device [10de:11b3]Physical Slot: 1Flags: bus master, fast devsel, latency 0, IRQ 143, NUMA node 0Memory at ec000000 (32-bit, non-prefetchable) [size=16M]Memory at 22fe0000000 (64-bit, prefetchable) [size=256M]Memory at 22ff0000000 (64-bit, prefetchable) [size=32M]I/O ports at b000 [size=128]Expansion ROM at ed000000 [disabled] [size=512K]Capabilities: [60] Power Management version 3Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+Capabilities: [78] Express Legacy Endpoint, MSI 00Capabilities: [100] Virtual ChannelCapabilities: [250] Latency Tolerance ReportingCapabilities: [128] Power Budgeting <?>Capabilities: [420] Advanced Error ReportingCapabilities: [600] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>Capabilities: [900] #19Kernel driver in use: nvidiaKernel modules: nouveau, nvidia_drm, nvidiaFigure 2 Command to determine the type of driverNotes:For the add-in graphics card, if you have installed the NVIDIA proprietary driver instead of the open-source nouveau driver, the nouveau driver must be disabled.To disable the nouveau driver, add the kernel command-line parameter configuration: modprobe.blacklist=nouveau. Refer to the steps in “Enabling a GPU in text mode” on page3.52.2 Editing the Xorg configuration fileThe configuration file is located at /etc/X11/xorg.conf on the server. To edit it, you must be aroot user. If the file does not exist, create one.Figure3 shows a complete xorg.conf file.Section "Device"Identifier "card0"Driver "mgag200"BusID "PCI:02:00:00"EndSectionSection "Device"Identifier "card1"Driver "nvidia"BusID "PCI:91:00:00"EndSectionSection "Monitor"Identifier "monitor0"EndSectionSection "Monitor"Identifier "monitor1"EndSectionSection "Screen"Identifier "screen0"Device "card0"Monitor "monitor0"EndSectionSection "Screen"Identifier "screen1"Device "card1"Monitor "monitor1"EndSectionSection "ServerLayout"Identifier "default"Screen 0 "screen1"EndSectionSection "ServerLayout"Identifier "default1"Screen 1 "screen0"EndSectionFigure 3 xorg.conf fileThe terms used in the xorg.conf file are as follows:A Device is a graphics controller or GPUA Monitor is the phyical video display that is connected to the serverA Screen is a logical representation of the Device and Monitor togetherA ServerLayout is a logical representation of the Screen, Monitor, and DeviceAdd or modify some of the entries in the xorg.conf file as follows:1.Modify the file so that it contains two Device sections. We have two devices because thereare two controllers as shown in Figure2 on page5.6Using a GPU as a Console Display Adapter on a Lenovo ThinkSystem Server running Linuxa.The Identifier entry specifies a unique name for the graphics device, which can beanything that will help you identify the device.b.The Driver entry specifies the name of the video driver to be used.c.The BusID entry specifies where the graphics card is located. A bus ID is in decimalformat, instead of hexadecimal format.Note: If you use the Bus ID from the lspci command as shown in Figure1 onpage4, you will have to convert the Bus ID from hexidecimal to decimal.Note: The Identifier and Driver entries in the Device section are mandatory. Other entries are either generic or device specific, and are optional. The Device sections are referenced in the Screen sections.2.Create two Monitor sections. We are creating two monitors because we have two displaysconnected to the GPU. There can be more than two monitors, depending on what you have connected.–The Identifier entry specifies a unique name for the monitor, which can be anything that will help you identify the monitor.Note: Only the Identifier entry is mandatory. Create such an entry for every monitor that you have connected.3.Create two Screen sections. The number of screens should match the number of devicesand the number of monitors.The configuration file may contain multiple Screen sections, and there must be at least one entry for each screen that is used. A Screen is a logical representation of thecombination of a graphics card and a display device. The Screen sections are referenced in the ServerLayout sections.a.The Identifier entry specifies a unique name for the screen.b.The Device entry specifies a graphics card name, which is represented by the Identifierentry in the corresponding Device section.c.The Monitor entry specifies a monitor name, which is represented by the Identifierentry in the corresponding Monitor section.Note: Among these entries, only the Identifier and Device entries are mandatory. Other optional entries are not elaborated in this guide. For these entries not elaborated, their default values are used instead.4.Create the last section that gathers the preceding sections, the ServerLayout section. AServerLayout section is a logical representation of the Screen, Monitor, and Devicesections, which form complete Xorg configuration. There can be multiple ServerLayout sections in the xorg.conf file, and there must be at least one Identifier entry and one Screen entry in each ServerLayout section.a.The Identifier entry specifies a unique name for the ServerLayout.b.The Screen 0 or Screen 1 entry specifies a screen name, which is represented by theIdentifier entry in the corresponding Screen section.Note: The display cannot be output to two graphics cards at the same time, so you can modify the Screen 0 entry of the ServerLayout section to determine the graphics card you want to choose. Some Add-in graphics cards could not display when you choose the Onboard card as the screen.Once you have finished configuring the /etc/X11/xorg.conf file, save and exit, and then reboot the OS and press F1 to enter System Setup.72.3 Switching to the graphics cardThe steps to activate the GPU are as follows:1.In System Setup (F1 at boot), enter the UEFI configuration for activating the Add-ingraphics card. The default active video is Onboard Device.2.From the BIOS setup menu path, select System Settings→ Devices and I/O ports→Active Video to activate the Add-in graphics card as shown in Figure4 on page8.Figure 4 Devices and I/O Ports in System Setup3.After activating Add-in Device, save and exit the BIOS setup menu, and then enter theLinux OS. The Add-in graphics card should now display the X server GUI. ReferencesFor additional information, see these web pages:ArchWiki page for Xorghttps:///index.php/XorgSuper User page, “How can I get multiple video cards to work on Linux?”https:///questions/117239/how-can-i-get-multiple-video-cards-to-work-on-linux8Using a GPU as a Console Display Adapter on a Lenovo ThinkSystem Server running LinuxXiaochun Li is a Linux engineer at the Lenovo Data Center Group in Beijing, China. He specializes in development related to Linux kernel storage and memory management, as well as kernel DRM. Before joining in Lenovo, he had been working for INSPUR as an OS engineer for several years. With seven years of industry experience, he now focuses on Linux kernel RAS, storage, and memory subsystems.Thanks to the following people for their contributions to this project:Song Shang, Lenovo test engineer for Linux enablement9© Copyright Lenovo 2019. All rights reserved.Note to U.S. Government Users Restricted Rights -- Use, duplication or disclosure restricted by Global Services Administration (GSA) ADP Schedule Contract 10Lenovo may not offer the products, services, or features discussed in this document in all countries. Consult your local Lenovo representative for information on the products and services currently available in your area. Any reference to a Lenovo product, program, or service is not intended to state or imply that only that Lenovo product, program, or service may be used. Any functionally equivalent product, program, or service that does not infringe any Lenovo intellectual property right may be used instead. However, it is the user's responsibility to evaluate and verify the operation of any other product, program, or service.Lenovo may have patents or pending patent applications covering subject matter described in this document. The furnishing of this document does not give you any license to these patents. You can send license inquiries, in writing, to:Lenovo (United States), Inc.1009 Think Place - Building One Morrisville, NC 27560U.S.A.Attention: Lenovo Director of LicensingLENOVO PROVIDES THIS PUBLICATION “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Some jurisdictions do not allow disclaimer of express or implied warranties in certain transactions, therefore, this statement may not apply to you.This information could include technical inaccuracies or typographical errors. Changes are periodically made to the information herein; these changes will be incorporated in new editions of the publication. Lenovo may make improvements and/or changes in the product(s) and/or the program(s) described in this publication at any time without notice.The products described in this document are not intended for use in implantation or other life support applications where malfunction may result in injury or death to persons. The information contained in this document does not affect or change Lenovo product specifications or warranties. Nothing in this document shall operate as an express or implied license or indemnity under the intellectual property rights of Lenovo or third parties. All information contained in this document was obtained in specific environments and is presented as an illustration. The result obtained in other operating environments may vary.Lenovo may use or distribute any of the information you supply in any way it believes appropriate without incurring any obligation to you.Any references in this publication to non-Lenovo Web sites are provided for convenience only and do not in any manner serve as an endorsement of those Web sites. The materials at those Web sites are not part of the materials for this Lenovo product, and use of those Web sites is at your own risk.Any performance data contained herein was determined in a controlled environment. Therefore, the result obtained in other operating environments may vary significantly. Some measurements may have been made on development-level systems and there is no guarantee that these measurements will be the same on generally available systems. Furthermore, some measurements may have been estimated through extrapolation. Actual results may vary. Users of this document should verify the applicable data for their specific environment.This document was created or updated on September 27, 2019.Send us your comments via the Rate & Provide Feedback form found at/lp1228TrademarksLenovo, the Lenovo logo, and For Those Who Do are trademarks or registered trademarks of Lenovo in the United States, other countries, or both. These and other Lenovo trademarked terms are marked on their first occurrence in this information with the appropriate symbol (® or ™), indicating US registered or common law trademarks owned by Lenovo at the time this information was published. Such trademarks may also be registered or common law trademarks in other countries. A current list of Lenovo trademarks is available on the Web at /legal/copytrade.html.The following terms are trademarks of Lenovo in the United States, other countries, or both: Lenovo®Lenovo(logo)®ThinkSystem™The following terms are trademarks of other companies:Linux is a trademark of Linus Torvalds in the United States, other countries, or both.Other company, product, or service names may be trademarks or service marks of others.11。
Cisco Unified IP Conference Phone 8831 用户指南说明书
Cisco Unified IP Conference Phone 8831 用户指南(适用于 Cisco Unified Communications Manager 10.0)首次发布日期: 2014年11月20日上次修改日期: 2014年11月21日Americas HeadquartersCisco Systems, Inc.170 West Tasman DriveSan Jose, CA 95134-1706USATel: 408 526-4000800 553-NETS (6387)Fax: 408 527-0883本手册中有关产品的规格和信息如有更改,恕不另行通知。
本手册中的所有陈述、信息和建议被认为是准确的,但我们不提供任何形式的明示或暗示担保。
用户必须自行负责对任何产品的应用。
软件许可证和产品的有限保修单在产品随附的信息包中皆有说明,并作为参考文件列入此处。
如果您找不到软件许可证或有限保修单,请联系CISCO销售代表获取一份。
以下信息涉及A类设备的FCC遵从性:经测试,本设备符合FCC规则第15部分对A类数字设备的限制规定。
这些限制旨在提供合理的保护,防止设备在商业环境中运行时产生有害干扰。
本设备可以产生、利用并发射无线射频能量。
如果不按说明中的要求安装和使用本设备,有可能对无线电通信产生有害干扰。
在居民区运行此设备可能会造成有害干扰,在这种情况下,用户需要自费消除干扰。
以下信息涉及B类设备的FCC遵从性:经测试,本设备符合FCC规则第15部分对B类数字设备的限制规定。
设置这些限制的目的是在设备安装于居所时,提供合理保护以避免干扰。
本设备可以产生、利用并发射无线射频能量。
如果不按说明中的要求安装和使用本设备,有可能对无线电通信产生有害干扰。
不过,我们不能保证在任何安装中都不会产生干扰。
如果本设备确实对无线电或电视接收造成干扰(可以通过打开和关闭设备来确定),建议用户采取以下一种或多种措施来消除干扰:•重新调整接收天线的方向或位置。
世界卫生组织《患者关怀与支持指南
,75*&%.'&-!#1V<:;-)--%IA?O&E:%Z?9:IA!ED91'K9I'&1#OZ!$H<J:'0A?%?"%&2#%*2'0*$"92,("#0'%'(+,2+*& '"))0,$/5A?H9I'?1I@?1I?E?%@9E?9@I'R'I'?0>?E?'1IE&%<@?%CE&8 R9E'&<0'1I?ER?1I'&100<@A900&@'9:0<HH&EI% IE?9I8?1I8919D?8?1I91%%'D'I9:A?9:IAI?@A1&:&D;/5AE&<DAIA?'1I?EHE?I9I'&1&CIA?D<'%?:'1?%I&'1IE&%<@?IA? @&1I?1I0I&IA?E?9%?E091%HE&R'%?E?C?E?1@?I&H9I'?1I08@9E?9@I'R'I'?0'1GA'19/
结核病是可以治愈的疾病!然而心理#社会#医 疗和经济等因素可能会阻碍患者获得诊断和完成治 疗"这些因素包括患者对疾病和医疗系统的知识# 态度和信念)家庭既往经历和信仰)经济情况如患者 支付治疗相关费用的能力)医疗系统支持患者的能 力)可用的社区资源)病耻感和社会歧视等"坚持完 成抗结核治疗疗程是成功治疗的关键"通过对患者 的治疗关怀!最大限度地提高其治疗依从性!特别是 耐药结核病患者"耐多药结核病和广泛耐药结核病
餐饮服务单位工作指南
餐饮服务单位工作指南1、依法取得有效许可和营业执照,许可或登记证正本张贴、悬挂于醒目位置。
2、餐饮服务监管公示牌、餐饮食品安全保证公示栏悬挂于醒目位置,食品安全管理制度上墙,制定完善的食品安全突发事件应急处置预案,食品添加剂符合“五专”“两公开”管理要求,从业人员均有有效健康证明。
3、对餐饮服务单位主要负责人、食品安全管理员和从业人员开展食品安全知识培训,每人每年接受食品安全集中培训不少于40学时,有培训计划、培训教材、签到表、培训记录、试卷、及培训现场照片、录像等资料。
培训重点为食品安全法、餐饮服务食品安全操作规范等与食品安全紧密相关的内容。
明确主体责任和各自职责,明了常见的食物中毒及预防措施。
4、落实进货查验、索证索票制度,索取加盖供货商公章的许可证(食用农产品除外)、营业执照、产品合格证明、动物产品检疫合格证复印件,索取加盖供货方公章(或签字)的每笔购物凭证(发票、收据等)或每笔送货清单;认真开展进货查验,如实填写查验记录,记录食品名称、规格(如25㎏/袋)、数量、生产日期或生产批号、保质期、进货日期以及供货单位(全称)、联系电话、查验情况(合格或不合格)、查验人、审核人签名。
查验记录和索取证、票保存期限不得少于2年。
倡导建立固定的供货渠道,与固定供货者签订供货协议,明确各自的食品安全责任和义务。
5、防蝇、防尘、防鼠、防虫害设施符合管理要求。
与外界相通的门、窗设纱门、纱窗、挡鼠板等,挡鼠板用不锈钢等硬质材料,高度在60cm 以上;加工经营场所可设置灭蝇设施。
使用灭蝇灯的,应悬挂于距地面2m左右高度,且应与食品加工操作场所保持一定距离;排水沟出口和排气口应有网眼孔径小于10mm的金属隔栅或网罩,以防鼠类侵入。
6、食品贮存应符合要求。
贮存场所、设备应保持清洁,无霉斑、鼠迹、苍蝇、蟑螂等,不得存放有毒、有害物品及个人生活用品;食品应当分类、分架存放,距离墙壁、地面均在10cm以上。
食品原料、食品添加剂使用应遵循先进先出的原则,及时清理销毁变质和过期的食品原料及食品添加剂。
联想 ThinkBook 系列 用户指南
Lenovo ThinkBook系列用户指南用前必读使用本文档及其支持的产品之前,请务必先阅读和了解以下信息:•第35页附录A“重要安全信息”•《安全与保修指南》•《设置指南》第一版(2019年10月)©Copyright Lenovo2019.有限权利声明:如果数据或软件依照美国总务署(GSA)合同提供,其使用、复制或公开受编号为GS-35F-05925的合同的条款的约束。
目录关于本文档 (iii)第1章了解计算机 (1)前视图 (1)底座视图 (2)左视图 (4)右视图 (8)底视图 (10)功能部件和规格 (11)USB传输速率声明 (12)运行环境 (12)第2章开始使用您的计算机 (15)Windows10入门 (15)Windows帐户 (15)Windows用户界面 (17)Lenovo Vantage和联想电脑管家 (18)连接到网络 (18)连接到有线网络 (18)连接到Wi-Fi网络 (18)与计算机交互 (20)打开内置USB接收器接口外盖 (20)键盘热键 (21)第3章了解您的计算机 (23)管理电源 (23)检查电池状态 (23)为电池充电 (23)检查电池温度 (23)设置电源按钮行为 (23)更改或创建电源计划 (23)设置性能模式 (24)更改UEFI/BIOS Setup Utility中的设置..24 UEFI/BIOS Setup Utility是什么 (24)打开UEFI/BIOS Setup Utility (24)更改启动顺序 (24)更改Hotkey Mode (24)启用或禁用Always-on (25)在UEFI/BIOS Setup Utility中设置密码..25密码类型 (25)设置管理员密码 (25)更改或删除管理员密码 (26)设置用户密码 (26)启用开机密码 (26)设置硬盘密码 (26)更改或删除硬盘密码 (27)重置或还原Windows (27)Windows10恢复选项 (27)Windows系统还原 (28)重置Windows (28)创建恢复驱动器 (28)使用恢复驱动器还原或重置Windows (29)第4章帮助和支持 (31)常见问题 (31)自助资源 (31)致电Lenovo (33)联系Lenovo之前 (33)Lenovo客户支持中心 (33)购买附加服务 (34)附录A重要安全信息 (35)附录B辅助功能和人体工程学信息 (45)附录C合规性信息 (49)附录D声明和商标 (63)©Copyright Lenovo2019iii Lenovo ThinkBook系列用户指南关于本文档•本文档中插图的外观可能与您的产品不同。
售后服务作业指导书
售后服务作业指导书前言本《售后服务作业指导书》是技术服务人员在产品服务工作中所遵循的服务原则和行动指南。
它详细阐述了服务政策和服务理念,同时也制定了技术服务人员在售后服务各个环节中的具体操作流程。
请相关人员仔细阅读,熟悉掌握并认真贯彻执行。
我们的服务口号:一切为了顾客满意,细节决定成败!目录1、安装技术服务规范2、安装维修工具一览表3、常见故障及处理方法1、多功能制水机上门安装操作规范一、上门前:1、了解顾客信息(包括用户姓名、职业、年龄、家庭住址、联系方式、家庭状况、产品型号、顾客要求等),以便与顾客更好交流。
2、检查工具是否带齐全:如冲击钻、钻嘴、扳手、清洁毛巾、鞋套等。
3、检查配件是否带齐全:如生料带、拉爆螺丝、管接头等。
4、检查实验用品、检测工具是否带齐全:PH试剂、比色卡、TDS笔、电流表。
注:可参考《工具一览表》二、严格按预定时间上门,若有变动应提前通知用户。
三、安装前:(保持手部清洁,脏手绝不能直接接触用户物品、非作业区墙壁等)1、确定安装位置:以使用方便美观为原则,一般在水槽上方,距离火源处至少1.0米,要避免阳光直射,如用户的特殊安装要求不利于机器的使用与保养,应与其说明原因。
用户坚持要按自己意见安装,则应在《安装工作单》上注明并请用户签字。
2、试水压,水压过小建议用户安装增压泵,水压过大安装减压阀。
然后关掉水阀,进行无水作业。
3、试电源:电源插座接触是否良好,电压是否稳定,插座是否接有地线,确保接地安全。
4、检查制水机:(1)检查水机外观是否有缺陷;(2)通电检查面板指示是否正常;(3)检查随机附件是否齐备四、安装中:1、钻孔注意事项:(1)确定钻孔位置:钻孔位置要考虑到日后更换滤芯方便,用笔标注;在台面铺上垫布防止灰尘落在台面上,移动物品要先征得用户的同意。
(2)注意钻孔要水平,要询问用户墙内是否有水管电线,以免造成意外。
同时要询问家中是否有人在休息,以免打钻声音惊扰老人或儿童。
华为SUN2000快速指南说明书
SUN2000-(20KTL-M3, 33KTL-NH, 40KTL-NH) 快速指南文档版本:06部件编码:3150HLN发布日期:2023-01-10华为技术有限公司•由于产品版本升级或其他原因,本文档内容会不定期进行更新。
除非另有约定,本文档仅作为使用指导,文档中的所有陈述、信息和建议不构成任何明示或暗示的担保。
•设备所有操作必须由训练有素的专业电气技术人员进行。
操作人员应充分熟悉整个光伏并网发电系统的构成、工作原理及项目所在国家/地区的相关标准。
•安装设备前请详细阅读用户手册,了解产品信息及安全注意事项。
未按照本文档与用户手册的内容存储、搬运、安装和使用设备而导致设备损坏,不在设备质保范围内。
•安装设备时必须使用绝缘工具。
为了人身安全,请佩戴个人防护用品。
1产品简介(1)LED指示灯(2)主机面板(3)散热片(4)遮阳棚固定螺钉孔(5)通信接口(COM)(6)直流开关锁定螺钉孔(7)直流开关(8)智能通信棒接口a(9)透气阀(10)直流输入端子(PV1~PV8)(11)交流输出接口(12)点检端子盒(13)接地点注a:SUN2000MA V100R001C20SPC109及之后的版本仅在50kW未满低压解决方案场景支持接入智能通信棒,且不支持并网点功率控制。
2安装要求角度空间尺寸3安装逆变器•逆变器随箱配发M12×40组合螺栓,若长度无法满足安装需求,请自备M12组合螺栓,配合随箱配发的M12螺母进行安装。
•以支架安装为例,介绍逆变器安装方法。
挂墙安装请参见用户手册。
•安装工程安装件前,请取下内梅花扳手并妥善保存。
内梅花扳手绑扎位置搬运逆变器1.安装工程安装件。
建议对打孔处进行防锈处理。
2.将逆变器安装到工程安装件上。
3.紧固两侧内梅花螺钉。
必须紧固侧面螺钉后再进行接线。
安装前准备4.1序号名称类型规格1保护地线单芯户外铜芯线缆导体横截面积≥ 5.5mm 22交流输出线户外铜芯线缆/铝芯线缆•导体横截面积:16mm 2~50mm 2户外铜芯线缆/35mm 2~50mm 2户外铝芯线缆•线缆外径:16mm ~38mm 3直流输入线行业通用的户外光伏线缆(推荐型号:PV1-F )•导体横截面积:3.5mm 2~6mm 2•线缆外径:5.5mm ~9mm 4(可选)RS485通信线两芯户外屏蔽双绞线•导体横截面积:0.2mm 2~1mm 2•线缆外径:4mm ~11mm5交流开关推荐使用三相交流断路器额定电压≥500V AC ,额定电流:80A4电气连接•禁止在逆变器和与逆变器直连的交流开关之间接入负载,避免引起开关误脱扣。
联想 ThinkVision P24h-2L用户指南
产品编号A19238QP162B2-GAR1-WW第一版(2020年8月)© 版权所有 Lenovo 2020。
LENOVO 产品、数据、计算机软件、及服务基于专项资金开发,作为48 C.F.R. 2.101定义的商品销售给政府机构,并授予政府机构有限的受限制的使用、复制和公开权利。
受限制的有限权利声明:如果产品、数据、计算机软件、或服务按照总务管理器“GSA”合约交付,则其使用、复制、或公开须遵循在合约号GS-35F-05925中制定的限制。
目录安全事项 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .iii 一般安全原则 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . iii第1章开始使用 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-1物品清单 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-1使用注意事项 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-2产品概述 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-3调整类型 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-3倾斜 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-3旋转 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-3高度调整 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-4显示器 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-4监视器控制 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-5线缆锁槽 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-5设置监视器 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-6连接和打开监视器电源 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-6注册您的选件 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .1-11第2章调整和使用显示器 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-1舒适和辅助功能 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-1安排您的工作区域 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-1放置显示器 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-1关于健康工作习惯的小技巧 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-2辅助功能信息 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-2调整显示器图像. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-3使用直接访问控件 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-3使用On-Screen Display (OSD,屏幕显示)控件 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-4选择受支持的显示模式 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-9了解电源管理. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-10电源管理模式 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-10保养显示器. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2-12卸下显示器底座和支撑臂 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-12壁挂(可选) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .2-12第3章参考信息 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-1显示器规格 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-1故障排除 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-3手动安装显示器驱动程序 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-5在Windows 7系统中安装显示器驱动程序 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-5在Windows 10系统中安装显示器驱动程序 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-6获得进一步帮助 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-6服务信息. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3-7客户责任 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-7维修部件 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .3-7附录 A.服务和支持 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A-1注册您的选件 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A-1在线技术支持 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A-1电话技术支持 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . A-1附录 B.声明 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B-1回收信息 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B-2商标 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . B-2安全事项一般安全原则有关安全使用计算机方面的提示,请转到:/safetyBefore installing this product, read the Safety Information.第1章开始使用本用户指南为用户提供详细的操作说明。
持境外驾机动车驾驶证申领服务指南
持境外驾机动车驾驶证申领服务指南一、事项名称持境外机动车驾驶证申领二、设定依据《中华人民共和国道路交通安全法》第二节机动车驾驶人第十九条驾驶机动车,应当依法取得机动车驾驶证。
申请机动车驾驶证,应当符合国务院公安部门规定的驾驶许可条件;经考试合格后,由公安机关交通管理部门发给相应类别的机动车驾驶证。
持有境外机动车驾驶证的人,符合国务院公安部门规定的驾驶许可条件,经公安机关交通管理部门考核合格的,可以发给中国的机动车驾驶证。
《机动车驾驶证申领和使用规定》第八条驾驶机动车,应当依法取得机动车驾驶证。
第十七条持有境外机动车驾驶证,符合本规定的申请条件,可以申请相应准驾车型的机动车驾驶证。
三、申请条件申请机动车驾驶证的人,应当符合下列规定:(一)年龄条件:1、申请小型汽车、小型自动挡汽车、残疾人专用小型自动挡载客汽车、轻便摩托车准驾车型的,在18周岁以上、70周岁以下;2、申请低速载货汽车、三轮汽车、普通三轮摩托车、普通二轮摩托车或者轮式自行机械车准驾车型的,在18周岁以上,60周岁以下;3、申请城市公交车、大型货车、无轨电车或者有轨电车准驾车型的,在20周岁以上,50周岁以下;4、申请中型客车准驾车型的,在21周岁以上,50周岁以下;5、申请牵引车准驾车型的,在24周岁以上,50周岁以下;6、申请大型客车准驾车型的,在26周岁以上,50周岁以下;7、接受全日制驾驶职业教育的学生,申请大型客车、牵引车准驾车型的,在20周岁以上,50周岁以下。
(二)身体条件:1、身高:申请大型客车、牵引车、城市公交车、大型货车、无轨电车准驾车型的,身高为155厘米以上。
申请中型客车准驾车型的,身高为150厘米以上;2、视力:申请大型客车、牵引车、城市公交车、中型客车、大型货车、无轨电车或者有轨电车准驾车型的,两眼裸视力或者矫正视力达到对数视力表5.0以上。
申请其他准驾车型的,两眼裸视力或者矫正视力达到对数视力表4.9以上。
服 务 指 南 - 江西省事业单位登记管理局
服务指南——事业单位法人年度报告一、工作流程(一)报送:在江西省机构编制委员会办公室门户网站事业单位登记栏目(/)或江西事业单位在线网站服务指南栏目(/)下载《事业单位法人年度报告书》,如实填写后,将所填表格(含电子版)及其他相关文件、材料提交江西省事业单位登记管理局。
报告人应当对提交的年度报告和材料的真实性负责。
(二)形式审查:对事业单位提交的法人年度报告进行形式审查,符合形式规范的,送转公示。
不符合形式规定的予以退回。
(三)监督检查:通过审查事业单位年度报告进行监督检查,根据情况提出应予实地核查或其他依照《事业单位登记管理暂行条例》及其实施细则的处理意见。
(四)公示:受委托将事业单位法人年度报告进行公示。
二、提交材料报送事业单位法人年度报告,应当向登记管理机关提交下列文件和材料:(一)《事业单位法人年度报告书》(含电子版);(二)本单位加盖公章的上一年度年末资产负债表;(三)有关资质认可或者执业许可证明文件(业务范围不涉及资质认可事项或者执业许可事项的不提交);(四)法定代表人任职文件(原提交的法定代表人任职文件未设定任职期限或者未超过任职期限且未出现依法应当申请法定代表人变更登记情况的不提交);(五)住所证明(原提交的住所证明未设定有效期限或者未超过有效期限且未出现依法应当申请住所变更登记情况的不提交);(六)登记管理机关要求提交的其他相关文件。
三、填表说明《事业单位法人年度报告书》主要栏目填写要求如下:事证第号:填写《事业单位法人证书》登记的事证号。
()年度:填写上一年。
如2014年1月1日至3月31日报送年度报告,填写(2013)年度。
单位名称:封面名称填写《事业单位法人证书》登记的第一名称,并加盖公章。
表内的单位名称栏中依次填写《事业单位法人证书》登记的第一名称及其他名称。
法定代表人:填写《事业单位法人证书》登记的法定代表人名字。
事业单位法人证书登载事项:按法人证书登记事项内容填写。
腾讯云密钥管理系统 TCCLI管理指南说明书
密钥管理系统TCCLI 管理指南产品⽂档【版权声明】©2013-2019 腾讯云版权所有本⽂档著作权归腾讯云单独所有,未经腾讯云事先书⾯许可,任何主体不得以任何形式复制、修改、抄袭、传播全部或部分本⽂档内容。
【商标声明】及其它腾讯云服务相关的商标均为腾讯云计算(北京)有限责任公司及其关联公司所有。
本⽂档涉及的第三⽅主体的商标,依法由权利⼈所有。
【服务声明】本⽂档意在向客户介绍腾讯云全部或部分产品、服务的当时的整体概况,部分产品、服务的内容可能有所调整。
您所购买的腾讯云产品、服务的种类、服务标准等应由您与腾讯云之间的商业合同约定,除⾮双⽅另有约定,否则,腾讯云对本⽂档内容不做任何明⽰或模式的承诺或保证。
⽂档⽬录TCCLI 管理指南操作总览创建密钥查看密钥编辑密钥启⽤禁⽤密钥密钥轮换对称密钥加解密⾮对称密钥解密删除密钥TCCLI 管理指南操作总览最近更新时间:2019-11-15 18:07:07您可以调⽤ KMS TCCLI 管理密钥,例如创建密钥、查看密钥 ID 列表、编辑密钥、密钥轮换等操作。
操作使⽤腾讯云命令⾏⼯具 TCCLI,后续您可以使⽤任何受⽀持的编程语⾔调⽤。
操作说明创建密钥提供⽰例介绍如何调⽤ TCCLI 创建密钥查看密钥提供⽰例介绍如何调⽤ TCCLI 查看密钥 ID 和详情信息编辑密钥提供⽰例介绍如何调⽤ TCCLI 编辑密钥启⽤禁⽤密钥提供⽰例介绍如何调⽤ TCCLI 启⽤/禁⽤密钥密钥轮换提供⽰例介绍如何调⽤ TCCLI 密钥轮换加密解密提供⽰例介绍如何调⽤ TCCLI 加密解密删除密钥提供⽰例介绍如何调⽤ TCCLI 删除密钥创建密钥最近更新时间:2019-11-15 18:13:45概述调⽤ CreateKey 来创建⽤户管理数据密钥的主密钥 CMK(Custom Master Key),后续可以通过 CMK 来调⽤其他接⼝,例如创建数据密钥、加解密等操作。
该 API 操作中的 Alias 为必选参数,您可以查看CreateKey接⼝⽂档来对 CMK 添加其他描述。
联想 ThinkVision T24A-10 A18238FS1用户指南
ThinkVision T24A-10 / A18238FS1目录安全事项 (iii)一般安全原则 (iii)第1章开始使用..............................................................1-1物品清单............................................................................................................................................................................................... 1-1使用注意事项....................................................................................................................................................................................... 1-2产品概述............................................................................................................................................................................................... 1-3调整类型......................................................................................................................................................................................... 1-3倾斜................................................................................................................................................................................................. 1-3监视器控制..................................................................................................................................................................................... 1-4线缆锁槽......................................................................................................................................................................................... 1-4设置监视器........................................................................................................................................................................................... 1-5连接和打开监视器电源................................................................................................................................................................. 1-5第2章调整和使用显示器......................................................2-1舒适和辅助功能................................................................................................................................................................................... 2-1安排您的工作区域......................................................................................................................................................................... 2-1放置显示器..................................................................................................................................................................................... 2-1关于健康工作习惯的小技巧......................................................................................................................................................... 2-2调整显示器图像 ...................................................................................................................................................................................2-3使用直接访问控件......................................................................................................................................................................... 2-3使用On-Screen Display (OSD,屏幕显示)控件........................................................................................................................ 2-4选择受支持的显示模式................................................................................................................................................................. 2-8了解电源管理 .......................................................................................................................................................................................2-9保养显示器 .........................................................................................................................................................................................2-10卸下监视器底座和支撑臂................................................................................................................................................................. 2-10壁挂 (可选)....................................................................................................................................................................................... 2-10第3章参考信息..............................................................3-1显示器规格........................................................................................................................................................................................... 3-1故障排除............................................................................................................................................................................................... 3-3手动图像设置................................................................................................................................................................................. 3-4手动安装显示器驱动程序............................................................................................................................................................. 3-5在Windows 7系统中安装显示器驱动程序.............................................................. 3-5在Windows 10系统中安装显示器驱动程序............................................................. 3-6获得进一步帮助.................................................................................... 3-6附录A. 服务和支持...................................................................................................................... A-1电话技术支持 ..................................................................................................................................................................................... A-1附录B. 声明................................................................................................................................... B-1回收信息.............................................................................................................................................................................................. B-2商标...................................................................................................................................................................................................... B-2电源线和电源适配器.......................................................................................................................................................................... B-3《废弃电器电子产品回收处理管理条例》提示性说明.................................................................................................................. B-3中国环境标志产品认证提示性说明.................................................................................................................................................. B-3中国能源效率标识.............................................................................................................................................................................. B-3有害物质.............................................................................................................................................................................................. B-4 China RoHS 合格评定制度标识........................................................................... B-4安全事项一般安全原则有关安全使用计算机方面的提示,请访问:/safety在安装本产品之前,请阅读“安全事项”危险避免碰撞危险:•请勿卸下机盖。
龙岩市基本养老保险业务服务指南
龙岩市基本养老保险业务服务指南(试行)经办机构名称目录第一章基本养老保险参保登记 (3)一、参保单位登记 (3)二、参保单位变更登记 (5)三、参保单位合并登记 (5)四、参保单位分立登记 (7)五、参保单位注销登记 (7)六、参保人员登记 (9)第二章基本养老保险关系转移接续 (12)一、基本养老关系转移-省内转入(不含厦门) (12)二、基本养老保险关系转移-省外转入(含厦门) (14)三、基本养老保险关系转移-省内转出(不含厦门) (18)四、基本养老保险关系转移-省外转出(含厦门) (20)第三章基本养老保险参保人员减员处理 (22)一、参保人员减员处理(含开具缴费凭证) (22)第一章基本养老保险参保登记一、参保单位登记受理事项参保单位登记,本标准适用于本经办机构行政区域内城镇各类企业、城镇个体工商户、社会团体和民办非企业等社会组织的社会保险参保登记。
受理依据1.《社会保险登记管理暂行办法》(劳社部令[1999]第1号)2.《福建省社会保险费征缴办法》(福建省人民政府令第58号)3.《福建省社会保险费征缴管理业务规程(试行)》(闽劳社文[2004]356号)4.《关于贯彻〈关于妥善解决宗教教职人员社会保障问题的意见〉的实施办法》(闽民宗[2010]144号)5.国家、省有关规定受理条件符合《福建省社会保险费征缴管理业务规程(试行)》(闽劳社文[2004]356号)第一章第二节规定:本省行政区域内国有企业、城镇集体企业、外商投资企业、城镇私营企业和其他城镇企业及其职工,城镇个体工商户及其雇工,实行企业化管理的事业单位及其职工,按国务院有关规定移交地方统筹的中央属行业及其职工,有缴费基本养老保险费的义务;本省行政区域内国有企业(含中央属行业)、城镇集体企业、外商投资企业、城镇私营企业和其他城镇企业及其职工,事业单位及其职工,社会团体及其专职人员,民办非企业单位及其职工、有雇工的城镇个体工商户及其雇工,有缴纳失业保险费的义务。
科技成果登记服务指南说明书
科技成果登记服务指南一.填报路径科技大脑——浙江省科技项目管理系统——我的成果登记二.基本信息(1)成果类别:基础理论/应用技术/软科学(2)成果年份:自动生成,不需要填写(3)成果名称:课题在批准立项时的名称,根据计划任务书或合同(协议)书与课题名称需保持完全一致,也可按照鉴定(评价)报告上的名称填写。
(注意:不能以单一论文或者专利的名称作为成果登记名称)三.成果概况(1)研究起始日期、终止日期:与计划书或合同书保持一致(2)推荐单位:温州医科大学(3)成果体现形式:按论文、著作、研究报告、其他择一填写(4)成果水平:根据评审结论择一填写。
对成果水平未做评价的填写“未评价”。
(5)合作形式:只有一个完成单位的,填写“独立研究”;有两个或两个以上完成单位的,根据合作单位的性质按“与企业合作、与院校合作、与研究院所合作、与国(境)外合作、其他”择一填写。
(6)学科分类:按《学科分类与代码》(GB/T13745-2009)填写,最多填写2个。
(7)中图分类:按中国图书资料分类法(第四版)填写,最多填写2个。
内部资料料内部资料料内部资料内部资料内部资料内部资(8)战略性新兴产业:单选。
不属于战略性新兴产业的成果不填此项。
(9)社会经济目标:单选。
参见国家标准《社会经济目标分类与代码》GB/T 24450-2009。
(10)成果应用行业:单选。
参见《国民经济行业分类与代码》(GB/T4754—2011)。
四.立项评价、(1)课题来源:单选。
如列入多项计划,按最高级别计划填写。
国家科技计划:指正式列入国家科技计划的项目,包括:科技重大专项、自然科学基金、重点基础研究发展计划(973计划)(含“重大科学研究计划”)、高技术研究发展计划(863计划)、科技支撑计划、科技基础条件平台建设、星火计划、火炬计划、国家重点新产品计划、国家软科学研究计划、国际科技合作专项(包括“对俄科技合作专项”、“中欧中小企业节能减排科研合作资金”)、国家重点实验室(含“国家实验室”)、国家工程技术研究中心、科技型中小企业技术创新基金、重大科学仪器设备开发专项、科技基础性工作专项、国家野外科学研究观测台站、农业科技成果转化资金、科技富民强县专项行动计划、科研院所技术开发研究专项资金、国际热核聚变实验堆(ITER)计划专项、其他等。
公司行政服务指南(模板)
前台
前台接待、电话接听、传递文件
3 行政总务
行政主管 行政主管 行政专员
会议接待,综合事务对接 合事务对接、行政维修、安保维护、绿植养护 用车申请、票务、酒店预定
组织架构-主要职能对接 | THE COMPANY STRUCTURE
集团主要职能对接人
序号 1
对接事项 IT服务
QQ群: 电话:
部门组别
便民用品
地点
前台
前台
医务类
创可贴、医用棉签、云南白药喷雾剂、 创可贴、医用棉签、一次性口罩、劳保手
一次性口罩、劳保手套
套
日常类
吹风机、熨斗、体温计、针线包、多头 吹风机、体温计、针线包、多头充电线、
充电线、一次性杯子
一次性杯子
借用的物品(一次性除外), 请随借随还哦!
后勤保障 | LOGISTICAL SUPPORT
2. 前台
前台受理:签收完毕
• 收到前台电话通知后,申请 人本人到前台领取门禁卡
3. 申请人
说明 遗失补办需自费50元现金作为工本费,离职遗失自费或从工资扣除50元。
前台服务热线:
前台服务-停车卡办理 | RECEPTION SERVICE
停车卡办理
准备材料:身份证、驾驶证、 行驶证复印件、申请表(前台领 取)
宿舍周边生活圈
餐饮:自带餐、快餐食堂、聚会餐厅 交通:公交、地铁、自驾车 银行:中国银行、建设银行、招商银行
周边生活圈-新浩:餐饮、交通、银行 | PERIPHERAL EQUIPMENT
自带餐:公司茶水间提供冰箱及微波炉,可保鲜热饭;
快餐类:人均15元
餐 饮
① 快乐园快餐店(食堂):A座负一楼,凭饭卡、门禁卡充值消费 ② 港琪茶餐厅:C座 ③ 潮味汤粉工业区工业厂房403栋03号
输血科检验结果解释与咨询服务指南
输血科检验结果解释与咨询服务指南1.目的为规范输血科(血库)对检验结果的解释及更好地提供临床输血询服务,满足临床临床输血相关科室的需要,针对输血实验检测中一些常见的问题,依据《输血实验室管理程序》435(I)条款的要求制定本指南。
2.适用范围适用于输血科技术人员向临床医护人员提供检验结果的解释与咨询服务。
3.职责3.1输血科技术人员3.1.1负责向临床医护人员解释检验结果并提供咨询服务。
4.指引要点(以问答形式)4.1交叉配血用血标本有哪些要求?交叉配血用血标本准确无误来自患者本人,能够代表患者当前免疫学状态,EDTA-K2抗凝。
详见《血标本管理程序》4.5.4条款。
4.2什么是红细胞不规则抗体?红细胞不规则抗体是指不符合ABO血型系统的Land-Steiner法则,意外存在于血清中的抗-A、抗-B及抗-AB 以外的血型抗体。
红细胞不规则抗体一般是妊娠和(或)输异体免疫刺激产生,也包括细菌和病毒感染以及由于肿瘤性疾患引起的抗原性物质刺激所产生的“天然抗体二4.3ABO血型正反定型不一致的常见原因有哪些?ABO血型正反定型不一致的常见原因有:①漏加试剂、器材不洁、试剂污染或失效、血标本或试剂搞错等;②被检血清中存在IgM型红细胞不规则抗体,如同种抗-P、自身抗-1等;③红细胞悬液过浓或过淡,导致抗原抗体比例不适当,出现前带或后带现象;④受检红细胞上抗原位点过少(如亚型)或抗原性减弱(如白血病)或CiSAB等;⑤受检血清蛋白紊乱(如巨球蛋白血症)或实验温度过高,常引起红细胞呈缗线状凝集;⑥受检血清中抗-A或抗-B效价下降或缺失,如老年人血清抗体效价大幅下降、兵种免疫球蛋白缺乏症患者;⑦各种原因引起的红细胞溶血,误认为不凝集;部分溶血时,可溶性血型物质中和了相应的抗体,可导致假阴性结果;⑧由细菌污染或遗传因素引起多凝集或全凝集;⑨近期曾输过异形血或嵌合体血型,表现为“混合外观凝集”;⑩革兰阴性杆菌感染使红细胞获得“类B”活性。
美的KFR-35GW N8MXA1变频挂壁式空调器使用说明书
使用前请仔细阅读本说明书本说明书包含服务指南,请务必妥善保管使用安装说明书变频分体挂壁式空调器目录 CONTENTS安装说明/ 21使用说明/ 2警告/ 2空调器主体构件/ 3遥控器使用/ 4智能家电联网指引/ 10技术参数/ 11产品中有害物质的名称及含量/ 12故障核查/ 13常见现象/ 14维护保养/ 16使用条件/ 18使用注意事项/ 19安全注意事项/ 21安装简图及附件/ 23室内机安装/ 24室外机安装/ 26检验运行/ 28维修注意事项/ 29服务指南/ 33安装服务/ 33售后服务/ 33责任说明/ 34适用机型KFR-35GW/N8MXA1- 美的全直流变频空调采用直流变频压缩机、直流室内风扇电机、直流室外风扇电机和全直流精控 系统。
- 本空调器具有室外除尘功能,在关机后出现室外风机反转为正常现象。
适用面积备注:- 上表推荐的面积是按房间标准高度2.8米计算,如果您的房间高度高于2.8米,请选择制冷量更大的 机型;- 空调器的适用面积与使用空调器的房间朝向、温湿度、楼层、房高、门窗的面积及多少有关,因此 上表的适用面积只作为推荐参考值。
警告- 空调器使用的制冷剂为环保的碳氢物R32,该制冷剂无色无味,属于可燃性制冷剂, 燃烧等级为A2L;- 在安装、使用、维修前请先阅读使用说明书;- 空调器安装、运行和存放的房间面积需要满足说明书内的技术参数页规定的面积;- 除厂商特别推荐,不要使用任何方法来加速除霜过程或对结霜部分进行清洁;- 空调器应储藏在没有持续火源工作的房间内(例如:明火,点燃的煤气器具,打开 的电加热器);- 请勿刺破或点燃空调器;- 必须采用真空泵进行排空作业,严禁采用机身内制冷剂排空;- 安装、移机或维修时,请联系当地美的服务网点,禁止非美的售后服务人员进行处 理;- 应遵守国家有关气体法规的规定;- 空调器的贮存应能防止因事故引起的机械损伤。
使用说明Use Instruction空调器主体构件室外机遥控器遥控器7号电池进风(背面)进风(侧面)室内机显示屏进风口使用说明安装说明服务指南遥控器使用风向显示语音显示- 使用时,需保持遥控器与空调器 8 米范围内,将遥控器对准室内机信号接收窗;- 请尽量避开窗帘、门、墙体、电子装置,以免影响或干扰信号发射与连接;- 满足以上条件下,如出现信号接收失败、发射符号 不闪烁、电池符号显示 、 液晶显示模糊或显示内容为复位等情况时,电池电量仅支持显示、不支持发射, 请更换新电池;- 请保持遥控器免受阳光直射、极热温度或液体浸入。
Dell EMC 服务器管理员存储管理 9.2.1 用户指南说明书
Dell EMC Server Administrator 存储管理 9.2.1用户指南注、小心和警告注: “注”表示帮助您更好地使用该产品的重要信息。
小心: “小心”表示可能会损坏硬件或导致数据丢失,并说明如何避免此类问题。
警告: “警告”表示可能会造成财产损失、人身伤害甚至死亡。
© 2019 Dell Inc. 或其子公司。
保留所有权利。
Dell、EMC 和其他商标是 Dell Inc. 或其附属机构的商标。
其他商标可能是其各自所有者的商标。
2019 - 02Rev. A001 概览 (12)本发行版中的新增功能 (12)安装 Storage Management 之前 (12)控制器固件和驱动程序的版本要求 (12)支持的控制器 (13)对磁盘和卷管理的支持 (14)2 使用入门 (15)启动 Storage Management (15)在运行 Microsoft Windows 的系统上 (15)在运行 Linux 和任何远程系统的系统上 (15)用户权限 (16)使用图形用户界面 (16)存储对象 (16)运行状况 (16)信息或配置 (16)使用 Storage Management 命令行界面 (16)显示联机帮助 (17)常用存储任务 (17)3 理解 RAID 概念 (18)RAID (18)硬件和软件 RAID (18)RAID 概念 (18)RAID 级别 (19)为了可用性和性能组织数据存储 (19)选择 RAID 级别和连锁 (19)连锁 (20)RAID 级别 0 - 分条 (20)RAID 级别 1 - 镜像 (21)RAID 级别 5 - 带有分布式奇偶校验的分条 (22)RAID 级别 6 - 带有额外分布式奇偶校验的分条 (22)RAID 级别 50 - 在 RAID 5 组上分条 (23)RAID 级别 60 - 在 RAID 6 组上分条 (24)RAID 级别 10 - 分条的镜像 (25)比较 RAID 级别和连锁性能 (26)非 RAID (27)4 快速访问存储状况和任务 (28)存储设备运行状况 (28)热备份保护策略 (28)目录3存储属性和当前活动 (29)警报或事件 (29)监测 RAID 控制器上的磁盘可靠性 (29)使用警报检测故障 (30)显示配置更改的时间延迟 (30)5 PCI Express 固态设备支持 (31)PCIe SSD (31)PCIe SSD 功能特性 (31)PCIe SSD 子系统属性 (31)物理设备属性 (32)物理设备任务 (34)闪烁和取消闪烁 PCIe SSD (35)准备卸下 PCIe SSD (35)导出日志 (35)在 NVMe PCIe SSD 上执行加密擦除 (35)插槽卡中的 PCIe SSD 任务 (36)要在 Storage Management 中找到插槽卡中的 PCIe SSD 的“加密擦除” (36)PCIe SSD 子系统运行状况 (36)背板 (36)背板固件版本 (37)6 存储信息和全局任务 (38)存储属性 (38)全局任务 (38)设置剩余额定写入寿命阈值 (38)设置可用的备用阈值 (39)存储控制器属性 (40)存储组件 (41)7 控制器 (42)控制器 (42)RAID 控制器技术 - SATA 和 SAS (42)SAS RAID 控制器 (43)RAID 控制器功能 (43)控制器—支持的 RAID 级别 (43)控制器 - 支持的条带大小 (44)RAID 控制器读、写、高速缓存和磁盘高速缓存策略 (44)读取策略 (44)写入策略 (44)高速缓存策略 (45)磁盘高速缓存策略 (45)PERC 控制器上的后台初始化 (46)非 RAID 控制器说明 (46)4目录固件或驱动程序版本 (47)固件或驱动程序属性 (47)控制器运行状况 (47)控制器组件 (47)控制器属性和任务 (48)控制器任务 (51)创建虚拟磁盘 (52)启用控制器警报 (52)禁用控制器警报 (52)关闭控制器警报 (52)测试控制器警报 (52)设置重建率 (52)重设控制器配置 (53)导出控制器日志文件 (54)外部配置操作 (54)导入外部配置 (56)导入或恢复外部配置 (57)清除外部配置 (57)外部虚拟磁盘中的物理磁盘 (58)设置后台初始化率 (60)设置检查一致性率 (61)设置重新构建率 (61)设置巡检读取模式 (62)启动和停止巡检读取 (63)更改控制器属性 (63)管理物理磁盘电源 (64)管理保留的高速缓存 (66)加密密钥 (67)转换为非 RAID 磁盘 (69)转换为 RAID 型磁盘 (69)更改控制器模式 (69)自动配置 RAID0 操作 (70)系统配置锁定模式 (71)系统配置锁定模式开启时支持的全局任务 (71)系统配置锁定模式开启时支持的控制器任务 (72)系统配置锁定模式开启时支持的控制器报告 (73)系统配置锁定模式开启时支持的虚拟磁盘任务 (73)系统配置锁定模式开启时支持的虚拟磁盘任务 (74)查看可用报告 (74)可用报告 (75)查看巡检读取报告 (75)查看检查一致性报告 (75)设置冗余路径配置 (75)查看插槽占用报告 (77)目录5物理磁盘固件版本报告属性 (78)8 支持 PERC 9 和 PERC 10 硬件控制器 (79)PERC 9 和 PERC 10 硬件控制器上的 RAID 级别 10 虚拟磁盘支持 (79)带奇数跨度的 RAID 级别 10 虚拟磁盘的创建 (79)支持高级格式化 4KB 扇区硬盘驱动器 (80)热备用注意事项— 4KB 扇区硬盘驱动器 (80)重新配置注意事项 - 4KB 扇区硬盘驱动器 (81)9 BOSS-S1 RAID 控制器的支持 (82)10 机柜和背板 (83)背板 (83)灵活背板分区 (83)机柜 (83)MX5016s (84)机柜物理磁盘 (84)机柜风扇 (84)风扇属性 (85)机柜电源设备 (85)电源设备属性 (85)机柜温度探测器 (86)机柜管理模块 (87)机柜和背板运行状况 (89)机柜和背板属性与任务 (89)机柜管理 (93)识别机柜上的空置连接器 (93)机柜组件 (94)11 连接器 (95)信道冗余 (95)创建信道冗余虚拟磁盘 (95)在 PERC 控制器上创建信道冗余虚拟磁盘的物理磁盘 (95)使用 RAID 10 创建信道冗余虚拟磁盘 (96)使用 RAID 50 创建信道冗余虚拟磁盘 (96)连接器运行状况 (96)控制器信息 (96)连接器组件 (96)连接器属性和任务 (96)逻辑连接器属性和任务 (97)路径运行状况 (98)清除连接器冗余路径视图 (98)连接器组件 (98)6目录12 磁带驱动器 (99)磁带驱动器属性 (99)13 RAID 控制器电池 (100)电池属性和任务 (100)电池任务 (101)要在 Storage Management 中找到“延迟记忆周期” (101)14 物理磁盘或物理设备 (102)物理磁盘或物理设备更换指南 (102)为系统添加新磁盘 (102)对于 SAS 控制器 (102)更换收到 SMART 警报的物理磁盘 (103)磁盘是冗余虚拟磁盘的一部分 (103)磁盘不是冗余虚拟磁盘的一部分 (103)其他磁盘过程 (103)物理磁盘或物理设备属性 (103)物理磁盘或物理设备任务 (107)物理磁盘任务 (107)闪烁和取消闪烁物理磁盘 (108)移除死段 (108)准备移除 (108)重建数据 (108)Canceling A Rebuild (109)分配和取消分配全局热备用 (109)将物理磁盘设为联机或脱机 (109)执行清除物理磁盘和取消清除 (110)启用可恢复热备份 (111)执行加密擦除 (111)转换为 RAID 型磁盘 (112)转换为非 RAID 磁盘 (112)15 虚拟磁盘 (113)创建虚拟磁盘前的注意事项 (114)控制器的虚拟磁盘注意事项 (114)运行 Linux 的系统上虚拟磁盘注意事项 (115)每个虚拟磁盘的物理磁盘数 (115)每个控制器的最大虚拟磁盘数 (116)计算最大虚拟磁盘大小 (116)信道冗余虚拟磁盘 (116)创建虚拟磁盘 (116)重新配置或迁移虚拟磁盘 (117)虚拟磁盘重新配置和容量扩展的起始和目标 RAID 级别 (117)保持冗余虚拟磁盘的完整性 (118)目录7重建冗余信息 (119)管理虚拟磁盘坏块管理 (119)清除坏块的建议 (120)虚拟磁盘属性和任务 (120)虚拟磁盘属性 (120)虚拟磁盘任务 (122)虚拟磁盘—可用任务 (122)重新配置虚拟磁盘 (123)格式化、初始化、慢速初始化和快速初始化 (123)取消后台初始化 (123)恢复死段 (123)删除虚拟磁盘上的数据 (123)执行检查一致性 (124)取消检查一致性 (124)暂停检查一致性 (124)恢复检查一致性 (124)闪烁和取消闪烁虚拟磁盘 (124)重命名虚拟磁盘 (124)Canceling A Rebuild (125)更改虚拟磁盘策略 (125)更换成员磁盘 (125)清除虚拟磁盘坏块 (125)加密虚拟磁盘 (125)创建虚拟磁盘快速向导 (126)创建虚拟磁盘快速向导步骤 2 (126)创建虚拟磁盘高级向导 (127)创建虚拟磁盘高级向导步骤 2 (129)创建虚拟磁盘高级向导步骤 3 (130)跨接编辑 (131)重新配置虚拟磁盘 - 步骤 1 / 3 (131)要在 Storage Management 中找到“重新配置” (132)虚拟磁盘任务 - 重新配置步骤 2 / 3 (132)重新配置虚拟磁盘扩展虚拟磁盘容量 - 步骤 2 / 3 (133)虚拟磁盘任务 - 重新配置步骤 3 / 3 (133)慢速和快速初始化 (133)慢速初始化注意事项 (133)格式化或初始化磁盘 (134)要在 Storage Management 中找到虚拟磁盘任务 (134)删除虚拟磁盘 (134)删除虚拟磁盘 (134)在 Storage Management 中找到“删除” (135)重命名虚拟磁盘 (135)要重命名虚拟磁盘 (135)要在 Storage Management 中找到“重命名” (135)更改虚拟磁盘的策略 (135)8目录更改虚拟磁盘的读、写或磁盘高速缓存策略 (136)要在 Storage Management 中找到“更改策略” (136)分割镜像 (136)分割镜像 (136)要在 Storage Management 中找到分割镜像 (136)取消镜像 (136)要取消镜像 (137)要在 Storage Management 中找到“取消镜像” (137)分配和取消分配专用热备用 (137)分配专用热备用 (137)取消分配专用热备份 (137)要在 Storage Management 中找到“分配或取消分配专用热备份” (138)虚拟磁盘任务 - 更换成员磁盘步骤 1 / 2 (138)更换成员磁盘步骤 1 / 2 (138)要在 Storage Management 中找到“更换成员磁盘” (139)虚拟磁盘任务 - 更换成员磁盘步骤 2 / 2 (139)16 将物理磁盘和虚拟磁盘从一个系统移到另一个系统 (140)需要的条件 (140)SAS 控制器 (140)SAS 控制器 (140)迁移 SAS 虚拟磁盘到另一个系统 (140)17 使用热备份来保护虚拟磁盘 (141)理解热备用 (141)设置热备份保护策略 (141)专用热备用保护策略 (141)全局热备用保护策略 (142)热备用保护策略的注意事项 (142)OMSS_机柜仿射性注意事项 (142)18 故障排除 (143)常见故障排除步骤 (143)电缆连接正确 (143)系统要求 (143)驱动程序和固件 (143)隔离硬件问题 (144)更换故障磁盘 (144)在所选控制器上使用物理磁盘联机命令 (145)从移除错误物理磁盘中恢复 (145)解决 Microsoft Windows 升级问题 (145)虚拟磁盘故障排除 (145)无法重建 (146)重建完成但出现错误 (146)不能创建虚拟磁盘 (146)目录9最小容量虚拟磁盘在 Windows 磁盘管理中不可见 (147)运行 Linux 的系统上虚拟磁盘错误 (147)为冗余和非冗余虚拟磁盘使用相同物理磁盘的相关问题 (147)具体的问题情况和解决方案 (147)物理磁盘脱机或显示错误状态 (148)接收到一个带有更换、检测或介质错误的坏块警报 (148)在执行重建或在虚拟磁盘处于降级状态期间收到从 2146 到 2150 的警报 (148)在执行输入/输出、一致性检查、格式化或其他操作期间收到从 2146 到 2150 的警报 (148)读写操作遇到问题 (149)没有显示任务菜单选项 (149)重新引导期间“损坏的磁盘或驱动器”信息建议运行自动检查 (149)Windows 休眠后的错误状况和错误信息 (149)更新温度探测器状态前 Storage Management 可能会延迟 (149)重新引导后,Storage Management 可能会延迟显示存储设备 (149)无法登录到远程系统 (149)无法连接到运行 Microsoft Windows Server 2003 的远程系统 (150)在 Mozilla 浏览器中重新配置虚拟磁盘显示故障 (150)物理磁盘显示在连接器对象下,而不是机柜对象下。
幼儿园保育教育评估指南a1办园方向
幼儿园保育教育评估指南a1办园方向下载温馨提示:该文档是我店铺精心编制而成,希望大家下载以后,能够帮助大家解决实际的问题。
文档下载后可定制随意修改,请根据实际需要进行相应的调整和使用,谢谢!并且,本店铺为大家提供各种各样类型的实用资料,如教育随笔、日记赏析、句子摘抄、古诗大全、经典美文、话题作文、工作总结、词语解析、文案摘录、其他资料等等,如想了解不同资料格式和写法,敬请关注!Download tips: This document is carefully compiled by the editor. I hope that after you download them, they can help you solve practical problems. The document can be customized and modified after downloading, please adjust and use it according to actual needs, thank you!In addition, our shop provides you with various types of practical materials, such as educational essays, diary appreciation, sentence excerpts, ancient poems, classic articles, topic composition, work summary, word parsing, copy excerpts, other materials and so on, want to know different data formats and writing methods, please pay attention!幼儿园保育教育评估指南a1办园方向是指导幼儿园进行保育教育评估的指南,其中包含了办园方向的相关内容。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
服务指南编号A1
服务指南名称
申请成立外国商会办事指南
发布日期2017年1月3日
实施日期2017年1月3日
发布机构民政部社会组织管理局
申请成立外国商会办事指南
一、适用范围
外国在中国境内的商业机构及人员可以申请
二、事项审查类型
前审后批
三、审批依据
《外国商会管理暂行规定》
四、受理机构
民政部
五、决定机构
民政部
六、数量限制
外国商会应当按照国别成立
七、申请条件
(1)有一定数量的会员:个人会员50个(含)以上,或者单位会员30个(含)以上;由个人会员和单位会员混合组成的,总数50个(含)以上;会员要在领域内具有广泛代表性;
(2)有规范的名称、固定的住所、明确的章程和相应的组织机构;
(3)有10万元以上活动资金。
八、外国商会名称的要求
外国商会的名称应当冠其本国国名加上“中国”二字。
九、禁止性要求
有下列情形之一的,登记管理机关不予批准:
(1)发起人、拟任负责人在华境内有犯罪记录的;
(2)在申请时弄虚作假的;
(3)有法律、行政法规禁止的其他情形的。
十、申请材料目录
外国商会发起人申请成立外国商会时,应当提交的书面材料如下:
(1)驻华使馆推荐信。
内容应包括但不限于:两国贸易发展状况和前景;发起人在两国贸易中的地位和影响力;使馆知悉外国商会按国别成立的登记原则;使馆推荐或支持发起人成立外国商会。
(2)发起人资格适当证明材料。
1)作为发起人的外国公司、企业以及其他经济组织依法在中国境内设立的代表机构和分支机构的证书复印件(加盖公章);
2)作为发起人的个人简历以及在华境内无犯罪记录承诺。
(3)成立登记申请书。
1)抬头写:“民政部”;
2)内容应包括但不限于:成立理由、宗旨、背景、业务范围、资金来源、发起人及发起人单位情况、会员范围。
申请书应由发起人共同签署。
(4)申请表格。
1)所有表格可从“中国社会组织网-办事服务平台-表格下载”中直接下载;
2)表格包括:《外国商会法人登记申请表》;《外国商会法定代表人登记表》;《外国商会负责人备案表》(会长、副会长、秘书长每人一表);《外国商会章程核准表》。
(5)外国商会章程。
(6)资金来源证明。
写明拟捐赠金额、作为拟成立的该外国商会的活动资金,承诺该资金为捐赠者的合法财产,捐赠人签字或者捐赠单位盖章;
(7)住所证明。
须由提供住所的单位或个人出具使用证明,并提供房屋产权证复印件,若为租赁的,还须提供租赁合同复印件。
(8)会员名册。
1)团体会员和个人会员应分别列出;
2)个人会员应列出姓名、工作单位和职务、联系电话;
3)团体会员应列出单位名称、地址、负责人、联系电话;
4)名单后应附上所有会员的回执,个人会员回执须由本人签字,团体会员回执须加盖单位印章。
十一、办理基本流程
申请成立外国商会,具体程序为:
(1)发起人向登记管理机关提交成立申请材料;
(2)登记管理机关审查批准后,发起人在3个月内,开展成立工作,召开成立大会,通过章程,产生执行机构,负责人和法定代表人;
(3)发起人在成立工作完成后,在“中国社会组织网-社会组织网上办事大厅”上填报成立登记材料,登记管理机关核准无误后,发给成立登记批复和外国商会法人登记证书;(4)外国商会成立后,在民政部民间组织服务中心申请刻制印章,在税务部门办理税务登记,在银行开立银行账户,办理完毕后报登记管理机关备案。
十二、办结时限
登记管理机关自收到所列全部有效文件之日起60日内,作出准予或者不予登记的决定。
登记管理机关在审查发起人提交的文件时,可以根据实际情况征求有关方面意见或者组织有关专家进行评估,所需时间不包括在登记时限内。
十三、收费依据及标准
无
十四、结果送达
直接送达
十五、咨询途径
申请人可以拨打咨询电话,或者登陆中国社会组织网查询办理进度。
十六、监督投诉渠道
投诉电话:
十七、行政相对人权利和义务
如不服本行政行为,可向民政部提出行政复议申请,或者向北京市第二中级人民法院提起行政诉讼。
十八、办公地址和时间
民政部社会组织服务大厅(北京市东城区东安门大街55号王府世纪写字楼308室)
周一至周五上午8:30-11:30,下午1:30-5:00(法定节假日除
外)
申请人可以通过中国社会组织网(.cn)办事指南一栏,查询服务指南完整版。