摘要: 下面的直接可以用curl查询: curl ifconfig.me curl ifconfig.io curl icanhazip.com curl ipinfo.io/ip curl ipecho.net/plain curl www.trackip.net/ip curl ip.sb curl c 阅读全文
posted @ 2020-03-05 23:12 Mrcoool 阅读(1683) 评论(0) 推荐(0) 编辑
摘要: rsync -avPh -e 'ssh -p 55555' /data/test 192.168.0.1:/data/ 阅读全文
posted @ 2020-03-04 22:18 Mrcoool 阅读(810) 评论(0) 推荐(0) 编辑
摘要: From 4.11 or newer version,Samba does not support smb1 protocal by default. https://wiki.samba.org/index.php/Samba_4.11_Features_added/changed#LanMan_ 阅读全文
posted @ 2020-02-17 12:21 Mrcoool 阅读(1235) 评论(0) 推荐(0) 编辑
摘要: find /data/download/temp \( -iname '*.mp4' -o -iname '*.avi' \) -type f -exec mv -nv -t '/data/download/' -- {} + 阅读全文
posted @ 2019-12-09 13:47 Mrcoool 阅读(3591) 评论(0) 推荐(0) 编辑
摘要: 原文见:https://sites.google.com/site/xiangyangsite/home/technical-tips/windows-tips/multi_media_key_customaziation_on_windows 前言最近对键盘的多媒体键产生了兴趣,研究了一些心得,特 阅读全文
posted @ 2019-11-24 16:20 Mrcoool 阅读(3021) 评论(0) 推荐(0) 编辑
摘要: 发现ACR122U这个读卡器在进行nested破解的时候总是卡死,换了N个驱动程序都不行。 后发现是windows系统因智能卡的即插即用设置导致的问题,可以通过组策略的设置搞定。 gpedit.msc->计算机配置->管理模板->windows组件->智能卡 禁用掉如下项目: 启用智能卡中的证书传播 阅读全文
posted @ 2019-11-17 22:39 Mrcoool 阅读(475) 评论(0) 推荐(0) 编辑
摘要: Google在Chrome不知道是脑子抽抽还是怎么回事,非要把https://www从地址栏中隐藏掉。 htttps://www.pool.ntp.org就给你显示个pool.ntp.org,这分明就是两个不同的站。 以前还可以通过修改 Chrome://flags/#omnibox-ui-hide 阅读全文
posted @ 2019-11-14 16:32 Mrcoool 阅读(1115) 评论(0) 推荐(0) 编辑
摘要: 在客户端上生成密钥: ssh-keygen -t rsa 然后上传到服务器上即可: ssh-copy-id username@remote-server -p22 阅读全文
posted @ 2019-11-13 21:53 Mrcoool 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 原文地址:https://www.cnblogs.com/EasonJim/p/7806879.html 安装gcc g++的依赖库 sudo apt-get install build-essential sudo apt-get install libtool 安装pcre依赖库(http:// 阅读全文
posted @ 2019-11-13 21:46 Mrcoool 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 编译安装最新版gnutls的时候,总是会出libnettle 3.4.1 was not found的报错信息。 即使编译安装了nettle的最新版3.5之后,依然会报该错。 原因是gnutls编译的时候使用了pkg-config,没有安装安装就会导致调用出错。 安装完pkg-config再编译。 阅读全文
posted @ 2019-11-13 00:30 Mrcoool 阅读(6093) 评论(0) 推荐(0) 编辑