如何在 QEMU Mac 上作为来宾安装 windwos 作为主机

时间:2021-04-06 16:55:15

标签: qemu

我多次尝试在 QEMU 上安装 Windows 10,但不幸的是我失败了。 为此,我正在使用此配置文件:

    let touchedAt = recognizer.location(in: self.pinCreationMapView)
    let touchedAtCoordinate : CLLocationCoordinate2D = pinCreationMapView.convert(touchedAt, toCoordinateFrom: self.pinCreationMapView)
    let newPin = MKPointAnnotation()
    newPin.coordinate = touchedAtCoordinate
    pinCreationMapView.addAnnotation(newPin)
    
    let currentUserLocation = newPin.coordinate
    let db = Firestore.firestore()
    var ref: DocumentReference? = nil
    ref = db.collection("pins").addDocument(data: [
        "lat": currentUserLocation.latitude,
        "long": currentUserLocation.longitude
    ]) { err in
        if let err = err {
            print("Error adding document: \(err)")
        } else {
            print("Document added with ID: \(ref!.documentID)")
        }
    }
    
    
}

win10.qcow2 大小:80 GB

Win10_20H2_v2_English_x64.iso 是微软官方的windows镜像

运行 sh 文件后,我只得到一个没有错误输出的黑屏,只有一个永远保持在那里的闪烁光标。

我使用几乎相同的配置来运行 ubuntu,完全没有问题。那么有什么解决方案吗?

提前致谢。

0 个答案:

没有答案