LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Slackware (https://www.linuxquestions.org/questions/slackware-14/)
-   -   Slackware -current ISO's 5.3 gigs? (https://www.linuxquestions.org/questions/slackware-14/slackware-current-isos-5-3-gigs-4175411983/)

Alien Bob 06-19-2012 02:07 PM

Quote:

Originally Posted by onebuck (Post 4706102)
Hi,


I know. A note to Alien_Bob about the minimum ISO for '-current' ISO has been sent. The original links are no longer valid. Hopefully I can get the corrected links.

An updated version of the script introduces a new variable. I use it to trim down my DVD ISO to below 2.4 GB again.
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 ./testing -x ./pasture -x ./source -x ./extra/source"

Eric

chrisretusn 06-19-2012 11:26 PM

Thanks Eric, I was using a similar method, in my case made a quick and simple modification to your script.

Code:

  mkisofs -o ${SLACKRELEASE}-install-dvd.iso \\
    -R -J -V "Slackware-${RELEASE} DVD" \\
    -hide-rr-moved -hide-joliet-trans-tbl \\
    -v -d -N -no-emul-boot -boot-load-size ${BOOTLOADSIZE} -boot-info-table \\
    -x ./testing \\
    -x ./source \\
    -x ./${PKGMAIN}/kdei \\
    -sort isolinux/iso.sort \\
    -b isolinux/isolinux.bin \\
    -c isolinux/isolinux.boot \\
    -preparer "Slackware-${RELEASE} build for ${ARCH} by ${BUILDER}" \\
    -publisher "The Slackware Linux Project - http://www.slackware.com/" \\
    -A "Slackware-${RELEASE} DVD - build $DATE" .

Now I will just add those excludes to mirror-slackware-current.conf (Thanks for the idea to exclude ./extra/source, total forgot about that one.)

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"


ReaperX7 06-20-2012 08:38 PM

Quote:

Originally Posted by Alien Bob (Post 4707127)
An updated version of the script introduces a new variable. I use it to trim down my DVD ISO to below 2.4 GB again.
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 ./testing -x ./pasture -x ./source -x ./extra/source"

Eric

:hattip:
Thanks a bunch Eric


All times are GMT -5. The time now is 02:28 AM.