Command to turn off or GUI


 
Thread Tools Search this Thread
Operating Systems Solaris Command to turn off or GUI
# 1  
Old 02-24-2016
Command to turn off or GUI

What command turns GUI off and on in Solaris 10
# 2  
Old 02-25-2016
Hi,

It's usually run as a service, so if you disable the service it won't be there when the system is started as follows.

Code:
svcadm disable svc:/application/graphical-login/cde-login:default

If you want to stop the running process then;

Code:
/etc/init.d/dtlogin stop

Regards

Gull04
# 3  
Old 02-25-2016
HOw do you enable GUI or turn it on
# 4  
Old 03-15-2016
Maybe...

Code:
svcadm enable svc:/application/graphical-login/cde-login:default

That's a guess, but I expect it is correct. Try it and let us know how it works.
# 5  
Old 03-22-2016
solaris 10's deault gui is the java based GNOME can be launched by:
Code:
/bin/gnome-session

The legacy CDE can be launched by :
Code:
/usr/dt/bin/Xsession

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

How to start gui from Solaris command line?

Hi. I'm a Solaris newbie. I'm using Solaris SunOS Version 11.4.0.15.0 through Oracle VM VirtualBox Manager on Windows. When I start the VM, I get to a command line I can login to. I've tried using: /usr/dt/bin/dtconfig -e However, I receive error "No such file or directory". The... (3 Replies)
Discussion started by: SRD
3 Replies

2. UNIX for Beginners Questions & Answers

Exec command with mutt - turn on & off?

Hi Folks - Quick question around the exec command again. At the end of my script, I check for specific error codes that are returned from a process I execute within the shell script. Based on the error code, I send an email. Do I need to turn off exec feature prior to send each email so... (5 Replies)
Discussion started by: SIMMS7400
5 Replies

3. Programming

Python gui or C++ gui or java gui?

python gui or c++ gui or java gui? and when to use etch one? (1 Reply)
Discussion started by: kaja
1 Replies

4. Solaris

Gui to command line

Hi, OS :- SUN I am asked to invoke table menu via command line , after that i need to select option in the table menu like REPORT, STATUS ... After login in to server , I am entering “yct”. It brings me a table with lot of option , I need to scroll down and then select “Report “ which... (3 Replies)
Discussion started by: bharats08
3 Replies

5. Linux

Only the terminal(command screen) no GUI, for Windows XP ???

Hi All, Am working in a major IT company, due to security issues, being a fresher am not allowed to install or asking for a specific business reason to install it in my system. The thing is i want to learn Linux, due to the same security issues we need Admin pass to install certain... (6 Replies)
Discussion started by: mr_ganapathy
6 Replies

6. UNIX for Dummies Questions & Answers

Turn python script into an installed UNIX command (Mac OS X)

Okay so i have a script i wrote in python. I want to turn this script into an INSTALLED COMMAND to run in terminal. Right now i run it like this in terminal... $ python myscriptname.py or $ ./myscriptname.py but i want to be able to run it like this in terminal... $ myscriptname ... (3 Replies)
Discussion started by: cbreiny
3 Replies

7. Programming

Turn java cmdline program into GUI

I have a java command line program from a vendor without source code, but it's too much work to run on a PC window, therefore I'm think to create a GUI wrapper or web interface calling that java cmdline program. But I'm a newbie in java world - How convert a java command line program into a web... (0 Replies)
Discussion started by: tqlam
0 Replies

8. AIX

turn on aix history command

how do i turn on aix43 history command? so that i could recall the command with <esc>+k. thanks (3 Replies)
Discussion started by: itik
3 Replies

9. UNIX for Advanced & Expert Users

Possible GUI to Command-Line Interface Translator?

I was chatting with my teacher on how this could be a great tool for admins who are making the switch from GUI to CLI administration. I'm wondering, does this kind of tool exist? (4 Replies)
Discussion started by: Daemon-Killer
4 Replies

10. UNIX for Dummies Questions & Answers

If a is windows gui ( client), b is a unix gui ( Server for a) and c is a shell scrip

Hello all, 1) I want to have a GUI application that will call Unix shell scripts, 2) that GUI application should be able to reside on windows ( if possible) and then call Unix shell script either directly or through a server residing on unix. That is for example. If a is windows gui (... (1 Reply)
Discussion started by: hchivukula
1 Replies
Login or Register to Ask a Question