Page 1 of 1

Enable/Disable Oracle Linux GUI

Posted: Fri Mar 04, 2022 3:26 pm
by admin
In Oracle EBS VM's normally GUI is not there so only terminal will be there for the command line. To install/enable GUI following these steps as root user,

Enable

1 - $ yum update

2 - $ yum groupinstall "Server with GUI"

3 - Start Oracle Linux GUI on system startup

$ ln -sf /lib/systemd/system/runlevel5.target /etc/systemd/system/default.target
or

systemctl set-default graphical.target

Reboot the Server

Disable

$ systemctl set-default multi-user

Reboot the Server