年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- e_e
- javashop
- sam123456gz
- zysnba
- tanling8334
- arpenker
- kaizi1992
- xpenxpen
- lemonhandsome
- xiangjie88
- ganxueyun
- xyuma
- wangchen.ily
- Xeden
- jh108020
- johnsmith9th
- zhanjia
- zxq_2017
- jbosscn
- forestqqqq
- ajinn
- daizj
- wjianwei666
- ranbuijj
- 喧嚣求静
- sichunli_030
- kingwell.leng
- silverend
- lchb139128
- kristy_yy
- lich0079
- jveqi
- lzyfn123
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- lxguy
- zhangjijun
最新文章列表
Openwrt opkg install 时出现md5sum mismatch错误
Openwrt openwrt出现md5sum mismatch错误。
自己编译标准模块后,安装可能出现这个错误。
解决办法:加上 --force_checksum,比如:
opkg install gdbserver_7.8-2_x86.ipk --force-checksum
【Python真的很强大】md5sum in Python
'''
md5sum in Python
'''
try:
from hashlib import md5 #Python2.5 or later version
except:
from md5 import md5 #Python2.4 or before version
i ...