Changes between Version 10 and Version 11 of jazz/Hackintosh


Ignore:
Timestamp:
May 29, 2024, 12:25:13 AM (5 weeks ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • jazz/Hackintosh

    v10 v11  
    166166Could not access KVM kernel module: No such file or directory
    167167qemu-system-x86_64: failed to initialize kvm: No such file or directory
     168}}}
     169* 參考 `(OPTIONAL) Use this macOS VM disk with libvirt (virt-manager / virsh stuff)` 這段說明,試試看可否用 virt-manager 的 GUI 介面看到畫面。
     170{{{
     171ubuntu@ip-172-31-18-147:~/OSX-KVM$ sed "s/CHANGEME/$USER/g" macOS-libvirt-Catalina.xml > macOS.xml
     172ubuntu@ip-172-31-18-147:~/OSX-KVM$ virt-xml-validate macOS.xml
     173macOS.xml validates
     174ubuntu@ip-172-31-18-147:~/OSX-KVM$ virsh --connect qemu:///system define macOS.xml
     175error: Failed to define domain from macOS.xml
     176error: unsupported configuration: Emulator '/usr/bin/qemu-system-x86_64' does not support virt type 'kvm'
    168177}}}
    169178
     
    219228  * https://docs.darlinghq.org/known-nonfunctional-software.html
    220229* 看起來若要在 Linux 底下用 LINE,只有 Windows 版比較有機會。
     230* 回顧一下以前怎麼打包 deb 套件 -- [wiki:jazz/mpich2_deb]
     231* 參考 CI/CD 流程來看怎麼產生 DEB 套件
     232  * https://github.com/darlinghq/darling/blob/master/.circleci/config.yml
     233{{{
     234ubuntu@ip-172-31-18-147:~/darling$ git submodule sync
     235ubuntu@ip-172-31-18-147:~/darling$ git submodule update --init --recursive --depth=1
     236ubuntu@ip-172-31-18-147:~/darling$ sudo dpkg --add-architecture i386
     237ubuntu@ip-172-31-18-147:~/darling$ sudo apt-get update
     238ubuntu@ip-172-31-18-147:~/darling$ sudo apt-get install --no-install-recommends -y devscripts equivs debhelper libdistro-info-perl libfreetype6-dev:i386
     239ubuntu@ip-172-31-18-147:~/darling$ sudo mk-build-deps -i -r -t "apt-get --no-install-recommends -y" debian/control
     240ubuntu@ip-172-31-18-147:~/darling$ tools/debian/make-deb
     241}}}