2023-09-25 15:58:56 +08:00
|
|
|
---
|
|
|
|
abbrlink: 317afbc8
|
2023-09-29 11:36:23 +08:00
|
|
|
categories: 分享
|
2023-09-25 15:58:56 +08:00
|
|
|
date: '2018-05-04 23:28:00'
|
|
|
|
excerpt: ...
|
|
|
|
published: true
|
|
|
|
tags:
|
|
|
|
- wget
|
|
|
|
- shadowsocks
|
|
|
|
title: linux下一键搭建SS
|
|
|
|
updated: '2023-6-12T10:13:20.738+8:0'
|
|
|
|
---
|
|
|
|
事实上Ubuntu centos都可以使用此命令行
|
|
|
|
|
|
|
|
```bash
|
|
|
|
wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
```bash
|
|
|
|
chmod +x shadowsocks.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./shadowsocks.sh 2>&1 | tee shadowsocks.log
|
|
|
|
```
|