分类
折腾

Centos 上挂 ebesucher

参考文献

https://51.ruyo.net/2792.html
https://51.ruyo.net/5383.html
https://blog.csdn.net/ch_jinyi/article/details/7421969
https://blog.csdn.net/ch_jinyi/article/details/7421969

在 Centos 上安装 tigervnc 和 tigervnc-server

yum install -y tigervnc tigervnc-server

Centos7 及以上安装 xfce 桌面

yum install -y epel-release
yum groupinstall xfce
yum groupinstall fonts

安装旧版 Firefox(由于内存和 CPU 的限制)

wget https://ftp.mozilla.org/pub/firefox/releases/53.0/linux-x86_64/en-US/firefox-53.0.tar.bz2
tar -xjvf firefox-53.0.tar.bz2 -C /usr/local
ln -s /usr/local/firefox/firefox /usr/bin/firefox

修改 vncserver 配置

vi /etc/sysconfig/vncservers

将内容修改为

VNCSERVERS="1:root"
VNCSERVERARGS[1]="-geometry 800x600 "

启动 vncserver(为生成 xstartup 文件)

vncserver

修改 xtartup 文件

vi /root/.vnc/xstartup

内容如下,然后重新启动 vncserver

#!/bin/sh
# Uncomment the following two lines for normal desktop:
unset SESSION_MANAGER
#exec /etc/X11/xinit/xinitrc
[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
xsetroot -solid grey
vncconfig -iconic &
#xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
#twm &
startxfce4 &

使用 vnc-view 连接服务器 IP:1

避免火狐历时记录爆掉硬盘,要设置不记录历时记录,路径为
Edit–> Preferences–> Privacy–> firefox will–> Never remember history

关闭火狐浏览器自动更新,并优化设置 about:config

network.http.pipelining = true
network.http.pipelining.maxrequests = 8
network.http.proxy.pipelining = true
dom.max_script_run_time = 10
新建
content.interrupt.parsing = true
content.switch.threshold = 750000

定时删除日志和自动重启 Firefox crontab -e

00 00 * * * rm -rf /root/.vnc/*.log
00 06 * * * rm -rf /root/.vnc/*.log
00 12 * * * rm -rf /root/.vnc/*.log
00 18 * * * rm -rf /root/.vnc/*.log
00 *  * * * ps -ef|grep 'firefox'|grep -v  'ii'|cut -c 9-15|xargs kill -9
01 *  * * * nohup firefox --display=:1 --new-tab http://www.ebesucher.de/surfbar/z820904273 >/dev/null 2>&1 &

安装 eBesucher 插件

火狐访问 https://www.ebesucher.com/data/firefoxaddon/latest.xpi

可能还需要根据 IP 地址,更改 Firefox 语言

修改 general.useragent.locale。然后在 http://ftp.mozilla.org/pub/firefox/releases/53.0/linux-x86_64/xpi/ 中找到对应的语言文件安装。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注