<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to SolarisBuild</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>Recent changes to SolarisBuild</description><atom:link href="https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/feed" rel="self"/><language>en</language><lastBuildDate>Sun, 04 Jul 2021 03:54:02 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/feed" rel="self" type="application/rss+xml"/><item><title>SolarisBuild modified by Jon Trulson</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -3,6 +3,8 @@
 

 **WARNING: THIS GUIDE IS FOR ADVANCED USERS FOR USE IN BUILDING AND PORTING.**
+
+**Note: This has not been tested with CDE versions 2.4.0a+ (autoconf) and may not work.**

 **Note: This port has been tested on Solaris 11. Older Solaris releases are not supported.
 They have Sun-CDE out of the box.**
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Trulson</dc:creator><pubDate>Sun, 04 Jul 2021 03:54:02 -0000</pubDate><guid>https://sourceforge.netaae7bfc037c13d589b99019950ee19ff1dc6f24b</guid></item><item><title>SolarisBuild modified by Jon Trulson</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -8,7 +8,8 @@
 They have Sun-CDE out of the box.**
 &lt;br/&gt;

-# Table of Contents
+Table of Contents
+
 [TOC]

 # Build Prerequisites
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Trulson</dc:creator><pubDate>Wed, 04 Jul 2018 02:39:40 -0000</pubDate><guid>https://sourceforge.net4e67542001c6e8bb6bd982dfed049d2f6ce7f952</guid></item><item><title>SolarisBuild modified by Jon Trulson</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -8,6 +8,8 @@
 They have Sun-CDE out of the box.**
 &lt;br/&gt;

+# Table of Contents
+[TOC]

 # Build Prerequisites

@@ -48,24 +50,24 @@
 * add your hostname to the localhost line in /etc/hosts or add a new line with hostname and ip address. **NOTE: This should not be needed for CDE versions 2.3 and above.**

 * create symlinks:
-   ````
+````
     ln -s /usr/bin/gcc /usr/bin/cc
     ln -s /opt/solarisstudio12.3 /opt/solarisstudio  (optional)
-    ````
+````
 * configure runtime linking environment:
 ````
     crle -u -l /usr/gnu/lib
     crle -u -l /usr/X11/lib
     crle -64 -u -l /usr/gnu/lib/amd64
     crle -64 -u -l /usr/X11/lib/amd64
-    ````
+````
 * change LANG varaible:
 ````
     svccfg -s svc:/system/environment:init setprop environment/LANG=C
     svccfg -s svc:/system/environment:init setprop environment/LC_ALL=C
     svccfg -s svc:/system/environment:init setprop environment/LC_CTYPE=C
     svcadm refresh svc:/system/environment:init
-    ````
+````
 * reboot the system
 &lt;br/&gt;

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Trulson</dc:creator><pubDate>Wed, 04 Jul 2018 00:01:58 -0000</pubDate><guid>https://sourceforge.net48e92af05357d59fccbd30f9bbe75502739bb45e</guid></item><item><title>SolarisBuild modified by Jon Trulson</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -9,14 +9,14 @@
 &lt;br/&gt;

-## 1) Build Prerequisites ##
+# Build Prerequisites

-### 1.1) Supported Platforms ###
+## Supported Platforms

 The initial Solaris port only supports 64-bit x86 systems.
 &lt;br/&gt;

-### 1.2) Install Dependencies ###
+## Install Dependencies

 Install the following packages:

@@ -33,129 +33,121 @@
 * developer/build/libtool
 &lt;br/&gt;

-### 1.3) Additional Preparations ###
+## Additional Preparations

 * add /usr/gnu/bin to your PATH variable:
-    PATH=$PATH:/usr/gnu/bin
+
+        PATH=$PATH:/usr/gnu/bin

 * add /opt/solarisstudio/bin to your PATH variable  (optional):
-    PATH=$PATH:/opt/solarisstudio/bin
+
+        PATH=$PATH:/opt/solarisstudio/bin

 Run the following commands as root:

-* add your hostname to the localhost line in /etc/hosts or add a new line with hostname and ip address
+* add your hostname to the localhost line in /etc/hosts or add a new line with hostname and ip address. **NOTE: This should not be needed for CDE versions 2.3 and above.**
+
 * create symlinks:
+   ````
     ln -s /usr/bin/gcc /usr/bin/cc
     ln -s /opt/solarisstudio12.3 /opt/solarisstudio  (optional)
+    ````
 * configure runtime linking environment:
+````
     crle -u -l /usr/gnu/lib
     crle -u -l /usr/X11/lib
     crle -64 -u -l /usr/gnu/lib/amd64
     crle -64 -u -l /usr/X11/lib/amd64
+    ````
 * change LANG varaible:
+````
     svccfg -s svc:/system/environment:init setprop environment/LANG=C
     svccfg -s svc:/system/environment:init setprop environment/LC_ALL=C
     svccfg -s svc:/system/environment:init setprop environment/LC_CTYPE=C
     svcadm refresh svc:/system/environment:init
+    ````
 * reboot the system
 &lt;br/&gt;

-### 1.4) Installation of Motif ###
+## Installation of Motif

 **Build Motif from source!**

 * Download the latest source package from sourceforge \([motif-2.3.4.src.tgz](https://sourceforge.net/projects/motif/files/latest/download)\).
 * unpack sources
-* cd motif-2.3.4
-* ./autogen.sh   (also starts configure)
-* make
-* sudo make install
+
+````
+cd motif-2.3.4
+./autogen.sh
+make
+sudo make install
+````
 &lt;br/&gt;

-## 2) Compiling ##
+# Compiling

-### 2.1) Get a copy of the repository ###
+## Get the CDE source code

-Use the git clone command to read the source code from Git repository:
+[[include ref="include_Get source code"]]

-* git clone git://git.code.sf.net/p/cdesktopenv/code  cdesktopenv-code
 &lt;br/&gt;

-### 2.2) Record all actions for troubleshooting ###
-
-In case of trouble it is important to have a log file to report problems.
-
-Use the command:
-
-* script /tmp/log.txt
-
-to open a log file that will log everything in your terminal (also all letters and passwords that you might type!)
-into the /tmp/log.txt file.
-&lt;br/&gt;
-
-### 2.3) Link in X11 headers ###
+## Link in X11 headers

 The X11 library headers need to be symlinked into the build tree.
 **Be careful of capitalisation of 'x' and 'X' here.**

 (Replace /path/to/ with the path to the location of your source tree.)

-- cd /path/to/cdesktopenv-code/cde
-- mkdir -p imports/x11/include
-- cd imports/x11/include
-- ln -s /usr/include/X11 .
-- ln -s /usr/X11/include/Xm .
+````
+cd /path/to/cdesktopenv-code/cde
+mkdir -p imports/x11/include
+cd imports/x11/include
+ln -s /usr/include/X11 .
+ln -s /usr/X11/include/Xm .
+````
 &lt;br/&gt;

-### 2.4) Supported Compiler ###
+## Supported Compilers

 The port supports either gcc or Solaris Studio compiler. gcc is the default and must be installed (see 1.2). 
 But it is also possible to install Solaris Studio and to activate it for CDE by adding the following line
 to /path/to/cdesktopenv-code/cde/config/cf/host.def:

-* \#define HasSunC   YES
+    #define HasSunC YES
+    
 &lt;br/&gt;

-### 2.5) Build CDE ###
+## Build CDE

-* cd /path/to/cdesktopenv-code/cde
-* make World
+    cd /path/to/cdesktopenv-code/cde
+    make World

 The build will terminate with a successfully built message.
 &lt;br/&gt;

-## 3) Install CDE ##
-
+# Install CDE
 This has to be done as root:

-* cd /path/to/cdesktopenv-code/cde/admin/IntegTools/dbTools
-* ./installCDE -s /path/to/cdesktopenv-code/cde
+     cd /path/to/cdesktopenv-code/cde/admin/IntegTools/dbTools
+     ./installCDE -s /path/to/cdesktopenv-code/cde
+
 &lt;br/&gt;

-## 4) Close logfile ##
-
-* Type "exit"
-* /tmp/log.txt should contain recording of all actions in the terminal.
-&lt;br/&gt;
-
-## 5) Start CDE ##
+# Start CDE

 Disable gdm graphical login as root:

-* svcadm disable svc:/application/graphical-login/gdm
+    svcadm disable svc:/application/graphical-login/gdm

 You can now start CDE login manager:

-* /usr/dt/bin/dtlogin
+    /usr/dt/bin/dtlogin

 Alternatively, you can start an X session as a normal user:

-* env LANG=C startx /usr/dt/bin/Xsession
+    env LANG=C startx /usr/dt/bin/Xsession
+    
 &lt;br/&gt;

-## 6) Reporting problems
-
-Please check if your logfile (/tmp/log.txt) does not contain sensitive information and feel free
-to send it to us.
-&lt;br/&gt;
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Jon Trulson</dc:creator><pubDate>Tue, 03 Jul 2018 23:59:51 -0000</pubDate><guid>https://sourceforge.netee51e065625063b7e9665b902fc008e86e11a5ed</guid></item><item><title>Discussion for SolarisBuild page</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/?limit=25#bea7</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Compilation fails for me in Solaris 11.3 (x86). Motif compiles and install OK (motif-2-3-7)&lt;br/&gt;
But CDE, after carefully follow the instructions provided here, fails with the following message:&lt;/p&gt;
&lt;p&gt;ld: fatal: symbol referencing errors&lt;/p&gt;
&lt;div class="codehilite"&gt;&lt;pre&gt;&lt;span class="x"&gt;*** Error code 2&lt;/span&gt;
&lt;span class="x"&gt;make: Fatal error: Command failed for target `ttdbck'&lt;/span&gt;
&lt;span class="x"&gt;Current working directory /export/home/nacho/cdesktopenv-code/cde/lib/tt/bin/dbck&lt;/span&gt;

&lt;span class="x"&gt;*** Error code 1&lt;/span&gt;
&lt;span class="x"&gt;The following command caused the error:&lt;/span&gt;
&lt;span class="x"&gt;for flag in  ''; do \&lt;/span&gt;
&lt;span class="x"&gt;case "&lt;/span&gt;&lt;span class="p"&gt;$&lt;/span&gt;&lt;span class="nv"&gt;flag&lt;/span&gt;&lt;span class="x"&gt;" in *=*) ;; *[ik]*) set +e;; esac; done; \&lt;/span&gt;
&lt;span class="x"&gt;for i in dbck shell scripts tt_type_comp  ttauth ttdbserverd ttsession tttar tttrace ;\&lt;/span&gt;
&lt;span class="x"&gt;do \&lt;/span&gt;
&lt;span class="x"&gt;echo "making" all "in lib/tt/bin/&lt;/span&gt;&lt;span class="p"&gt;$&lt;/span&gt;&lt;span class="nv"&gt;i&lt;/span&gt;&lt;span class="x"&gt;..."; \&lt;/span&gt;
&lt;span class="x"&gt;(cd &lt;/span&gt;&lt;span class="p"&gt;$&lt;/span&gt;&lt;span class="nv"&gt;i&lt;/span&gt;&lt;span class="x"&gt; &amp;amp;&amp;amp; /usr/ccs/bin/make  'CDEBUGFLAGS=-O2' 'CXXDEBUGFLAGS=-O2' all); \&lt;/span&gt;
&lt;span class="x"&gt;done&lt;/span&gt;
&lt;/pre&gt;&lt;/div&gt;


&lt;p&gt;I've tried both using gcc and solaris studio (though still using GCC) as posted here, but get the same error.&lt;/p&gt;
&lt;p&gt;Anyone having the same problem?&lt;br/&gt;
Thanks in advance.&lt;/p&gt;
&lt;p&gt;PS: I will check if using motif-2-3-4 as suggested in this page, makes a difference.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ignacio Sniechowski</dc:creator><pubDate>Sat, 09 Sep 2017 19:28:47 -0000</pubDate><guid>https://sourceforge.net7c9c8d93c4c5493bfb3f1946d1b8eb40219b427c</guid></item><item><title>Discussion for SolarisBuild page</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/?limit=25#9494</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Please help providing steps to compile CDE for Solaris 11 Sparc (on T5240). Step 2.5 *Build CDE" failed on me!&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Van</dc:creator><pubDate>Mon, 31 Jul 2017 00:45:23 -0000</pubDate><guid>https://sourceforge.netabd1afd6468da6cb799b242c4847b3e17671b454</guid></item><item><title>Discussion for SolarisBuild page</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Perhaps the 64-bit crle commands should instead be&lt;br /&gt;
crle -64 -u -l /usr/gnu/lib/64&lt;br /&gt;
crle -64 -u -l /usr/X11/lib/64&lt;br /&gt;
(the system defaults also use the 64 links rather than the architecture-specific directory name)&lt;br /&gt;
Along with whatever else is needed to get this working on SPARC is also done, that would be one less thing to be different between x86 and SPARC.  SPARC is a bit more to my immediate interest, having a T5240 off of eBay to play on, and to offset winter heating needs :-)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Richard Hamilton</dc:creator><pubDate>Mon, 17 Nov 2014 18:32:18 -0000</pubDate><guid>https://sourceforge.netd97bb6fea4006f0efbef3d83481ab7e1bf9883cc</guid></item><item><title>Discussion for SolarisBuild page</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Thanks for the hardwork putting CDE back on solaris and openindiana :) I will be trying this out now.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">gary perreault</dc:creator><pubDate>Sun, 16 Nov 2014 22:10:28 -0000</pubDate><guid>https://sourceforge.net928e862fe70aa715ed9fd7d0381048a84e4938c2</guid></item><item><title>SolarisBuild modified by Ulrich Wilkens</title><link>https://sourceforge.net/p/cdesktopenv/wiki/SolarisBuild/</link><description>&lt;div class="markdown_content"&gt;&lt;table style="background-color: #FFCCCC; border-width: 1px; border-color: #FF0000; border-style: solid;"&gt;
&lt;tr&gt;&lt;td&gt;We are currently requesting that all contributions to the project are licenced under the MIT licence. &lt;a href="../WhyMIT"&gt;Find out why?&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;strong&gt;WARNING: THIS GUIDE IS FOR ADVANCED USERS FOR USE IN BUILDING AND PORTING.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note: This port has been tested on Solaris 11. Older Solaris releases are not supported.&lt;br /&gt;
They have Sun-CDE out of the box.&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;h2 id="1-build-prerequisites"&gt;1) Build Prerequisites&lt;/h2&gt;
&lt;h3 id="11-supported-platforms"&gt;1.1) Supported Platforms&lt;/h3&gt;
&lt;p&gt;The initial Solaris port only supports 64-bit x86 systems.&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;h3 id="12-install-dependencies"&gt;1.2) Install Dependencies&lt;/h3&gt;
&lt;p&gt;Install the following packages:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;developer/versioning/git&lt;/li&gt;
&lt;li&gt;group/system/solaris-desktop&lt;/li&gt;
&lt;li&gt;developer/gcc-45&lt;/li&gt;
&lt;li&gt;system/header&lt;/li&gt;
&lt;li&gt;developer/macro/gnu-m4&lt;/li&gt;
&lt;li&gt;text/locale&lt;/li&gt;
&lt;li&gt;system/locale/extra&lt;/li&gt;
&lt;li&gt;x11/trusted/trusted-xorg&lt;/li&gt;
&lt;li&gt;developer/build/autoconf&lt;/li&gt;
&lt;li&gt;developer/build/automake-110&lt;/li&gt;
&lt;li&gt;developer/build/libtool&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="13-additional-preparations"&gt;1.3) Additional Preparations&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;add /usr/gnu/bin to your PATH variable:&lt;br /&gt;
    PATH=$PATH:/usr/gnu/bin&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;add /opt/solarisstudio/bin to your PATH variable  (optional):&lt;br /&gt;
    PATH=$PATH:/opt/solarisstudio/bin&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Run the following commands as root:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;add your hostname to the localhost line in /etc/hosts or add a new line with hostname and ip address&lt;/li&gt;
&lt;li&gt;create symlinks:&lt;br /&gt;
    ln -s /usr/bin/gcc /usr/bin/cc&lt;br /&gt;
    ln -s /opt/solarisstudio12.3 /opt/solarisstudio  (optional)&lt;/li&gt;
&lt;li&gt;configure runtime linking environment:&lt;br /&gt;
    crle -u -l /usr/gnu/lib&lt;br /&gt;
    crle -u -l /usr/X11/lib&lt;br /&gt;
    crle -64 -u -l /usr/gnu/lib/amd64&lt;br /&gt;
    crle -64 -u -l /usr/X11/lib/amd64&lt;/li&gt;
&lt;li&gt;change LANG varaible:&lt;br /&gt;
    svccfg -s svc:/system/environment:init setprop environment/LANG=C&lt;br /&gt;
    svccfg -s svc:/system/environment:init setprop environment/LC_ALL=C&lt;br /&gt;
    svccfg -s svc:/system/environment:init setprop environment/LC_CTYPE=C&lt;br /&gt;
    svcadm refresh svc:/system/environment:init&lt;/li&gt;
&lt;li&gt;reboot the system&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="14-installation-of-motif"&gt;1.4) Installation of Motif&lt;/h3&gt;
&lt;p&gt;&lt;strong&gt;Build Motif from source!&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Download the latest source package from sourceforge (&lt;a class="" href="https://sourceforge.net/projects/motif/files/latest/download"&gt;motif-2.3.4.src.tgz&lt;/a&gt;).&lt;/li&gt;
&lt;li&gt;unpack sources&lt;/li&gt;
&lt;li&gt;cd motif-2.3.4&lt;/li&gt;
&lt;li&gt;./autogen.sh   (also starts configure)&lt;/li&gt;
&lt;li&gt;make&lt;/li&gt;
&lt;li&gt;sudo make install&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="2-compiling"&gt;2) Compiling&lt;/h2&gt;
&lt;h3 id="21-get-a-copy-of-the-repository"&gt;2.1) Get a copy of the repository&lt;/h3&gt;
&lt;p&gt;Use the git clone command to read the source code from Git repository:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;git clone git://git.code.sf.net/p/cdesktopenv/code  cdesktopenv-code&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="22-record-all-actions-for-troubleshooting"&gt;2.2) Record all actions for troubleshooting&lt;/h3&gt;
&lt;p&gt;In case of trouble it is important to have a log file to report problems.&lt;/p&gt;
&lt;p&gt;Use the command:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;script /tmp/log.txt&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;to open a log file that will log everything in your terminal (also all letters and passwords that you might type!)&lt;br /&gt;
into the /tmp/log.txt file.&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;h3 id="23-link-in-x11-headers"&gt;2.3) Link in X11 headers&lt;/h3&gt;
&lt;p&gt;The X11 library headers need to be symlinked into the build tree.&lt;br /&gt;
&lt;strong&gt;Be careful of capitalisation of 'x' and 'X' here.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;(Replace /path/to/ with the path to the location of your source tree.)&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;cd /path/to/cdesktopenv-code/cde&lt;/li&gt;
&lt;li&gt;mkdir -p imports/x11/include&lt;/li&gt;
&lt;li&gt;cd imports/x11/include&lt;/li&gt;
&lt;li&gt;ln -s /usr/include/X11 .&lt;/li&gt;
&lt;li&gt;ln -s /usr/X11/include/Xm .&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="24-supported-compiler"&gt;2.4) Supported Compiler&lt;/h3&gt;
&lt;p&gt;The port supports either gcc or Solaris Studio compiler. gcc is the default and must be installed (see 1.2). &lt;br /&gt;
But it is also possible to install Solaris Studio and to activate it for CDE by adding the following line&lt;br /&gt;
to /path/to/cdesktopenv-code/cde/config/cf/host.def:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;#define HasSunC   YES&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id="25-build-cde"&gt;2.5) Build CDE&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;cd /path/to/cdesktopenv-code/cde&lt;/li&gt;
&lt;li&gt;make World&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;The build will terminate with a successfully built message.&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;
&lt;h2 id="3-install-cde"&gt;3) Install CDE&lt;/h2&gt;
&lt;p&gt;This has to be done as root:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;cd /path/to/cdesktopenv-code/cde/admin/IntegTools/dbTools&lt;/li&gt;
&lt;li&gt;./installCDE -s /path/to/cdesktopenv-code/cde&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="4-close-logfile"&gt;4) Close logfile&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;Type "exit"&lt;/li&gt;
&lt;li&gt;/tmp/log.txt should contain recording of all actions in the terminal.&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="5-start-cde"&gt;5) Start CDE&lt;/h2&gt;
&lt;p&gt;Disable gdm graphical login as root:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;svcadm disable svc:/application/graphical-login/gdm&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;You can now start CDE login manager:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;/usr/dt/bin/dtlogin&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Alternatively, you can start an X session as a normal user:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;env LANG=C startx /usr/dt/bin/Xsession&lt;br /&gt;
&lt;br /&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="6-reporting-problems"&gt;6) Reporting problems&lt;/h2&gt;
&lt;p&gt;Please check if your logfile (/tmp/log.txt) does not contain sensitive information and feel free&lt;br /&gt;
to send it to us.&lt;br /&gt;
&lt;br /&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ulrich Wilkens</dc:creator><pubDate>Wed, 29 Oct 2014 01:23:56 -0000</pubDate><guid>https://sourceforge.netb8d2f627f41784dc9407ced9652ca8bc3703b8db</guid></item></channel></rss>