Retropie Installation on Ubuntu Server x64 18.04.1
-
Which emulators benefit from the Vulkan drivers?
I'm running without them and everything seems to run smooth.
But of course improvement is always good. :) -
@wmarcio - Good point, this script is technically for X64 - I have not tried it on a 32-bit install.
The code to upgrade the video drivers and install Vulkan is actually in there. I haven't 'enabled' it yet, as I haven't had a chance to test that everything still works after the upgrades. This is where adding some configurability options would be nice... But for now you can append the following to the end of the script before running it if you want:
install_latest_video_drivers
install_vulkan
I don't know anything about the music capabilities. I will look into it.
-
@MisterB thxs, i will test your script tomorrow.
-
@MisterB Excellent work! I just ran the script against an Ubuntu 18.04 install (using the x64 mini iso) and everything seems to be working as expected. The only thing I had to do was install curl prior.
I'll continue to test and report back.
John
-
Has anyone had any luck running Naomi/Atomiswave ROMs (MAME .zips) on this config using lr-beetle-dc (formally lr-reicast)...specifically on an Intel GPU?
-
@Panja said in Retropie Installation on Ubuntu Server x64 18.04.1:
Which emulators benefit from the Vulkan drivers?
I'm running without them and everything seems to run smooth.
But of course improvement is always good. :)Any one?
-
@MisterB Just tried this in x86 18.04 and it works great. Did some preliminary testing with vulkan drivers too and no issues to report yet. Really great work on putting this together. I second adding the optional steps into the script. Thank you again - great work.
-
@retroczr should add that I used the server install, not the mini.iso.
-
@MisterB Massive thanks for the script! I used your script yesterday and it completed successfully, but when I boot I just see a mouse and what seems a openbox interface, not emulstation. When I click with the right mouse button I get the options to start a terminal, applications, restart, reconfigure etc. but when I start the terminal I see nothing. The mouse unclutters nicely so the autostart has run at some point.
If I login with ssh and run ps aux I see that the emulstation process is running. I suspect there might be some overscan or wrong resolution at play and therefore the terminal isn't visible but this shouldn't matter for emulstation starting fullscreen right?
I tried some xrandr command in the openbox autostart config to adjust the resolution but to no avail. I will test further tomorrow but any pointers will be highly appreciated :) -
Hi Guys
I sucessfully installed retropie on ubuntu 18.04 with a lattepanda alpha 864
the most working fine
ir-parallel N64
ir-genesis-plus-gx
ir-mame2003,2015
ir-gambatte
ir-mgba
ir-gw
ir-fbalpha2012
ir-vice
ir-4do
ir-snes9x2010
ir-picodrive
ir-beetle-supergrafx
ir-beetle-ngp
ir-nestopioa
ir-pcsx-rearmed
ir-ppsspp (xmb menü freezing using rgui)
ir-beetle saturn (audio crackles no roms to testing more)reicast > flycast (cannot be installed, i do another post)
ir-dosbox (not all run and the running like maniac mansion have no audio.fs-uae my amiberry scripts are not working here check it later...
Dolphin problem is solved now...
i had audio crackles and lags and full freezes..
these are going since changing to vulkan.Dolphin Audio:
after trying hours of some configuration it running much smoother with gpu clock rate: 80% the audio crackles are gone 90% decrease.I installed vulkan in that way:
repos:
[https://launchpad.net/~paulo-miguel-dias/+archive/ubuntu/mesa](link url)sudo add-apt-repository ppa:paulo-miguel-dias/mesa sudo apt upgrade libglapi-mesa libgl1-mesa-dri vulkan-utils sudo apt install libvulkan1 mesa-vulkan-drivers vulkan-utils
now i can switch in retroarch to vulkan and vulkan is working,
My main problem is now pcsx2 i can't install from
Official PCSX2 PPA
[https://launchpad.net/~gregory-hainaut/+archive/ubuntu/pcsx2.official.ppa](link url)sudo add-apt-repository ppa:gregory-hainaut/pcsx2.official.ppa
installing fom retropie script is unable and
sudo apt install pcsx2
gives the ouput:
package pcsx2 cannot be found.i saw that is only 32bit... so anyone has successfully installed on ubuntu18.04 with a intel processor ?
if yes a guide would be helpful :-)thanks
-
@wilmardo If you have the ability to do so, try starting from scratch with my latest script, where I made some changes to auto login logic (but don't run on top of an existing install - that will blow everything up).
But you can also try to manually edit files as follows:
/home/pi/.config/openbox/autostart should look like this:
unclutter -idle 0.01 -root /opt/retropie/configs/all/autostart.sh
If you don't have /opt/retropie/configs/all/autostart.sh already created, create it with:
mkdir -p /opt/retropie/configs/all touch /opt/retropie/configs/all/autostart.sh chmod +x /opt/retropie/configs/all/autostart.sh chown $USER:$USER /opt/retropie/configs/all/autostart.sh cat << EOF > /opt/retropie/configs/all/autostart.sh #! /bin/bash ############################################################################### # Start EmulationStation ############################################################################### gnome-terminal --full-screen --hide-menubar -- emulationstation --no-splash EOF
If the autostart.sh file already exists, just populate it with:
#! /bin/bash ############################################################################### # Start EmulationStation ############################################################################### gnome-terminal --full-screen --hide-menubar -- emulationstation --no-splash
-
I have posted a new release on GitHub. Please note that the install script needs to be run on a newly installed basic OS image. Do not run it on top of an existing RetroPie installation!
CHANGELOG
- Changed name to reflect support for both Server and Mini versions of Ubuntu
- Added retropie.preseed file to standardize basic OS install & config
- Installs the basic_install RetroPie meta-package, rather than its individual parts
- Improved hiding of boot messages
- Updated autostart logic, moved EmulationStation launch into RetroPie's autostart.sh file
- Enabled install of updated video drivers and Vulkan by default
- Removed install of Ultimarc-linux and RetroPie launchingimages package.
-
@MisterB Thanks for the update! One thing first, I think you forgot to enable the video driver installation so I ran the script with both lines uncommented (https://github.com/MizterB/RetroPie-Setup-Ubuntu/blob/master/retropie_setup_ubuntu.sh#L222)
But the sad news is, I have the exact same problem after a clean install from the ubuntu-18.04.2-live-server-amd64.iso. I see emulstation running when I run
ps aux
over ssh but on the screen I only have a terminal with a mousepointer which unclutters.I will try to troubleshoot this, I just had time to run the script and check if it works. Will post back hopefully tomorrow :)
-
Thanks for the heads-up on the video drivers - I just re-enabled those. Not sure about the blank screen issue, though. I did have something similar a few weeks ago, and after splitting out the autostart.sh and adding a shebang to the top of that file, everything started working reliably. If you could continue to troubleshoot your install and let me know what you find, I'm happy to make to changes. Maybe backgrounding clutter, or introducing a brief sleep before start ES would help?
-
Hi there,
I followed the steps posted by @johnodon a while back now, and added a few findings of my own to this thread - glad to see you have incorporated all of this into a script!
I'm going to change machines because I have another machine available now which will run Dolphin at full speed, so i'm going to reinstall and move my RetroPie instance over to that. This time round, to save time i'm going to try your script and see how it goes.
Just wanted to say thanks for going to the trouble of making it - if it works as planned it will save me a load of time during the initial installation phase for the reinstall. If I come across anything strange or that needs adding, I will let you know if you are still in a position to make changes to the script. I'll be installing on Ubuntu Server 18.04.3.
Hopefully others will make use of your script.
Thanks again!
-
Thank you for the feedback - much appreciated! This script was still working for me a couple of months ago - would love to hear if you are also successful with it. Happy to add tweaks as required.
-
No worries!
I had a quick play with it last night but ran into some issues - not with your script though I don't think.
My replacement machine has a GeForce 1030 in it, so after running the script I decided to put the proprietary drivers on there, but ran into a blank screen after rebooting. I could swap to a different TTY and login to the console, but it no longer would come up with ES.
Anyway, I reinstalled and put the driver on first, so later i'll try the script again and see what happens.
I noticed that it does a basic install - which i'm sure is fine for most, but for me on x86 I only install the emulators I need or the ones which work best on x86. I saw in a previous commit that you reverted to a basic install rather than the core packages, any idea what the issue was?
For now, i'll just take the RetroPie install step out of the script and install it at the end.
One comment about the vulkan drivers on your script - I see in the code that vulkan installs AFTER RetroPie is installed. I think these are best installed before, and I also think you may need to have libvulkan-dev installed too in addition to mesa-vulkan-drivers. The reason is, when RetroArch is installed, I think it detects vulkan support if available and compiles accordingly, so you want the drivers on there first. I believe libvulkan-dev needs to be present too, as per this thread I created a couple of years back:
https://retropie.org.uk/forum/topic/15914/x86-vulkan-driver-option-for-various-emulators-not-showing-up-but-dolphin-worksNot 100% sure if this stuff is still valid, but on my previous machine this is how I had to do things in order to be able to select Vulkan in RetroArch.When i've had time to run the script again (and hopefully not run into display issues this time) i'll let you know if I have any additional feedback!
Cheers
-
Actually, partially scrap the above (i think!) - I just checked here:
https://github.com/RetroPie/RetroPie-Setup/blob/master/scriptmodules/emulators/retroarch.shAnd it looks like for x11, libvulkan-dev is listed as a dependency, so I guess this will get installed as part of RetroArch anyway.
So that probably doesn't need to go onto the script.
It also looks like vulkan is enabled is you are running x11, so perhaps it doesn't matter if the driver is installed before or not.
I'll check it out when I next run the script and ensure vulkan works properly as-is with no changes.
Cheers
-
Okay! So I have some feedback for you on Ubuntu Server 18.04.4, I found a few minor issues with the script (clean install) but worked out fixes for all (i think). I am very much a beginner with some of this stuff but it was good to learn and challenge myself somewhat! There was also an issue with Nvidia cards when they have the proprietary driver installed (not nouveau), and I pretty much spent all my free time this week diagnosing an issue with X not launching as a result (black screen), which I FINALLY nailed down to being caused by recommended packages not being installed (--no-install-recommends) on the retropie depends function. I think it might be xorg causing the problem there, maybe it needs additional packages to work for Nvidia, but need to check that out further. Taking --no-install-recommends out though fixes the problem either way. If you are using Intel, it works either way, which is possibly why it wasn't picked up.
Anyway, instead of going into detail on each issue, I did try to document my changes so I could give you a little changelog. What I have done, is make a fork of your repository onto my github page and update it with my changes. If you want to take a look that'd be great, let me know what you think. I also added a few functions, which are optional (commented out by default).
I'll post my changelog and github link below. Hope you don't mind me having a go at fixing the few issues I came across and adding a few new things. I started to enjoy messing around with your script and trying to work out how to fix things, it's clearly laid out and a good starting point for someone who is learning. Was going to try and just fix a couple of the errors initially...and then got slightly carried away. You might have a better way of fixing some of the things I mentioned below but everything does seem to work and I didn't make any drastic changes.
If you want further details on any of the issues I did come across, I did quite a bit of testing so should be able to elaborate further on each point.
I did loosely test this with the mini.iso too - it seems to work, but I did have issues with the splash screen not showing up (just blank), this might be an Nvidia thing though or maybe some other packages need to be installed to make it show. Didn't really test in detail, most of my testing was performed on Ubuntu Server 18.04.
Link to my cloned github repository:
https://github.com/movisman/RetroPie-Setup-UbuntuThis should have the updated script and i’ve updated the readme as well.
Here is the changelog - might have missed a couple of things but should be reasonably complete:
Existing Functions:
function disable_sudo_password
- tweak logic so it creates a file in the /etc/sudoers.d directory to disable sudo password, rather than editing sudoers directly (more dangerous and can be overwritten by updates)
function install_retropie_dependencies
- remove -no-install-recommends as having this causes a blank screen on boot for nvidia cards when using a proprietary driver
function install_retropie
- reinstated the core module install method (retroarch, emulationstation, retropiemenu, runcommand, plus samba) - let me know if you knew what the issue was with using this method over the basic install...during all my testing it seemed to work fine going for core modules only?
function add_retroarch_shaders
- add line of code to remove the 'pi' centered shaders directory installed by RetroPie-Setup
recreate the shaders directory afresh - add chown command at the end of the function to make sure everything under /opt/retropie/configs is owned by $USER
function hide_boot_messages - improve logic on sed command so instead of relying on GRUB_CMDLINE_LINUX_DEFAULT having the value "quiet" or "" to make the changes needed, now it will replace whatever exists in the quotes with the intended attributes.
function enable_plymouth_theme
- remove -no-install-recommends just in case it causes issues - could possibly be restored as it seems to be ok with no-install-recommends set to true. However after my issue with no-install-recommends being enabled on the retropie depends function, I thought it would be safer to remove it.
function hide_openbox_windows
- remove $(cat $USER_HOME/.bash_profile) just before EOF, as this causes the 'startx' code to appear twice in .bash_profile (once at the top, and once below the gnome-terminal commands)
reorder this function so it takes place before enable_autostart_xwindows - this ensures that the gnome-terminal code is run before startx is called - changed chown command so it changes ownership to $USER from .config recursively instead of .config/openbox - this resolves an issue where .config/dconf (which gets created when gnome-terminal is first launched) is incorrectly owned by root - this then causes DCONF console errors for the gnome-terminal customisation when .bash_profile is called, resulting in no customisation happening because it cannot write to the file correctly (presumably because it is owned by root). Changing the chown command totally resolves this problem, resulting in fully customised black and green terminal with no bars etc.
function enable_autostart_xwindows
- change ~/ on several lines to $USER_HOME/ to match other functions
function autostart_openbox_apps
- changed chown command to /opt/retropie/configs recursively instead of just changing ownership on autostart.sh, otherwise some of the directories get owned by root again. opt/retropie/configs and all files/folders beneath should be owned by $USER
function install_vulkan
- remove -no-install-recommends just in case it causes issues - could possibly be restored, but haven't tested for issues by leaving no-install-recommends set to true with vulkan. After my issue with recommended packages on the retropie depends function I thought it would be safer to take this out.
New Functions:
added optional functions (not enabled by default) for:- installing the latest nvidia driver
- install 'inxi' package and enable updates - can be used for checking hardware and system information
- disabling screen blanking
- force HDMI-0 to 1080p after startup (should be configured accordingly to suit output and resolution)
- changing the GRUB graphics mode to 1920x1080x32 for nicer splash (if supported)
- removing “error: XDG_RUNTIME_DIR not set in the environment” CLI error when exiting Retroarch from the RetroPie Setup screen within ES
- final apt update/upgrade and cleanup unneeded packages (autoremove)
- offer to reboot once last function is completed
- fix permissions function which catches any potential snags where folders or files under $USER_HOME may get owned by root. note - this might need some improvement/sorting out, it basically chowns the home directory recursively so it is owned by $USER. Which should be ok as I think anything under home shouldn't be owned by anything else. It seems to work...currently it isn't needed after my above changes but I figured it was good to leave it as a fail-safe
Misc:
- added logging at top of file so console output is stored as retropie_setup_ubuntu.log when complete
- add short confirmation after each function is run
- reordered functions to match the order they execute in
- reordered the execution of functions to resolve a couple of minor issues
- add titles to all functions to tidy up a bit, add additional descriptions/info
-
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.