How to disable X11 autostart

I have installed Solaris 9 and do not have any idea how to disable booting into X11 enviroment. I tried to find something in /etc/inittab (like in linux) but I failed.
Any idea?

You can mess with the rc scripts as much as you like.
Of course it is better to use tools like the DT configuration, as Lion mentions.
But nothing depends on S99dtlogn, especially that it is the last script to start. So you may modify its contents, rename, or remove it as you please.
There's a single script among rc files, which launches each S... and K... script with either Start or Kill argument respectively. So you rename the script to anything that does not start with these letters.
If I remember well, that single control script is started by some thing, which references svccfg database. svccfg is actually a utility that ultimately controls all startup, including the rc scripts.
You may use it to turn off any part of the start up. But I don't remember if it can turn off individual rc scripts. Anyway, you would break your neck trying to grasp the structure of svccfg database and the internal commands of this utility, because it is all text mode.
I personally would simply rename the file, or use DT configuration.
But I mention the svccfg for completeness of the picture.
svccfg may still come handy where scripting is required. You may want to study this utility and some other utilities related to it.
Some configuration can only be done with svccfg.
The behaviour of DT login, and configuration of its main screen can be done under /etc/dt/. You find original files somewhere under /usr/..., perhaps under /usr/dt/. Customize them and place under /etc/dt, as instructions in the files say.

Similar Messages

  • How to disable autostart (application) when managed server restart ?

    Hi Ppl,
    How to disable autostart (application) when managed server restart ?
    I want some of the applications to remain not started. In WebSPhere, we have an option disable auto start for applications.
    I don't find in weblogic.
    Thanks

    Hi,
    I agree with Faisal. When you shutdown your WL server while the application is running, the thing is when you start your server again, it would automatically start the application with it. Now if the application was down when you shutdown the server, it _the application_ won't start with the server.
    So it depends on the application last state, when you start your server.
    Regards,
    Mohab

  • [Solved] Dropbox autostarts, I can't find how to disable it.

    So I installed dropbox a while ago, but am not using it anymore.
    A week ago, I started the dropbox daemon (typing 'dropbox' in the shell) to sync something - I only needed to start it this one time.
    Since then, dropbox starts with every boot. I can't find out how to disable it. I tried these two commands:
    systemctl status dropbox
    systemctl status dropboxd
    Both services don't exist. I don't know how to proceed from here, does anyone know what to do now?
    Last edited by kilmister (2014-11-10 08:53:48)

    thearcherblog wrote:
    Can you check if you can see any service running with dropbox name doing?
    systemctl-analyze blame
    or
    journalctl -b | grep dropbox
    The systemctl-analyze command wasn't found. The second command returned nothing.
    lucke wrote:Look inside ~/.config/autostart/.
    There was a dropbox.desktop file which I removed. That did the trick.
    Thanks a lot!

  • How to disable autostart of Enterprise Manager Cloud Control (EMC12cr2)

    Hi Everyone,
    I am new to Oracle Enterprise Manager Cloud Control 12c Release 2 ( EMC12cr2)
    Recently, I have installed EMC12cr2 on Oracle Linux 6.3. I follow one document to install, and It was ok after the installation.
    But after I reboot the testing server, I found out that it is very slow as the EMC12cr2 services are auto start at boot such OMS, and agent.
    So could you please tell me how to disable the EMC12cr2 or OMS service from auto startup, so that it makes the system reboot faster.
    Thanks in advance,

    Take a look at this article on My Oracle Support - 1478617.1
    It's a little older, but the same idea applies.  There is a script in /etc/init.d/ called gcstartup, you can comment out the startup lines in there with a hashtag.

  • Ctrl+shift+U - Unicode input, how to disable?

    Anyone knows how to disable ctrl+shift+u unicode input?
    Whenever I press ctrl+shift+u, I get an underlined "u" and can enter some unicode number. However, I don't need it, and because of this, for example in qt creator the predefined "ctrl+shift+u" keyboard shortcut doesn't work.
    I have no idea where this mapping comes from (obviously not qt, since ctrl+shift+u is mapped to an important shortcut), but maybe gnome or the xserver?
    Thanks already

    I just updated from Ubuntu 13.10 to Ubuntu 14.04 and I found that I have exactly this same problem, which is being caused by ibus (my up to date Arch system doesn't seem to have the problem).  You can see if ibus is running on your system via:
    $ ps aux | grep -i ibus
    peniwize  3108  0.0  0.2  47180  3620 ?        Ssl  Jun09   1:44 /usr/bin/ibus-daemon --daemonize --xim
    peniwize  3127  0.0  0.0  37268   264 ?        Sl   Jun09   0:00 /usr/lib/ibus/ibus-dconf
    peniwize  3129  0.0  0.7 181000 13040 ?        Sl   Jun09   0:34 /usr/lib/ibus/ibus-ui-gtk3
    peniwize  3147  0.0  0.2  40224  3984 ?        Sl   Jun09   0:00 /usr/lib/ibus/ibus-x11 --kill-daemon
    peniwize  3179  0.0  0.0  27956  1096 ?        Sl   Jun09   0:10 /usr/lib/ibus/ibus-engine-simple
    I'm running XFCE and there is now a "Language Support" icon in the "Settings" panel (select "Settings Manager" on the main menu.)  The Language Support app contains a "Keyboard input method system" selection on Language tab.  I changed it from 'IBus' to 'None' and now Ctrl+Shift+u works again.  (This is a quick and dirty solution that works for me because I'm only using English and never have to type special characters.)

  • How to disable parent window while popup window is coming

    Hi,
    I am working on Oracle Applications 11i.
    I am able to get the popup window using the Java script in the controller.
    Please see the below code for the reference.
    String pubOrderId = pageContext.getParameter("orderId");
    StringBuffer l_buffer = new StringBuffer();
    StringBuffer l_buffer1 = new StringBuffer();
    l_buffer.append("javascript:mywin = openWindow(top, '");
    l_buffer1.append("/jct/oracle/apps/xxpwc/entry/webui/AddAttachmentPG");
    l_buffer1.append("&retainAM=Y");
    l_buffer1.append("&pubOrderId="+pubOrderId);
    String url = "/OA_HTML/OA.jsp?page="+l_buffer1.toString();
    OAUrl popupUrl = new OAUrl(url, OAWebBeanConstants.ADD_BREAD_CRUMB_SAVE );
    String strUrl = popupUrl.createURL(pageContext);
    l_buffer.append(strUrl.toString());
    l_buffer.append("', 'lovWindow', {width:750, height:550},false,'dialog',null);");
    pageContext.putJavaScriptFunction("SomeName",l_buffer.toString());
    But here the problem is, even though popup window is there, i am able to do the actions on the parent page.
    So how to disable the parent page, while getting the popup window.
    Thanks in advance.
    Thanks
    Naga

    Hi,
    You can use javaScript for disabling parent window as well.
    Refer below link for the same:
    http://www.codeproject.com/Questions/393481/Parent-window-not-disabling-when-pop-up-appears-vi
    --Sushant                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to Disable "Auto Align" in [System Pref.] - [Display] - [Arrangement]

    Does anyone know How to Disable "Auto Align" in [System Preferences] -> [Display] -> [Arrangement]?
    It always want to align the two screens from the top when they are lined up close together and I need them to be aligned from the bottom. Since the resolution heights are so close together (1080 & 1050) it does not allow one to align side by side from the bottom as it prioritizes top alignment.
    I guess I'm looking for a script to disable this feature.

    Anyone got any ideas?

  • How to disable the "turn page" event triggered by the scroll/swipe function?

    The problem is as follows.
    The default behaviour of Acrobat Reader (both stand alone and browser plug-in) is to allow scrolling/swiping with the mouse wheel/trackpad. This is useful when the pdf's page length is greater than the screen's own length, because you can read the pdf with no need to distract your attention from the text to the scrollbar button. However, the same scroll/swipe function turns into a usability problem when the pdf is embedded in a html page and the pdf's page length is smaller than the browser's length. In this case, the scroll/swipe turns the page, distracting your attention from the text to the unintended behaviour of the browser. What happens is that you are so used to scrolling/swiping that you did it unintentionally in the pdf's caption area. You really did not want to turn pages in the pdf. Furthermore, if the pdf takes the whole html page, being a website, the scroll/swipe function flips the website pages in ways that neither the reader nor the writer had ever intended. Hence the question. How to disable, in this case, the "turn page" event triggered by the scroll/swipe function? A JavaScript should do, but the SDK documents did not help so far...
    Message was edited by: 41457173
    Message was edited by: 41457173

    ... or release a patch for the API,
    ... or suggest an alternative route to achieve the intended result.

  • [Forum FAQ] How to disable Microsoft account default sign-in behavior when accessing Microsoft website on Windows 8.1

    Scenario
    By default it will sign in with current Microsoft account, if a user accesses Microsoft website (www.live.com, www.bing.com, etc.) with Microsoft account on Windows 8.1. This article describes how to disable this default sigh-in behavior if you want to use
    different Microsoft accounts every time. 
    Method
    To disable this default sign-in behavior, we can deny current Microsoft Account read permission of MicrosoftAccountTokenProvider.dll, please follow the following steps:
    Run Command Prompt with elevated permissions.
    Run the following command to take ownership of MicrosoftAccountTokenProvider.dll:
      takeown /f C:\Windows\SysWOW64\MicrosoftAccountTokenProvider.dll
    Run the following command to deny the read permission of the Microsoft:                                
     icacls C:\Windows\SysWOW64\MicrosoftAccountTokenProvider.dll /deny
    [email protected]:r                                                                                                                
    Note: Please replace your current Microsoft Account with the example
    [email protected]
    Change the owner of this file back to TrustedInstaller:
    Right-click MicrosoftAccountTokenProvider.dll under
    C:\Windows\SysWOW64\, choose Properties. Under
    Security tab, click Advanced.
    Click Change, in the box Enter the object name to select, type
    NT Service\TrustedInstaller.
    Click OK.
    Note: This operation would take some hours to work.
    Apply to:
    Windows 8.1
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Error: System cannot find the specified path
    I am getting this eroor
    Parashuram Singade www.distinctnotion.com

  • How to disable airplay mirroring on iPad with ios7

    How to disable airplay mirroring on iPad with ios7?

    I've had this problem ever since I was at my friend's house- she has Apple TV- and my iPad connected automatically. So, I have no idea why any of the practical solutions that people think of are not options BUT, in terms of just getting it done, I did figure out a way. The key for me was getting near another Apple TV. I was out of town so I took my iPad to another friend's house who also has TV. Once I was logged onto their wireless network (the same network that their Apple TV is on-- that's how it connected in the first place), then the Airplay icon and options showed up from the bottom-draw menu and I was able to make sure that mirroring was turned off from the Apple TV section and to make sure the selection was on iPad instead. Problem solved. Now whether or not this will stay the same (rather than me having to make sure it stays at this setting everytime I link up to a network that has an Apple TV on it) I don't know. So my advice is find someone with Apple TV and connect to their network with your iPad and then change it.

  • I have changed the apple ID (email, but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    i have changed the apple ID (email) but on my iphone , the icloud is stil asking me to log in whit the old email.And it is poping-up on every 10 seconds.I never used icloud, and i dont want to use it.I just dont know how to disable the icloud.

    If you see that pop up you enabled icloud. Whether you want or do not want now to use it irrelevant until you actually disable activation lock.
    In order to do that you have to change your apple id back to do that just long enough to sign in and back out. System will ask you to verify, don't.
    Just sign in on the prompt you getting and then logout. Once done, change apple id to what you have now and verify. Then decide if you want to
    use icloud (who does not want to be able to track their phone if lost or stolen).

  • Can't use down key because it opens automator. Does any one know how to disable this short cut?

    Everytime I press down on down key it opens automator. It doesn't let me delete the app. I don't know what to do, it is very frustating to fill in a chart when I can't use the down key. Does any one know how to disable this short cut?

    Are you talking about the Down Arrow key? To my knowledge there is no way to use that key as a shortcut for anything. But look in the Keyboard section of System Preferences and the Keyboard shortcut tab.

  • I need to know how to disable my apps on my old system so that I can install them on new computer.

    I've just purchased a new iMac and need to know how to disable my apps on my old system so that I can install them on the new one.

    You are allowed to have two working installations so you do not have to disable the original if you prefer to have a backup.  Otherwise, to disable you can just sign out thru the CC manager.
    Creative Cloud Help / Sign out, Sign in | Creative Cloud desktop app
    http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

  • How to disable a Entire row in a Matrix in Find Mode (User Form)

    Hi,
    How to disable a Entire row in a Matrix in Find Mode (User Form)
    Regards
    Jambu

    Hi,
       Iam using Bubble event = false in click event but the matrix row
    is allow to edit but we cant save the document in Find Mode That is fine.
    What is my actual requirement is In find mode matrix Row not allow to enter the data .
    For examble In ADD mode i enter the data in Three rows (Item Section - Matrix) and
    save the document. Whwn i open the document in find mode the three row is not allow
    to editable like the same functionality of PO, sales Order, etc ..
    Regards
    Jambu

  • HOW TO DISABLE THE VIEW OF CONTACT

    Hi
    I want to know how to disable contact view from a friend taking my phone
    exemple : If I give my cell phone blackberry 9900 to a friend for 1 day, I want for him the possibility to answer phone call and see who is calling him ! ,
    buy I want to disable any search in full contact list
    how to do this ?
    help,
    mail me back

    You cannot selectively lock the address book app. If all contacts are sync'd online you can delete the account. However, the all around better approach would be to backup the device and do a security wipe before loaning it.
    - Ira

Maybe you are looking for

  • PNY and MSI K7N2 Delta - ILSR

    Looking into buying the K7N2 Delta-ILSR...I have heard that it is a awesome overclocker, and a very fast board.  Has anyone had experience with using... PNY Optima PC2700 DDR memory on it?  It is double sided memory, with Hynix chips.  Hynix chips ar

  • Sync maps bookmark between iPad and iPhone

    Hello I would like to sync maps bookmark between my iPad 2 and iPhone 4 Is there a way to do that ?

  • Default Procurement Type for a Material Type

    Hello everybody, Is it possible to assign a default procurement type (for example: F) to a Material Type? If yes, can you explain me where (which transaction)? If no, can you explain me an alternative to do so? Thanks a lot in advance for your help..

  • How to access the component id from another mxml?

    I tried to set the data to a DataGrid in another mxml, but the complier said there's a problem, like this: the components/FileDataGrid.mxml: <?xml version="1.0" encoding="utf-8"?> <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009"      xmlns:s="librar

  • Create Web Service (outbound proxy) with WAS 620

    Hi all, Is it possible to create an outbound Abap proxy - using a WSDL - to consume a web service, in a 4.7 Release (Web AS 620)? Is there any restrictions on this release? Thanks, Miguel