Wine setup:
Bare startup script:Code:sudo add-apt-repository ppa:ubuntu-wine/ppa sudo apt-get update sudo apt-get install -y wine1.7 winetricks
Code:WINEARCH=win64 WINEPREFIX=~/.wine64 wine RustDedicated.exe -batchmode -load
Setting up a server on Wine
Discussion in 'Guides and Tips' started by Wulf, Jun 9, 2015.
-
Wulf Community Admin
-
Thank wulf for helping me get Oxide to run!!
Here is a script for everyone to use
Code:#!/bin/bash #command to manually start if you want to close this script (do it in screen) #xvfb-run --auto-servernum --server-args='-screen 0 640x480x24:32' wine RustDedicated.exe -batchmode +rcon.ip 0.0.0.0 +rcon.port "48000" +rcon.password killer +server.hostname "-LINUX RUST-US-Pro Admins-NO WIPE-NEWBS WELCOM-" +server.port "28015" +server.identity "nfo_rust_server1" +server.maxplayers "2000" ##################################################################################### # Linux script for Rust server installing. # # Can also be used to update Rust server and steamcmd. # # Starts a rust server at the end. # # # # If you use a sudoers file please execute this command first to get root access: # # sudo -s # # Modded by GregTampa # # Original by Unknown_Energy # ############################################################################################################################ # define some variables first: # # please change it to your needs! <-- # ########################################directory where everything will be saved data_directory="/home/steam"#steamname and steamid are need for setting an owner of rust server owner_name="GregTampa" owner_steamid="76561197963365871" owner_name2="osteth" owner_steamid2="76561198035643024"#some setting for rust server server_hostname="-Victorious Gaming-LINUX RUST-Pro Admins-Newbs welcome-" server_port=28015 server_identity="nfo_rust_server1" server_maxplayers=1000 rcon.port=48010 rcon.password="password123"#note I haven't got oxide to work within wine yet#login data for forum of mod oxide: oxide_login="GregTampa" oxide_password="mysuperpassword" #set version of oxide to download oxide_version=5369#set version of some plugins fpr oxide oxide_give_version=3813 oxide_teleportation_version=3711 oxide_kits_version=3811 oxide_removertool_version=3837 oxide_godmode_version=3192 oxide_time_version=3819 oxide_playerlist_version=3819 oxide_helptext_version=3367 oxide_gatherrate_version=3721 oxide_craftingrate_version=3820 oxide_airdropsettings_version=3846 oxide_autobroadcast_version=2797 oxide_airdrop_controller=5066 ##################################################################### # first install dialog and show some dialogs with questions: # #####################################################################apt-get install dialogdialog --backtitle Question --title "Rust-Server" --yesno "Do you want to install/update wine and some libs?" 15 60 update_wine=${?}dialog --backtitle Question --title "Rust-Server" --yesno "Do you want to install/update SteamCMD?" 15 60 update_steamcmd=${?}dialog --backtitle Question --title "Rust-Server" --yesno "Do you want to install/update Rust-Server?" 15 60 update_rust=${?}dialog --backtitle Question --title "Rust-Server" --yesno "Do you want to install/update Oxide mod and its plugins? SAY NO FOR NOW" 15 60 update_oxide=${?}dialog --backtitle Question --title "Rust-Server" --yesno "Do you want to set serverowner?" 15 60 set_owner=${?}dialog --backtitle Question --title "Rust-Server" --yesno "Do you want start the server?" 15 60 start_server=${?}##################################################################### # installs wine, other needed libs and creats "steam" user: # #####################################################################if [ "$update_wine" -eq "0" ] then #adds the wine repo add-apt-repository -y ppa:ubuntu-wine/ppa #makes a update apt-get -y update #installs the lib needed for steamcmd + xvfb for window mode of rust + wine apt-get install -y lib32gcc1 libc6-amd64 xvfb wine1.7 #creates a new Linux user called steam useradd -m steam fi##################################################################### # updates steamcmd: # #####################################################################if [ "$update_steamcmd" -eq "0" ] then #first makes directory called steamcmd/ and then downloads and unpacks steamcmd. mkdir $data_directory/steamcmd cd $data_directory/steamcmd wget http://media.steampowered.com/installer/steamcmd_linux.tar.gz tar -xvzf steamcmd_linux.tar.gz rm steamcmd_linux.tar.gz fi##################################################################### # updates rust server: # #####################################################################if [ "$update_rust" -eq "0" ] then cd $data_directory/steamcmd #after that steam.sh is executed with some commands: Download windows rust server, login anonymous ... ./steamcmd.sh +@sSteamCmdForcePlatformType windows +login anonymous +force_install_dir $data_directory/rust +app_update 258550 -beta experimental validate +quit fi##################################################################### # updates mod essentials: # ######################################################################wget http://rustessentials.com/versions/1.0.0/RustEssentialsRedux.zip #unzip -o RustEssentialsRedux.zip -d ~/Steam/steamapps/common/rust_dedicated/ #rm RustEssentialsRedux.zip##################################################################### # updates mod oxide and plugins: # #####################################################################if [ "$update_oxide" -eq "0" ] then #enters server directory cd $data_directory/rust #Install mod oxide for rust postdata="login="$oxide_login"&password="$oxide_password wget --keep-session-cookies --save-cookies=cookies.txt --post-data=$postdata http://oxidemod.org/login/login wget --load-cookies cookies.txt -p http://oxidemod.org/downloads/oxide-for-rust-experimental.714/download?version=$oxide_version -O Oxide-Rust.zip unzip -o Oxide-Rust.zip #Install plugins for oxide mkdir $data_directory/rust/server/$server_identity/oxide/plugins/ -p #remove cookies for oxide forum site and remove zipped oxide rust rm Oxide-Rust.zip rm cookies.txt fi##################################################################### # sets serverowner: # #####################################################################if [ "$set_owner" -eq "0" ] then #Creates users.cfg and adds a User as owner of the server, so that this user can execute console commands with (F1 Menu). mkdir $data_directory/rust/server/$server_identity/cfg/ -p touch $data_directory/rust/server/$server_identity/cfg/users.cfg echo "ownerid $owner_steamid $owner_name" > $data_directory/rust/server/$server_identity/cfg/users.cfg echo "ownerid $owner_steamid2 $owner_name2" > $data_directory/rust/server/$server_identity/cfg/users.cfg fi##################################################################### # starts server: # #####################################################################if [ "$start_server" -eq "0" ] then chmod -R 777 /home/steam wineboot --update #first makes sure user "steam" has all rights chown steam $data_directory/ -R #runs rust.exe in wine su - steam -c "cd $data_directory/rust;xvfb-run --auto-servernum --server-args='-screen 0 640x480x24:32' WINEARCH=win64 WINEPREFIX=~/.wine64 wine RustDedicated.exe -batchmode +rcon.ip 0.0.0.0 +rcon.port $rcon.port +rcon.password $rcon.password +server.hostname $server_hostname +server.port $server_port +server.identity $server_identity +server.maxplayers $server_maxplayers" fi
Last edited by a moderator: Jun 11, 2015 -
Wulf Community Admin
The steps I posted above work for Oxide @GregTampa.
-
edited my post to reflect your commands... have not tested but i will in an hour or so..
-
Why only ubuntu ?
i searching a solution for Debian 7.8
sofar i tryed to compile wine 1.7.44 by myself with 64bit enabled but i get everytime the error
Code:err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") failed (error c000007b). err:module:import_dll Loading library MSVCR120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\MSVCP120.dll") failed (error c000007b). err:module:import_dll Library MSVCP120.dll (which is needed by L"Z:\\home\\rustserver\\server\\RustDedicated_Data\\Managed\\x64\\lua52.dll") not found
"wine64 RustDedicated.exe -batchmode -load"
but not with
WINEARCH=win64 WINEPREFIX=~/.wine64 wine RustDedicated.exe -batchmode -load
then i get the error
Code:wine client error:0: version mismatch 474/454. Your wine binary was not upgraded correctly, or you have an older one somewhere in your PATH. Or maybe the wrong wineserver is still running?
pls help rustserver updated and installed today Rust and Oxide newset versionLast edited by a moderator: Jun 12, 2015 -
Thanks both of you. Was able to get rust and oxide working on my ubuntu server. GregTampa I followed your script but did it manually instead of running it, so it should in theory work.
[DOUBLEPOST=1434121261,1434112735][/DOUBLEPOST]Check to see if a wineserver is running, also at any time did you try to install wine from a package first? -
no i cant install wine from a package with debian or it will be version 1.44 32 bit.
thats the reason that iam compile and installing it over source. I will check wineserver now
[DOUBLEPOST=1434123963][/DOUBLEPOST]okay update
wineserver is working but i found that the server with oxide without any plugins is running fine but if i install plugins it will crash at startup
[DOUBLEPOST=1434124828][/DOUBLEPOST]Without plugins
Code:5:48 PM [Info] Loading Oxide core v2.0.1064... 5:48 PM [Info] Loading extensions... 5:48 PM [Info] Loaded extension CSharp v1.0.1064 by Oxide Team 5:48 PM [Info] Loaded extension MySql v1.0.1064 by Oxide Team 5:48 PM [Info] Loaded extension Unity v1.0.1064 by Oxide Team 5:48 PM [Info] Loaded extension Lua v1.0.1064 by Oxide Team 5:48 PM [Info] Loaded extension SQLite v1.0.1064 by Oxide Team 5:48 PM [Info] Loaded extension Python v1.0.1064 by Oxide Team 5:48 PM [Info] Loaded extension JavaScript v1.0.1064 by Oxide Team 5:48 PM [Info] Loaded extension Rust v1.0.1064 by Oxide Team 5:48 PM [Info] Loading plugins... 5:48 PM [Info] Loaded plugin Unity Core v1.0.0 by Oxide Team 5:48 PM [Info] Loaded plugin Rust Core v1.0.0 by Oxide Team
Code:6:01 PM [Info] Loading Oxide core v2.0.1064... 6:01 PM [Info] Loading extensions... 6:01 PM [Info] Loaded extension CSharp v1.0.1064 by Oxide Team 6:01 PM [Info] Loaded extension MySql v1.0.1064 by Oxide Team 6:01 PM [Info] Loaded extension Unity v1.0.1064 by Oxide Team 6:01 PM [Info] Loaded extension Lua v1.0.1064 by Oxide Team 6:01 PM [Info] Loaded extension SQLite v1.0.1064 by Oxide Team 6:01 PM [Info] Loaded extension Python v1.0.1064 by Oxide Team 6:01 PM [Info] Loaded extension JavaScript v1.0.1064 by Oxide Team 6:01 PM [Info] Loaded extension Rust v1.0.1064 by Oxide Team 6:01 PM [Info] Loading plugins... 6:01 PM [Info] Loaded plugin Unity Core v1.0.0 by Oxide Team 6:01 PM [Info] Loaded plugin Rust Core v1.0.0 by Oxide Team 6:02 PM [Debug] Plugin is already being loaded: Kits 6:02 PM [Info] Loaded plugin Auth Level v0.2.3 by Wulfspider 6:02 PM [Info] Loaded plugin Day & Night System v1.0.3 by Mughisi 6:02 PM [Info] Loaded plugin Death Notes v2.5.4 by SkinN 6:02 PM [Info]  6:02 PM [Info] [Death Notes v2.5.4] :: Loading default configuration file 6:02 PM [Error] Exception while calling NextTick callback (Win32Exception: ApplicationName='Z:\home\rustserver\server\CSharpCompiler.exe', CommandLine='/service /logPath:Z:\home\rustserver\server\server\my_server\oxide\logs', CurrentDirectory='') 6:02 PM [Debug] at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 at System.Diagnostics.Process.Start () [0x00000] in <filename unknown>:0 at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:Start () at Oxide.Plugins.PluginCompiler.CheckCompiler () [0x00000] in <filename unknown>:0 at Oxide.Plugins.PluginCompiler.Compile (System.Collections.Generic.List`1 plugins, System.Action`2 callback) [0x00000] in <filename unknown>:0 at Oxide.Plugins.CSharpPluginLoader.CompileAssembly (Oxide.Plugins.CompilablePlugin[] plugs) [0x00000] in <filename unknown>:0 at Oxide.Plugins.CSharpPluginLoader.<CompilationRequested>m__0 () [0x00000] in <filename unknown>:0 at Oxide.Core.OxideMod.OnFrame (Single delta) [0x00000] in <filename unknown>:0 6:02 PM [Info] Loading Oxide core v2.0.1064... 6:02 PM [Info] Loading extensions... 6:02 PM [Info] Loaded extension CSharp v1.0.1064 by Oxide Team 6:02 PM [Info] Loaded extension MySql v1.0.1064 by Oxide Team 6:03 PM [Info] Loaded extension Unity v1.0.1064 by Oxide Team 6:03 PM [Info] Loaded extension Lua v1.0.1064 by Oxide Team 6:03 PM [Info] Loaded extension SQLite v1.0.1064 by Oxide Team 6:03 PM [Info] Loaded extension Python v1.0.1064 by Oxide Team 6:03 PM [Info] Loaded extension JavaScript v1.0.1064 by Oxide Team 6:03 PM [Info] Loaded extension Rust v1.0.1064 by Oxide Team 6:03 PM [Info] Loading plugins... 6:03 PM [Info] Loaded plugin Unity Core v1.0.0 by Oxide Team 6:03 PM [Info] Loaded plugin Rust Core v1.0.0 by Oxide Team 6:03 PM [Info] Loaded plugin Day & Night System v1.0.3 by Mughisi 6:03 PM [Info] Loaded plugin Auth Level v0.2.3 by Wulfspider 6:03 PM [Info] Loaded plugin Death Notes v2.5.4 by SkinN 6:03 PM [Error] Exception while calling NextTick callback (Win32Exception: ApplicationName='Z:\home\rustserver\server\CSharpCompiler.exe', CommandLine='/service /logPath:Z:\home\rustserver\server\server\my_server\oxide\logs', CurrentDirectory='') 6:03 PM [Debug] at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00000] in <filename unknown>:0 at System.Diagnostics.Process.Start () [0x00000] in <filename unknown>:0 at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:Start () at Oxide.Plugins.PluginCompiler.CheckCompiler () [0x00000] in <filename unknown>:0 at Oxide.Plugins.PluginCompiler.Compile (System.Collections.Generic.List`1 plugins, System.Action`2 callback) [0x00000] in <filename unknown>:0 at Oxide.Plugins.CSharpPluginLoader.CompileAssembly (Oxide.Plugins.CompilablePlugin[] plugs) [0x00000] in <filename unknown>:0 at Oxide.Plugins.CSharpPluginLoader.<CompilationRequested>m__0 () [0x00000] in <filename unknown>:0 at Oxide.Core.OxideMod.OnFrame (Single delta) [0x00000] in <filename unknown>:0
"Building a shared WoW64 setup" ( http://wiki.winehq.org/Wine64 )
fixt my problem!
have a nice day -
congratz!! good to have other linux servers out there instead of just me
xvfb-run --auto-servernum --server-args='-screen 0 640x480x24:32' wine64 RustDedicated.exe -batchmode +rcon.ip 0.0.0.0 +rcon.port "48000" +rcon.password killer +server.hostname "LINUX RUST- US-Pro Admins-NO WIPE-NEWBS WELCOME-" +server.port "28015" +server.identity "nfo_rust_server1" +server.maxplayers "2000"
waiting doesn't seem to run with oxide
Code:fixme:heap:RtlSetHeapInformation 0x340000 0 0x22fce0 4 stub fixme:system:SetProcessDPIAware stub! fixme:heap:RtlSetHeapInformation 0x17e0000 0 0x22f160 4 stub Mono path[0] = 'Z:/home/steam/rust/RustDedicated_Data/Managed' Mono path[1] = 'Z:/home/steam/rust/RustDedicated_Data/Mono' Mono config path = 'Z:/home/steam/rust/RustDedicated_Data/Mono/etc' fixme:win:EnumDisplayDevicesW ((null),0,0x22f220,0x00000000), stub! fixme:win:EnumDisplayDevicesW (L"\\\\.\\DISPLAY1",0,0x22f220,0x00000000), stub! fixme:win:EnumDisplayDevicesW ((null),1,0x22f220,0x00000000), stub! err:pulse:pulse_contextcallback Context failed: Connection refused ALSA lib confmisc.c:768:(parse_card) cannot find card '0' ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory ALSA lib confmisc.c:1251:(snd_func_refer) error evaluating name ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM default ALSA lib confmisc.c:768:(parse_card) cannot find card '0' ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory ALSA lib confmisc.c:1251:(snd_func_refer) error evaluating name ALSA lib conf.c:4248:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory ALSA lib conf.c:4727:(snd_config_expand) Evaluate error: No such file or directory ALSA lib pcm.c:2239:(snd_pcm_open_noupdate) Unknown PCM default fixme:heap:RtlSetHeapInformation 0xe980000 0 0x22e010 4 stub fixme:ver:GetCurrentPackageId (0x22eb20 (nil)): stub fixme:console:AttachConsole stub ffffffff
update: got it working jsut took a little bit longer to startup...
so give it a good 5 minutes after you run before trying to connectLast edited by a moderator: Jun 13, 2015 -
@GregTampa Yeah it is stupid on linux we have no console only the log file to see the server status.
I'm full in hope and still waitung for the offical linux files.
So i which a nice day -
-
-
-
WINEARCH=win64 WINEPREFIX=~/.wine64 wine RustDedicated.exe -batchmode -load
in an vnc4Server after i compiled my Wine as shared WoW64 setup. -
Application tried to create a window, but no driver could be loaded.
Make sure that your X server is running and that $DISPLAY is set correctly.
I can have help for this ? -
-
i'm novice debian
Code:X.Org X Server 1.16.4 Release Date: 2014-12-20 X Protocol Version 11, Revision 0 Build Operating System: Linux 3.16.0-4-amd64 x86_64 Debian Current Operating System: Linux ndlx-vps-181 3.2.0-4-amd64 #1 SMP Debian 3.2.68-1+deb7u1 x86_64 Kernel command line: root=/dev/mapper/Debian--7--64-root ro console=hvc0 quiet -- quiet console=hvc0 Build Date: 11 February 2015 12:32:02AM xorg-server 2:1.16.4-1 ([URL]http://www.debian.org/support[/URL]) Current version of pixman: 0.32.6 Before reporting problems, check [URL]http://wiki.x.org[/URL] to make sure that you have the latest version. Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jun 22 13:34:55 2015 List of video drivers: dummy No devices to configure. Configuration failed. (EE) Server terminated with error (2). Closing log file.
Last edited by a moderator: Jun 30, 2015 -
http://pastebin.com/mN7a7QPD
Help me please -
[DOUBLEPOST=1435694593,1435683084][/DOUBLEPOST]err:wincodecsngEncoder_CreateInstance Trying to save PNG picture, but PNG support is not compiled in.
do you compiled wine manually or installed from ppa? Possible that you didn't compiled it proper.
also
Application tried to create a window, but no driver could be loaded.
The graphics driver is missing. Check your build!
means that you didn't use xpra or no drivers for video. -
When i try to run the rust server with oxide it has some type of crash that involves oxide not being able to see the name of the timezone,a lot of errors and then the server dosent run as much as i wait.Sorry that i have no crash log but does anybody here can help me?
-
Wulf Community Admin