windows server 2008 standard edition 的安装方式主要有哪几种

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了windows server 2008 standard edition 的安装方式主要有哪几种相关的知识,希望对你有一定的参考价值。

Windows Server 2008是微软的一个服务器操作系统,它继承了Windows Server 2003,在进行开发及测试时的代号为Windows Server "Longhorn"。本文介绍了Windows Server 2008光盘引导方式安装。
方法/步骤
1
1、 设置引导方式

在BIOS设置通过光盘引导。

2
2、启动安装程序

在屏幕出现press any key to boot时按下任意键,系统进入引导界面。

3
3、进入欢迎界面

安装程序启动,选择您要安装的语言类型,同时选择适合自己的时间和货币显示种类及键盘和输入方式,点击Next。

4
5、开始安装

点击Install now,开始安装。

5
6、输入产品密钥

输入“产品密钥”,许可协议。当然您也可以不在这里输入“产品密钥”,而直接点击下一步,这时会出现一个警告,点击“否”即可。然后在出现的列表中选择你所拥有的密钥代表的版本,同时把下面的复选框的勾打上。

6
7、选择操作系统版本

选择Windows 2008 Server Standard,点击Next。

8、接受许可

勾选I accept the license terms,点击Next。

8
9、选择安装类型

选择安装类型,升级或者自定义(推荐),当然如果选择的是“用安装光盘引导启动安装”,升级是不可用的。

9
10、设置安装分区

安装Windows Server 2008的话你需要一个干净的大容量分区,否则安装之后分区容量就会变得很紧张。需要特别注意的是,Windows Server 2008只能被安装在NTFS格式分区下,并且分区剩余空间必须大于8G。如果安装程序无法识别硬盘,那么您需要在这里提供驱动程序。点击“加载驱动程序”图标,然后按照屏幕上的提示提供驱动程序,即可继续。当然,安装好驱动程序后,可能还需要点击“刷新”按钮让安装程序重新搜索硬盘。如果硬盘是全新的,还没有使用过,硬盘上没有任何分区以及数据,那么接下来还需要在硬盘上创建分区。这时候您可以点击“驱动器选项(高级)”按钮新建分区或者删除现有分区。

10
11、进行安装

安装结束后系统自动重启,进入到登录界面。

END
注意事项
第一次登录系统,需要设置administrator用户的口令。
参考技术A 除了常规使用的DVD启动安装方式外,还有升级安装,远程安装以及server core安装

ruby Clone Stand产品throght活动

#Esta tarea duplica los productos de los stands de un eventto hacia otro evento mas reciente.
#Normalmente se usa en conjunto con la tarea de duplicacion de stands.
#Relaciona los stands del evento anterior con el siguiente evento usando el nombre de la compañia que los reservo.
#No es transaccional
task :duplicate_product_services => [:environment] do
    from_event = Event.find(3376)
    from_event = Event.find(2189)
    to_event = Event.find(3660) #Target
    skipped, errors, repeated = [], [], []
    from_product_id = StandReservationProductField.get_public_ids(from_event.id).first
    to_product_id   = StandReservationProductField.get_public_ids(to_event.id).first
    product_fields_match = {}
    from_event.stand_reservation_product_fields.select(:id, :name).each do |field|
        to_field = StandReservationProductField.where(event_id: to_event.id, archived: false, draft: false).where("lower(trim(name)) = ?", field.name.strip.downcase).first
        product_fields_match[field.id.to_s] = to_field.id.to_s if to_field.present?
    end
    from_event.stands.each do |from_stand|
        from_reservation = from_stand.current_reservation
        next if from_reservation.blank? or from_reservation.stand_reservation_product_services.blank?
        to_stand = to_event.stands.joins(current_reservation: [:company]).where("lower(trim(companies.name)) = ?", from_reservation.company.name.strip.downcase).first
        if to_stand.blank? or to_stand.current_reservation.blank?
            skipped << "stand not found #{from_stand.identifier}"
            next
        end
        new_reservation = to_stand.current_reservation
        to_stand_product_list = new_reservation.stand_reservation_product_services.present? ? new_reservation.stand_reservation_product_services.map{|p| p.values[to_product_id.to_s]} : []
        to_stand_product_list = to_stand_product_list.map{|name| name.strip.downcase if name.present? } if to_stand_product_list.present?
        from_reservation.stand_reservation_product_services.each do |from_product|
            next if from_product.values.blank?
            product_name = from_product.values[from_product_id.to_s]
            product_name = product_name.strip.downcase if product_name.present?
            puts "-------------------"
            puts "-------------------"
            puts "-------------------"
            puts "-------------------"
            puts to_stand_product_list
            if to_stand_product_list.include? product_name
                skipped << "Product #{from_stand.identifier} #{product_name}"
                next
            end
            new_product =  StandReservationProductService.create_draft(new_reservation.id)
            from_values = from_product.values
            from_product_name = from_values.values.first
            new_values = Hash[from_values.map{|k,v| [product_fields_match[k.to_s], v]}]
            new_product.values = new_values
            new_product.draft = false
            if !new_product.save
                errors << "Stand: #{from_stand.identifier} product: #{from_product_name} #{new_product.errors.full_messages.join(',')}"
            else
                create_images = ModelAsset.get_images_for_entity(from_product.id, ModelAsset::RELATED_ENTITY_TYPE[:stand_reservation_product_services])
                create_images.each do |create_img|
                    next if !create_img.attachment.exists?
                    url = create_img.attachment.url
                    file = ModelAsset.new(related_entity_id: new_product.id, related_entity:  ModelAsset::RELATED_ENTITY_TYPE[:stand_reservation_product_services])
                    file.asset_type = ModelAsset::ASSET_TYPE[:image]
                    file.attachment = URI.parse(url)
                    errors << "Image for product Stand: #{from_stand.identifier} product: #{from_product_name} #{file.errors.full_messages.join(',')}" if !file.save
                end
            end
        end
    end
end

以上是关于windows server 2008 standard edition 的安装方式主要有哪几种的主要内容,如果未能解决你的问题,请参考以下文章

windows Server 2008各版本有何区别

虚拟机windows server2008r2怎么激活

windows server 2008 是啥东西

Hyper-V Server 2008 和 在Windows Server 2008 中实现的Hyper-V有什么区别?

Windows Server 2008 是否已经有了?

windows server 2008 可以安装sql server 2016吗