代码拉取完成,页面将自动刷新
同步操作将从 chuanjiao10/kasini3000 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#建议保存编码为:bom头 + utf8
#只支持用root权限,的ssh-key-file,安装powershell
param
(
[parameter(Mandatory = $true)]
[ValidateNotNullOrEmpty()]
[Alias("ipaddress")][String]$目的ip地址,
[Alias("port")][uint16]$端口 = 22,
[String]$ssh_key_file_path = "${env:USERPROFILE}\.ssh\id_rsa",
[ValidateNotNullOrEmpty()]
[Alias("linux_powershell_files_path")][String]$linux版powershell源文件目录 = 'c:\ProgramData\kasini3000\master_script\powershell-7.2-linux-x64\'
)
# & 'v-kai开启详细信息输出.ps1'
if ( ($IsWindows -eq $True) -or ($PSVersionTable.psversion.major -lt 6) ) #win
{
}
else
{
Write-Error "应该使用另一个脚本!"
exit 11
}
if (Test-Path -LiteralPath "${linux版powershell源文件目录}\pwsh")
{
}
else
{
Write-Error '错误:找不到powershell源文件目录,退出码 1'
exit 1
}
if (Test-Path -LiteralPath $ssh_key_file_path)
{
}
else
{
Write-Error '错误:找不到ssh_key_file_path,退出码 2'
exit 2
}
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "rm -rf /opt/microsoft"
Start-Sleep 1
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "mkdir -p '/opt/microsoft/powershell/7'"
Start-Sleep 1
$private:cmd = @"
lcd {0}
put -R . /opt/microsoft/powershell/7/
"@ -f $linux版powershell源文件目录
$private:cmd | sftp.exe -i $ssh_key_file_path -P $端口 root@$目的ip地址 1>$null
Start-Sleep 2
#分离成单独的命令,报错比较清楚
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "chmod -R 755 /opt/microsoft/powershell/7/pwsh"
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh"
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "echo '' >> /etc/ssh/sshd_config"
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "echo 'Subsystem powershell /usr/bin/pwsh -sshs -NoLogo -NoProfile' >> /etc/ssh/sshd_config"
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "echo 'UseDNS no' >> /etc/ssh/sshd_config"
Start-Sleep 1
ssh.exe -i $ssh_key_file_path -p $端口 root@$目的ip地址 "systemctl restart sshd.service"
Write-Warning 'info : Manually install openssl-libs, libicu, krb5-libs, on this pc'
exit 0
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。