- 博客(12)
- 资源 (4)
- 收藏
- 关注
原创 touchpad dont work in kali
Update the file: /etc/X11/xorg.conf.d/60-synaptics.conf Section "InputClass" Identifier "touchpad" Driver "synaptics" MatchIsTouchpad "on" Option "TapButton1" "1" Optio
2016-06-29 11:56:37
278
原创 forget mysql pw problem
add "skip-grant-tables" to my.cnf sudo service mysql restart use mysql update user set password=PASSWORD("new_pass") where user='root'; restart mysql
2015-12-06 14:35:32
603
原创 appcompat problem
target=android-23 update google services Base.Theme.AppCompat
2015-11-29 17:53:59
251
原创 kill process in linux
ps -aux|grep -ie ***|awk {'print $2'}|xargs -n 1 kill -9
2015-11-25 19:01:40
344
原创 Change the user name in win
wmic useraccount where name='xxx' call rename name='***'
2015-11-05 19:05:49
266
原创 Recover the home data frome Linux
sudo mount /dev/sda1 /mnt sudo mount --bind /proc /mnt/proc mount --bind /sys /mnt/sys mount --bind /dev /mnt/dev sudo chroot /mnt encryptfs-recover-private cp -r **** /recoverData
2015-11-04 08:46:35
308
原创 java decode
static final Pattern reUnicode = Pattern.compile("\\\\u([0-9a-zA-Z]{4})");public static String decode1(String s) { Matcher m = reUnicode.matcher(s); StringBuffer
2015-07-06 17:34:51
354
原创 LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏
项目\属性\配置属性\清单工具\输入和输出\嵌入清单:原来是“是”,改成“否”。
2015-06-30 12:45:04
167
原创 S_ISREG在VS下无定义问题
在头文件中添加宏定义: #define S_ISDIR(m) (((m) & 0170000) == (0040000))
2015-06-30 12:40:29
1527
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅