LinuxQuestions.org
Share your knowledge at the LQ Wiki.
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 09-23-2014, 02:59 PM   #16
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Original Poster
Rep: Reputation: Disabled

Not really a bug, but looking at the root of Slackware File Trees as well as that of installation DVD ISOs, one can see that the file FAQ.TXT is included in the 32-bit editions but not in the 64-bit ones.

I'm not requesting a "fix" (this file is slightly outdated anyway), just wondering why this difference exists.

Admittedly I could have noticed that earlier, as this has been the case since the first release of a 64-bit edition, i.e. Slackware64 13.0. My excuse is that I just came across that difference looking at what files I should ship in the "full" (read: including the Slackware packages) Slint installers.

PS Maybe we could organize next year, instead of (or in addition to) the Easter Eggs Hunt, an Old Slackware Bugs Hunt, whose first prize would be, if he agrees, a Slackware DVD autographed by Patrick J. Volkerding.

Of course we would need a Jury and Regulations for such a contest.

Last edited by Didier Spaier; 09-23-2014 at 03:11 PM.
 
Old 09-27-2014, 04:46 PM   #17
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Original Poster
Rep: Reputation: Disabled
One very tiny detail: in /isolinux/README.TXT we are advised to use the following command to process an ISO image, to make it bootable when written to an USB stick:
Code:
isohybrid /tmp/slackware-dvd.iso # for slackware-current
isohybrid -u /tmp/slackware-dvd.iso # for slackware64-current so that the image be EFI bootable
But some BIOSes aren't able to boot a device with more than 1024 cylinders. So the following command would be safer for instance:

Code:
isohybrid -s <X> -h <Y> /tmp/slackware-dvd.iso
where X is the number of default geometry sectors and Y the number of default geometry heads, computed with a sector length of 512 bytes, in such a way that:
Code:
S / 512 / X / Y < 1024
S being the size in bytes of the ISO image.

Knowing that the maximum number of sectors is 63, X could be set to 63. Then Y should be greater than:
S / 63 * 512 *1024
or:
S / 33030144

As an example,the size of slackware-14.1-install-dvd.iso is 2502936576 bytes and (roughly) 2502936576 / 33030144 = 75.7, so to be safe one could write:
Code:
isohybrid -s 63 -h 76 /tmp/slackware-14.1-install-dvd.iso
Not sure it's worthwhile to mention that in README.TXT, but then with a less convoluted explanation

Last edited by Didier Spaier; 09-28-2014 at 01:03 PM. Reason: s/S should be greater than:/Y should be greater than:/
 
Old 09-27-2014, 04:56 PM   #18
Smokey_justme
Member
 
Registered: Oct 2009
Distribution: Slackware
Posts: 534

Rep: Reputation: 203Reputation: 203Reputation: 203
Quote:
Originally Posted by ReaperX7 View Post
One issue I have seen firsthand is that if you attempt to install /(root) onto a BtrFS partition, the install will crash usually around trying to install /d. All other file systems install without issue. Only BtrFS crashes. I tried this with a -Current ISO using AlienBOB's script, and it failed using even the current kernels, tools, etc.
This happened to me, but just once and I didn't pay any attention to it.... Redoing the setup worked (for some reason)... Just be careful, neither Lilo nor Grub can be installed without a separate /boot (on a different file system) on btrfs (at least it didn't work for me when I tried it), which in turn will require a generic kernel... And busybox's findfs (used in the init script of initrd) won't find a partition by UUID for btrfs (which is the default way to install in case you want to go with grub)..

Last edited by Smokey_justme; 09-27-2014 at 04:58 PM.
 
Old 10-11-2014, 09:35 PM   #19
BeaStiE35
Member
 
Registered: Oct 2014
Distribution: distrohopper
Posts: 76

Rep: Reputation: 3
Quote:
Originally Posted by lems View Post
I run KDE 4.14.0
WHERE did you get that???
 
Old 10-12-2014, 06:14 AM   #20
slackass
Member
 
Registered: Apr 2006
Location: SE Texas
Distribution: Slack64-15.0
Posts: 910

Rep: Reputation: 90
Quote:
Originally Posted by BeaStiE35 View Post
WHERE did you get that???
Perhaps here:
http://slackware.org.uk/people/alien...urrent/4.14.1/


ediot:
Scratch that, I read something wrong.

Last edited by slackass; 10-13-2014 at 05:56 AM. Reason: Oh Magu, you've done it again..
 
Old 10-12-2014, 06:28 AM   #21
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Original Poster
Rep: Reputation: Disabled
I don't know if there is a difference between KDE 14.14.0 and 14.14.1 on that respect, but as anyway none of them is shipped in Slackware-current at time of writing, maybe lem's report would better be sent to Alien Bob, unless that behavior be reproducible using a desktop or windows manager shipped in Slackware-current.

Last edited by Didier Spaier; 10-12-2014 at 06:30 AM.
 
Old 10-12-2014, 08:31 AM   #22
v8dave
LQ Newbie
 
Registered: Dec 2004
Location: UK, London
Distribution: Slackware-14.1 and Slackware64-14.2rc1
Posts: 25

Rep: Reputation: 2
Found a problem with dosfstools-3.0.22-x64_64-1
When you run fsck.fat and ask for it to prompt before repair it appears to do nothing.
When run in auto mode it functions as expected.

I recently had the dirty bit get set on my EFI/BOOT partition and efibootmgr quite correctly would not write to bios nvram with details of a 'bad' boot location.
 
Old 10-12-2014, 05:03 PM   #23
Didier Spaier
LQ Addict
 
Registered: Nov 2008
Location: Paris, France
Distribution: Slint64-15.0
Posts: 11,064

Original Poster
Rep: Reputation: Disabled
Maybe build a package for dosfstools-3.0.26 available here and see if you observe the same behavior?

PS And maybe you could adopt it as it's orphaned?

PPS There seems to be a fork, but for OSX.

Last edited by Didier Spaier; 10-12-2014 at 05:09 PM.
 
  


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
Slackware ARM (current) epic mistake: the current Android kernels are kicked out! Darth Vader Slackware 16 08-25-2013 04:36 PM
kmail quits with akonadi server self-test errors on slackware -current chytraeus Slackware 3 05-28-2011 11:59 AM
[SOLVED] Script to build always a current ISO image of Slackware (slackware-current) robertjinx Slackware 2 12-09-2010 02:00 AM

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

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