摘要:
一、可以登录进去的修改,限于软件记录了密码但是自己忘了 方法1: 用SET PASSWORD命令 首先登录MySQL。 格式:mysql> set password for 用户名@localhost = password('新密码'); 例子:mysql> set password for roo 阅读全文
摘要:
Debian Wheezy provides an ancient version of pip utility for installing Python packages. To put it very simply, it does not work anymore as it is not 阅读全文
摘要:
from scipy.optimize import fsolve import numpy as np #y = (10 ln(x+1)+30)x^0.5 def inverse_function(y_val): """ Approximate the inverse of the functio 阅读全文
摘要:
Damn! This was easy! When I approached this I was fully prepared for a mega-Google session hours of swearing. In fact it took only a couple of minutes 阅读全文
摘要:
Linux 中的 find命令是根据给定条件查找文件和目录的出色工具。 通过实际对找到的文件执行特定操作,您可以将您的发现提升到一个新的水平。 例如,您找到了所有扩展名为 .jpeg 的文件。用 .jpg 扩展名重命名它们怎么样? 您不能只是通过管道将find 命令输出重定向到另一个命令。它不会那么 阅读全文
摘要:
1 Windows客户端、Linux客户端通过OpenVPN服务访问后端机器。 OpenVPN软件版本 1 2 3 4 5 Linux 安装:openvpn-2.4.9.tar.gz # GitHub地址:https://github.com/OpenVPN/openvpn Linux 安装:eas 阅读全文
摘要:
1. 获取想访问的的IP RANG(这里的RANG可以不全),这里以GITHUB为例, 得到图(1)的结果(以免DNS污染,建议使用国外DNS): dig github.com TXT @8.8.8.8 2. 从whois.radb.net 获取组织AS NAME,或者从这个链接直接获取AS NAM 阅读全文
摘要:
[ESXI直通板载SATA控制器] 首先,在直通SATA控制器之前,请确保板载SATA接口已经连接硬盘。如果没有连接硬盘,ESXi会彻底忽略掉这个设备(也就是在web client下的主机-管理-硬件-pci设备看不到)。另外由于要直通SATA控制器,所以ESXi的系统盘不能接在板载SATA控制器上 阅读全文
摘要:
因openssl 1.0.1存在安全问题,python3自3.7版本后要求依赖openssl 1.0.2以上或libressl;错误提示如下: Python requires an OpenSSL 1.0.2 or 1.1 compatible libssl with X509_VERIFY_P p 阅读全文
摘要:
In our previous post, we have provide a quick step by step guide on how to install the new Debian release (Debian 11 codename Bullseye). Since we have 阅读全文
摘要:
qemu安装 安装有很多方式,对于ubuntu/debian用户,直接apt安装即可 官网:https://www.qemu.org/download/ sudo apt-get install zlib1g-dev sudo apt-get install libglib2.0-0 sudo ap 阅读全文