These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
EVE Launcher for Linux
o/ fly crazy
Installed Qt WebEngine locales directory not found at location /home/xxx/evelauncher/translations/qtwebengine_locales. Trying application directory...Qt WebEngine locales directory not found at location /home/xxx/evelauncher/qtwebengine_locales. Trying fallback directory... Translations MAY NOT not be correct.[1024/133704:WARNING:resource_bundle.cc(291)] locale_file_path.empty() for locale [S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.[S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so.
1024/162733:WARNING:resource_bundle.cc(291)] locale_file_path.empty() for locale Installed Qt WebEngine locales directory not found at location /home/master/games/evelauncher/translations/qtwebengine_locales. Trying application directory...Qt WebEngine locales directory not found at location /home/master/games/evelauncher/qtwebengine_locales. Trying fallback directory... Translations MAY NOT not be correct.[1024/162733:WARNING:resource_bundle.cc(291)] locale_file_path.empty() for locale [S_API FAIL] SteamAPI_Init() failed; SteamAPI_IsSteamRunning() failed.[S_API FAIL] SteamAPI_Init() failed; unable to locate a running instance of Steam, or a local steamclient.so
#!/bin/bashread -d '' usage << USAGEThis is a simple wrapper script to download, install and start theeve-online launcher for Linux.Usage:eve [--help] [--remove] [--reinstall]Options: --help Prints this help screen --remove Removes the eve-launcher installation. This will not remove the client cache which has to be removed manually. --reinstall Reinstalls the eve-launcher before it gets started.USAGEinstall_dir="${HOME}/.local/share/eve"launcher_url="https://binaries.eveonline.com/evelauncher-1086194.tar.gz"function print_help { echo "${usage}"}function install_launcher { if [ ! -d "${install_dir}/evelauncher" ]; then mkdir -p $install_dir curl $launcher_url | tar -xzv -C $install_dir fi}function remove_installer { rm -rf "${install_dir}/evelauncher"}function start_eve { ${install_dir}/evelauncher/evelauncher.sh}case $1 in "") install_launcher start_eve ;; "--remove") remove_installer ;; "--reinstall") remove_installer install_launcher start_eve ;; *) print_help ;;esac
Evil RatKid
sudo apt install libldap-2.4-2:i386