最近由于私有云节点缺乏管理,硬盘溢出导致数据库损坏,遂准备将私有云迁移至主节点,相比5$/24GB的VPS价格,Block Storage的1$/10GB的价格还是相对更适合存储使用。
Archive | How To
如何接入Google Cloud Text-to-Speech API
Cloud Text-to-Speech API是Google提供的文字转语音服务,目前每月的前1M调用是免费的。
如何在Windows10中配合RAX200开启LACP
之前的方法已经在新版Windows10中失效,输入命令会显示
1 2 3 4 5 6 7 |
New-NetLbfoTeam : The LBFO feature is not currently enabled, or LBFO is not supported on this SKU. At line:1 char:1 + New-NetLbfoTeam NIC TEAMING -teamingMode LACP + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (MSFT_NetLbfoTeam:root/StandardCimv2/MSFT_NetLbfoTeam) [New-NetLbfoTeam], CimException + FullyQualifiedErrorId : MI RESULT 1,New-NetLbfoTeam |
根据Microsoft支持页面显示,目前新版Windows10已去除链路聚合功能,由第三方自行开发该功能。
Debian配置范围端口转发
配置转发
49152~65535 –> 989
1 |
iptables -t nat -A PREROUTING -p tcp --dport 49152:65535 -j REDIRECT --to-ports 989 |
验证
1 |
iptables -t nat -L --line-number |
开启ufw(不需要,因为iptables已绕过ufw)
1 |
ufw allow 49152:65535 |
删除
1 |
iptables -t nat -D PREROUTING 2 |
如何使用s3fs挂载Linode Object Storage为本地磁盘
最近Linode推出了一直到2020/5/31日的Object Storage免费试用计划,包含250GB容量以及1TB流量。