View Single Post
  #7   (View Single Post)  
Old 22nd April 2022
Sehnsucht94's Avatar
Sehnsucht94 Sehnsucht94 is offline
Real Name: Paolo Vincenzo Olivo
Package Pilot
 
Join Date: Oct 2017
Location: Rome
Posts: 169
Default

Quote:
Originally Posted by jggimi View Post
A quick Google search found this, which may help:
https://www.linuxquestions.org/quest...s-10-a-324502/
In addition, if using the motif display manager is not desiderable, one may also fall back to /usr/openwin/bin/xinit.


Or use a script like:
Code:
#!/bin/sh


trap '$HOME/.xinitrc; kill %1' USR1 
  

(
     trap '' USR1
     exec /usr/X11R6/bin/X :0
) & 
 
wait
Generating an ad-hoc X configuration with xorgconfig can be useful if the server fails to attach.

Quote:
Originally Posted by stormy View Post
Thanks for that. Someone contacted me recently and told me that apparently Solaris won't output anything on the graphics card unless it has a keyboard connected, it just goes into TTY mode. So yeah I guess I need to track down a keyboard! I was hoping to do everything over SSH & then use Synergy/Barrier KVM once into the GUI.
Could X11 forwarding over ssh represent a viable alternative?



Quote:
Originally Posted by berni51 View Post
When I installed Solaris 11.4 some weeks ago, only the base system was installed by the installer, but no Xorg. I had to install solaris-desktop with pkg to get a running Xorg/Gnome.
That's because 11.4 only provides text installers (almost completely ditching anything related to desktop), but this didn't use to be the case up to 11.3, much less with SunOS 5.10.
__________________
“Mi casa tendrá dos piernas y mis sueños no tendrán fronteras„

Last edited by Sehnsucht94; 22nd April 2022 at 12:45 AM.
Reply With Quote