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.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
|
07-16-2014, 01:51 AM
|
#1
|
Member
Registered: Jul 2007
Distribution: Slackware
Posts: 235
Rep:
|
No KWin with new slackware-current X11
With the new X11 packages in slackware-current, X11 starts but KDE's window manager kwin fails to start.
Apparently, the current kwin binary is expecting a libxcb-sync.so.0 symlink that is no longer created.
So either kwin must be rebuild or add this symlink to libxcb-sync.so.1.0.0.
|
|
|
07-16-2014, 02:01 AM
|
#2
|
Member
Registered: Dec 2013
Location: NJ / USA
Distribution: Slackware 64 -Current
Posts: 232
Rep:
|
check out Aliens Bog http://alien.slackbook.org/blog/ Just updated KDE for current
|
|
|
07-16-2014, 02:01 AM
|
#3
|
LQ Guru
Registered: Jul 2011
Location: California
Distribution: Slackware64-15.0 Multilib
Posts: 6,564
|
You could always create it with ln -sv
|
|
|
07-16-2014, 04:39 AM
|
#4
|
Member
Registered: Apr 2008
Location: China, Beijing
Distribution: Slackware
Posts: 423
Rep:
|
Quote:
Originally Posted by ReaperX7
You could always create it with ln -sv
|
Saying that it could solve problems some time, I don't think that's a goog idea. Version changes in shared lib means the maintainer of the lib think there is in-compatible changes in the ABI or API, apps should recompile with the new one.
|
|
|
07-19-2014, 06:09 AM
|
#5
|
Member
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890
Rep:
|
Hello guys,
Even on my -current box, on Alien's KDE 4.12.5 after the latest upgrades I can login to X but once in a KDE session, there are no title bars, can't move or resize any app. I tried reverting to Compiz as the WM from settings but same issue. Going back to Kwin threw an error that the Kwin WM can't be started. (BTW I did an install-new, then an upgrade-all.)
I tried upgrading KDE to Alien's 4.13.2 but it reproduces same error.
Any suggestions on what needs to be done as of now?
Regards.
|
|
|
07-19-2014, 07:18 AM
|
#6
|
Member
Registered: Jul 2007
Location: Nottingham, UK
Distribution: Slackware64-current
Posts: 93
Rep:
|
Quote:
Originally Posted by PrinceCruise
Hello guys,
Any suggestions on what needs to be done as of now?
Regards.
|
This is a temporary fix. As root:-
Code:
cd /usr/lib64
ln -s libxcb-sync.so.1.0.0 libxcb-sync.so.0
AlienBob has now released KDE 4.13.3 with an update to fix this problem.
|
|
1 members found this post helpful.
|
07-19-2014, 09:13 AM
|
#7
|
Member
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890
Rep:
|
Quote:
Originally Posted by phi11ip
This is a temporary fix. As root:-
Code:
cd /usr/lib64
ln -s libxcb-sync.so.1.0.0 libxcb-sync.so.0
AlienBob has now released KDE 4.13.3 with an update to fix this problem.
|
Thanks a lot buddy, that fixes the issue for now.
So if I update KDE to 4.13.3, do I need to revert the changes done in this symlinking?
Regards.
|
|
|
07-20-2014, 01:32 AM
|
#8
|
Slackware Contributor
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,560
|
Yes, once the problem is fixed correctly, you need to delete the symlink you created.
To elaborate a bit on the problem with creating such a symlink, it's generally not a problem if the app linking the library isn't using any function that was removed from or changed in the API -- in other words, if the only reason for the bump in the shared object major version (e.g. libwhatever.so.1 --> libwhatever.so.2) was something *added* to the API, then you shouldn't see any problems at all with a symlink. However, if there was a *change* to the API (e.g. a function that used to expect one argument now expects two arguments) or a *removal* from the API, then anything linking that library which uses the changed/removed API is going to go apeshit - that's why it's a bad idea to fake the old library version with a symlink unless you happen to know that it's not a bad idea :-)
|
|
3 members found this post helpful.
|
07-20-2014, 03:30 AM
|
#9
|
Member
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890
Rep:
|
Ah, it makes good sense. Thanks for taking time in explaining, Robby.
Regards.
|
|
|
07-20-2014, 05:11 AM
|
#10
|
Member
Registered: Jul 2007
Location: Nottingham, UK
Distribution: Slackware64-current
Posts: 93
Rep:
|
Far better explanation than I could have given :-). All I know it's not a particularly good fix (certainly not a permanent one) but can get you out of a hole now and again.
|
|
|
07-22-2014, 09:39 AM
|
#11
|
LQ Newbie
Registered: Mar 2004
Location: South Carolina, USA
Distribution: Slackware Current
Posts: 14
Rep:
|
I have the same problem PrinceCruise described above when I upgraded KDE to 4.13.3 using AlienBob's packages. I also lost my virtual desktops and cannot create new ones. I added the symlink as described above, but no joy. Did not work for me. What am I doing wrong?
|
|
|
07-24-2014, 04:15 PM
|
#12
|
LQ Newbie
Registered: Mar 2004
Location: South Carolina, USA
Distribution: Slackware Current
Posts: 14
Rep:
|
The fix for my post above was to download and install AlienBob's newest kde-workspace package (kde-workspace-4.11.11-i486-2alien.txz) from his K-Town repository. Now, all is well and joy abounds.
|
|
|
07-24-2014, 08:52 PM
|
#13
|
Member
Registered: Dec 2008
Location: New York
Distribution: Slack -current, siduction
Posts: 253
Rep:
|
My -current install was in shambles after the crossroads of Pat's xorg and Eric's KDE updates. I chose to take the path of least resistance. Un-blacklisted the "alien" in /etc/slackpkg/blacklist. Ran slackpkg update, install-new, upgrade-all today. This effectively got me the latest kernel update, rolled KDE back to 4.10.5 and now all is well. Presumably Pat will upgrade the KDE version in current in the near future.
Praise Bob
|
|
|
07-24-2014, 10:22 PM
|
#14
|
Slackware Contributor
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559
|
The latest KDE in my ktown repository has been fine for days. I got the fixes in fast as several people have been confirming here and on my blog. No reason to revert to the Slackware originals.
Eric
|
|
1 members found this post helpful.
|
07-25-2014, 07:36 AM
|
#15
|
Member
Registered: Dec 2008
Location: New York
Distribution: Slack -current, siduction
Posts: 253
Rep:
|
Quote:
Originally Posted by Alien Bob
The latest KDE in my ktown repository has been fine for days. I got the fixes in fast as several people have been confirming here and on my blog. No reason to revert to the Slackware originals.
Eric
|
Great. I've been rather harried for a week or so and have not checked your blog. Will give them a shot this weekend. Always been a fan of your work.
|
|
|
All times are GMT -5. The time now is 04:39 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
|
|