把同步方案从 Dropbox 换成了 MEGA,顺便记录一下要点,以免后来再遇到这个问题还要现找配置文件在哪里。
Debian & Ubuntu 上部署 shadowsocks-rust 服务端
本文以 Debian 11 (Bullseye) 系统为例,介绍如何搭建 ss-rust 服务端,本教程同样适用于 Ubuntu。客户端使用同理。
注:请先参照 Debian & Ubuntu 服务器的初始化配置 一文对服务器进行各种必要的配置。本文以 sammy
用户为例,进行 shadowsocks-libev server 的建立,并默认已按初始化配置文章对服务器进行了配置。
准备
- 可用的公网 IP 服务器(例如在 BandwagonHost、Vultr 等处购买的 VPS)
- 基础 Linux 操作知识,并了解
vim
编辑器的基本使用方法
安装
安装 snapd
:
1 | sudo apt update && sudo apt install snapd -y |
安装 shadowsocks-rust
:
1 | sudo snap install shadowsocks-rust |
Software Product Management
Last updated on 26.05.2022.
Business Model
Introduction to Business Models
- What does a business model describe for a company?
- all the parts of the company necessary to create, deliver and capture the value
- What are the nine building blocks of the business model canvas?
- Customer Segments
- Value Propositions
- Channels
- Customer Relationships
- Revenue Streams
- Key Resources
- Key Activities
- Key Partnerships
- Cost Structure
Debian 搭建 WireGuard 服务端
本文以 Debian 10 为例,介绍如何搭建 WireGuard 服务端,并说明对应的客户端搭建方法和配置文件的格式。Ubuntu 20.04 系统与之大同小异。
注:请先参照 Debian & Ubuntu 服务器的初始化配置 一文对服务器进行各种必要的配置。本文以 sammy
用户为例,进行 WireGuard 的部署,并默认已按初始化配置文章对服务器进行了配置。
准备工作
安装步骤所需软件包:
1 | sudo apt update |
安装 WireGuard
添加 backports 源:
1 | sudo sh -c "echo 'deb https://deb.debian.org/debian buster-backports main contrib non-free' > /etc/apt/sources.list.d/buster-backports.list" |
安装软件包:
1 | sudo apt update |