Run Xiaohuaxian game on Linux system (for the suspension of maintenance of Flash in 2021)

Update on January 5: Flash.cn official website announced that on January 12, 2021, Flash Player will be updated. Due to technical support, this and subsequent updated versions of Flash Player no longer support the playback function of video format content under Windows 7 (excluding Windows 7), Linux, and Mac operating systems. At that time, Linux systems using Flash version 32 or above may prevent content from loading.

On some websites, you may still find the version 29 PPAPI Flash dedicated to Linux (it may also be difficult to download, you can try Baidu search flash player linux, pay attention to whether it is 32-bit or 64-bit). If there is a situation that prevents loading, you need to unzip the old version of Flash and replace it /usr/lib64/flash-pluginwith the file ( libpepflashplayer.soand manifest.json) of the same name in the directory . Note that the file permissions must be modified to resume use.

tar -zxvf flash_player_ppapi_linux.x86_64.tar.gz
sudo rm -rf /usr/lib64/flash-plugin/*
sudo cp ~/{
    
    libpepflashplayer.so,manifest.json} .
sudo chmod 777 /usr/lib64/flash-plugin/*

Update on December 9th: TinyCore has successfully run Xiaohuaxian.

Software that needs to be installed:
chromium-browser Google kernel browser 23
notocjk-regular-fonts-ttc
Sieyuan bold font pcre, pcre2 runtime library
getFlash_beta, getFlash page tour Flash (NPAPI, the version after installation is 32, I don’t know 23 Chromium does not support PPAPI)

chromium-browserIt can be used directly without restarting or adding control parameters .
Insert picture description here


Baidu Cloud Server CentOS has been successfully running Xiaohuaxian Page Tour, but the configuration of the cloud server selection is not good, and the effect is not very good if the web page VNC link is used, but if it is a direct physical machine Linux operation, it is much better.

Command list:

# 安装GUI (如果有图形界面就不用再安装了)
yum groupinstall -y "Server with GUI"
# 导入EPEL软件源
yum install -y epel-release
# 改为国内镜像
sed -e 's!^metalink=!#metalink=!g' \
    -e 's!^#baseurl=!baseurl=!g' \
    -e 's!//download\.fedoraproject\.org/pub!//mirrors.tuna.tsinghua.edu.cn!g' \
    -e 's!http://mirrors\.tuna!https://mirrors.tuna!g' \
    -i /etc/yum.repos.d/epel.repo /etc/yum.repos.d/epel-testing.repo
# 安装谷歌内核浏览器 (留意一下版本不要超过或等于88,可以先用yum search看一下版本)
yum install -y chromium
# 下载国内特供版Flash (Linux版本不包含涉及隐私的服务,已从service --status-all确认)
wget https://www.flash.cn/cdm//latest/flash-player-ppapi-release.x86_64.rpm
# 安装Flash
rpm -ivh flash-player-ppapi-release.x86_64.rpm
# 进图形界面 (如果有图形界面就不用再手动进入了)
init 5
# 手动指定Flash控件文件的路径来启动谷歌内核浏览器
chromium-browser --no-sandbox --ppapi-flash-path=/usr/lib/adobe-flashplugin/libpepflashplayer.so --ppapi-flash-version=33.0.0.417

Into http://hua.61.com , click on the game requires Flash Player, and then click Not secure the left of the address bar, then choose Flash Allow, and then refresh to run.Insert picture description here

Guess you like

Origin blog.csdn.net/qq_35977139/article/details/110823129