Hostloc 新帖图文推送
1.81K subscribers
59.5K photos
392K links
本频道基本功能:爬取国内外有名的主机论坛Hostloc新帖,为订阅者提供一手图文资讯!

Hostloc: https://www.hostloc.com

侵删,联系 @CodyD
Download Telegram
标题甲骨文 16c 96g 1TB 卖房前的留念
作者小亮丶
原帖https://hostloc.com/thread-849660-1-1.html

摘要:已终止
标题好兄弟们 200元咋用?
作者不眠飞行
原帖https://hostloc.com/thread-849663-1-1.html

摘要:刚刚中了200了!
标题不要上无忧五年的车了,我就不信良心云以后不搞活动了
作者mujj
原帖https://hostloc.com/thread-849664-1-1.html

摘要::@ 买了半年无忧加上五张卷续期,现在还有一年多时间才到期。

这么长的时间,我就不信良心云以后不搞活动了,没有别的续费神卷了!!

今年6.18马上来了,大家拭目以待吧!!

就算了良心云不再良心了,无忧也能自己养活自己
标题良心云100的卷可以干什么
作者yiywain
原帖https://hostloc.com/thread-849662-1-1.html

摘要:本帖最后由 yiywain 于 2021-5-27 10:15 编辑

请问这个卷怎样用比较好,是续费我的国内清凉云,还是开国外的,话说国外的开来一般干啥
标题甲骨文云新开的4H24G的机真的能始终免费用吗?
作者没有的
原帖https://hostloc.com/thread-849668-1-1.html

摘要:甲骨文云新开的4H24G的机真的能始终免费用吗?
这机比我买的contabo的机配置还高,不会真的能始终免费用吧?
标题无忧的用途
作者fireflyzhu
原帖https://hostloc.com/thread-849670-1-1.html

摘要:现在小鸡一堆,最近腾讯搞得热火朝天,跟风撸了一只无忧小鸡,大家一般用这只小鸡干点啥?
标题说一下昨天去见的xjj
作者zhongziso
原帖https://hostloc.com/thread-849669-1-1.html

摘要:认识这个人有差不多一个多月,也约了吃饭逛街了。昨天去kf,TMD啥都不给做。她不让,我也不勉强,免得告我QJ。一个劲的跟我说她欠了多少钱,说如果我对她有诚意就帮她换那个债。7-8w左右。然后她就可以跟我正式交往了。我当时也没明确表态。睡了一觉醒来,我头脑清醒了,幸好我没给她,也没答应她。觉得她就是为了钱。有这几万块,可以玩很多次嫩模了,不比这个强? 大佬们,你们觉得呢?
标题arm只能开1台?
作者liyujuan
原帖https://hostloc.com/thread-849671-1-1.html

摘要:第二台直接终止了
标题蓝奏什么背景现在云盘很多都用
作者aqinhai
原帖https://hostloc.com/thread-849674-1-1.html

摘要:蓝奏什么背景现在云盘很多都用
标题保姆级教程!甲骨文ARM DD成Debian10并升级内核成5.10
作者mlcq
原帖https://hostloc.com/thread-849672-1-1.html

摘要:香喷喷的4核24G 100G。Debian10系统,内核版本5.10

分享一下操作流程,希望能够都mjj们有所帮助。
安装Debian 10

参考:https://hostloc.com/thread-849439-1-3.html

新建实例时选的 ubuntu 20.4,非 mini 版

用到的脚本来自

https://github.com/bohanyang/debi

1. Download
Download the script with curl:
curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh复制代码
chmod a+rx debi.sh复制代码
sudo ./debi.sh --architecture arm64 --user root --password password复制代码
设置默认root的密码为password,登陆成功之后记得自己输入passwd修改密码!!!

没报错的话继续运行:
sudo shutdown -r now复制代码
更新内核至5.10   

参考:https://p3terx.com/archives/debian-linux-vps-server-wireguard-installation-tutorial.html

1、添加 back­ports 源
echo "deb http://deb.debian.org/debian $(lsb_release -sc)-backports main" | sudo tee /etc/apt/sources.list.d/backports.list复制代码sudo apt update复制代码
uname -r复制代码
此时看到的版本应该是4.19的,为了之后安装warp方便,我们可以更新内核到新版, ...
标题流量福袋
作者jdunion
原帖https://hostloc.com/thread-849675-1-1.html

摘要:确认参与,即可连续24个月,每月10元享10GB国内通用流量

中国移动 和你一起
标题oracle linux 8.0相关配置操作
作者galesaur
原帖https://hostloc.com/thread-849676-1-1.html

摘要:我直接下载了私钥文件,就用finalshell登录vps:
登录名:opc 验证方法:公钥  浏览文件并导入先前下载的密钥

密钥登陆后切换root登录: sudo -i复制代码
编辑ssh证书, 把ssh-rsa之前的文件都删除掉 nano .ssh/authorized_keys复制代码
配置sshd: nano /etc/ssh/sshd_config复制代码
修改sshd_config
查找到 #PermitRootLogin yes
把 # 注释符号去掉保存;
查找到 PasswordAuthentication no
no改为yes

重启sshd使配置生效: systemctl restart sshd复制代码
reboot就可以root登陆了...

密钥或root登陆后,来波内核及软件更新升级: yum update复制代码
先查看防火墙状态为active: systemctl status firewalld.service复制代码
再禁用centos 8防火墙: systemctl disable firewalld.service复制代码
Oracle linux 8配置ipv6的命令行: sudo firewall-cmd --add-service=dhcpv6-client sudo dhclient -6 enp0s3复制代码
看世界:
https://github.com/mack-a/v2ray-agent一键脚本
v2.2.27及以后已支持arm架构vps

安装看世界后需要关闭SELinux(否则相关端口不放行),然后重启vps: sed -i "s/^\(SELINUX=\).*/\1disabled/" /etc/selinux/config reboot 复制代码
标题甲骨文arm debian10 ,开ipv6 ,有ipv6 ,但是用不了?
作者Geekman
原帖https://hostloc.com/thread-849677-1-1.html

摘要:甲骨文arm debian10  ,开ipv6 ,有ipv6 ,但是用不了?

dd debian10
https://hostloc.com/thread-849439-1-1.html

开ipv6
https://hostloc.com/forum.php?mo ... %A8%E6%96%87%2Bipv6

ifconfig已经获取到了ipv6 ,但是 ping6 不通
标题京东白**智能音响,快没了抓紧吧!
作者执着者
原帖https://hostloc.com/thread-849679-1-1.html

摘要:打卡3次全额返京豆,基本上比天猫那个动辄打卡100来天简单太多了,活动是昨天的,估计快了,有需要的老哥抓紧吧。

https://pro.m.jd.com/mall/active/3piyXLzYQqNpHScu9F2zLKXoq8Xg/index.html
标题甲骨文 会不会扣费
作者xhr2002
原帖https://hostloc.com/thread-849678-1-1.html

摘要:新注册的甲骨文 ARM 16H 96G 会不会扣费呀