sui_getTransactionBlock

tags: Sui POST https://fullnode.mainnet.sui.io Content-Type: application/json { "jsonrpc": "2.0", "id": 1, "method": "sui_getTransactionBlock", "params": [ "6wthaE4QzjWM7HnAzm6Pd4ymkNtadbHnqQkTXY7Ne1L3", { "showInput": true, "showRawInput": false, "showEffects": true, "showEvents": true, "showObjectChanges": true, "showBalanceChanges": true } ] }

September 26, 2023 · 1 min · Gray King

FreeBSD 13.2 NFS

Tags: FreeBSD First, configure to start service during the bootstrap: sysrc nfs_server_enable="YES" sysrc nfs_server_flags="-u -t -n 4" sysrc rpcbind_enable="YES" sysrc rpc_statd_enable="YES" sysrc rpc_lockd_enable="YES" sysrc mountd_flags="-r" sysrc mountd_enable="YES" Second, export volume to the network in /etc/exports: /data/warehouse -mapall=root -network 192.168.1.0/24 NOTE: you shouldn’t export the pool root while you are using ZFS, as it can’t show the children in a datasets of it. And then we can start the services: service nfsd start service statd start service lockd start You need to stop extra services when you want to restart: ...

September 15, 2023 · 1 min · Gray King

ZFS

September 11, 2023 · 0 min · Gray King

ZFS 入门指北:规划与创建存储池

tags: FreeBSD, ZFS source: Shen Leo. “ZFS 入门指北:规划与创建存储池.” Leo’s Field, March 21, 2022. https://szclsya.me/zh-cn/posts/storage/zfs-setup/.

September 11, 2023 · 1 min · Gray King

FreeBSD

September 11, 2023 · 0 min · Gray King