Skip to content

Instantly share code, notes, and snippets.

View iguoli's full-sized avatar
🤣
laugh cry

Guo Li iguoli

🤣
laugh cry
View GitHub Profile
@iguoli
iguoli / shadowsocks.json
Created May 22, 2017 04:47
shadowsocks config file
{
"server":"your-server-ip",
"port_password":{
"443":"password"
"1080":"password"
},
"local_address":"127.0.0.1",
"local_port":1080,
"timeout":300,
"methond":"aes-256-cfb",
@iguoli
iguoli / cmd-syntax.md
Last active September 13, 2017 06:18
命令行语法
@iguoli
iguoli / fbterm.md
Last active May 31, 2017 07:14
Using fbterm at runlevel 3
@iguoli
iguoli / tmux_cheatsheet.md
Last active July 15, 2017 11:20 — forked from andreyvit/tmux.md
tmux cheatsheet

tmux cheat sheet

(C-x means ctrl+x, M-x means alt+x)

Prefix key

The default prefix is C-b. If you (or your muscle memory) prefer C-a, you need to add this to ~/.tmux.conf:

remap prefix to Control + a

@iguoli
iguoli / git_config.md
Last active September 13, 2017 06:12
git的一些配置命令

保存用户名和邮箱

git config --global user.name ***
git config --global user.email ***

下面命令在使用https方式传输git文件时缓存用户名及密码,避免每次git push都要输出一次

git config --global credential.helper 'cache --timeout=86400'

下面命令在使用https方式传输git文件时通过代理来连接

@iguoli
iguoli / git_command.md
Last active July 18, 2018 08:58
常用Git命令的总结, git
@iguoli
iguoli / xargs.md
Last active June 5, 2017 18:05
xargs命令

xargs命令

xargs [options] [command]

xargs从标准输入读取数据,将数据转换为command命令的参数来执行该命令。从标准输入读取数据时,使用空格或换行符作为默认分隔符,如果没有指定命令,使用/bin/echo作为默认命令。

xargs默认将所有从标准输入读取的数据转换为一行参数传递给命令

比如/tmp目录下有a, b, c三个文件,用ls -1命令显示为

$ ls -1 /tmp
@iguoli
iguoli / BBR.MD
Last active June 30, 2021 02:13
开启BBR加速

Ubuntu下开启BBR

1. Linux内核需要更新到4.9以后的版本,使用uname -r查看系统内核版本

  • sudo apt install linux-image-<tab>安装最新的内核映像
  • update-grup上一步会自动执行此命令,因此此命令可以不用手动运行
  • reboot
  • sudo apt purge linux-image-<tab>删除掉旧内核映像

2. 修改内核参数,开启BBR

  • echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf
  • echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf
  • sudo systcl -p
@iguoli
iguoli / LoadBalance.md
Last active August 13, 2019 08:36
负载均衡学习
@iguoli
iguoli / Systemd.md
Last active June 22, 2017 10:58
Systemd学习笔记