liujia 发布的文章

在 Debian 9 里安装 WireGuard

WireGuard还在开发状态,但有热心网友赞叹它的强大,如它的组网功能。

环境:阿里云Ubuntu 16.04,vultr Debian 9

过程:

  1. WireGuard官方提供了Ubuntu和Debian的安装方法,请安装好WireGuard
  2. wg genkey | tee wg-private.key | wg pubkey > wg-public.key # 在两台机,均生成公匙和私匙
  3. ip link add wg0 type wireguard # 在两台机,均创建 wg0 网络接口,如果Debian9在执行 ip link add wg0 type wireguard 命令时提示 RTNETLINK answers: Operation not supported ,请安装相应的组件包 apt install linux-headers-$(uname -r)
    wireguard-2.png
  4. ip addr add 10.0.7.1/24 dev wg0 # 在阿里云机,为wg0接口配置10.0.7.1的IP
  5. ip addr add 10.0.7.2/24 dev wg0 # 在vultr,为wg0接口配置10.0.7.2的IP
  6. wg set wg0 private-key ./wg-private.key # 在两台机,为wg0设置私匙
  7. ip link set wg0 up # 在两台机,启用wg0连接状态
  8. wg # 在两台机执行,记下公匙及端口号
    wireguard-3.png
  9. wg set wg0 peer 7LtLwRWlv6tU0po04zoOcvispsouXVEAn+rzN9NsbR8= allowed-ips 10.0.7.1/32 endpoint 47.106.147.60:35927 # 在vultr机里执行,其中 7LtLwRWlv6tU0po04zoOcvispsouXVEAn+rzN9NsbR8= 是阿里云机的公匙,10.0.0.7.1 是阿里云的wg0接口IP,47.106.147.60 是阿里云的公网IP,35972是端口号
    wireguard-4.png
  10. wg set wg0 peer LA34zHFIRGTB6ZzFT2DhxrcNtXc7gY2xjZjyES9b3yQ= allowed-ips 10.0.7.2/32 endpoint 45.63.49.100:34114 # 在阿里云机执行,其中 LA34zHFIRGTB6ZzFT2DhxrcNtXc7gY2xjZjyES9b3yQ= 是vultr机的公匙,10.0.0.7.2 是vultr的wg0接口IP,45.63.49.100 是vultr的公网IP,34114是端口号
  11. 测试,可以互ping wg0接口的内网IP
    wireguard-5.png

参考:

一斤装的油壶,10元

看到灶头上的塑胶油瓶旧了,贴的纸标签长乌霉,瓶口附近油垢堆起了膏状物,所以想买个油壶。

在网上挑了一下,心意价10元左右的,这个500ML,看起来还可以,就买了。

第二天收到,打开来看,拿着比划了一下,手感还可以。上边还写着“每人每天建议25克油”,如果一家四口人,每天100克,那每五天要加油。

you-hu-1.jpg
外包装

you-hu-2.jpg
手把不是很大

you-hu-3.jpg
一天25克,有多少人能做到

在新版本WHM (64.0)中安装php5.3

问题:Godaddy的虚拟服务器(VPS)产品中,绑定的系统是CentOS 6 + cPanel,支持php5.5以上的版本,但网站程序必须是php5.3

过程:

  1. 在 whm 里查看多版本的php中,并没有php5.3
    ea-php5.3-1.png
  2. yum groupinstall 'Development Tools' # 安装开发组件
  3. yum install epel-release # 增加软件安装源
  4. yum install sqlite-devel libxml2-devel bzip2-devel libcurl-devel libc-client-devel libmcrypt-devel aspell-devel libedit-devel libtidy-devel pcre-devel # 安装相关的开发包
  5. wget http://cn2.php.net/distributions/php-5.3.29.tar.gz # 下载php5.3源码包
  6. 解压到 /usr/src/php-5.3.29
  7. ./configure --enable-bcmath --enable-calendar --enable-exif --enable-ftp --enable-gd-native-ttf --enable-libxml --enable-mbstring --enable-pdo=shared --enable-sockets --enable-zip --prefix=/opt/php53 --with-bz2 --with-curl=/usr --with-freetype-dir=/usr --with-gd --with-imap=/usr --with-imap-ssl --with-jpeg-dir=/usr --with-kerberos --with-libdir=lib64 --with-libexpat-dir=/usr --with-libxml-dir=/usr --with-mcrypt=/usr --with-mysql=/usr --with-mysql-sock=/var/lib/mysql/mysql.sock --with-mysqli=/usr/bin/mysql_config --with-openssl=/usr --with-openssl-dir=/usr --with-pcre-regex=/usr --with-pdo-mysql=shared --with-pdo-sqlite=shared --with-pic --with-png-dir=/usr --with-sqlite=shared --with-tidy=/usr --with-xmlrpc --with-xpm-dir=/usr --with-zlib --with-zlib-dir=/usr # 配置
    ea-php5.3-4.png
  8. make && make install # 编译并安装(在/opt/php53)
    ea-php5.3-5.png
  9. vi /etc/apache2/conf.d/includes/pre_main_global.conf # 向apache的配置文件添加以下内容,令其默认使用php5.3

    AddHandler application/x-httpd-php53 php
    
    ScriptAlias /local-bin /opt/php53/bin
    Action application/x-httpd-php53 /local-bin/php-cgi
    
    <Directory "/opt/php53/bin">
     Order allow,deny
     Allow from all
    </Directory>

    ea-php5.3-2.png

  10. /etc/init.d/httpd reload # 重新加载apache配置参数
  11. 查看phpinfo输出信息,是php5.3版本了
    ea-php5.3-3.png

参考:

在阿里云ECS云服务器里安装Ubuntu 17.10官方系统

当前阿里云公共镜像提供了ubuntu 16.04,没有17.10,但看到论坛网友想要,所以实践。

环境:云服务器T5 2GB内存规格,原系统Debian 9 64位,目标是安装ubuntu官方的17.10版本。

过程:

  1. uname -a # 查看当前系统版本及磁盘使用情况
    ubuntu17-1.png
  2. mkdir /boot/ub && cd /boot/ub # 创建新目录ub,用于存放安装文件
  3. wget http://archive.ubuntu.com/ubuntu/dists/artful/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/linux # 下载ubuntu的网络安装文件
  4. wget http://archive.ubuntu.com/ubuntu/dists/artful/main/installer-amd64/current/images/netboot/ubuntu-installer/amd64/initrd.gz # 下载ubuntu的网络安装文件
    ubuntu17-2.png
  5. 重启ECS实例,在“管理终端”里操作,当看到启动选择菜单时,按c,进入grub命令
    ubuntu17-3.png
  6. 在grub里输入以下命令,手动启动ubuntu安装
    ubuntu17-5.png
  7. 开始ubuntu安装,语言选择
    ubuntu17-6.png
  8. 阿里云的VPC网络实例是可以自动分配到IP的,配置主机名
    ubuntu17-7.png
  9. 选择ubuntu的软件安装源
    ubuntu17-8.png
  10. 设置用户名
    ubuntu17-9.png
  11. 磁盘分区,本例是“使用整个磁盘”
    ubuntu17-10.png
  12. 本实例仅有一个系统盘,所以选择了vda
    ubuntu17-11.png
  13. 写入新的分区表
    ubuntu17-12.png
  14. 软件选择,本例仅选择OpenSSH server和Basic Ubuntu server
    ubuntu17-13.png
  15. 安装Grub启动管理器
    ubuntu17-14.png
  16. 设置UTC系统时钟
    ubuntu17-15.png
  17. 安装完成
    ubuntu17-16.png
  18. 在“管理终端”里看到的Ubuntu 17.10启动界面
    ubuntu17-17.png
  19. 但在“管理终端”里,仅能看到光标,并不会提示用户登录
    ubuntu17-18.png
  20. 远程通过ssh登录,正常
    ubuntu17-19.png

参考:https://help.ubuntu.com/community/Installation/NetbootInstallFromInternet