直接编辑apt-cyg 文件,找到md5sum,替换修改成sha512sum。

# check the md5
    digest=`cat "desc" | awk '/^install: / { print $4; exit }'`
    digactual=`sha512sum $file | awk '{print $1}'`
    if ! test $digest = $digactual
    then
      echo MD5 sum did not match, exiting
      #exit 1
    fi

然后重试apt-cyg install

相关文章:

  • 2021-06-11
  • 2022-12-23
  • 2021-11-03
  • 2021-12-09
  • 2022-12-23
  • 2022-01-12
  • 2022-12-23
猜你喜欢
  • 2021-11-04
  • 2021-10-19
  • 2022-01-22
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案