LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
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 10-16-2013, 02:56 PM   #46
rkfb
Member
 
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 15.0 running i3
Posts: 494

Rep: Reputation: 174Reputation: 174

My elinks stopped working:

$ elinks
elinks: error while loading shared libraries: libguile.so.17: cannot open shared object file: No such file or directory
 
Old 10-16-2013, 03:06 PM   #47
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Quote:
Originally Posted by rkfb View Post
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.
Old 10-16-2013, 03:22 PM   #48
rkfb
Member
 
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 15.0 running i3
Posts: 494

Rep: Reputation: 174Reputation: 174
Quote:
Originally Posted by Didier Spaier View Post
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?
 
Old 10-16-2013, 03:25 PM   #49
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,851
Blog Entries: 14

Rep: Reputation: 284Reputation: 284Reputation: 284
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.
 
Old 10-16-2013, 03:27 PM   #50
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Quote:
Originally Posted by rkfb View Post
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.
 
Old 10-16-2013, 03:32 PM   #51
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
Quote:
Originally Posted by mostlyharmless View Post
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.
 
Old 10-16-2013, 03:34 PM   #52
AlleyTrotter
Member
 
Registered: Jun 2002
Location: Coal Township PA
Distribution: Slackware64-15.0
Posts: 783

Rep: Reputation: 479Reputation: 479Reputation: 479Reputation: 479Reputation: 479
Quote:
Originally Posted by mostlyharmless View Post
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
 
Old 10-16-2013, 03:35 PM   #53
rkfb
Member
 
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 15.0 running i3
Posts: 494

Rep: Reputation: 174Reputation: 174
Quote:
Originally Posted by Didier Spaier View Post
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.
 
Old 10-16-2013, 04:22 PM   #54
rkfb
Member
 
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 15.0 running i3
Posts: 494

Rep: Reputation: 174Reputation: 174
Solved my elinks problem:

# cd /usr/lib
# ln -s libguile-2.0.so.22.7.0 libguile.so.17

Install gc:
http://slackbuilds.org/repository/14.0/development/gc/

Install libunistring:
http://slackware.org.uk/slacky/slack...istring/0.9.3/

That's it...

hope it helps someone.
 
Old 10-16-2013, 05:45 PM   #55
saulgoode
Member
 
Registered: May 2007
Distribution: Slackware
Posts: 288

Rep: Reputation: 155Reputation: 155
Both those packages are included in RC1 and should be part of a full install.

gc-7.2d

libunistring-0.9.3
 
Old 10-16-2013, 09:20 PM   #56
mostlyharmless
Senior Member
 
Registered: Jan 2008
Distribution: Arch/Manjaro, might try Slackware again
Posts: 1,851
Blog Entries: 14

Rep: Reputation: 284Reputation: 284Reputation: 284
Ok, thanks AlleyTrotter, merci Didier
 
Old 10-16-2013, 10:58 PM   #57
aaazen
Member
 
Registered: Dec 2009
Posts: 358

Rep: Reputation: Disabled
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.
 
Old 10-16-2013, 11:56 PM   #58
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,057

Rep: Reputation: Disabled
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"
 
Old 10-17-2013, 09:50 AM   #59
marnold
Member
 
Registered: Dec 2005
Distribution: Slackware64 15.0 Multilib
Posts: 313

Rep: Reputation: 52
Quote:
Originally Posted by comet.berkeley View Post
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.
 
Old 10-17-2013, 12:28 PM   #60
rkfb
Member
 
Registered: Oct 2003
Location: Guildford, England
Distribution: Slackware64 15.0 running i3
Posts: 494

Rep: Reputation: 174Reputation: 174
Quote:
Originally Posted by rkfb View Post
Solved my elinks problem:

# cd /usr/lib
# ln -s libguile-2.0.so.22.7.0 libguile.so.17

Install gc:
http://slackbuilds.org/repository/14.0/development/gc/

Install libunistring:
http://slackware.org.uk/slacky/slack...istring/0.9.3/

That's it...

hope it helps someone.
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.
 
  


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
Please test Slackware 14 release candidate 4 Didier Spaier Slackware 1 08-31-2012 02:59 PM
LXer: First release candidate for Slackware 14 LXer Syndicated Linux News 0 08-13-2012 11:10 AM
Slackware 13, Release Candidate 2. cwizardone Slackware 17 08-07-2009 01:33 AM
LXer: Slackware 12.0 release candidate 1 is out. LXer Syndicated Linux News 0 06-16-2007 11:31 AM
LXer: Slackware 11.0 release candidate 4 LXer Syndicated Linux News 0 09-03-2006 08:54 AM

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

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