全文转载 自 iytc.net

首先注册alexamaster注册

https://www.alexamaster.net/Master/124609

注册不能用qq邮箱,注册后登陆账户,点击surfs

alexamaster:挂机赚钱

点击surf now,会有一个链接,这个就是你的赚钱链接:

alexamaster:挂机赚钱

你可以在windows上用chrome或firefox直接打开此链接,会自动浏览广告页面赚取点击数,浏览器需在设置中允许弹窗。

如果你是linux系统,建议安装ubuntu16.04 64位版本,然后运行如下脚本可以自动挖矿

wget xiaofd.github.io/vncam.sh
bash vncam.sh -p \'xiaofd.github.io/others/passwd-d10086\' -u \'https://www.alexamaster.net/Master/124609 \'

https://www.alexamaster.net/Master/124609替换成你的链接

点击上一个图中的“MY SURFS”可以查看你的挖矿客户端是否运行

赚到1美元以上即可提取到Paypal

实测用5个vps运行6天后达到1美元提现门槛:

alexamaster:挂机赚钱

每个vps的内存在512M或以上,4个运行Ubuntu,1个运行windows,由于浏览器可能存在跑死现象,因此通过脚本对浏览器任务进行监控,并且每天定时重启vps

alexamaster:挂机赚钱

【windows监控脚本】

1、设置chrome浏览器的主页为你的浏览广告地址,比如https://www.alexamaster.net/Master/124609

2、编写批处理,保存为alex.bat

:start
taskkill /IM chrome.exe 
ping 127.0.0.1 -n 30 >nul
cd "C:\Program Files (x86)\Google\Chrome\Application\"
echo %date:~0,4%-%date:~5,2%-%date:~8,2%-%time:~0,2%:%time:~3,2%:%time:~6,2%
start chrome.exe
ping 127.0.0.1 -n 7200 >nul
goto start


:start
taskkill /IM chrome.exe 
ping 127.0.0.1 -n 30 >nul
cd "C:\Program Files (x86)\Google\Chrome\Application\"
echo %date:~0,4%-%date:~5,2%-%date:~8,2%-%time:~0,2%:%time:~3,2%:%time:~6,2%
start chrome.exe
ping 127.0.0.1 -n 7200 >nul
goto start

运行alex.bat,会每两个小时重启chrome浏览器,防止卡死

【linux脚本】

1、建立监控脚本,比如/root/mon.sh

#!/bin/sh
echo `date`>>/tmp/mon.txt
icount=`ps aux |grep firefox|grep -v grep|wc -l`
if [ $icount -lt 1 ] ;then
/sbin/reboot
fi
icount=`netstat -nautp|grep firefox|grep -v grep|wc -l`
if [ $icount -lt 3 ] ;then
killall firefox
sleep 2
su root -c \'export DISPLAY=localhost:1;firefox --profile ~/.alexa/alexa --new-tab https://www.alexamaster.net/Master/124609 &\'
fi


#!/bin/sh
echo `date`>>/tmp/mon.txt
icount=`ps aux |grep firefox|grep -v grep|wc -l`
if [ $icount -lt 1 ] ;then
/sbin/reboot
fi
icount=`netstat -nautp|grep firefox|grep -v grep|wc -l`
if [ $icount -lt 3 ] ;then
killall firefox
sleep 2
su root -c \'export DISPLAY=localhost:1;firefox --profile ~/.alexa/alexa --new-tab https://www.alexamaster.net/Master/124609 &\'
fi

上述脚本对firefox浏览器进行监控,发现异常会自动重启

2、增加定时任务

crontab -e

输入:

0 4 * * * /sbin/reboot
*/20 * * * * /root/mon.sh

每天重启一次,每20分钟检查firefox进程

下面实测提现过程:

选make money,request:

alexamaster:挂机赚钱

可以看到,提现还要满足上述所有条件,Good votes要达到200,可以通过Earn Points做任务、加朋友或朋友聊天来提高votes

当Good votes达到200后,可以申请提现到paypal

alexamaster:挂机赚钱

一天内到达PP账户

alexamaster:挂机赚钱

提现金额与等待天数关系:

在VPS 挂机赚美刀详细介绍–Alexamaster 操作流程一文中详细介绍了通过 alexamaster 挂机赚钱中 alexamaster 平台的配置过程和原理,本篇将介绍通过 vps 自动挂机赚钱的配置步骤。vps 中配置 vnc 与火狐浏览器来自动挂机的步骤,不仅试用于 alexamaster,而且其他挂机赚钱平台也可以用,如 vagex,Ebesucher 等。

VPS 配置 VNC 流程
根据文章[安装vnc][2]
4 优化火狐浏览器的挂机配置
1 跑 alexamaster,就是自动浏览网页的过程。时间长了会留下很多缓存数据,影响访问速度,需要配置火狐不记录历史记录。点击浏览器右上角的配置按钮,选择 Edit–> Preferences–> Privacy–> firefox will–> Never remember history,即可。

2 防止挂机过程卡死,需要定时重启。

定时重启 vnc 服务器端的方法,执行 crontab -e,输入以下代码。意思是每隔 15 分钟清除 vnc 日志,重启火狐浏览器和 vnc。

15 * * * * rm -rf /root/.vnc/*.log
16 * * * * killall -9 firefox
17 * * * * export DISPLAY=:1;firefox
30 * * * * rm -rf /root/.vnc/*.log
31 * * * * killall -9 firefox
32 * * * * export DISPLAY=:1;firefox
45 * * * * rm -rf /root/.vnc/*.log
46 * * * * killall -9 firefox
47 * * * * export DISPLAY=:1;firefox

3 监控火狐浏览器的 shell 脚本,保证 firefox 正常运行。脚本每隔 30 秒检查一次火狐是否在运行,如果没有运行就启动火狐。

#!/bin/sh
while [ 1 ]
    do
     ps -fe|grep firefox |grep -v grep
         if [ $? -ne 0 ]
             then
                 echo “start firefox …”
                 firefox &> /dev/null &
         else
                 echo “firefox is running”
         fi
    sleep 30
done

alexamaster:挂机赚钱

文章作者: 辣比丶小新
版权声明: 本站所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 Y丶Zon
linux vps
喜欢就支持一下吧