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 08-07-2012, 11:35 PM   #1
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,949
Blog Entries: 8

Rep: Reputation: 203Reputation: 203Reputation: 203
mirror-slackware-current.sh produces 5.4 GB dvd iso?


Using Eric's script as such:
Code:
mirror-slackware-current.sh -i -o DVD
the resulting DVD iso is 5.4 GB according to KDE and I'm unable to boot the iso beyond the boot: prompt. Any ideas?

Output is:
Code:
root@dell:~# mirror-slackware-current.sh -i -o DVD
Changing to /home/ftp/pub/Linux/Slackware/slackware-current ...
Tue Aug  7 23:31:47 CDT 2012 [21879]: Creating DVD ISO image for slackware-current...
Tue Aug  7 23:35:16 CDT 2012 [21879]: DVD ISO created (exit code 0) ...
Tue Aug  7 23:35:17 CDT 2012 [21879]: Computing MD5 checksums of the ISO's (time consuming).
Tue Aug  7 23:36:27 CDT 2012 [21879]: Resulting ISO files:
-rw-r--r-- 1 root root 5753311232 Aug  7 23:35 /home/ftp/pub/Linux/Slackware/slackware-current-iso/slackware-current-install-dvd.iso
Tue Aug  7 23:36:27 CDT 2012 [21879]: Done!
 
Old 08-07-2012, 11:45 PM   #2
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
It's the /sources directory that make it as big as it is now.

Edit the mirror-slackware-current.sh to exclude the Slackware Sources and it'll fit onto a normal DVD+R disk. If you used a Dual-Layer DVD+R disk it might not burn correctly with the standard burning tools.

Slackware 14.0 is going to probably offer it's disk set with Disk1 as the Media Installation Disk and Disk2 as the Source Archive Disk.
 
1 members found this post helpful.
Old 08-07-2012, 11:53 PM   #3
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,949

Original Poster
Blog Entries: 8

Rep: Reputation: 203Reputation: 203Reputation: 203
Quote:
Originally Posted by ReaperX7 View Post
It's the /sources directory that make it as big as it is now.

Edit the mirror-slackware-current.sh to exclude the Slackware Sources and it'll fit onto a normal DVD+R disk. If you used a Dual-Layer DVD+R disk it might not burn correctly with the standard burning tools.

Slackware 14.0 is going to probably offer it's disk set with Disk1 as the Media Installation Disk and Disk2 as the Source Archive Disk.
Oh wow, I hadn't even noticed how big the mirror had gotten! It looks like 3GB of source. I wonder if the script will be getting upgraded anytime soon?
 
Old 08-07-2012, 11:59 PM   #4
volkerdi
Slackware Maintainer
 
Registered: Dec 2002
Location: Minnesota
Distribution: Slackware! :-)
Posts: 2,508

Rep: Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467Reputation: 8467
Quote:
Originally Posted by ReaperX7 View Post
Slackware 14.0 is going to probably offer it's disk set with Disk1 as the Media Installation Disk and Disk2 as the Source Archive Disk.
Likely it'll be 32-bit installation on one side, and x86_64 on the other, with half the source on each side (since /source is identical for x86 and x86_64... finally). We might go with 3 online DVDs though... haven't decided for sure yet.
 
7 members found this post helpful.
Old 08-08-2012, 02:52 AM   #5
Alien Bob
Slackware Contributor
 
Registered: Sep 2005
Location: Eindhoven, The Netherlands
Distribution: Slackware
Posts: 8,559

Rep: Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106Reputation: 8106
I've uploaded a new version of mirror-slackware-current.sh which excludes ./source and ./extra/source by default when building a DVD ISO file. This will give you a DVD ISO which is much less than 3 GB in size, so that it will again fit on a DVD medium.

Eric
 
4 members found this post helpful.
Old 08-08-2012, 06:22 AM   #6
chrisretusn
Senior Member
 
Registered: Dec 2005
Location: Philippines
Distribution: Slackware64-current
Posts: 2,972

Rep: Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551Reputation: 1551
I have my DVD size down to 1.9GB with the following in mirror-slackware-current.conf:

Code:
# If you want to exclude more from the DVD ISO than just the ./testing
# directory, you can add the directories to DVD_EXCLUDES.
# The pathnames must be local to the top level and must start with ./
DVD_EXCLUDES="-x ./extra/source -x ./source -x ./testing -x ./slackware*/kdei"
 
1 members found this post helpful.
Old 08-08-2012, 08:52 AM   #7
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Debian, Slackware, VMs
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
Quote:
Originally Posted by Alien Bob View Post
I've uploaded a new version of mirror-slackware-current.sh which excludes ./source and ./extra/source by default when building a DVD ISO file. This will give you a DVD ISO which is much less than 3 GB in size, so that it will again fit on a DVD medium.

Eric
Thanks Eric. I used your updated script to create a 2.3 GB slackware-current DVD.

Last edited by hitest; 09-08-2014 at 09:02 AM.
 
Old 08-08-2012, 03:04 PM   #8
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
Quote:
Originally Posted by volkerdi View Post
Likely it'll be 32-bit installation on one side, and x86_64 on the other, with half the source on each side (since /source is identical for x86 and x86_64... finally). We might go with 3 online DVDs though... haven't decided for sure yet.
Sounds like a good idea.

The online DVDs would be fickle and 3 disks would be ideal for free downloadable distributions. This way if you need a source disk yo can have one, but still have an installation disk.
 
Old 08-08-2012, 05:11 PM   #9
damgar
Senior Member
 
Registered: Sep 2009
Location: dallas, tx
Distribution: Slackware - current multilib/gsb Arch
Posts: 1,949

Original Poster
Blog Entries: 8

Rep: Reputation: 203Reputation: 203Reputation: 203
Quote:
Originally Posted by chrisretusn View Post
I have my DVD size down to 1.9GB with the following in mirror-slackware-current.conf:

Code:
# If you want to exclude more from the DVD ISO than just the ./testing
# directory, you can add the directories to DVD_EXCLUDES.
# The pathnames must be local to the top level and must start with ./
DVD_EXCLUDES="-x ./extra/source -x ./source -x ./testing -x ./slackware*/kdei"
Thanks for that, I was screwing the syntax up. And thanks to Eric for updating the default script.
 
  


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
Used mirror-slackware-current.sh in Ubuntu, are iso's sposed to be -600mb? linus72 Slackware 7 08-30-2009 10:44 AM
mirror-slackware-current fails to create iso's BCarey Slackware 5 08-15-2009 09:42 AM
iso image produces bum dvd mk27 Linux - General 5 12-16-2008 03:02 PM
Where to Download an i386 DVD installer -.iso image- for Slackware -Current Jags_FL Slackware 7 02-21-2008 10:59 AM
Is there a New Zealand DVD ISO mirror site? Simon Bridge Fedora 2 06-11-2005 04:04 AM

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

All times are GMT -5. The time now is 08:54 AM.

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