一、nbminer挖矿教程
什么是NBMiner挖矿
NBMiner是一款基于NVIDIA显卡的挖矿软件,它支持多种算法,包括ETH、ETC、RVN、GRIN等,是目前比较流行的挖矿软件之一。使用NBMiner挖矿,可以获得一定的收益。
NBMiner挖矿教程
以下是使用NBMiner进行挖矿的步骤:
下载NBMiner挖矿软件。
解压文件,打开NBMiner文件夹。
在NBMiner文件夹中,右键点击config文件,选择“编辑”。
在config文件中,修改“wallet”为你的钱包地址。
根据你要挖掘的币种和算法,修改“algorithm”和“pool”。
保存config文件,关闭。
双击NBMiner.exe文件,开始挖矿。
NBMiner挖矿注意事项
在使用NBMiner进行挖矿时,需要注意以下几点:
确保你的电脑有足够的散热,以防显卡过热。
选择好适合自己的挖矿池,以获得更高的收益。
不要忘记定期检查钱包地址,以确保收益能够正常到账。
根据市场情况,及时调整挖矿算法和币种,以获得更高的收益。
二、如何修改vyatta的密码,高分请教!
vyatta是一个十分专业的软件路由器及防火墙软件,上网可以下载到免费的版本,它是基于Linux的一个软路由,不过网上关于它的设置教程并不多,可能它自带文档已做得相当好了,所以教程就相对少,尤其是中文的更少,但如果对于初接触的人来说还是有点难度的。
这次我安装是在KVM上面安装的,用的是vyatta6.4,6.4的命令格式与6.2的不同,这点要注意。在KVM中增加一台虚拟机,设置两张网卡。
外网口eth0:IP 192.168.0.160/24 GateWay: 192.168.0.1
内网口eth1:IP 10.1.1.1/24
起动后
用用户名: vyatta密码:vyatta登录
install system(千万不要用install image,我花了两天时间在查资料,发现原来一开始自己就搞错了,沿用了6.2的方法是不行的)
安装完后,重新硬盘登录
输入:
//////进行设置模式
configure
//////设置外网卡地址
set interfaces ethernet eth0 address 192.168.0.160/24
//////设置网关
set system gateway-address 192.168.0.1
//////打开ssh服务(可选)
set service ssh
//////设置内网卡地址
set interfaces ethernet eth1 address 10.1.1.1/24
//////设置登录密码
set system login user vyatta authentication plaintext-password 123456
//////设置dhcp服务(dns为 202.96.128.86,保留 100-200段给dhcp分配)
set service dhcp-server shared-network-name flx_pool subnet 10.1.1.0/24 default-router 10.1.1.1
set service dhcp-server shared-network-name flx_pool subnet 10.1.1.0/24 dns-server 202.96.128.86
set service dhcp-server shared-network-name flx_pool subnet 10.1.1.0/24 start 10.1.1.100 stop 10.1.1.200
//////设置NAT服务
set nat source rule 10 outbound-interface eth0
set nat source rule 10 source address 10.1.1.0/24
set nat source rule 10 translation address masquerade
//////设置某台机的端口映射服务(例子中将内网 10.1.1.11机器的 http服务映射到软路由上。)
set nat destination rule 20 destination port 8080
set nat destination rule 20 inbound-interface eth0
set nat destination rule 20 protocol tcp
set nat destination rule 20 translation address 10.1.1.196
set nat destination rule 20 translation port 5555
//////提交
commit
/////作废
discard
/////退出configure模式
exit
//////保存
save