Posted On June 8, 2020

How to install RetroArch on CentOS 8

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to install RetroArch on CentOS 8

RetroArch is a nice front-end GUI to enable a computer to emulate various console systems such as NES, SNES, Sega, etc. To keep it brief, here’s how to install this toy on CentOS.

# Add epel repo and install snapd
sudo yum -y install epel-release
sudo yum -y install snapd

# Enable snapd
# Pre-empt this error
# error: cannot communicate with server: Post http://localhost/v2/snaps/retroarch: dial unix /run/snapd.socket: connect: no such file or directory
sudo systemctl enable --now snapd.socket
sudo ln -s /var/lib/snapd/snap /snap

# Use snapd to install RetroArch
sudo snap install retroarch

# Sample output
[root@playbox ~]# sudo snap install retroarch
error: cannot communicate with server: Post http://localhost/v2/snaps/retroarch: dial unix /run/snapd.socket: connect: no such file or directory
[root@playbox ~]#
[root@playbox ~]# sudo systemctl enable --now snapd.socket
Created symlink /etc/systemd/system/sockets.target.wants/snapd.socket → /usr/lib/systemd/system/snapd.socket.
[root@playbox ~]# sudo ln -s /var/lib/snapd/snap /snap
[root@playbox ~]# sudo snap install retroarch
error: too early for operation, device not yet seeded or device model not acknowledged
[root@playbox ~]# sudo snap install retroarch
2020-06-07T21:45:43-07:00 INFO Waiting for restart...
Warning: /var/lib/snapd/snap/bin was not found in your $PATH. If you've not restarted your session
         since you installed snapd, try doing that. Please see https://forum.snapcraft.io/t/how-to-fix-snap-binaries-not-found/9469
         for more details.
retroarch 1.8.8 from hunterk (libretro) installed

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Step by Step Kubernetes Application Hosting: Persistent Storage, Pod Creation, Deployment Plan, Service Clustering, and Ingress Routing

Overview Update: we have a new article which goes directly into a production-style setup of…

SENDMAIL Configurations

SMTP relay will also check the source of sender by using ping-back. Thus, the servername…

Uhhuh. NMI received for unknown reason 3d on CPU 4

Problem: Message from syslogd@linux03 at Aug 31 04:28:21 ... kernel:[273033.123489] Uhhuh. NMI received for unknown…