网上看到了一篇文章: Using bzip2 with less 这篇文章介绍了一个脚本,脚本功能就是列出压缩包所压缩的文件,本文算是原文搬运,不过减少点东西以适用我日常系统运用. #!/bin/bash # Source: http://tldp.org/HOWTO/Bzip2-5.html # Function: List file in a archive case "$1" in *. >/dev/null ;; *.tgz) >/dev/null ;; *. &g
首先,贴上微软官方安装方法,大家按照官方的操作就行. 微软官方安装方法 相信很多同学遇到一个问题就是: sqlservr: This program requires a machine with at least 2000 megabytes of memory. 在破解之前,博主要声明一个坑, 虽然网上有文告诉如何破解预览版 3.25G 内存限制的文章,但是很皮的是,微软在 Update 4 后把内存限制改成了 2G,也就是,即使你按照指南操作,安装时空闲内存不足 2000M 一样会得到报错
啥也不说,直接上代码 #-*-coding:utf-8-*- import zipfile #生成1-999999的数字密码表, 要是有别的密码类型,对密码表改造一下就可以了,也可以上网下载某些类型的密码字典 def code_dic(): with open('./code_dictionary.txt','w') as f: for i in range(1000000): pw = str(i)+'\n' f.write(pw) pass #遍历密码表进行暴力破解 def encode()
当mysql密码忘记时 [root@master ~]# mysql -uroot -p1 mysql: [Warning] Using a password on the command line interface can be insecure. ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES) 破解步骤 更改配置文件 # 在[mysqld]下增加一条 skip-grant