Fedora 25 install adobe flashplayer

Install Adobe repository:

sudo dnf install http://linuxdownload.adobe.com/adobe-release/adobe-release-x86_64-1.0-1.noarch.rpm

Find and install required package for chromium-browser:

dnf provides */libpepflashplayer.so
sudo dnf install flash-player-ppapi

Activate PepperFlash plugin in chromium-browser:

sudo ln -s /usr/lib64/flash-plugin/libpepflashplayer.so /usr/lib64/chromium-browser/PepperFlash/libpepflashplayer.so
sudo …
more ...

Atlassian crowd apache tomcat jni native lib

  1. Install Requirements
yum install -y gcc make apr-devel

Download oracle jdk tar.gz file and extract to /opt, create symlink for convenience:

cd /opt
tar -xf jdk-8u121-linux-x64.tar.gz
ln -s jdk1.8.0_121 jdk-latest

Now, for upgrade jdk, just extract new tar.gz file and update symlink to new …

more ...

Atlassian crowd systemd unit

Create systemd service unit in /etc/systemd/system/crowd.service:

[Unit]
Description=Crowd
After=network.target

[Service]
Type=oneshot
RemainAfterExit=yes
User=nobody
Group=nobody

Environment=JAVA_HOME=/opt/jdk-latest
Environment=PATH=/opt/jdk-latest/bin:/usr/sbin:/usr/bin
EnvironmentFile=-/etc/default/crowd

WorkingDirectory=/opt/atlassian/crowd

ExecStart=/bin/sh start_crowd …
more ...

Flash player not working in chrome incognito.

Flash player now working in chrome private window (incognito), solution is simple stupid!

Just open chrome://flags/#prefer-html-over-flash and change the Prefer HTML over Flash dropdown box to disabled.


LINKS

  • https://forums.adobe.com/thread/2298071
  • chrome://flags/#prefer-html-over-flash
more ...

Fedora - install Nvidia driver

Install RPMFusion repository

sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm

Important! Upgrade to latest versions kernel and SELinux packages

sudo dnf update kernel* selinux-policy*

Install required packages

sudo dnf install gcc kernel-headers kernel-devel

Install Nvidia drivers …

more ...