
主机评测
本帖作为buyvm的VPS的补货通知贴,补货后会刷新网页日期通知大家!如果你是新人,不熟悉buyvm,那简单说下,常规VPS:Ryzen 3900X+DDR4+NVMe SSD raid10+1Gbps带宽,块存储:支持挂载到对应机房的VPS上,每256G硬盘每个月仅需1.25美元,单个块存储最高支持挂载10T;所有VPS默认不限制流量,基于KVM虚拟,提供Windows和Linux常规发行版本。
支持信用卡、PayPal、支付宝付款,支付宝付款用的是加元汇率,貌似便宜一点!
卢森堡机房:比较特殊,无视版权投诉!
VPS方案
拉斯维加斯:https://my.frantech.ca/cart.php?gid=37
迈阿密:https://my.frantech.ca/cart.php?gid=48
纽约:https://my.frantech.ca/cart.php?gid=38
卢森堡:https://my.frantech.ca/cart.php?gid=39
拉斯维加斯:https://my.frantech.ca/cart.php?gid=42
迈阿密:https://my.frantech.ca/cart.php?gid=49
纽约:https://my.frantech.ca/cart.php?gid=45
卢森堡:https://my.frantech.ca/cart.php?gid=46
2022年1月6日,4个数据中心全部补货!
- 如何挂载块存储?
- 进入管理后台(https://manage.buyvm.net/login),将 Block Storage 附加到(Attached To) VPS。
-
- 查看数据盘标号/名称:/dev/disk/by-id/
-
- 如:
-
- [root@us-cdn-west-1 ~]# ls /dev/disk/by-id/
-
- ata-QEMU_DVD-ROM_QM00004 scsi-0BUYVM_SLAB_VOLUME-1227
-
- scsi-0BUYVM_SLAB_VOLUME-1227 就是数据盘,1227 是数据盘 id,后台也能看到。
-
- 格式化
-
- mkfs.ext4 -F /dev/disk/by-id/scsi-0BUYVM_SLAB_VOLUME-1227
-
- 创建加载文件夹
-
- 请根据实际需要创建
-
- mkdir -p /mnt/256
-
- 挂载
-
- mount -o discard,defaults /dev/disk/by-id/scsi-0BUYVM_SLAB_VOLUME-1227 /mnt/256
-
- 开机/重启自动挂载
-
- echo '/dev/disk/by-id/scsi-0BUYVM_SLAB_VOLUME-1227 /mnt/256 ext4 defaults,nofail,discard 0 0' | sudo tee -a /etc/fstab
-