RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    1. Home
    2. Tags
    3. open
    Log in to post
    • All categories
    • Z

      Open X-com port

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support port x-com xcom open
      2
      0 Votes
      2 Posts
      546 Views
      ExarKunIvE

      @zzackk if you install the RetroPie-Extra from zerojay it is already in there.

      i have not tried it so i dont know if is still still working

      https://github.com/zerojay/RetroPie-Extra

    • B

      Can not connect to Retropie Manager (Connection refused)

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support manager open port
      12
      0 Votes
      12 Posts
      6k Views
      B

      I uncommented it and set the rights as you advised:

      pi@raspberrypi:~ $ cat /etc/rc.local

      #!/bin/sh -e # # rc.local # # This script is executed at the end of each multiuser runlevel. # Make sure that the script will "exit 0" on success or any other # value on error. # # In order to enable or disable this script just change the execution # bits. # # By default this script does nothing. #hciconfig hci0 up #hciconfig hci0 pscan "/opt/retropie/supplementary/retropie-manager/rpmanager.sh" --start --user pi 2>&1 > /dev/shm/rpmanager.log & exit 0 Result: pi@raspberrypi:~ $ /opt/retropie/supplementary/retropie-manager/rpmanager.sh --isrunning RetroPie-Manager is not running Sad.....
    • S

      Connecting to "Open" Wifi

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support wifi config open hotel login
      5
      0 Votes
      5 Posts
      3k Views
      mediamogulM

      @backstander said in Connecting to "Open" Wifi:

      When I saw the subject line I thought of you @mediamogul lol

      Better this than "Local hoarder crushed to death by avalanche of 'Far Side' calendars. Survived his by 47 cats".

    • M

      what does input_menu_toggle_btn hotkey open?

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support input menu toggle button open
      2
      0 Votes
      2 Posts
      2k Views
      BuZzB

      @maksi opens the RGUI menu - https://github.com/retropie/retropie-setup/wiki/retroarch-configuration

    • D

      Open Wi-Fi with Retropie

      Watching Ignoring Scheduled Pinned Locked Moved Help and Support wi-fi retropie ssh open
      6
      0 Votes
      6 Posts
      3k Views
      mediamogulM

      This question has had me thinking all afternoon, as it could easily come up while traveling. I was thinking that there must be a way to do this without the forethought to install 'Lynx' ahead of time. After a bit of searching, I found the following at:
      https://superuser.com/questions/132392/using-command-line-to-connect-to-a-wireless-network-with-an-http-login

      You will have to look once at the source of the login form to find out the names of the user and password fields. As the authentication redirect all pages, use any URL to get that source: curl http://www.google.com > login.html For example, you'll find: <form method="POST" action="http://my-public-provider.com/agree.php"> <input type="checkbox" name="agree" value="yes">I agree <input type="submit" name="push" value="Send"> </form> Then you can build your curl command to post your form information: curl -d "agree=yes&push=Send" http://my-public-provider.com/agree.php