-
C#检测计算机上是否安装了某些软件
引入头文件 using System.Runtime.InteropServices; 然后,输入如下代码即可 static void Main() { StringBuilder result = new StringBuilder(); fo……
亦灵一梦 2020-04-210 1 -
C#中操作xml文件(插入节点、修改、删除)
已知有一个XML文件(bookstore.xml)如下: <?xml version="1.0" encoding="gb2312"?> <bookstore> <book genre="fantasy" IS……
亦灵一梦 2020-04-210 1 -
利用 HaProxy 实现中继(中转/端口转发)加速
1.安装HaProxy # Debian/Ubuntu系统: apt-get -y install haproxy # Centos系统: yum -y install haproxy 2.配置文件 路径为:/etc/haproxy/haproxy.cfg gl……
亦灵一梦 2020-04-200 1 -
linux安装Seafile
安装 Seafile 服务器之前,请确认已安装以下软件 python 2.7 python-setuptools python-imaging python-ldap python-urllib3 sqlite3 Debian/Ubuntu 环境 ap……
亦灵一梦 2020-04-130 1 -
DD Windows 一键脚本(包含GCP谷歌云Oracle甲骨文)
说明 无限制全自动dd安装Windows 突破没有VNC,没有救援模式,内存比dd包小的限制 使用Debian Live CD中的busybox做中间媒介,经过复杂的处理 使本机的网络参数……
亦灵一梦 2019-12-170 1 -
Http免费升级Https详细步骤【Let’s Encrypt】
1、Let's Encrypt Let's Encrypt 是一个免费、开放,自动化的证书颁发机构,由 ISRG(Internet Security Research Group)运作。ISRG 是一个关注网络安全的公……
亦灵一梦 2019-07-030 1 -
CentOS7如何执行PHP定时任务详解
一、CentOS 7 安装crontab: yum install crontabs 语法: crontab [-u <用户名称>][配置文件] 或 crontab [-u <用户名称>][-elr] 参数: -e ……
亦灵一梦 2019-05-270 1 -
WordPress插件安装失败解决办法
手动安装插件 因为WordPress插件安装的时候需要FTP,所以我想要找一种不需要FTP的办法。 根据路径(/wp-content/plugins)打开plugins文件,上传解压的zip包,……
亦灵一梦 2019-05-060 1 -
Centos7一键搭建内网穿透工具 frp 服务端
服务器系统为:centos7 X64 frp项目地址 frp一键安装包 开始安装 wget --no-check-certificate https://raw.githubusercontent.com/clangcn/onekey-install-s……
亦灵一梦 2019-05-060 1 -
SQLServer如何批量替换某一列中的某个字符串
Replace函数的用法: Replace(数据库的列名,'要被替换掉的字符串','要用于替换的字符串') where 过滤字符串 错误:SQL参数数据类型text对于replace函数的参数1……
亦灵一梦 2019-04-250 1