Windows 7 全新安装:缺少 cd/dvd/媒体驱动程序?

4 windows-7 drivers

我有 Ubuntu 11.04,但我想回到 Windows 7。我知道这应该很容易,但我已经尝试了所有我认为无济于事的方法。我至少刻录了 6 个无法工作的 Windows 7 磁盘,在 DVD 和 USB 设备上尝试了多个 ISO 文件(假设有些文件以某种方式损坏),并且始终得到相同的错误。发生的情况是,当我从 USB/CD/DVD 驱动器重新启动和引导时,Windows 开始设置,但在开始安装之前,我收到一条错误消息,指出缺少 cd/dvd/media 驱动程序。然后它让我可以选择插入具有安装驱动程序的媒体。我读了几十个线程,最后从有同样问题的人那里读到了,发现它最终是因为他的 SATA 驱动程序,但我一直无法很好地导航 Ubuntu 以知道这是否属实,或从哪里获得 SATA 驱动程序。我应该尝试任何想法/修复?

编辑:我正在尝试替换 Ubuntu,而不是同时启动两个操作系统。

Wei*_*Shi 13

您的问题与 Ubuntu 无关。在使用 USB 将 Windows 7 安装到 SATA HDD 上时,我遇到了同样的问题。我发现的一些可能的解决方案包括

  • 如果用CD安装,用最慢的速度刻录ISO
  • 如果您使用 U 盘安装,当它要求驱动程序时,单击取消。进入欢迎屏幕后,将 USB 驱动器插入不同的 USB 端口。然后点击Install Now安装。

您也可以先尝试在虚拟机上安装您拥有的 ISO,以确保它没有损坏。

  • 这篇文章值得称赞。根据这篇文章,已有超过 280 人接受了这个答案。真的很好地想通了=-D https://answers.microsoft.com/en-us/windows/forum/windows_10-windows_install/windows-10-clean-install-a-media-driver-your/3068a127-f088-44a2 -af36-ba90a1604855?auth=1 (4认同)

小智 5

可能尝试从 USB 3.0/3.1 端口安装。Windows 通常没有这些驱动程序。尝试从普通 USB 端口安装它


小智 5

我在尝试在 Surface Pro 4 上安装带有多个 USB 驱动器(16 和 32GB)的 Windows 10 ISO 时遇到了同样的问题(不幸的是,它只有一个 USB 端口,一个 USB 3 端口,排除了 @wei-shi 的回答) )。

我的解决方案不是将 ISO 直接复制到驱动器,而是在其中创建一个 5GB FAT32 分区,将其标记为可启动,然后将文件从 ISO 复制到该分区中。完美启动,安装程序最终进入下一个屏幕。

在 Linux 上,这大致可以按如下方式完成:

sudo fdisk -l    # to figure out which connected drive is which

sudo fdisk /dev/sdb    # assuming "/dev/sdb" is the USB drive
    # You're now using fdisk, which has its own interactive interface.
    # It will create a partition on the USB drive for you to use as a FAT32 filesystem.
    # Type the following single-letter commands to go through the process:
    (m for help)

    o to clear out the partition table for a new empty one
    n for new partition
        (follow steps, [enter] for default position, size "+5G")
    l for see possible types
    t for set type
        (probably "b" for Win95 FAT32)
    a for mark as bootable
    w to write the partition table to the drive and quit
    q if it does not quit automatically after w

# Now you should be back in your normal command shell with a prompt like "$" rather than "Command (m for help):"

# Format the newly-created partition with a Windows FAT32 filesystem
sudo mkfs.fat -F 32 /dev/sdb1

# Create directories, and mount the ISO and the FAT32 filesystem to them
sudo mkdir /mnt/usb /mnt/iso
sudo mount /dev/sdb1 /mnt/usb
sudo mount -o loop ~/path/to/windows.iso /mnt/iso

# Copy the installer files to the USB drive
cp -r /mnt/iso/* /mnt/usb    # now wait...

# Eject the drive (and the ISO)
sudo umount /mnt/usb /mnt/iso    # and wait some more...

# It's safe to unplug the drive when the `umount` command finishes.
Run Code Online (Sandbox Code Playgroud)

可能有更简单的工具可以做到这一点,或者通过 Windows 安装来实现这一点的方法,但很难确切地知道它们会做什么,而至少在这方面,这是很好和简单的。我只知道当我一时兴起尝试这个方法时它起作用了。

祝你好运!


Red*_*ick 0

如果您“返回到 Windows-7”,这意味着计算机最初配备的是 Windows-7。在这种情况下,您应该忽略 Ubuntu 并使用计算机附带的 Windows-7 安装 CD/DVD 或 Windows-7 恢复 CD/DVD。如果您没有此类 CD/DVD,您应该向零售商索取一张或联系计算机制造商寻求支持。计算机随附的手册应说明如何重新安装 Windows-7。

我以为这是 Ubuntu 的问题,因为 Windows 7 64 位推荐使用 SATA 驱动程序,但我运行的是 Ubuntu,所以它自然不起作用。

当您启动 Windows-7 安装 CD/DVD 时,您并未运行Ubuntu。硬盘 (HDD) 上是否存在可启动 Ubuntu 文件无关,因为您的计算机从 CD/DVD 启动,而不是从 HDD 启动。