Month: January 2021

DeepOps的ubuntu小笔记-ubuntu20.04lts更换阿里云的源

首先备份本地的源

cp /etc/apt/sources.list /etc/apt/sources.list.bak

编辑源文件

vi /etc/apt/sources.list

删除原有内容,添加下面内容

deb http://mirrors.aliyun.com/ubuntu/ focal main restricted
deb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted
deb http://mirrors.aliyun.com/ubuntu/ focal universe
deb http://mirrors.aliyun.com/ubuntu/ focal-updates universe
deb http://mirrors.aliyun.com/ubuntu/ focal multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-updates multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted
deb http://mirrors.aliyun.com/ubuntu/ focal-security universe
deb http://mirrors.aliyun.com/ubuntu/ focal-security multiverse

更新源

sudo apt-get update
sudo apt-get upgrade

DeepOps的macOS小笔记-macOS安装openvpn

因为公司远程办公需要使用到vpn,手头上只有一台mac,需要安装一下openvpn。

#如果没有安装brew,在安装一下homebrew 选择aliyun的源速度比较快
/bin/zsh -c "$(curl -fsSL https://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)" 

使用brew 直接安装
brew install openvpn

#启动openvpn
sudo openvpn --config /openvpn-2.5.0/config/你的.ovpn

下面是我没有尝试成功的一个方案:

1、下载openvpn,我2021.1.7下的是 openvpn-2.5.0.zip 因为我喜欢zip

2、解压后得到,openvpn-2.5.0

3、进入openvpn-2.5.0文件夹,打README文件,根据上面操作即可

	tar -zxf openvpn-<version>.tar.gz
	cd openvpn-<version>
	./configure
	make
	make install

4、执行 ./configure 出现错误

checking additionally if OpenSSL is available and version >= 1.0.2... configure: error: OpenSSL version too old

看样子是我的openssl 版本过旧

执行下面语句安装或者更新一下openssl

#安装opensslbrew install openssl
#更新opensslbrew upgrade openssl

重新安装了openssl还是不行,到此以失败告终,然后我是用了brew安装了openvpn然后就成功了。