LinuxQuestions.org
Review your favorite Linux distribution.
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 07-16-2014, 01:51 AM   #1
rvdboom
Member
 
Registered: Jul 2007
Distribution: Slackware
Posts: 235

Rep: Reputation: 30
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.
 
Old 07-16-2014, 02:01 AM   #2
linuxtinker
Member
 
Registered: Dec 2013
Location: NJ / USA
Distribution: Slackware 64 -Current
Posts: 232

Rep: Reputation: 99
check out Aliens Bog http://alien.slackbook.org/blog/ Just updated KDE for current
 
Old 07-16-2014, 02:01 AM   #3
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
You could always create it with ln -sv
 
Old 07-16-2014, 04:39 AM   #4
grissiom
Member
 
Registered: Apr 2008
Location: China, Beijing
Distribution: Slackware
Posts: 423

Rep: Reputation: 45
Quote:
Originally Posted by ReaperX7 View Post
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.
 
Old 07-19-2014, 06:09 AM   #5
PrinceCruise
Member
 
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890

Rep: Reputation: 186Reputation: 186
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.
 
Old 07-19-2014, 07:18 AM   #6
phi11ip
Member
 
Registered: Jul 2007
Location: Nottingham, UK
Distribution: Slackware64-current
Posts: 93

Rep: Reputation: 23
Quote:
Originally Posted by PrinceCruise View Post
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.
Old 07-19-2014, 09:13 AM   #7
PrinceCruise
Member
 
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890

Rep: Reputation: 186Reputation: 186
Quote:
Originally Posted by phi11ip View Post
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.
 
Old 07-20-2014, 01:32 AM   #8
rworkman
Slackware Contributor
 
Registered: Oct 2004
Location: Tuscaloosa, Alabama (USA)
Distribution: Slackware
Posts: 2,560

Rep: Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354Reputation: 1354
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.
Old 07-20-2014, 03:30 AM   #9
PrinceCruise
Member
 
Registered: Aug 2009
Location: /Universe/Earth/India/Pune
Distribution: Slackware64 -Current
Posts: 890

Rep: Reputation: 186Reputation: 186
Ah, it makes good sense. Thanks for taking time in explaining, Robby.

Regards.
 
Old 07-20-2014, 05:11 AM   #10
phi11ip
Member
 
Registered: Jul 2007
Location: Nottingham, UK
Distribution: Slackware64-current
Posts: 93

Rep: Reputation: 23
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.
 
Old 07-22-2014, 09:39 AM   #11
W4LK
LQ Newbie
 
Registered: Mar 2004
Location: South Carolina, USA
Distribution: Slackware Current
Posts: 14

Rep: Reputation: 1
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?
 
Old 07-24-2014, 04:15 PM   #12
W4LK
LQ Newbie
 
Registered: Mar 2004
Location: South Carolina, USA
Distribution: Slackware Current
Posts: 14

Rep: Reputation: 1
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.
 
Old 07-24-2014, 08:52 PM   #13
zbreaker
Member
 
Registered: Dec 2008
Location: New York
Distribution: Slack -current, siduction
Posts: 253

Rep: Reputation: 29
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
 
Old 07-24-2014, 10:22 PM   #14
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107Reputation: 8107
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.
Old 07-25-2014, 07:36 AM   #15
zbreaker
Member
 
Registered: Dec 2008
Location: New York
Distribution: Slack -current, siduction
Posts: 253

Rep: Reputation: 29
Thumbs up

Quote:
Originally Posted by Alien Bob View Post
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.
 
  


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
[SOLVED] Slackware-current x86_64: kwin crashes with radeon, no window decorations or panel pdags Slackware 3 02-26-2012 09:32 AM
[SOLVED] X11 mouse frozen in slackware-current geek73666 Slackware 13 03-24-2011 12:16 AM
[SOLVED] KWin desktop effects too slow ( after -current updates 31 Jan 2011) allend Slackware 2 02-01-2011 05:43 AM
how to install kwin decoration slackware 12.1 kde 3.5.9 pauledwards03 Linux - Software 11 09-05-2008 11:36 PM

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

All times are GMT -5. The time now is 05:58 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