Retropie Installation on Ubuntu Server x64 18.04.1
-
I've actually got it working with either Sway WM or with Openbox now (can switch by editing the .bash_profile file). Performance and CPU usage is about equal between the two so I'll probably just end up with whichever one is more stable.
The Cron job is a great idea - IF you're not playing at that time of night! Might want to look at creating a script that would identify if retroarch itself is an active process before executing the shutdown
-
Yes great idea! I will probably have a look into this, there should be a way of only performing the shutdown if certain processes are not in use.
Here are a couple of other tips I have discovered, in case you or anyone else finds them useful:
Remove border which appears on some emulators (dolphin in my case):
Using Dolphin, even though I changed loads of the settings in the GUI, I was always getting a very small grey border (visible at the top of the screen) when using this emu. Doesn't happen on my MATE installation. If you use it and get the same, open your rc.xml and change the "keepBorder" value from yes to no:
<keepBorder>no</keepBorder>
This will take off borders for new windows and solves the problem. This is outside of the tips above to hide the terminal etc.
Btw, I edited the ~/.config/openbox/rc.xml file which is created as per one of the scripts in the first post (it is copied from the default and acts as the config for the local user, rather than editing the global one).
Set up temporary VNC SSH session for working on the box directly
While I still haven't got Teamviewer running correctly, I found a really great script which starts a vnc server on the remote computer via port 5900, and then tunnels back that port over SSH. You don't have to open up any ports (as long as you can already SSH).
https://askubuntu.com/questions/87443/how-to-access-a-machine-through-vnc-using-ssh/87475#87475
Download the script which "Piskvor" made (linked in the comments)Install the ssvnc viewer:
sudo apt install ssvncInstall x11vnc on the server:
sudo apt install x11vncRun the script:
sudo ./vncssh.sh username@insertcomputerhereVoila! When you close the window, it should just quit and stop the VNC server on the remote side, which means it isn't always running. It worked first time for me anyway, also it worked even the HDMI was on another input. It just enables me to mess around with a few settings that I cannot easily achieve over SSH and not interrupt the TV if it is in use. Is a little sluggish sometimes, but it works for its purpose.
Remove ES splash screen for even more slickness (personal pref of course, as you may want to keep it):
I also added --no-splash at the end of the openbox/startup script which calls ES. Just a preference, but it means it goes from plymouth splash screen straight to the systems list which I find is slicker than seeing the ES loading screen for less than a second.
Other sound related tips, changing the default device for sound:
If, like me you have a PC with an internal sound card and speaker, but also an HDMI/Displayport output which can carry sound, for some reason on Ubuntu Server it was insistent on using the internal sound card+speaker vs my displayport output which was active. I found two solutions to this in case it helps anyone:
Either:
A) Disable the internal audio card in the BIOS, this will then automatically route sound via HDMI - as it's the only active deviceOR
B) Open a terminal on the remote computer, either directly or via SSH and run the command:
pactl list short sinks
make a note of the name of the HDMI device eg:
alsa_output.pci-0000_00_03.0.hdmi-stereothen type:
pactl set-default-sink 'alsa_output.pci-0000_00_03.0.hdmi-stereo'(change to suit the output of the first command of course)
Restart ES and sound will now be output from this device. Which means in my case, sound now travels over HDMI rather than the internal sound card and speaker, even though the internal sound card is still enabled.
I will add more tips as I come up with them to help others. I am also documenting all the changes I make, and at the end, if I make it that far, I can share some more of the tips here, or I may create a new thread with all the information, depending on how in depth it goes. I have a document already for all the Dolphin changes I made to suit the x86 environment.
Cheers
-
Separate one about controllers, so far just set this up quickly with a Wired Xbox 360 pad. Setting the controller up in ES out of the box (on first launch) was a pain, because pressing the buttons for the triggers would always cause the next item to skip, or something to go weird. I read some github issues on it from ages ago, and to solve that, just make sure you install the xpad driver from RetroPie-Setup in the driver section, reboot, and then reconfigure the controller again. You will notice when the triggers are pressed they are assigned as buttons instead of axis+5 or whatever. They should assign nicely though.
The xpad driver as far as I know is installed as part of the standard Pi image:
https://github.com/RetroPie/RetroPie-Setup/blob/3a35c1b25ce051507981fd310bbd1a1573032f26/scriptmodules/admin/image.shSo I guess if you are using an xbox controller it's useful to have it installed on x86 too.
Cheers
-
Good catch with the xpad driver - I'm not using those, but it definitely helps with the complete documentation process!
-
I did something like this sometime ago, but using Ubuntu Minimal ISO. Installed XFCE as desktop to make things easier to manage if something goes wrong, hided the taskbar and autologin/autolaunch ES. Was a great thing, until my laptop just died... Was an old laptop suffering with ages of use, the keyboard and touchpad don't working, it finally gave up and don't start anymore... R.I.P. my little RetroPie Laptop...
But I have a question: thats a way to make this Ubuntu RetroPie a portable thumbdrive to just put on the pocket and play on any compatible PC?
-
Not too sure on the portable thumbdrive idea i'm afraid, I personally think a few issues would crop up when attempting this, but other users might be better placed to advise.
A couple of other OS tips to add, I am still documenting the setup and hopefully at some point in the future I will be able to share something which is combined with the above documentation (just have a lack of time!)
Disable screen blanking / energy saving features - Tested over HDMI on my Samsung TV.
This will prevent the TV from 'screen blanking' after 10 minutes of inactivity (screensaver and auto standby). This only happens outside of ES - so for example if you are installing an emulator from source in RetroPie-Setup and it takes longer than 10 minutes, the screen will go off and you have to wake with a keyboard or mouse, it won't wake with the controller which is a pain. Also, if you were in RetroPie-Setup messing around for more than 10 minutes with no keyboard interaction, it will blank out.To solve, open a terminal (locally on the machine, NOT over SSH as it won't work) and type:
xset q
This will display the current settings, you will see screensaver and DPMS features are all on and set to 600 (10 mins).
To disable and remember for all subsequent reboots, type:
sudo nano ~/.xsession
Add xset s off && xset -dpms to the file - I put it as the first command before launching the Openbox session. Make sure both xset and openbox commands are separated by a line break.
Reboot and done
This will turn the screensaver off, and it will also disable the Energy Star features of the monitor/TV on every boot before Openbox is launched.
Disable blinking cursor on boot (for me this occurs after grub but before the splashscreen, and momentarily before ES starts):
Open a terminal and type:
sudo nano /etc/default/grub
Where it says GRUB_CMDLINE_LINUX="quiet splash" (if you followed the initial install instructions) change it to:
GRUB_CMDLINE_LINUX="quiet splash vt.global_cursor_default=0"
Save, and then run the following in the terminal:
sudo update-grub
Reboot and the cursor will be gone! Combined with the excellent initial instructions above, I now have a totally suppressed/silent boot with the exception of the plymouth splash screen.
Footnote: If you get any TPM related errors flash up upon initial boot and don't use the feature, you can disable it in the BIOS to silence these. This is what I had to do on my machine. I also had to enable keyboardless operation in the BIOS to stop the machine halting on boot when no keyboard was plugged in.
Cheers
-
Nice work movisman!!!
-
@movisman said in Retropie Installation on Ubuntu Server x64 18.04.1:
Footnote: If you get any TPM related errors flash up upon initial boot and don't use the feature, you can disable it in the BIOS to silence these. This is what I had to do on my machine. I also had to enable keyboardless operation in the BIOS to stop the machine halting on boot when no keyboard was plugged in.
Oh yes, the infamous "no keyboard present, press F1 to continue" error. 😊
(The exact wording varies by manufacturer and firmware.)
-
I really like what you did here but can anyone help me to install nvidia drivers and set up my display correct? I want to connect my laptop with emulationstation to my tv.
-
Thanks for this great guide.
Everything runs great but on my hardware i had issues with the lr-reicast core.
I have an H61 motherboard with Intel HD graphics integrated and this core gave me freeze problems right at the start.
Seems all was related to the i915 drivers that Ubuntu installs so i used this useful guide to install RetroPie on a Debian 9 Stretch minimal install distribution and my issues was solved. Maybe Debian install a different Intel drivers that gives me no issues.
Maybe this issue was caused only for my specific hardware but i wanted to share my experience.
-
@movisman said in Retropie Installation on Ubuntu Server x64 18.04.1:
Set up temporary VNC SSH session for working on the box directly
has someone the script that was posted by Piskvor. The file is not available anymore.
-
Awesome guide!
I'm running Ubuntu Server 18.04.2 on a NUC7i5BNK with a DualShock 4 controller.
All is running through HDMI to my 46 inch TV (1080p).Only problem I have is with the audio.
When loading a game, when the game actually begins I hear a (pretty loud) POP sound.
Audio is ok afterwards, it's just an annoying POP when the game loads.Also I'm seeing an error message:
lvl0: VolumeControl::init() - failed to find mixer elements!
Any ideas about this issue?
-
@bloodykean said in Retropie Installation on Ubuntu Server x64 18.04.1:
has someone the script that was posted by Piskvor. The file is not available anymore.
Hi,
Sorry for a delayed reply, I only check in every so often depending if i'm doing any work on my RetroPie build!
Actually, I do have a copy of the original script and I do still use it - I have pasted the contents here for you:
https://pastebin.com/02Rc3UFZPaste it into a notepad file and save it as a '.sh' file with a name of your choice.
Let's say you save it as vncssh.sh, the command to run would be "vncssh.sh pi@retropie-pc" - if the username is pi and the machine you are connecting to is retropie-pc.
If you need the file itself, I can always upload it to my google drive and share from there. The forum doesn't allow attachments, hence I can't upload it directly.
Hope this helps.
Cheers
-
@Panja said in Retropie Installation on Ubuntu Server x64 18.04.1:
When loading a game, when the game actually begins I hear a (pretty loud) POP sound.
Audio is ok afterwards, it's just an annoying POP when the game loads.Hi,
Not too sure about that i'm afraid, did you follow my additional tips on post #34, at the bottom is a piece about sound:
https://retropie.org.uk/forum/topic/18810/retropie-installation-on-ubuntu-server-x64-18-04-1/34To be fair, this is more about onboard speaker vs. HDMI sound - it sounds like yours is already set correctly, but the pop is strange. But might be worth looking at. Maybe worth disabling any onboard sound in the BIOS anyway as part of any troubleshooting.
Also, if you have an up to date ES, within the sound settings, I believe my master volume is set to 50%, the audio card 'default', and the audio device 'master'. I need to check this though, that's just off the top of my head. If yours is different, perhaps change it to this and restart the box, see if it does the same after that.
I don't get the ALSA error in the terminal like you do, so it is probably indeed related to your issue.
Cheers
-
Just saw your latest update here:
https://retropie.org.uk/forum/topic/21923/retropie-x86-audio-pop-when-loading-gamesWill reply over there.
Cheers
-
Thanks mate!
-
@movisman Great man! Thx1! :)
-
I just setup an older i7 laptop using this guide. Everything works great except one problem:
Regardless of the emulator and rom I am using, the screen will timeout after ~5-10 minutes of play. If I move the mouse or keyboard, the screen comes back on and all is fine...for another 5-10 minutes.
I think I found the same issue on git:
https://github.com/libretro/RetroArch/issues/7472#issuecomment-485452851Does anyone have a fix for this?
-
@scales11 in terminal type "xset q" and what settings do you have?
-
@bloodykean, No I did not.
However, once I installed “xdg-utils” my screensaver/timeout was fixed. NOTE: xdg-utils is the Debian package that contains xdg-screensaver
I also noticed that with the install method I chose I do not have a ~/.config/retroarch/retroarch.cfg file. Could this file be somewhere else?
Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.
Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.