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.
|
 |
|
09-08-2012, 09:11 PM
|
#136
|
Senior Member
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,830
|
There might be no hints at all, because it was not configured with --enable-debug option
you might want to recompile with that option and see if it helps
|
|
|
09-09-2012, 02:38 AM
|
#137
|
Senior Member
Registered: Dec 2008
Posts: 1,191
|
Quote:
Originally Posted by guanx
|
This bug is fixed just 4 days ago. It's not yet gone into mc-4.8.4. An upgrade does not fix the bug. Need an update with a patch, or wait for mc-4.8.1.5.
This seems really an annoying bug because it's quite startling if a text editor cannot save files.
|
|
|
09-09-2012, 03:04 AM
|
#138
|
Senior Member
Registered: Oct 2007
Distribution: Slackware
Posts: 1,383
|
A little sad:
Code:
Sun Sep 9 03:00:36 UTC 2012
xap/xine-ui-0.99.5-x86_64-3.txz: Reverted.
The file open shortcut appears to be broken in the newer xine-ui. Probably
safer to just revert it at this point. The new xine-lib seems OK, though.
I am lurking on oftc #xine hoping for a solution....
|
|
|
09-09-2012, 03:51 AM
|
#139
|
Senior Member
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,830
|
yes, the current xine-ui is now 5 years old and it lack several features that are present in 0.99.7
however, strange thing is that i couldn't find any bug report about this problem in other distributions. It seems that their package is fine
|
|
|
09-09-2012, 04:15 AM
|
#140
|
Senior Member
Registered: Jan 2011
Location: Oslo, Norway
Distribution: Slackware
Posts: 2,559
|
Quote:
Originally Posted by willysr
however, strange thing is that i couldn't find any bug report about this problem in other distributions. It seems that their package is fine
|
Did you look at their packaging scripts? Perhaps the are patching?
|
|
|
09-09-2012, 04:35 AM
|
#141
|
Senior Member
Registered: Jul 2004
Location: Jogja, Indonesia
Distribution: Slackware-Current
Posts: 4,830
|
I looked at OpenSUSE's patches, but it doesn't mention about file selection bugs at all
I don't find any patches at all in ArchLinux distribution as well
Last edited by willysr; 09-09-2012 at 04:45 AM.
|
|
|
09-09-2012, 08:55 AM
|
#142
|
Senior Member
Registered: Dec 2008
Posts: 1,191
|
Quote:
Originally Posted by guanx
I was using my custom built 3.2.28 kernel and the same blueman as that in RC4 (all other packages from a -current snapshot few months ago). My Sony MW600 headset worked flawlessly. But now in RC4 I cannot connect my headset with blueman. In dmesg I see this strange message:
Code:
input: 58:17:XX:XX:XX:XX as /devices/virtual/input/input8
Seems my headset is recognized as an input device.
When I try to use blueman to connect to the A2DP service of my headset, blueman says
Code:
Stream setup failed
|
Solved. Found this:
http://wiki.gentoo.org/wiki/Bluetooth_Headset
So ... Can slackware do the same change?
Code:
Enable the audio socket of bluetoothd
File /etc/bluetooth/audio.confEnable audio socket
[General]
Enable=Socket
|
|
3 members found this post helpful.
|
09-09-2012, 07:34 PM
|
#143
|
Member
Registered: Jul 2010
Distribution: Slackware
Posts: 125
Rep:
|
scim-pinyin has been updated to 0.5.92 after 7 years.
I hope that in later releases, scim would be replaced by ibus which is in more active development.
|
|
|
09-09-2012, 11:45 PM
|
#144
|
Member
Registered: Aug 2010
Distribution: slackware64-current
Posts: 48
Rep:
|
util-linux libraries are dynamic only
util-linux package installs three libraries:
/lib64/libmount
/lib64/libuuid
/lib64/libblkid
but they appear to be dynamic .so only. No .a static versions.
Is there a reason for this? I wanted to statically link to libuuid while I am playing with something.
Please comment someone, or should the util-linux package be rebuilt to have static libraries added?
edit: this is probably a non-issue and I just don't know too much about libraries... i see that most libraries are only the .so kind and I think i can statically link to them... not really sure... I don't program very much
edit2: actually, yes, under /usr/lib64 you find .a static libs for most basic system libraries, just few if any are in /lib64
So anyway, I think util-linux forgot to include the static libraries
More info: The SlackBuild appears to explicitly disable-static... but why? ...
./configure \
--prefix=/usr \
--libdir=/usr/lib${LIBDIRSUFFIX} \
--sysconfdir=/etc \
--localstatedir=/var \
--mandir=/usr/man \
--infodir=/usr/info \
--docdir=/usr/doc/util-linux-$VERSION \
--disable-static \
--enable-arch \
--enable-agetty \
--enable-kill \
--disable-last \
--enable-line \
--enable-mesg \
--enable-partx \
--enable-raw \
--enable-rename \
--enable-reset \
--disable-login-utils \
--enable-schedutils \
--enable-wall \
--enable-write \
--enable-use-tty-group \
--enable-libblkid \
--enable-libmount \
--enable-libmount-mount \
--enable-libuuid \
--disable-uuidd \
--enable-ddate \
--build=$ARCH-slackware-linux \
|| exit 1
Last edited by foobarz; 09-10-2012 at 01:28 AM.
Reason: lol
|
|
|
09-10-2012, 02:00 AM
|
#145
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,302
Rep: 
|
The --disable-static configure option is there for Slackware-13.37 as well, nothing new here and nothing to worry about as the libraries are available and can be linked to by other programs.
What does this setting prevent you to do?
Last edited by Didier Spaier; 09-10-2012 at 02:02 AM.
|
|
|
09-10-2012, 02:06 AM
|
#146
|
Member
Registered: Aug 2010
Distribution: slackware64-current
Posts: 48
Rep:
|
Quote:
Originally Posted by Didier Spaier
The --disable-static configure option is there for Slackware-13.37 as well, nothing new here and nothing to worry about as the libraries are available and can be linked to by other programs.
What does this setting prevent you to do?
|
Only dynamic .so versions are there. There are no .a static versions of those libraries. As I understand it, this means you cannot link to the libraries statically and make a statically linked program that can run by itself, for instance inside a minimal initramfs to do some things during system boot. I am trying to link statically to them to make a small utility that would run as init program inside initramfs that has basically nothing else in it.
|
|
|
09-10-2012, 02:38 AM
|
#147
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,302
Rep: 
|
About initramfs, you can check that the Slackware installer itself includes these three shared libraries, which are very light weight, so this shouldn't be a problem.
Anyhow you can just edit the SlackBuild to fit your needs. This is one of the features which make the Slackware packaging system so versatile: if a stock configure option is not to your liking, just change it and rebuild the package 
|
|
|
09-10-2012, 03:46 AM
|
#148
|
Member
Registered: Aug 2010
Distribution: slackware64-current
Posts: 48
Rep:
|
Quote:
Originally Posted by Didier Spaier
About initramfs, you can check that the Slackware installer itself includes these three shared libraries, which are very light weight, so this shouldn't be a problem.
Anyhow you can just edit the SlackBuild to fit your needs. This is one of the features which make the Slackware packaging system so versatile: if a stock configure option is not to your liking, just change it and rebuild the package 
|
I built util-linux to include the static libraries, but now my program has other issues trying to link statically, so I am going to just forget about this!
|
|
|
09-10-2012, 08:32 AM
|
#149
|
Member
Registered: Jul 2010
Distribution: Slackware
Posts: 125
Rep:
|
|
|
|
09-10-2012, 08:43 AM
|
#150
|
Senior Member
Registered: Dec 2008
Posts: 1,191
|
I just updated my slackware-current mirror and installed the new packages.
When I open this page: http://javatester.org/version.html
I can see the correct Java version: "Java Version 1.7.0_07 from Oracle Corporation"
But when I open this page: http://www.java.com/en/download/help/testvm.xml
Firefox crashes completely as long as the directory "/usr/lib/java/jre/lib/fonts/fallback/" exists in my system, no matter if this directory is empty or not.
Not sure if the problem is in Firefox or in Java. I thought Firefox should not crash even if the Java plugin crashes. Am I mistaken?
|
|
|
All times are GMT -5. The time now is 06:58 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
|
|