宇宙主机交流论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

欧基零壹微头条IP归属甄别会员请立即修改密码
楼主: 548965564

宇宙最强移动云电脑一键dd教程,实现无需客户端24小时不...

  [复制链接]
发表于 2023-11-14 17:58:47 | 显示全部楼层
什么时候添加其他支付方式,影响销量啊
发表于 2023-11-15 07:51:32 来自手机 | 显示全部楼层
来一台 最低的多少
发表于 2023-11-15 08:53:25 | 显示全部楼层
想买,但是1贴会员,且只能U支付。 让了
发表于 2023-11-15 09:09:04 | 显示全部楼层
可以安装安卓模拟器吗
发表于 2023-11-15 09:55:53 | 显示全部楼层
新号的第一篇收藏
发表于 2023-11-15 10:20:31 | 显示全部楼层
dd centos ,ubuntu 也能吗??
发表于 2023-11-15 13:59:59 | 显示全部楼层
  1. [url=home.php?mod=space&uid=20206]@echo[/url] off
  2. set confhome=https://raw.githubusercontent.com/bin456789/reinstall/main
  3. setlocal EnableDelayedExpansion

  4. :: Windows 7 SP1 winhttp 默认不支持 tls 1.2
  5. :: https://support.microsoft.com/en-us/topic/update-to-enable-tls-1-1-and-tls-1-2-as-default-secure-protocols-in-winhttp-in-windows-c4bd73d2-31d7-761e-0178-11268bb10392
  6. :: 有些系统根证书没更新
  7. :: 所以不要用https
  8. :: 进入脚本目录
  9. cd /d %~dp0

  10. :: 检查是否有管理员权限
  11. openfiles 1>nul 2>&1
  12. if not !errorlevel! == 0 (
  13.     echo Please run as administrator^^!
  14.     exit /b
  15. )

  16. :: 有时 %tmp% 带会话 id,且文件夹不存在
  17. :: https://learn.microsoft.com/troubleshoot/windows-server/shell-experience/temp-folder-with-logon-session-id-deleted
  18. if not exist %tmp% (
  19.     md %tmp%
  20. )

  21. :: 检查是否国内
  22. if not exist %tmp%\geoip (
  23.     call :download https://www.cloudflare.com/cdn-cgi/trace %tmp%\geoip
  24. )
  25. findstr /c:"loc=CN" %tmp%\geoip >nul
  26. if !errorlevel! == 0 (
  27.     set mirror=http://mirror.nju.edu.cn

  28.     echo !confhome! | findstr /c:"://raw.githubusercontent.com/" >nul
  29.     if !errorlevel! == 0 (
  30.         set confhome=https://ghps.cc/!confhome!
  31.     )
  32. ) else (
  33.     set mirror=http://mirrors.kernel.org
  34. )


  35. :: pkgs 改动了才重新运行 Cygwin 安装程序
  36. set pkgs="curl,cpio,p7zip,bind-utils,ipcalc"
  37. set tags=%tmp%\cygwin-installed-!pkgs!
  38. if not exist !tags! (
  39.     :: 检查32/64位
  40.     wmic os get osarchitecture | findstr /c:"64" >nul
  41.     if !errorlevel! == 0 (
  42.         set arch=x86_64
  43.         set dir=/sourceware/cygwin
  44.     ) else (
  45.         set arch=x86
  46.         set dir=/sourceware/cygwin-archive/20221123
  47.     )

  48.     :: 下载 Cygwin
  49.     call :download http://www.cygwin.com/setup-!arch!.exe %tmp%\setup-cygwin.exe

  50.     :: 安装 Cygwin
  51.     set site=!mirror!!dir!
  52.     %tmp%\setup-cygwin.exe --allow-unsupported-windows^
  53.                             --quiet-mode^
  54.                             --only-site^
  55.                             --site !site!^
  56.                             --root %SystemDrive%\cygwin^
  57.                             --local-package-dir %tmp%\cygwin-local-package-dir^
  58.                             --packages !pkgs!^
  59.     && type nul >!tags!
  60. )

  61. :: 下载 reinstall.sh
  62. if not exist reinstall.sh (
  63.     call :download %confhome%/reinstall.sh %~dp0reinstall.sh
  64. )

  65. :: 运行 reinstall.sh
  66. :: 方法1:
  67. :: 在c盘根目录下执行 cygpath -ua . 会得到 /cygdrive/c,因此末尾要有 /
  68. for /f %%a in ('%SystemDrive%\cygwin\bin\cygpath -ua ./') do set thisdir=%%a
  69. %SystemDrive%\cygwin\bin\bash -l -c "%thisdir%reinstall.sh %*"

  70. :: 方法2:
  71. :: set PATH=/usr/local/bin:/usr/bin
  72. :: %SystemDrive%\cygwin\bin\bash reinstall.sh %*
  73. exit /b !errorlevel!





  74. :download
  75. :: bits 要求有 Content-Length 才能下载
  76. :: https://learn.microsoft.com/en-us/windows/win32/bits/http-requirements-for-bits-downloads
  77. :: certutil 会被 windows Defender 报毒
  78. echo Download: %~1 %~2
  79. certutil -urlcache -f -split %~1 %~2
  80. exit /b !errorlevel!
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|FastFib VPS论坛

GMT+8, 2024-9-21 00:29 , Processed in 0.062168 second(s), 5 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表