Raspberry PI: Difference between revisions

From My Limbic Wiki
 
(3 intermediate revisions by the same user not shown)
Line 5: Line 5:
ping raspberrypi -4
ping raspberrypi -4
</source>
</source>
===64 Bits===
The "official" way to have your Pi boot in 64-bit mode is to add a line arm_64bit=1 to /boot/config.txt. (Just make sure /boot/kernel8.img exists first).
=Connect=
=Connect=
* Putty
* Putty
Line 21: Line 24:
22/05/202: Parsec is only officially supported on the Pi 3B+. The Pi 4 requires new libraries that haven't been released publicly by the Raspberry Pi Organization. Until those libraries are released, we unfortunately cannot offer Pi 4 support. https://support.parsecgaming.com/hc/en-us/articles/115002699012-Setting-Up-On-Raspberry-Pi-Raspbian-
22/05/202: Parsec is only officially supported on the Pi 3B+. The Pi 4 requires new libraries that haven't been released publicly by the Raspberry Pi Organization. Until those libraries are released, we unfortunately cannot offer Pi 4 support. https://support.parsecgaming.com/hc/en-us/articles/115002699012-Setting-Up-On-Raspberry-Pi-Raspbian-


=Installer Parsec Client=
=Install Parsec Client=
<source lang="shell">
<source lang="shell">
wget https://s3.amazonaws.com/parsec-build/package/parsec-rpi.deb
wget https://s3.amazonaws.com/parsec-build/package/parsec-rpi.deb
Line 31: Line 34:
# Run with
# Run with
parsecd  
parsecd  
# If you're having trouble logging to Parsec, please note that the default keyboard is UK QWERTY, so you may need to change this to US QWERTY to make sure your keyboard works correctly.


# If you prefer to run the Parsec Application headless, type parsecd peer_id=YOUR_PEER_ID from any directory.  
# If you prefer to run the Parsec Application headless, type parsecd peer_id=YOUR_PEER_ID from any directory.  
# You can find your Peer ID from the Parsec application on your computer and right clicking the computer with the crown.
# You can find your Peer ID from the Parsec application on your computer and right clicking the computer with the crown.
</source>
==Configure Parsec==
<source lang="shell">
sudo raspi-config
# then: 7 Advances Options > A3 Memory Split > 128
</source>
* More infos: https://pimylifeup.com/raspberry-pi-parsec/
=Install RetroPie=
* Full Documetation: https://retropie.org.uk/docs/Manual-Installation/
* Don't forget to configure keyboard and language packs with raspberi-config tool
<source lang="shell">
# Prerequisite
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install git lsb-release
# Installation
cd
git clone --depth=1 https://github.com/RetroPie/RetroPie-Setup.git
cd RetroPie-Setup
chmod +x retropie_setup.sh
sudo ./retropie_setup.sh
# Then Select
Basic Install >> Quick Install
# Launch
DISPLAY=emulationstation
emulationstation
</source>
</source>

Latest revision as of 00:46, 3 June 2020

Configuration

  • Allow SSH connection to Raspberry without any screen: Create "SSH" file without extension to the root of the SD Card
  • Find Raspberry IP Adress

<source lang="shell"> ping raspberrypi -4 </source>

64 Bits

The "official" way to have your Pi boot in 64-bit mode is to add a line arm_64bit=1 to /boot/config.txt. (Just make sure /boot/kernel8.img exists first).

Connect

  • Putty
  • URL: raspberrypi.local
  • login: pi
  • Password: raspberrry

Installer SteamLink

<source lang="shell"> sudo apt update sudo apt install steamlink </source>

Client Side

  • Settings > Remote play > Pair Steam Link

22/05/202: Parsec is only officially supported on the Pi 3B+. The Pi 4 requires new libraries that haven't been released publicly by the Raspberry Pi Organization. Until those libraries are released, we unfortunately cannot offer Pi 4 support. https://support.parsecgaming.com/hc/en-us/articles/115002699012-Setting-Up-On-Raspberry-Pi-Raspbian-

Install Parsec Client

<source lang="shell"> wget https://s3.amazonaws.com/parsec-build/package/parsec-rpi.deb sudo dpkg -i parsec-rpi.deb

  1. Setting Up XBOX Controllers (Xbox 360)

sudo apt-get install xboxdrv

  1. Run with

parsecd

  1. If you're having trouble logging to Parsec, please note that the default keyboard is UK QWERTY, so you may need to change this to US QWERTY to make sure your keyboard works correctly.
  1. If you prefer to run the Parsec Application headless, type parsecd peer_id=YOUR_PEER_ID from any directory.
  2. You can find your Peer ID from the Parsec application on your computer and right clicking the computer with the crown.

</source>

Configure Parsec

<source lang="shell"> sudo raspi-config

  1. then: 7 Advances Options > A3 Memory Split > 128

</source>

Install RetroPie

<source lang="shell">

  1. Prerequisite

sudo apt-get update && sudo apt-get upgrade sudo apt-get install git lsb-release

  1. Installation

cd git clone --depth=1 https://github.com/RetroPie/RetroPie-Setup.git cd RetroPie-Setup chmod +x retropie_setup.sh sudo ./retropie_setup.sh

  1. Then Select

Basic Install >> Quick Install

  1. Launch

DISPLAY=emulationstation emulationstation </source>