ebesucher作为德国的挂机冲浪赚钱网站。据说2002年就已经开始了,通过ebesucher 在浏览器中安装的插件。浏览器就可以自动浏览网站以获取点数。然后通过点数兑换成欧元。转账到我们的PayPal中,
在自己闲置VPS、服务器上挂机赚钱的项目,因为不能确保一定能产生多少收益,所以只能是用闲置的机器。因为ip地址不同所以产生的效益也不同。
官网网站:www.ebesucher.com
下边介绍如何安装
vps挂机eBesucher设置过程
一:LXDE桌面安装方法:(本人使用的ubuntu系统,LXDE是最小化的桌面系统)
- apt-get update
- apt-get install xorg lxde-core tightvncserver
- tightvncserver :1 # 需要输入vnc密码,提示”Would you like to enter a view-only password (y/n)?”时回车即可,安装完成.配置xstartup
- tightvncserver -kill :1 # 首先要暂停vnc
- vi ~/.vnc/xstartup # 编辑xstartup文件
- #然后在文件的最后添加下面的脚本代码:
- lxterminal &
/usr/bin/lxsession -s LXDE &
- tightvncserver :1 #重启vnc
LXDE桌面使用方法
- 使用vnc viewer登陆
在这里下载: http://www.realvnc.com/download/viewer/
打开客户端,输入IP:590x,这里x是x桌面的编号:一般第一个桌面都是“1”也就是5901
连接后输入密码(上边那会需要输入的密码),就可以进入桌面了。
二:安装浏览器和Flash
sudo apt-get install firefox (一路回车yes安装完成)
但是有的时候安装的最新版firefox无法支持ebesucher的插件,所以需要手动安装版本,如果你vps安装了最新版需要删除,如果没就直接下载最新版,
sudo apt-get remove firefox(删除文件配置文件保留)
sudo
apt-get remove --purge firefox {用-purge会删除掉Firefox原来的配置文件)
firefox版本地址:http://ftp.mozilla.org/pub/firefox/releases/找寻自己适合自己的版本
手动安装如下:
至此,已经配置好Firefox 6.0,不过此时你可能会发现,原来Firefox的快捷方式以及“Applications—>Network”里面没有Firefox的图表,下面教大家如何把图标弄出来。
1.输入:cd /usr/share/applications
2.输入:sudo vi firefox.desktop
在vi里面输入以下内容(在其它版本中复制).然后保存并退出" :wq "
[Desktop Entry]
Name=Firefox 51.0.1
Comment=this is firefox
Exec=/usr/local/lib/firefox/firefox
Icon=/usr/lib/firefox/icons/mozicon128.png
Terminal=false
Type=Application
Categories=Application;Network;
如果上边的配置完还是不显示也可以使用下边的方法------------输入代码:
这样基本上是显示了,但是,还有几步需要做
利用vnc进入桌面,打开firefox浏览器,把他的更新浏览器设置关掉,
输入代码:
rm -rf /usr/local/lib/firefox
tar xjf firefox-51.0.tar.bz2
mv firefox/ /usr/local/lib/
这样浏览器就固定在你想要的版本了。。而且不会升级到最新版,
添加FLASH:
这时候的浏览器是没有FLASH的,所以,还需要安装flash,怎么安装网上都有,这里将我自己的代码解决方法拿出来:
最后重新启动下firefox就可以了,
插件下载安装:浏览器把下边的地址输入打开安装
插件下载和安装:https://www.ebesucher.com/addon.html
安装完成以后点击添加自己的账号,
第四:优化挂机设置自动
- 浏览器不保存历史记录
这一点比较重要,因为你一直在冲浪如果保存历史记录,会导致大量的记录文件。
进入firefox的preferences-privacy-history,设置为never remember history
- 制作脚本,定时重启浏览器
vi /root/restart_ff.sh
#!/bin/sh
export DISPLAY=localhost:1.0
cd /root
rm -rf ~/.vnc/.log /tmp/plugtmp > /dev/null 2>&1
killall firefox > /dev/null 2>&1
/usr/bin/firefox --new-tab http://www.ebesucher.com/surfbar/username > /dev/null 2>&1 &
username填写自己的用户名
chmod a+x /root/restart_ff.sh
echo "0 */2 * * * root /root/restart_ff.sh" >>/etc/crontab
service cron restart
每2小时重启一下浏览器,
跟随机器启动vnc:
vi /etc/init.d/vncserver
BEGIN INIT INFO
Provides: vncserver
Required-Start: $remote_fs $syslog
Required-Stop: $remote_fs $syslog
Default-Start: 2 3 4 5
Default-Stop: 0 1 6
Short-Description: Start daemon at boot time
Description: Enable service provided by daemon.
END INIT INFO
PATH="$PATH:/usr/X11R6/bin/"
The Username:Group that will run VNC
export USER="root"
#${RUNAS}
The display that VNC will use
DISPLAY="1"
Color depth (between 8 and 32)
DEPTH="16"
The Desktop geometry to use.
#GEOMETRY="x"
GEOMETRY="1024x768"
#You Can Choice GEOMETRY="1024x768" && GEOMETRY="1280x1024"
The name that the VNC Desktop will have.
NAME="Vncserver"
OPTIONS="-name ${NAME} -depth ${DEPTH} -geometry ${GEOMETRY} :${DISPLAY}"
. /lib/lsb/init-functions
case "$1" in
start)
su ${USER} -c "/usr/bin/vncserver ${OPTIONS}"
;;
stop)
su ${USER} -c "/usr/bin/vncserver -kill :${DISPLAY}"
;;
restart)
$0 stop
$0 start
;;
esac
exit 0
把上边的代码放到 /etc/init.d/vncserver
chmod +x /etc/init.d/vncserver
update-rc.d vncserver defaults
重启就可以自动运行vnc了