美文网首页
常用脚本

常用脚本

作者: 秋水易冷 | 来源:发表于2019-02-11 12:56 被阅读0次

  • CentOS开机自启办法
vi /etc/rc.d/rc.local

chmod +x /etc/rc.d/rc.local
  • 自定义命令
echo "
alias 1=\"v2-ui\"
alias 2=\"cd ~ && bash ssrmu.sh\"
alias 3=\"cd ~ && bash tcp.sh\"
" >> ~/.bashrc
source ~/.bashrc



宝塔面板

wget -O install.sh http://download.bt.cn/install/install_6.0.sh && bash install.sh

v2ray

bash <(curl -Ls https://blog.sprov.xyz/v2-ui.sh)

tcp.sh

wget -N --no-check-certificate https://raw.githubusercontent.com/chiakge/Linux-NetSpeed/master/tcp.sh && chmod +x tcp.sh && ./tcp.sh

gost.sh

wget -N https://code.aliyun.com/supppig/gost/raw/master/gost.sh  && chmod +x gost.sh && ./gost.sh

aria2.sh

wget -N --no-check-certificate https://raw.githubusercontent.com/ToyoDAdoubi/doubi/master/aria2.sh && chmod +x aria2.sh && bash aria2.sh

相关文章

  • IDA Python 脚本(四)

    常用的脚本 调用示例

  • 常用脚本

    删除源代码 find . -name "*.cpp" -type f -print -exec rm -rf {}...

  • 常用脚本

    ONLOAD 假如我们希望某个函数在网页加载完毕之后就立即执行。网页加载完毕时会触发一个onload事件,所以我们...

  • 常用脚本

    0x01 rsa private key encrypt java to python pkcs8 to pkcs...

  • 常用脚本

    CentOS开机自启办法 自定义命令 宝塔面板 v2ray tcp.sh gost.sh aria2.sh

  • 常用脚本

    *.nginx转发websocket请求配置方式 代理服务器就可以转发224服务器的推送数据了。 *.centos...

  • 常用脚本

    一、mysql备份 备份shell脚本 数据库连接配置文件 把备份脚本放到 /etc/cron.daily 下,就...

  • SpringBoot在Redis中执行Lua脚本

    SpringBoot执行Lua脚本 之前基本上完成了Lua脚本在Redis中使用的常用方式以及常用指令,在项目使用...

  • Frida Snippet

    记录常用的Frida的脚本 template

  • 几个常用的Linux监控脚本

    几个常用的Linux监控脚本 本文介绍了几个常用的Linux监控脚本,可以实现主机网卡流量、系统状况、主机磁盘空间...

网友评论

      本文标题:常用脚本

      本文链接:https://www.haomeiwen.com/subject/idhqeqtx.html