首页
关于
Search
1
在投射和录制时显示敏感信息写给TeamViewer,anydesk,向日葵
8,618 阅读
2
sublime 3155-3175 LICENSE
7,914 阅读
3
mysql存储过程&时间累加插入
7,756 阅读
4
永远不要相信浮点数结果精确到了最后一位,也永远不要比较两个浮点数是否相等。
4,486 阅读
5
mysql-workbench中duration fetch的含义
4,462 阅读
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
登录
Search
标签搜索
mysql
curl
grep
journalctl
rename
You can't specify target table
only_full_group_by
Sub-process
警示
dropbox
mtr
curl抓取重定向
floor
intval
ceil
round
pixmap
adwaita
date.utc
gmmktime
五好的Book
累计撰写
194
篇文章
累计收到
31
条评论
首页
栏目
ubuntu
linux
sublime
php
mysql
JS
CSS
其他
chrome
redis
页面
关于
搜索到
92
篇与
的结果
2018-11-30
让终端走socks代理比较靠谱的方法
export http_proxy="socks5://127.0.0.1:1080" export https_proxy="socks5://127.0.0.1:1080" 或者 export ALL_PROXY=socks5://127.0.0.1:1080 以上可能是搜索到比较多的结果,然而实践后没有用现在分享一个比较有用,经过实践确实有用而且使用的方法那就是安装 tsocks 这个软件sudo apt install tsocks sudo vi /etc/tsocks.conf 移动到最底部 修改为 server = 127.0.0.1 然后就可以需要用代理时 在命令前面加上 tsocks 即可比如:sudo tsocks apt update sudo tsocks apt upgrade 你可以试一下,看是否有用.
2018年11月30日
943 阅读
0 评论
0 点赞
2018-11-24
接受新事物gnome 现在已经可以替代unity
不过默认情况下(不安装gnome-shell扩展),还是不习惯,装了下面的扩展后,感觉已经可以很舒服的使用了,以下是我的扩展地址 :https://extensions.gnome.org/Coverflow Alt-Tab #切换程序更加拉风Dash to Dock #自定义设置dockEasyScreenCast #录屏功能Freon #硬件温度显示Gno-Menu #顶栏增加很有用快捷操作方式GSConnect #连接手机No Title Bar #最大化时干掉窗体的标题栏 美图OpenWeather #显示天气Screenshot Tool #截屏功能Sound Input & Output Device Chooser #声音输出选择最后来个整体视频sp.webm
2018年11月24日
4,098 阅读
2 评论
0 点赞
2018-11-10
终端关闭后程序依然运行
nohup cmd & nohup: ignoring input and appending output to 'nohup.out'运行上面的命令后 会提示 当前目录下有一个 nohup.out的文件,保存追加输出的信息到该文件nohup 命令的解释用法:nohup 命令 [参数]... 或:nohup 选项 忽略挂起信号运行指定的命令。 --help 显示此帮助信息并退出 --version 显示版本信息并退出 If standard input is a terminal, redirect it from an unreadable file. If standard output is a terminal, append output to 'nohup.out' if possible, '$HOME/nohup.out' otherwise. If standard error is a terminal, redirect it to standard output. To save output to FILE, use 'nohup COMMAND > FILE'.
2018年11月10日
752 阅读
0 评论
0 点赞
2018-07-11
rename 之批量重命名
批量重命名是个技术活啊,由于用的linux 从windows 传过来的压缩包里的文件名中文都是乱码,如图重要的是我只要数字+扩展名比如:1.jpg系统自带的重命名工具肯定不能满足我的要求mv 命令,好像也不行还好找到rename 了rename 's/\D+//' *.jpg 这个意思是 把文件名称中的非数字全部去掉https://wuhao.pw/usr/uploads/2018/07/1934813902.mp4更多方法rename index u index? index1-index9 会重命名为 u1-u9 rename index u index?? index10-index99 会重命名为 u10-u99 rename index u index* index开头 会重命名为 u开头 rename index u index[2]* index2开头的 重命名为 u2开头 正则rename "s/ABC/abc/" * # 把文件名中的ABC替换成abc rename "s//.jpg//.png/" * # 把.jpg 后缀的改成 .png后缀 rename "s/$//.html/" * # 把所有的文件名都以html结尾 rename "s//.txt//" * # 把所有以.txt结尾的文件名的.txt替换成空
2018年07月11日
1,009 阅读
0 评论
0 点赞
2018-05-16
使用Siege对网站做压力测试
sudo siege -c20 -r10 http://www.baidu.com/ -c 指定并发数 -r 指定测试的次数 sudo siege -c20 -t1 http://www.baidu.com/ -t 持续测试 分钟(1/60s) siege -c 20 -r 10 -f url.txt -i -f url.txt 指定url的文件(用回车分割每个URL) -i internet系统,随机发送url -b 请求无需等待 delay=0 -r和-t一般不同时使用更多帮助信息,找linux的男人问一下比如man siege;sudo siege -h结果示意:Transactions: 2 hits # 总共测试次数 Availability: 100.00 % # 成功次数百分比 Elapsed time: 9.02 secs # 总共耗时多少秒 Data transferred: 0.01 MB # 总共数据传输 Response time: 2.73 secs # 等到响应耗时 Transaction rate: 0.22 trans/sec # 平均每秒处理请求数 Throughput: 0.00 MB/sec # 吞吐率 Concurrency: 0.61 # 最高并发 Successful transactions: 9 # 成功的请求数 Failed transactions: 0 # 失败的请求数 Longest transaction: 5.40 Shortest transaction: 0.00
2018年05月16日
879 阅读
0 评论
0 点赞
1
...
10
11
12
...
19