Slackware This Forum is for the discussion of Slackware Linux.
|
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
|
09-02-2012, 06:13 PM
|
#1
|
|
LQ Newbie
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 22
Rep:
|
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.
|
|
|
|
09-03-2012, 12:01 AM
|
#2
|
|
Senior Member
Registered: Jul 2011
Distribution: Slackware64-14.0, LFS-7.3, FreeBSD 9.1
Posts: 1,096
Rep: 
|
CDE is a bit dated in my opinion, but it could be useful for nostalgia purposes and for extreme levels of resource reservation.
|
|
|
|
09-03-2012, 01:51 AM
|
#3
|
|
Member
Registered: Jul 2004
Distribution: slackware
Posts: 194
Rep:
|
Great great news. Will try it out ASAP
|
|
|
|
09-03-2012, 02:25 AM
|
#4
|
|
Member
Registered: Mar 2008
Location: Malta
Distribution: Slackware 14.0
Posts: 434
Rep:
|
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.
|
|
|
|
09-03-2012, 02:55 AM
|
#5
|
|
Senior Member
Registered: Jul 2011
Distribution: Slackware64-14.0, LFS-7.3, FreeBSD 9.1
Posts: 1,096
Rep: 
|
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.
|
|
|
|
09-03-2012, 07:57 AM
|
#6
|
|
Member
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 257
Rep:
|
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 eXpander_; 09-03-2012 at 08:01 AM.
|
|
|
|
09-04-2012, 08:31 AM
|
#7
|
|
LQ Newbie
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 22
Original Poster
Rep:
|
What version of Slackware? What processor?
|
|
|
|
09-04-2012, 08:40 AM
|
#8
|
|
Member
Registered: Jul 2011
Location: Sweden
Distribution: Slackware
Posts: 257
Rep:
|
Quote:
Originally Posted by woomia
What version of Slackware? What processor?
|
The version before 14 RC releases of Slackware...
CPU: i7-2760QM (8 cores)
|
|
|
|
09-04-2012, 05:59 PM
|
#9
|
|
LQ Newbie
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 22
Original Poster
Rep:
|
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.
|
|
|
|
09-04-2012, 08:48 PM
|
#10
|
|
Senior Member
Registered: Jul 2011
Distribution: Slackware64-14.0, LFS-7.3, FreeBSD 9.1
Posts: 1,096
Rep: 
|
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
|
|
|
|
09-05-2012, 09:14 PM
|
#11
|
|
LQ Newbie
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 22
Original Poster
Rep:
|
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.
|
|
|
|
09-05-2012, 09:32 PM
|
#12
|
|
Senior Member
Registered: Jul 2011
Distribution: Slackware64-14.0, LFS-7.3, FreeBSD 9.1
Posts: 1,096
Rep: 
|
2.2.0a was just released last month.
|
|
|
|
09-06-2012, 11:57 AM
|
#13
|
|
LQ Newbie
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 22
Original Poster
Rep:
|
Like I said, it is hopeless out of date. Slackware specific fixes have been added since that tarball was generated.
|
|
|
|
09-06-2012, 04:23 PM
|
#14
|
|
LQ Newbie
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 22
Original Poster
Rep:
|
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.
|
|
|
|
09-06-2012, 05:18 PM
|
#15
|
|
LQ Newbie
Registered: Apr 2011
Location: The Hub of the Universe
Distribution: Slackware on my laptop. Various distros in VMs for testing.
Posts: 22
Original Poster
Rep:
|
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.
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 07:49 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|