Is it possible to run steam as a service in the background?

Now that Steam In-Home streaming works from a Linux host, I was wondering if was possible to get Steam t run as a background service?  The idea being that I simply need to boot the host computer and can then play games on my laptop elsewhere without needing to log into the host box - or start Steam on it manually.
Apart from possible performance issues, users on the host computer need not even be aware that Steam is running.
Can this be done?

MainStage is an application, not a plugin. So, no, it can't be used in Cubase.

Similar Messages

  • 'Not running in a hosted service or the Development Fabric' exception on deployed Worker role

    We are getting this exception after a worker role has been operating fine in production for several weeks.  Once this exception starts getting reported, it will keep getting it every time the worker role tries to access anything with the Diagnostics:
    Not running in a hosted service or the Development Fabric
    Note that the role is full trust, and as I mentioned this in in production on the Azure servers, NOT in debug.  The worker role itself does some dynamic compilation, for which it needs to start a new AppDomain.  It appears that the exception is
    coming from the spawned AppDomain when it occurs.  The exception itself is triggered on a simple Trace.TraceInformation call.
    What could cause this?
    What can we do to recover from this?

    We are getting this exception after a worker role has been operating fine in production for several weeks.  Once this exception starts getting reported, it will keep getting it every time the worker role tries to access anything with the Diagnostics:
    Not running in a hosted service or the Development Fabric
    Note that the role is full trust, and as I mentioned this in in production on the Azure servers, NOT in debug.  The worker role itself does some dynamic compilation, for which it needs to start a new AppDomain.  It appears that the exception is
    coming from the spawned AppDomain when it occurs.  The exception itself is triggered on a simple Trace.TraceInformation call.
    What could cause this?
    What can we do to recover from this?
    Hi,
    I have tested this situation in Windows Azure platform and i can not reproduce your exception message, my test code in follwoing MSDN samples and i deploy it in Production status.
    The MSDN article (include Appdomain code snippets)
    http://msdn.microsoft.com/en-us/library/system.appdomain.aspx .
    Base on my understand, the "Not running in a hosted service or the Development Fabric" error message occur when Azure Emulator or Azure development fabirc, because you create a new appdomain in WorkRole, and it may cause permission errors, a similar
    posts by my research:
    https://social.msdn.microsoft.com/Forums/en-US/windowsazuretroubleshooting/thread/50987285-58ac-484e-b604-725fe01a3325
    If you still have some problems, please inform me. Thank you.
    Please mark the replies as answers if they help or unmark if not. If you have any feedback about my replies, please contact
    [email protected]
    Microsoft One Code Framework

  • Azure In Role Caching Doesn't start on server with "Not running in a hosted service or the Development Fabric."

    I started to use Azure in-role caching and everything works great in Azure compute emulator on my local machine, but not on server. I've already dealed with some problems, like lack of msshrtmi.dll on server, but now can't understand why get this error:
    Not running in a hosted service or the Development Fabric.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.InvalidOperationException: Not running in a hosted service or the Development Fabric.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [InvalidOperationException: Not running in a hosted service or the Development Fabric.]
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitor.GetDefaultStartupInfoForCurrentRoleInstance() +535
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener..ctor() +34
    [ConfigurationErrorsException: Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Diagnostics.TraceUtils.GetRuntimeObject(String className, Type baseType, String initializeData) +1588
    System.Diagnostics.TypedElement.BaseGetRuntimeObject() +103
    System.Diagnostics.ListenerElement.GetRuntimeObject() +825
    System.Diagnostics.ListenerElementsCollection.GetRuntimeObject() +261
    System.Diagnostics.TraceInternal.get_Listeners() +256
    System.Diagnostics.Trace.get_Listeners() +79
    Microsoft.ApplicationServer.Caching.DataCacheServerLogManager..cctor() +97
    [TypeInitializationException: The type initializer for 'Microsoft.ApplicationServer.Caching.DataCacheServerLogManager' threw an exception.]
    Microsoft.ApplicationServer.Caching.DataCacheServerLogManager.ChangeLogLevel(TraceLevel traceLevel) +0
    Microsoft.ApplicationServer.Caching.ServiceConfigurationManager..cctor() +24
    [TypeInitializationException: The type initializer for 'Microsoft.ApplicationServer.Caching.ServiceConfigurationManager' threw an exception.]
    Microsoft.ApplicationServer.Caching.ServiceConfigurationManager.GetHostDefaults() +0
    Microsoft.ApplicationServer.Caching.OMCacheNodeProperties..ctor(IHostConfiguration props, Int32 maxNC, Boolean perfCounterRequired) +69
    Microsoft.ApplicationServer.Caching.LocalCacheStore..ctor(EvictionParametrs evictionParams) +50
    Microsoft.ApplicationServer.Caching.DataCacheFactory..ctor(DataCacheFactoryConfiguration configuration) +555
    Microsoft.Web.DistributedCache.DataCacheFactoryWrapper.CreateDataCacheFactoryFromConfiguration(DataCacheFactoryConfiguration config) +35
    Microsoft.Web.DistributedCache.CacheHelpers.RunCacheCreationHooks(CacheConnectingEventArgs fetchingEventArgs, IDataCacheFactory dataCacheFactory, Object sender, EventHandler`1 fetchingHandler, EventHandler`1 fetchedHandler) +7
    All I found about this error is that it occurs if you start local Azure compute emulator with in-role caching and without administrative rights. But in emulator everything works fine and problem occurs only after I publish to staging environment. (if switch
    to production, error remains).
    I use cache for resolving routes like /username and /countryname etc. So available usernames and country names will be cached and updated on changes in database. I have static class with static DataCache object which is created on first request to cache. But
    even home page doesn't start so error occurs before I try to create cache object.

    Hi Jambor, I don't have reference errors. I had them before but already fixed with copy local = true for few references. 
    I receive error only on azure host service. In local everything works great, app starts, cache works and I can see data in cache.  Yes, in local mode cloud project is set as startup and VS runs as administrator.
    I've added TraceListener creating code you suggested:
    protected void Application_Start(object sender, EventArgs e)
    System.Diagnostics.Trace.Listeners.Add(new Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener());
    and error code changed a little. But as I see problem is the same but caused when creating TraceListener from Application_Start instead of when initalizing cache:
    Not running in a hosted service or the Development Fabric.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 
    Exception Details: System.InvalidOperationException: Not running in a hosted service or the Development Fabric.
    Source Error: 
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace: 
    [InvalidOperationException: Not running in a hosted service or the Development Fabric.]
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitor.GetDefaultStartupInfoForCurrentRoleInstance() +518
    Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener..ctor() +34
    [ConfigurationErrorsException: Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Diagnostics.TraceUtils.GetRuntimeObject(String className, Type baseType, String initializeData) +1588
    System.Diagnostics.TypedElement.BaseGetRuntimeObject() +103
    System.Diagnostics.ListenerElement.GetRuntimeObject() +825
    System.Diagnostics.ListenerElementsCollection.GetRuntimeObject() +261
    System.Diagnostics.TraceInternal.get_Listeners() +256
    System.Diagnostics.Trace.get_Listeners() +79
    sub2o.MvcApplication.Application_Start() +497
    [HttpException (0x80004005): Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Web.HttpApplicationFactory.EnsureAppStartCalledForIntegratedMode(HttpContext context, HttpApplication app) +558
    System.Web.HttpApplication.RegisterEventSubscriptionsWithIIS(IntPtr appContext, HttpContext context, MethodInfo[] handlers) +179
    System.Web.HttpApplication.InitSpecial(HttpApplicationState state, MethodInfo[] handlers, IntPtr appContext, HttpContext context) +322
    System.Web.HttpApplicationFactory.GetSpecialApplicationInstance(IntPtr appContext, HttpContext context) +384
    System.Web.Hosting.PipelineRuntime.InitializeApplication(IntPtr appContext) +397
    [HttpException (0x80004005): Could not create Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35.]
    System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +630
    System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +159
    System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) +763

  • My MBpro has been running some kind of app in the background upon turning on, heating up for no cause. Is this normal since Snow Lepard? It's been updated and I also have anti-virus software too.

    My MBpro has been running some kind of app in the background upon turning on, heating up for no cause. Is this normal since Snow Lepard? It's been updated and I also have anti-virus software too.

    you're welcome....
    also check activity monitor - all processes - see what's using up most of your cpu resources under % CPU....
    highlight anything that's really high and hit quit process......anything over 10% is considered high - unless it's your browser....
    good luck...

  • Windows Azure Cloud Service with MVC4WebRole template giving "Not running in a hosted service or the Development Fabric." Error.

    Azure SDK used - 1.7 & 2.0
    When we create new project for Windows Azure Cloud Service with MVC4WebRole template & try to run it locally its giving error as "Not running in a hosted service or the Development Fabric."
    We are aware that making Azure project as start up project will resolve this error but we want to run the application locally before testing it with cloud.
    It’s not working with Cassini so we have tried with IIS but still it’s giving the same error.
    In another project when we added ASP.Net MVC4 Application & then for that project we have generated the Azure cloud service project using "Add Windows Azure Cloud Service Project". By this way debugging it locally works fine.
    Is there something additional settings present in Windows Azure Cloud Service with MVC4WebRole template which is causing this issue?

    hello,
    According your description, I try to reproduce it in my PC.
    >1. I create a could project and add a MVC4 web role into project.
    >2. I set the azure project as a start project and run, it works fine.
    >3. I change the MVC4 web role as a startup project and run, it works fine too. Of course before this, I exited the Azure Simulator.
    But this project was a empty project. It didn't included azure DLL file, such as Diagnostics file. So I think you could comment out the "system.diagnostics" node and try again. Also, you could refer to this same thread:http://stackoverflow.com/questions/13879443/not-running-in-a-hosted-service-or-the-development-fabric-production-not-debug
    Regards,
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to run a java program without using the command prompt?

    Hi,
    I was wondering whether it is possible to run a Java program (not an applet) without using a command line in the command prompt?
    Basically I want to run a program that will be continually running in the background and hence I don't want to have a command prompt screen loaded up as well - I just want the program to be running in the task bar.
    I know how to run the program in the task bar - but I still need to launch the program from the command prompt - is there anyway I can get a program running without having to start it from the command prompt?
    Cheers

    Or create a desktop shortcut (in Windows) or an application launcher ( in Linux GUI).

  • Is it possible to run a subVI in parallel with the caller VI?

    I have a front panel VI which calls numerous subVIs, one or two of which I would like to execute simultaneously with the calling VI. The front panel has time-dependant operations which are being prevented from running because it is waiting for the subVIs to finish, even though no data is required from them.
    Is it possible to call these subVIs such that they run silently in the background allowing the front panel to execute unhindered?
    I've looked at the Synchronisation features but is this what I need?

    shoneill wrote:
    > It's also very important to mention that the whole multi-threaded
    > execution CANNOT be reliably observed in highlighting mode in the
    > LabVIEW development environment. You need to let the VI run
    > full-speed to see this.
    >
    > Highlighting (to the best of my knowledge) forces single-threading, or
    > acts like it does.
    This is simply a convinience by LabVIEW since humans are inherently
    non-multi treaded. What you will see in parallel loops and which can
    still be distracting is that LabVIEW seems to randomly switch between
    different parts of your diagram. In fact this is also what is happening
    in normal execution but the execution switch is so fast (each individual
    operation typically taking microseconds it
    seems they execute in parallel.
    The nice part of LabVIEW since version 2.0 somewhere around 1988 already
    is, that it provides this seemless multithreading on every single
    platform even if the underlaying OS is not multithreading capable at all
    (Win3.1, MacOS).
    Rolf Kalbermatter
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • Running OAS10g and Reporting Services on the same build?

    os: Fedora Core 6
    db: 10gR2
    oas: OAS10g 10.1.3.1
    I currently have OAS 10.1.3.1 installed; how can I install the reporting services from OAS 10.1.2.0.2 on the same build (just the reporting service, not the full OAS install)? If possible, would these run as two separate processes - different ports?
    Our situation is that we already have an application deployed and configured for 10.1.3.1 and we'd like to also run reports off the same machine. This version of OAS does not include the reporting services. Ideally, we want one machine to handle these - a sales demo machine...not a production environment.
    Any help or advice would be great.
    Thanks.

    Hi,
    You can have both 10.1.3 and 10.1.2 running parallell on the same server.
    If you want to have everything running on the same port, then you can either configure one of the Apache's to run everything, or better frontend both Apache's with 10.1.2's Web Cache.
    Regards,
    Martin

  • Is it possible to export/import schedule+objects separately from the background?

    Hi all,
    I work on a tutorial for software that is being developped. the functionalities are definitely ok but the design is being modified.
    I would like to prepare the tutorial with the temporary design and definitive schedule and objects (buttons, texts...), and as a final step modify the design only. Is it possible?
    Thanks in advance for reply.

    Hello,
    One tip: you can have as many master slides as you want, and even apply a master slide to a group. So in your case you could have the background for the normal calculator and for the scientific calculator on two different master slides. But all need to have the same resolution (width/height in pixel) if you want them in the same file.
    But: you can duplicate slides, only every object will have a new ID on the duplicate.
    Perhaps I understand wrong. If you have two files: copy the first file to a file with another name and change the master slide. Are you starting with images, not with a capture? Then even easier: import the images to the Library. Copy them to all the slides?
    The Filmstrip itself is not very interactive, you cannot do a lot in it. But a duplicate file should have exactly the same branchings.
    Wondering if you use advanced actions? Can  you confirm that?
    FYI: once I blogged about the simulation of a keypad:
    Create a keypad simulation
    BTW: you can print the branching panel, did you ever consider that? It has a lot more information than the simple Filmstrip
    Lilybiri

  • Running Browser calling method'CL_GUI_FRONTEND_SERVICES' in the background.

    Hello SAP Gurus
    My intention is to shutdown and restart communication channels on PI side. To do this externally, we can send a URL with right parameters.
    I have written a simple ABAP  code to do this by calling the method 'CL_GUI_FRONTEND_SERVICES 'with the URL. Since I have several channels, I am calling this method in a loop. It is doing the job well.
    However, for each channel an IE browser screen pops up with the XML data for that particular URL.  It is kind of annoying to see so many popups.
    Is there a way in ABAP to supress this multiple browser pop ups? Is there a way to make this method run in the background?
    I know that this method is meant to call a browser screen with the URL, however I want to suppress this Browser POP up and use the remaining function.
    Any feedback will be highly appreciated.
    Thanks
    Ram

    You cannot use a frontend (GUI) service when a program is running in the background.
    You'll have to call the URL in a different way... something that doesn't create a popup window. Or execute the command that is invoked when accessing that URL.

  • Running a cycle count job in the background

    I am trying to set up a job to run in the background to create the inventory documents for the warehouse for a week.  The program is RLINV050 and I have a variant for the settings (this is a program that calls transaction LX26).  The problem is when I run this program it only performs the first screen of the transaction.  I need to know how to create a step that  will perform and execute so it will go to the second screen of the transaction and then another step that will perform a save.  This will then create documents.  I have seen this done at companies I have been at in the past but I don't know how they set it up!  If anyone can help me I would really appreciate it!  Thanks

    Create a script that call the script and passes the parameters.
    i.e.
    vi wrapper_master_tts_transfer.ksh
    #!/bin/ksh
    export RUN_DIR=<path to script>
    $RUN_DIR/master_tts_transfer -e 10.87.90.204
    Then run
    nohup ./wrapper_master_tts_transfer.ksh &

  • Kinect extremely laggy and continually reboots until I run Kinect Studio 2.0 in the background.

    I'm relatively new to developing with the Kinect v2 sensor. I'm having a problem where the sensor is extremely laggy (1 frame per 5-10 seconds) and will continually reboot every 10-15 seconds. It's doing this in the ControlsBasics-XAML project that came
    with the SDK as well as any other Kinect app. 
    I found a strange workaround that makes it run extremely smooth. If I just open up the Kinect Studio v2 application (comes with the SDK) and leave it running in the background, then it makes any other Kinect app run smoothly. 
    I have the latest nVidia drivers, running Windows 8.1 and DirectX 11. Any ideas what the problem could be?
    Thanks,
    Mario Suau

    Your system is running in low power state and you need to ensure that the CPU has fully power to run the Kinect. Check the troubleshooting guide sticky(last post) on the main forum page:
    https://social.msdn.microsoft.com/Forums/en-US/20dbadae-dcee-406a-b66f-a182d76cea3b/troubleshooting-and-common-issues-guide?forum=kinectv2sdk
    Carmine Sirignano - MSFT

  • Is It possible to run Call of duty 4 on the 17 Macbook Pro Early2009?

    I'm having goodtime with DOOM3 playing on my 17' MacbookPro.
    But Mac gets really high temp and fan is noisy.
    When I run Call of Duty 4, what happened is everytime freezed in the 30 mitutes.
    Do I need to report to Apple or set some nice cooldown system on it?
    Pls help me out with your advise.Thanks.
    (I just wanna play Call of duty 4)

    I have fan noise but no other issues.

  • Can't run wiki and web services at the same time?

    I'm a newbie with Lion Server, but I've been running several web sites successfully for about 6 months.  I'm up to Server 10.7.4.
    I've been trying ever since the first installation of Server to get the wiki service running.  I had absolutely no luck until I turned OFF the web service (always got the "URL does not exist" error when I tried to create a group wiki from inside the Server app).  With the web service off, it all starts up fine and I created my first wiki (woohoo).  Turning web service back on kills access to the wiki.  I don't find reference to this in any of the dicussions, and especially not in Apple's documentation.
    Are the Wiki and Web services mutually exclusive?  Or is there a way around this?
    I'm using Dyndns to provide me with sub-domains to use, and I've dedicated one of them to the wiki service.  Traffic comes in on port 8080, where my web sites are on port 80.
    Thanks for any pointers...
    edbok

    LR supports tethering using a Canon DLL and EOS Utility probably also supports tethering or at least uses something from a similar Canon DLL.  You probably cannot have two different versions of that DLL loaded at the same time, so it makes sense there are problems.

  • Run OC4J 903 on linux in the background?

    I am relatively new to Linux and have been trying to start OC4J either automatically or as a background process (so that I do not have to keep the terminal window open). I tried "$nohup java -jar oc4j.jar &", but OC4J still shuts down when I logout or exit the terminal. Does anyone know of a good way to start OC4J automatically or as a background process?

    I had this problem when running in Solaris machine. The workaround was changing the shell to csh first, execute nohup java -jar oc4j.jar &, and then exit the csh shell. Using this approach I was able to make my OC4J work in background.

Maybe you are looking for

  • User-authorized only values in matchcode

    Hi people, I get a strange behaviour of the BEx variable Input matchcode. I implemented 2 Multiproviders, containing a common authorization on an characteristic. The authorization variable is "ready to Input". In the first multiprovider, when I launc

  • Need to reinstall mail

    A friend of mine needs to re-install mail, but they can't find there installation DVDs which came with their iMac. Is mail available to download from Apple anywhere? Their machine is - Model Name: iMac Model Identifier: iMac4,1 Processor Name: Intel

  • I am unable to insert a DVD/CD on my MacBook Pro

    I Am unable to insert a DVD/CD into my MacBook Pro. How do I overcome this?

  • How to remove sub panel scrollbars with LabVIEW 2009-SP1?

    I did a search and found this thread on the subject: http://forums.ni.com/t5/LabVIEW/subpanel-scollbars-in-labview-8-0/m-p/284503/highlight/false#M149983 I double checked that that the horizontal and vertical scrollbars were not selected in the Custo

  • Killing long running SQl automatically

    I want to put a restriction on my database, if a sql query is running for more then 15 min, then killing this automatically. If this is possible kindly let me know.