LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 09-02-2012, 06:13 PM   #1
woomia
Member
 
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 33

Rep: Reputation: 4
CDE on Slackware


Thanks to Patrick Verner and others it is now possible to run CDE on Slackware.

https://sourceforge.net/projects/cdesktopenv/

And here is the wiki page with Slackware specific notes:

https://sourceforge.net/p/cdesktopenv/wiki/Slackware/

This has been tested on Slackware 64 bit 14.0 RC4. Testing on other versions welcome.
 
Old 09-03-2012, 12:01 AM   #2
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
CDE is a bit dated in my opinion, but it could be useful for nostalgia purposes and for extreme levels of resource reservation.
 
1 members found this post helpful.
Old 09-03-2012, 01:51 AM   #3
wigry
Member
 
Registered: Jul 2004
Distribution: slackware
Posts: 225

Rep: Reputation: 53
Great great news. Will try it out ASAP
 
Old 09-03-2012, 02:25 AM   #4
ChrisAbela
Member
 
Registered: Mar 2008
Location: Malta
Distribution: Slackware
Posts: 572

Rep: Reputation: 154Reputation: 154
I still have CDE running on some Sun (Solaris) machines here. I never got to like it much and I always preferred CLI. Anyway these are archaic machines from the nineties and I suppose that CDE was much better than the desktop of Windows 98.
 
1 members found this post helpful.
Old 09-03-2012, 02:55 AM   #5
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
As far as modern, clean, simple, and fully featured desktop environments go, Xfce and KDE are the best two for UNIX environments.

However, yes nothing beats the good ol' Bash shell.
 
1 members found this post helpful.
Old 09-03-2012, 07:57 AM   #6
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Doesnt work here. All I can see is the mouse cursor and the help Window that appears when starting CDE. But I cannot move the window, seems that the Motif decorations or the WM is not activated...

Last edited by Bindestreck; 09-03-2012 at 08:01 AM.
 
Old 09-04-2012, 08:31 AM   #7
woomia
Member
 
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 33

Original Poster
Rep: Reputation: 4
What version of Slackware? What processor?
 
Old 09-04-2012, 08:40 AM   #8
Bindestreck
Member
 
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 820

Rep: Reputation: 440Reputation: 440Reputation: 440Reputation: 440Reputation: 440
Quote:
Originally Posted by woomia View Post
What version of Slackware? What processor?
The version before 14 RC releases of Slackware...

CPU: i7-2760QM (8 cores)
 
Old 09-04-2012, 05:59 PM   #9
woomia
Member
 
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 33

Original Poster
Rep: Reputation: 4
CDE is only supported on Slackware 14.0 RC 64 bit. No one has tested it on 14.0 RC4 32 bit.

As for previous versions of Slackware, CDE has never been shown to work on them but thanks for trying. CDE will tested on 14.0 once it's released. I suggest waiting until then.
 
Old 09-04-2012, 08:48 PM   #10
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
If you are wanting to install CDE in Slackware you have to do this:

1. generate the locales:

Code:
cd /usr/lib64/locale/

ln -s de_DE de_DE.ISO-8859-1

ln -s es_ES es_ES.ISO-8859-1

ln -s fr_FR fr_FR.ISO-8859-1

ln -s it_IT it_IT.ISO-8859-1
2. Install OpenMotif and Xlt from SlackBuilds.

Note: you will have to uninstall "lesstif" prior to installing OpenMotif.

3. Link Nawk calls to gawk using a symlink:

Code:
ln -s /bin/gawk /bin/nawk
4. Set rcpbind into insecure mode;

Code:
chmod +x /etc/rc.d/rc.rpc
/etc/rc.d/rc.rpc start
5. Download the CDE sources and run, at minimum, a configure buildscript similar to this (Slackware 64 only) to configure, make, and install the sources:

Code:
./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --mandir=/usr/man --libdir=/usr/lib64 --docdir=/usr/doc/cde-2.20a --build=x86_64-slackware-linux && make && install && clean
 
Old 09-05-2012, 09:14 PM   #11
woomia
Member
 
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 33

Original Poster
Rep: Reputation: 4
I advise against downloading the tarball. It's woefully out of date. Use git.

There will be a new tarball soon that will be current to the sources.
 
Old 09-05-2012, 09:32 PM   #12
ReaperX7
LQ Guru
 
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,558
Blog Entries: 15

Rep: Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097Reputation: 2097
2.2.0a was just released last month.
 
Old 09-06-2012, 11:57 AM   #13
woomia
Member
 
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 33

Original Poster
Rep: Reputation: 4
Like I said, it is hopeless out of date. Slackware specific fixes have been added since that tarball was generated.
 
Old 09-06-2012, 04:23 PM   #14
woomia
Member
 
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 33

Original Poster
Rep: Reputation: 4
Wait, are trying to install CDE on Slackware from the tarball? If you are, it won't work. The instructions specifically state on the wiki that you must build from git for Slackware.
 
Old 09-06-2012, 05:18 PM   #15
woomia
Member
 
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 33

Original Poster
Rep: Reputation: 4
News: There is a new tarball of CDE. All the changes in git until this moment are now in this tarball. It's a lot of stuff but most importantly, you can build CDE on Slackware now from the tarball.

Note, this has only be been tested on Slackware64 14.0 RC4. All other versions are either unknown or unsupported. The tarball will be tested again when 14.0 is released.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Trouble building CDE (Slackware 64 13.37) penduin Linux - Software 16 09-02-2012 08:03 PM
CDE released. jefro Linux - General 8 08-21-2012 05:47 AM
CDE for Slackware on the horizon? pargoo Slackware 29 08-17-2012 01:16 PM
Are there any linux distros with cde, or any way to install cde? woms14 Linux - General 5 01-15-2010 09:08 PM
CDE graphical-login/cde-login in maintenance state czezz Solaris / OpenSolaris 1 09-30-2009 09:20 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 08:23 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration