Oplink.net评测
6/20Basic System Information:Uptime : 96 days, 10 hours, 53 minutesProcessor : AMD Ryzen 9 3900X 12-Core ProcessorCPU cores : 2 @ 3799.998 MHzAES-NI : ✔ EnabledVM-x/AMD-V : ✔ EnabledRAM : 3.9 GiBSwap : 0.0 KiBDisk : 196.8 GiBDistro : Ubuntu 20.04.6 LTSKernel : 4.14.129-bbrplusVM Type : KVMIPv4/IPv6 : ✔ Online / ✔ Online
IPv6 Network Information:ISP : The Optimal Link CorporationASN : AS40156 The Optimal Link CorporationHo ...
Allhost.io评测
6/20Basic System Information:Uptime : 95 days, 21 hours, 47 minutesProcessor : AMD Ryzen 9 7900 12-Core ProcessorCPU cores : 2 @ 3693.046 MHzAES-NI : ✔ EnabledVM-x/AMD-V : ❌ DisabledRAM : 1.9 GiBSwap : 0.0 KiBDisk : 120.0 GiBDistro : Debian GNU/Linux 11 (bullseye)Kernel : 4.14.129-bbrplusVM Type : KVMIPv4/IPv6 : ✔ Online / ❌ Offline
IPv4 Network Information:ISP : AH CLOUD LTDASN : AS207108 AH CLOUD LTDHost : AH ...
saltyfish.io法兰克福评测
6/20Basic System Information:Uptime : 71 days, 23 hours, 23 minutesProcessor : AMD EPYC-Milan ProcessorCPU cores : 4 @ 3393.624 MHzAES-NI : ✔ EnabledVM-x/AMD-V : ✔ EnabledRAM : 3.9 GiBSwap : 0.0 KiBDisk : 46.8 GiBDistro : Ubuntu 20.04.3 LTSKernel : 4.14.129-bbrplusVM Type : KVMIPv4/IPv6 : ✔ Online / ❌ Offline
IPv4 Network Information:ISP : Kirino LLCASN : AS41378 Kirino LLCHost : HK CEDOC LIMITEDLocation : Frankfu ...
Greencloud-东京评测
6/20Basic System Information:Uptime : 209 days, 10 hours, 13 minutesProcessor : AMD Ryzen 9 7950X 16-Core ProcessorCPU cores : 2 @ 4491.540 MHzAES-NI : ✔ EnabledVM-x/AMD-V : ✔ EnabledRAM : 3.9 GiBSwap : 1024.0 MiBDisk : 48.2 GiBDistro : Ubuntu 20.04 LTSKernel : 4.14.129-bbrplusVM Type : KVMIPv4/IPv6 : ✔ Online / ✔ Online
IPv6 Network Information:ISP : Customer RouteASN : AS3258 xTom Pty LtdHost : Cat Networks K.KLoc ...
index-hosting.de评测
6/20Basic System Information:Uptime : 0 days, 0 hours, 8 minutesProcessor : AMD Ryzen 9 7950X3D 16-Core ProcessorCPU cores : 2 @ 4192.124 MHzAES-NI : ✔ EnabledVM-x/AMD-V : ✔ EnabledRAM : 5.8 GiBSwap : 0.0 KiBDisk : 60.0 GiBDistro : Debian GNU/Linux 11 (bullseye)Kernel : 4.14.129-bbrplusVM Type : KVMIPv4/IPv6 : ✔ Online / ✔ Online
IPv6 Network Information:ISP : active 1 GmbHASN : AS197071 active 1 GmbHHost : And ...
Hybula评测
6/20Basic System Information:Uptime : 202 days, 3 hours, 11 minutesProcessor : AMD EPYC 9554 64-Core ProcessorCPU cores : 4 @ 3099.998 MHzAES-NI : ✔ EnabledVM-x/AMD-V : ✔ EnabledRAM : 3.8 GiBSwap : 0.0 KiBDisk : 48.4 GiBDistro : Ubuntu 20.04.6 LTSKernel : 4.14.129-bbrplusVM Type : KVMIPv4/IPv6 : ✔ Online / ❌ Offline
IPv4 Network Information:ISP : Hybula B.V.ASN : AS35133 Hybula B.V.Host : Hybula B.VLocation : Amst ...
如何解决WordPress模板将双中横线“”转义成了单中横线的问题“”
wordpress中输入两个”–”的时候会识别成一个横杠,如果此时的文章中有代码在,那么其他人在复制粘贴的时候就没法使用,于是乎我寻找了三种有效的方法解决此问题!
WordPress中会默认会自动转义一些字符,网络上也称“转换全半角标点符号”或者“代码转义”,WordPress使用了wptexturize函数将纯文本字符转换成格式化的HTML实体。这样会导致代码中所有半角都会转成全角,别人复制此代码的时候没法使用出现错误情况。经过搜集测试,本文列出三种快速有效的解决方案。
一、通过插件搞定问题,可以安装Quotmarks Replacer这个插件,直接启用即可,有效快速。
二、打开当前主题里面的functions.php函数文件,在文件末尾添加以下代码:
remove_filter(‘the_content’, ‘wptexturize’);
三、也是打开当前主题里面的functions.php函数文件,在文件末尾添加以下代码:
//取消内容转义remove_filter(‘the_content’, ‘wptexturize’);//取消摘要转 ...
了解Linux系统内存使用情况:六种常用命令
在 Linux 系统中,查看内存使用情况的常用命令有以下几种:1、free 命令:该命令可以显示系统的内存使用情况,包括总内存、已用内存、剩余内存以及缓存和缓冲区使用情况等。
语法:free [options]
total代表总内存,单位为 KB。
used代表已使用内存,单位为 KB。
free代表空闲内存,单位为 KB。
shared代表共享内存,单位为 KB。
buff/cache代表缓冲区和缓存,单位为 KB。
available代表可用内存,单位为 KB。
2、top 命令:该命令可以动态显示系统的内存使用情况,包括内存使用率、内存使用情况等。
语法:top [options]
MiB Mem代表内存的使用情况,单位为 MB。
total代表总内存,单位为 MB。
used代表已使用内存,单位为 MB。
top命令还可以单独查看每个进程占用的内存空间及其cpu使用率
%CPU代表该进程占用的 CPU 时间的百分比
%MEM代表该进程占用的物理内存的百分比
TIME代表该进程使用的 CPU 时间总量
3、htop 命令:该命令与 top 命令类似,但是提供了更友好 ...
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment