linux 使用sh@d0ws0cks client】的更多相关文章

Linux Centos7下安装使用Shadowsocks客户端,实现*** 准备 SS: 搭建一个可以连接外网的服务器 教程可见 自己动手搭梯子 服务器:本人用的腾讯云服务器,系统为Centos7 开始 安装epel源.安装pip包管理.安装Shadowsocks客户端 sudo yum install epel-release sudo yum install python-pip sudo pip install shadowsocks 若执行sudo pip install shadow…
[root@linux-node1 ~]# cat /etc/shadowsocks.json { "server":"x.x.x.x", , "local_address": "127.0.0.1", , "password":"l@@@@@", , "method":"aes-256-cfb", "fast_open": f…
linux执行sh脚本文件命令 很多时候需要多个命令来完成一项工作,而这个工作又常常是重复的,这个时候我们自然会想到将这些命令写成sh脚本,下次执行下这个脚本一切就都搞定了,下面就是发布代码的一个脚本示例. 编写脚本 touch updateapp.sh vim updateapp.sh #切换目录 cd /home/ubuntu/mobile #更新代码 git pull origin master #重启apache服务 sudo service apache2 restart 执行脚本 管…
解密 java -classpath collection-impl-0.0.1.jar com.ai.toptea.collection.message.DESEncrypt 1EFE46638952F577 dec 加密 java -classpath collection-impl-0.0.1.jar com.ai.toptea.collection.message.DESEncrypt 123456 enc 本文主要介绍在linux下sh批处理文件调用java的方法. shell编程的代…
亲测有效:http://www.jb51.net/LINUXjishu/56395.html Linux执行.sh文件,提示No such file or directory的问题的解决方法 在window平台下,写好shell脚本文件,迁移到linux平台,赋过可执行权限,执行该sh文件, 却提示No such file or directory.ls 了下,确实有该文件,怎么会事呢,难道是文件格式兼容性问题?用vim打开该sh文件,输入::set ff  回车,显示fileformat=do…
一.新建Oracle脚本存储目录并上传文件 [root@A04-Test-172]# mkdir -p /tmp/instance_oracle #新建存储目录 [root@A04-Test-172 install_oracle]# lltotal 4452872-rw-r--r-- 1 root root 8752 Apr 26 08:24 client_install.rsp-rwxr-xr-x 1 root root 3880 Apr 26 09:16 install_oracle_2.s…
1. 下载Symantec_Endpoint_Protection_12.1.5_Linux_Client_EN, 解压其中的sep-deb.zip   2. 若直接sudo ./install.sh -i, 会报以下错误 Starting to install Symantec Endpoint Protection for Linux  Performing pre-check... Error: Installation requires Oracle Java 1.5 or later…
我经常使用的代理有 SSH, GoAgent, FreeGate, VPN, HttpProxy 等等,不过 SoftEther 应该是我用过的最快.最稳定的 VPN 协议. Windows 下配置 SoftEther 就不叙述了,实在太简单了,稍微有点计算机基础的人都能配置起来. 我经常工作于 Windows 和 Linux 下,而 Linux 下只有基于 CLI 的管理方式,并且在路由配置上需要自己手动解决,难度可想而知. 如果有朋友在 Linux 下配置 SoftEther 时遇到问题,不…
工作中有一个linux下的服务需要启动,但是机器总是断电,导致需要反复启动,找了一下开机自启动的方法,解决了这个问题.Linux设置开机自启动非常简单,只要找到rc.local文件,将你需要自启动的文件加进去即可.我的linux服务器的rc.local文件在/etc文件夹下.rc.local文件没有修改之前是这样滴: #!/bin/sh## This script will be executed *after* all the other init scripts.# You can put…
今日打包编译项目时,发现缺少一个git pull更新项目的脚本,所以在linux编写了一个gitpull.sh脚本,能够实现更新项目的需求. 1.首先vi  gitpull.sh或者使用vim编辑器. 2.内容 #!/bin/sh   (首行) cur_dir=$(pwd)  cd $cur_dir/mobcb-platformgit checkout -B demo -t origin/demogit pull 3.保存退出 4.chmod   +x    gitpull.sh     赋予可…