摘要: 更改完密码后直接重启虚拟机,就可以正常登陆了。 阅读全文
posted @ 2020-07-23 09:15 那个ノ花开不败的夏天 阅读(824) 评论(1) 推荐(1) 编辑
摘要: git clone https://github.com/sivel/speedtest-cli.git cd speedtest-cli python speedtest.py 阅读全文
posted @ 2020-04-28 15:29 那个ノ花开不败的夏天 阅读(228) 评论(0) 推荐(0) 编辑
摘要: apt-get updateapt-get upgradeapt-get dis-upgrade 阅读全文
posted @ 2020-04-18 21:35 那个ノ花开不败的夏天 阅读(555) 评论(0) 推荐(0) 编辑
摘要: yum install openssh-server 修改ssh配置 #vi /etc/ssh/sshd_config …… PermitRootLogin no 禁止root用户远程登录 RSAAuthentication yes 密钥加密方式 PubkeyAuthentication yes 使 阅读全文
posted @ 2020-04-18 21:33 那个ノ花开不败的夏天 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 首先查看一下源,系统会进行一些更新 yum repolist 然后就可以安装了 yum install xxx 阅读全文
posted @ 2020-01-13 10:15 那个ノ花开不败的夏天 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 开启 sp_configure 'show advanced options',1reconfiguregosp_configure 'xp_cmdshell',1reconfigurego 关闭一样.只是将上面的后面的那个"1"改成"0"就可以了. sp_configure 'show advan 阅读全文
posted @ 2020-01-10 16:31 那个ノ花开不败的夏天 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 官网下载地址: https://www.proxifier.com/download/ProxifierSetup.exe 用户名随意填注册码下边 5EZ8G-C3WL5-B56YG-SCXM9-6QZAP G3ZC7-7YGPY-FZD3A-FMNF9-ENTJB YTZGN-FYT53-J253 阅读全文
posted @ 2019-12-20 10:43 那个ノ花开不败的夏天 阅读(1110) 评论(0) 推荐(0) 编辑
摘要: 一站直达: http://www.kaufmann.no/roland/dvorak/ 阅读全文
posted @ 2019-11-22 16:41 那个ノ花开不败的夏天 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 添加用户 exec master.dbo.xp_cmdshell 'net user leeww 123456 /add' 提升权限 exec master.dbo.xp_cmdshell 'net localgroup administrators leeww /add' (注意空格) 阅读全文
posted @ 2019-11-22 16:11 那个ノ花开不败的夏天 阅读(425) 评论(0) 推荐(0) 编辑
摘要: quotename是保证字符原样输入到mssql中 eg: select * from '+QUOTENAME(@tbname) 用于所传字符为mssql保留字样 阅读全文
posted @ 2019-11-22 11:08 那个ノ花开不败的夏天 阅读(184) 评论(0) 推荐(0) 编辑