Skip to content

Instantly share code, notes, and snippets.

View hilerchyn's full-sized avatar
🎯
Focusing

Chen.Tao hilerchyn

🎯
Focusing
View GitHub Profile
@hilerchyn
hilerchyn / v2ray_openvpn_netflix.md
Created March 3, 2023 03:07 — forked from zpoint/v2ray_openvpn_netflix.md
v2ray + openvpn to unblock gfw and netflix

If you're using wireguard please refer to v2ray+wireguard to bypass GFW and netflix/spotify/hulu

Two things need to be paid

  • vps(such as bandwagonhost)
    • If you are using China Telecom, a CN2 network is required, or you may get stuck when streaming video
    • For bandwagonhost, you need to login, click Client Area -> Services -> Order New Services to get CN2 server
  • vpn vendor to unblock netflix(a openvpn connection that can unblock netflix)

vpn

@hilerchyn
hilerchyn / v2ray_wireguard_netflix_spotify_hulu.md
Created March 3, 2023 03:07 — forked from zpoint/v2ray_wireguard_netflix_spotify_hulu.md
v2ray + wireguard to unblock gfw and netflix,spotify,hulu

I previously write a gist about how to set up v2ray + openvpn to unblock gfw and netflix

Refers to that gist for more detail.

In short, this a solution to proxy your network to bypass Firewall with stable connections, and also unblock Proxy detection for Netflix/Spotify/etc....

In my use case from China network:

wireguard

@hilerchyn
hilerchyn / lfs-trusty-install.sh
Created December 16, 2015 09:30 — forked from josephabrahams/lfs-trusty-install.sh
Linux From Scratch Ubuntu 14.04 Host System Requirements Install Script
#!/usr/bin/env bash
# Install missing Linux From Scratch Host System Requirements for Ubuntu 14.04
if [ ! $(whoami) == "root" ]; then
echo "Please run as root!"
exit 1
fi
# symlink sh to bash
ln -fsv /bin/bash /bin/sh