no comments yet
02 Jan 2023

PHP安装Trader扩展

可以通过检查phpinfo()的结果来确认是否已安装,以下是安装步骤:
1,安装pecl

yum install php-pear

检验

pecl -v

Read more

no comments yet
27 Dec 2020

CentOS 7 一键安装桌面环境(可远程RDP连接)

使用Root用户运行如下脚本:

yum install curl ca-certificates -y && curl -sSL https://raw.githubusercontent.com/MeowLove/CentOS-One-click-Installation-of-Desktop-Environment-and-Remote-Desktop-Connection-RDP/master/download/main/install.sh | sudo bash

完成后。你就可以连接IP:3389(通过远程桌面连接)。默认RDP登陆账号:root,密码:你的root密码。

no comments yet
17 Apr 2020

阿里云国际1年试用机dd windows

执行命令

wget --no-check-certificate -qO InstallNET.sh 'https://moeclub.org/attachment/LinuxShell/InstallNET.sh' && bash InstallNET.sh -dd 'http://down.80host.com/iso/dd/WinSrv2008x64-Chinese_datacenter_sp1_vl_kvm_xen.vhd.gz'

查看安装进度
控制台中查看“远程连接”

Read more

no comments yet
07 Dec 2019

WIN7远程桌面提示“发生身份验证错误,要求的函数不受支持”

在WIN7环境下用远程桌面登录服务器时,提示发生身份验证错误,要求的函数不受支持,可以通过修改注册表(新增注册表键值)来解决:

  • 开始>>运行>>输入regedit打开注册表编辑器
  • 打开文件路径[HKEY_LOCAL_MACHINE]\Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters
    一般情况下,到了System之后就没了,缺少的可以自己创建文件夹。
  • 在Parameters文件夹里面新建 DWORD(32)位的。文件名 "AllowEncryptionOracle",值:2

批处理脚本:

REG ADD HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System\CredSSP\Parameters /v "AllowEncryptionOracle" /t reg_DWORD /d 2 /f