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.
|
 |
|
10-16-2013, 02:56 PM
|
#46
|
Member
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 -current running i3
Posts: 503
Rep: 
|
My elinks stopped working:
$ elinks
elinks: error while loading shared libraries: libguile.so.17: cannot open shared object file: No such file or directory
|
|
|
10-16-2013, 03:06 PM
|
#47
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,375
Rep: 
|
Quote:
Originally Posted by rkfb
My elinks stopped working:
$ elinks
elinks: error while loading shared libraries: libguile.so.17: cannot open shared object file: No such file or directory
|
Code:
bash-4.2$ bzgrep libguile MANIFEST.bz2 |grep "so.*0$"
-rwxr-xr-x root/root 119224 2013-10-09 17:37 usr/lib64/libguilereadline-v-18.so.18.0.0
-rwxr-xr-x root/root 1604792 2013-10-09 17:37 usr/lib64/libguile-2.0.so.22.7.0
bash-4.2$
But elinks is not shipped in Slackware. If you got it from slackbuilds.org, bear in mind that slackbuilds there are provided for stable releases only.
PS if you don't need to write scripting plugins, you could just try removing this line:
--with-guile \
from the configure command in the SlackBuild.
Last edited by Didier Spaier; 10-16-2013 at 03:17 PM.
Reason: End of message heavily modified.
|
|
1 members found this post helpful.
|
10-16-2013, 03:22 PM
|
#48
|
Member
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 -current running i3
Posts: 503
Rep: 
|
Quote:
Originally Posted by Didier Spaier
Code:
bash-4.2$ bzgrep libguile MANIFEST.bz2 |grep "so.*0$"
-rwxr-xr-x root/root 119224 2013-10-09 17:37 usr/lib64/libguilereadline-v-18.so.18.0.0
-rwxr-xr-x root/root 1604792 2013-10-09 17:37 usr/lib64/libguile-2.0.so.22.7.0
bash-4.2$
But elinks is not shipped in Slackware. If you got it from slackbuilds.org, bear in mind that slackbuilds there are provided for stable releases only.
|
Ah, I didn't realise it wasn't provided, I'll sort it out then. I symlinked the installed libguile to the libguile I need and that seems fine. Just need libgc.so.1 next :-)
Sorry to appear a bit dim but I'm not too sure what that command is you posted, I get:
$ bzgrep libguile MANIFEST.bz2 |grep "so.*0$"
bzip2: Can't open input file MANIFEST.bz2: No such file or directory.
Is this to be run somewhere in particular?
|
|
|
10-16-2013, 03:25 PM
|
#49
|
Senior Member
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,859
|
efibootmgr
Gentlemen and Ladies,
I haven't actually tried this yet, as I'm still waiting for my new hardware to show up, but I am planning to use grub not elilo, which probably doesn't make a difference here. However the syntax for efibootmgr seems a bit different from what I've seen elsewhere. Why for example:
Quote:
efibootmgr -q -c -d /dev/sdb -p 1 -l "\EFI\Slackware\elilo.efi" -L slack2
|
rather than
Code:
efibootmgr -q -c -d /dev/sdb -p 1 -L 'Slackware' -l \\EFI\\slackware\\grubx64.efi
... other than the fact that you've tested the first one 
Last edited by mostlyharmless; 10-16-2013 at 03:37 PM.
|
|
|
10-16-2013, 03:27 PM
|
#50
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,375
Rep: 
|
Quote:
Originally Posted by rkfb
Sorry to appear a bit dim but I'm not too sure what that command is you posted, I get:
$ bzgrep libguile MANIFEST.bz2 |grep "so.*0$"
bzip2: Can't open input file MANIFEST.bz2: No such file or directory.
Is this to be run somewhere in particular?
|
Sorry, I should have stated that this command should be run in the /slackware or /slackware64 directory of a Slakware{,64}-current tree (I ran it in a local mirror of Slackware64-current). I assume that file MANIFEST.bz2 records all files that should be installed after a full Slackware installation (kind of a ls -l)
Last edited by Didier Spaier; 10-16-2013 at 03:36 PM.
|
|
|
10-16-2013, 03:32 PM
|
#51
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,375
Rep: 
|
Quote:
Originally Posted by mostlyharmless
Gentlemen,
I haven't actually tried this yet, as I'm still waiting for my new hardware to show up, but I am planning to use grub not elilo, which probably doesn't make a difference here. However the syntax for efibootmgr seems a bit different from what I've seen elsewhere. Why for example:
rather than
Code:
efibootmgr -q -c -d /dev/sdb -p 1 -L 'Slackware' -l \\EFI\\slackware\\grubx64.efi
... other than the fact that you've tested the first one 
|
I don't see other differences than doubled first backslash in your case and not using double quotes.
I assume that order of options doesn't matter (but didn't check).
Anyhow there is always a good way to be sure: try 
Last edited by Didier Spaier; 10-16-2013 at 03:33 PM.
|
|
|
10-16-2013, 03:34 PM
|
#52
|
Member
Registered: Jun 2002
Location: Coal Township PA
Distribution: Slackware64-15.0
Posts: 809
|
Quote:
Originally Posted by mostlyharmless
Gentlemen,
I haven't actually tried this yet, ... However the syntax for efibootmgr seems a bit different from what I've seen elsewhere. Why for example:
rather than
Code:
efibootmgr -q -c -d /dev/sdb -p 1 -L 'Slackware' -l \\EFI\\slackware\\grubx64.efi
... other than the fact that you've tested the first one 
|
The double backslash is escaping the second backslash. The quotes do the same thing. They keep the shell from seeing \ as a control. I think the double quotes are more self explanatory.
At least that is the way I see it.
John
Last edited by AlleyTrotter; 10-16-2013 at 03:39 PM.
Reason: comment on double quotes
|
|
|
10-16-2013, 03:35 PM
|
#53
|
Member
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 -current running i3
Posts: 503
Rep: 
|
Quote:
Originally Posted by Didier Spaier
Sorry, I should have stated that this command should be run in the /slackware or /slackware64 directory of a Slakware{,64}-current tree (I ran it in a local mirror of Slackware64-current.
|
Thanks...I'll fetch myself a tree.
|
|
|
10-16-2013, 05:45 PM
|
#55
|
Member
Registered: May 2007
Distribution: Slackware
Posts: 288
Rep: 
|
Quote:
Originally Posted by rkfb
|
Both those packages are included in RC1 and should be part of a full install.
gc-7.2d
libunistring-0.9.3
|
|
|
10-16-2013, 09:20 PM
|
#56
|
Senior Member
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,859
|
Ok, thanks AlleyTrotter, merci Didier
|
|
|
10-16-2013, 10:58 PM
|
#57
|
Member
Registered: Dec 2009
Posts: 358
Rep: 
|
memtest86+
There is a new version of memtest86+ that just came out last month, version 5.01
Could be included in the new release?
I recognizes newer cpu chips and even shows the cpu temperature of my fairly new AMD system.
|
|
|
10-16-2013, 11:56 PM
|
#58
|
LQ Addict
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,375
Rep: 
|
It seems that Mr Volkerding chose to please everyone 
Code:
efibootmgr -q -c -d $EFI_DEVICE -p $EFI_PARTITION -l "\\EFI\\Slackware\\elilo.efi" -L "Slackware"
|
|
|
10-17-2013, 09:50 AM
|
#59
|
Member
Registered: Dec 2005
Distribution: Slackware64 15.0 Multilib
Posts: 318
Rep:
|
Quote:
Originally Posted by comet.berkeley
There is a new version of memtest86+ that just came out last month, version 5.01
Could be included in the new release?
I recognizes newer cpu chips and even shows the cpu temperature of my fairly new AMD system.
|
Ask and ye shall receive:
Quote:
Thu Oct 17 05:21:47 UTC 2013
isolinux/initrd.img: Rebuilt.
kernels/memtest/memtest: Upgraded.
Upgraded to memtest86+-5.01.
usb-and-pxe-installers/usbboot.img: Rebuilt.
Upgraded to memtest86+-5.01.
|
|
|
|
10-17-2013, 12:28 PM
|
#60
|
Member
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 -current running i3
Posts: 503
Rep: 
|
Quote:
Originally Posted by rkfb
|
Sorry, it turns out it didn't work. still getting guile errors so removed and rebuilt with Didier Spaier's suggestion of removing guile from the slackbuild.
Works fine now.
|
|
|
All times are GMT -5. The time now is 09:31 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
|
|