0% found this document useful (0 votes)
36 views

Minor Project: Submitted By:-SHARAD KUMAR (4 Yr, CSE) Scholar No - 07/01/82 Submitted To

This document summarizes a minor project on creating a customized Linux distribution called ECBlinux aimed at new Linux users. It includes 12 sections that describe setting up the distribution by configuring packages and settings through various shell scripts. The scripts apply Gnome desktop configuration changes, modify the software sources, add or remove packages, and copy additional resources to customize the live USB/CD experience for new users.

Uploaded by

opensharad
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
36 views

Minor Project: Submitted By:-SHARAD KUMAR (4 Yr, CSE) Scholar No - 07/01/82 Submitted To

This document summarizes a minor project on creating a customized Linux distribution called ECBlinux aimed at new Linux users. It includes 12 sections that describe setting up the distribution by configuring packages and settings through various shell scripts. The scripts apply Gnome desktop configuration changes, modify the software sources, add or remove packages, and copy additional resources to customize the live USB/CD experience for new users.

Uploaded by

opensharad
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 44

A

Minor Project
On

ECBlinux an OS for Newbies

Submitted for the partial fulfillment of


Bachelor of Technology

IN COMPUTER SCIENCE

2010-11

Submitted By:- SHARAD KUMAR


(4thyr , CSE)
Scholar No – 07/01/82

Submitted To:-

Project name Linux OS for Newbies [ ECBlinux ]

Project Guide Mr. RAHUL BHUSHAN RANGA

Presenting Author SHARAD KUMAR (CSE ,final year )

E-mail [email protected]

1
CONTENTS

1. Introduction------------------------------------------------------ 3

2. Requirements Check-------------------------------------------- 4

3. Setup.sh----------------------------------------------------------- 5

4. Copyresources.sh------------------------------------------------ 6

5. Apply_gconf_settings.sh--------------------------------------- 7-8

6. Apply_themes_changes.sh------------------------------------- 8-11

7. Lsbrelease-------------------------------------------------------- 12

8. Modify_sourcelist.sh-------------------------------------------- 12-13

9. Add_or_remove_packages.sh---------------------------------- 13-16

10. Process Log------------------------------------------------------ 16-28

11. How To ---------------------------------------------------------- 29-44

2
Introduction:

There are always many ways to accomplish a single task.The same can be said about
Linux distributions. A great many have existed over the years. Some still exist, some
have morphed into something else, yet others have been relegated to our memories.
They all do things differently to suit the needs of their target audience. Because so
many different ways to accomplish the same end goal exist, I began to realize I no
longer had to be limited by any one implementation. Prior to discovering Linux, we
simply put up with issues in other Operating Systems as you had no choice. It was
what it was, whether you liked it or not. With Linux, the concept of choice began to
emerge. If you didn't like something, you were free, even encouraged, to change it.
I tried a number of distributions and could not decide on any one. They were great
systems in their own right. It wasn't a matter of right and wrong anymore. It had be-
come a matter of personal taste. With all that choice available, it became apparent
that there would not be a single system that would be perfect for me. So I set out to
create my own Linux system that would fully conform to my personal preferences. To
truly make it my own system, I resolved to compile everything from source code
instead of using pre-compiled binary packages. This “perfect” Linux system would
have the strengths of various systems without their perceived weaknesses.

Requirements :-
• Bash-2.05a (/bin/sh should be a symbolic or hard link to bash)
• Binutils-2.12 (Versions greater than 2.20 are not recommended )
• Bison-1.875 (/usr/bin/yacc should be a link to bison or small script that
executes bison)
• Bzip2-1.0.2
• Coreutils-5.0 (or Sh-Utils-2.0, Textutils-2.0, and Fileutils-4.1)
• Diffutils-2.8
• Findutils-4.1.20
• Gawk-3.0 (/usr/bin/awk should be a link to gawk)
• Gcc-3.0.1 (Versions greater than 4.4.3 are not recommended )
• Glibc-2.2.5 (Versions greater than 2.11.1 are not recommended)
• Grep-2.5
• Gzip-1.2.4
• Linux Kernel-2.6.18 (having been compiled with GCC-3.0 or greater)

3
To check above requirements :-
#!/bin/bash
export LC_ALL=C
# Simple script to list version numbers of critical development tools
bash --version | head -n1 | cut -d" " -f2-4
echo "/bin/sh -> `readlink -f /bin/sh`"
echo -n "Binutils: "; ld --version | head -n1 | cut -d" " -f3-
bison --version | head -n1
if [ -e /usr/bin/yacc ];
then echo "/usr/bin/yacc -> `readlink -f /usr/bin/yacc`";
else echo "yacc not found"; fi
bzip2 --version 2>&1 < /dev/null | head -n1 | cut -d" " -f1,6-
echo -n "Coreutils: ";
chown --version | head -n1 | cut -d")" -f2
diff --version | head -n1
find --version | head -n1
gawk --version | head -n1
if [ -e /usr/bin/awk ];
then echo "/usr/bin/awk -> `readlink -f /usr/bin/awk`";
else echo "awk not found"; fi
gcc --version | head -n1
/lib/libc.so.6 | head -n1 | cut -d"," -f1
grep --version | head -n1
gzip --version | head -n1
cat /proc/version
m4 --version | head -n1
make --version | head -n1
patch --version | head -n1
echo Perl `perl -V:version`
sed --version | head -n1
tar --version | head -n1
echo "Texinfo: `makeinfo --version | head -n1`"
echo 'main(){}' > dummy.c && gcc -o dummy dummy.c
if [ -x dummy ];
then echo "Compilation OK";
else echo "Compilation failed"; fi
rm -f dummy.c dummy

4
SETUP.sh

#!/bin/bash

export HOME=/etc/skel

./Apply_Gconf_Setting.sh

./"Apply Theme Changes.sh"

############################################

./Modify_SourceList.sh

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys AC1F27D74EA7974E

apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A8A515F046D7E7CF

apt-get update

./Add_Remove_Packages.sh

## install wine

################### revert back source.lsit ################################

rm /etc/apt/sources.list

cp ./sources.list.backup /etc/apt/sources.list

######################################################################

exit 0

CopyResources.sh

########## changes Splash Images of Live CD #########

sudo cp images/splash.pcx ~/tmp/remaster-iso/isolinux/splash.pcx

sudo cp images/splash.png ~/tmp/remaster-iso/isolinux/splash.png

########## changes text of grub of Live CD #########

sudo cp images/text.cfg ~/tmp/remaster-iso/isolinux/text.cfg

sudo cp unetbootin-windows-442.exe ~/tmp/remaster-iso/

5
sudo cp ./"How to create Live USB.pdf" ~/tmp/remaster-iso/

sudo cp ./"Installation Guide.pdf" ~/tmp/remaster-iso/

########## Changes String in Wubi ####################

sudo cp images/autorun.inf ~/tmp/remaster-iso/autorun.inf

#######################################################

#### Copy resource to tmp direcory

#TODO -- this will copy your SVN directory too so you need to modify these commands BUt tmp
folder will be deleted IMO so no need to worry much.

cp -R Ebooks ~/tmp/remaster-root/tmp

cp -R images ~/tmp/remaster-root/tmp

cp -R nautilus-scripts ~/tmp/remaster-root/tmp

cp -R Templates ~/tmp/remaster-root/tmp

cp -R slides ~/tmp/remaster-root/tmp

cp *.sh ~/tmp/remaster-root/tmp

cp bashrc ~/tmp/remaster-root/tmp

mkdir -p ~/tmp/remaster-root/tmp/gedit-extra

cp -v gedit-extra/compile ~/tmp/remaster-root/tmp/gedit-extra

cp -v gedit-extra/run ~/tmp/remaster-root/tmp/gedit-extra

###TODO 64 bit download and add, use if conditions

cp lsb-release ~/tmp/remaster-root/tmp

cp meiga_0.3.3-1_i386.deb ~/tmp/remaster-root/tmp

cp google-chrome-beta_current_i386.deb ~/tmp/remaster-root/tmp

cp addakirad.deb ~/tmp/remaster-root/tmp

6
Apply_Gconf_Setting.sh

#!/bin/bash

### Putting icons on Desktop

gconftool-2 --type boolean --set /apps/nautilus/desktop/computer_icon_visible true

gconftool-2 --type boolean --set /apps/nautilus/desktop/home_icon_visible true

gconftool-2 --type boolean --set /apps/nautilus/desktop/network_icon_visible true

gconftool-2 --type boolean --set /apps/nautilus/desktop/trash_icon_visible true

gconftool-2 --type boolean --set /apps/nautilus/desktop/volumes_visible true

#### Nautilus Browser Mode

gconftool-2 --type boolean --set /apps/nautilus/preferences/always_use_browser true

#### Changing name of icons

gconftool-2 --type string --set /apps/nautilus/desktop/trash_icon_name 'Recycle Bin'

gconftool-2 --type string --set /apps/nautilus/desktop/network_icon_name 'ECB Network Places'

gconftool-2 --type string --set /apps/nautilus/desktop/computer_icon_name 'ECB Computer'

gconftool-2 --type string --set /apps/nautilus/desktop/home_icon_name 'ECB Home Documents'

#### Changing Wallpaper


gconftool-2 --type string --set /desktop/gnome/background/picture_filename
/usr/share/backgrounds/ecblinux-wallpaper.png

#### Disabling Update popup


gconftool-2 --type boolean --set /apps/update-notifier/auto_launch false

#### Gedit Settings

gconftool-2 --type boolean --set /apps/gedit-2/preferences/editor/current_line/highlight_current_line


true

gconftool-2 --type boolean --set /apps/gedit-


2/preferences/editor/line_numbers/display_line_numbers true

gconftool-2 --type boolean --set /apps/gedit-2/preferences/syntax_highlighting/enable true

7
#### Making Single Workspace

gconftool-2 --type int --set /apps/metacity/general/num_workspaces 1

#### Maximum Scrolling in Terminal

gconftool-2 --type int --set /apps/gnome-terminal/profiles/Default/scrollback_lines 100000

##### Ctrl + Alt + Bksp ################

gconftool-2 --type list --list-type string --set /desktop/gnome/peripherals/keyboard/kbd/options


'[terminate terminate:ctrl_alt_bksp]'

#### Set ScreenSaver #################

gconftool-2 --type list --list-type string --set /apps/gnome-screensaver/themes '[screensavers-


personal-slideshow]'

###### Change Logo of Login window to distributor Logo ######################

sudo -u gdm gconftool-2 --set /apps/gdm/simple-greeter/logo_icon_name --type string "distributor-


logo"

####### Fixing the Lucid Button Icons ########

gconftool-2 --set /apps/metacity/general/button_layout --type string menu:minimize,maximize,close

exit 0

Apply Theme Changes.sh

#!/bin/bash

########## Set distributor Logo ###########################################

cp images/start-here.svg /usr/share/icons/Humanity/places/16/start-here.svg

cp images/start-here.svg /usr/share/icons/Humanity/places/22/start-here.svg

cp images/start-here.svg /usr/share/icons/Humanity/places/24/start-here.svg

cp images/start-here.svg /usr/share/icons/Humanity/places/32/start-here.svg

cp images/start-here.svg /usr/share/icons/Humanity/places/48/start-here.svg

8
cp images/start-here.svg /usr/share/icons/Humanity/places/64/start-here.svg
########## Set Splash Screen + GDM Login Back Ground ##########################

rm /usr/share/images/xsplash/*.jpg

cp images/bg_1024x768.jpg /usr/share/images/xsplash/

cp images/bg_800x600.jpg /usr/share/images/xsplash/

cp images/bg_1280x1024.jpg /usr/share/images/xsplash/

cp images/bg_1440x900.jpg /usr/share/images/xsplash/

cp images/bg_1680x1050.jpg /usr/share/images/xsplash/

cp images/bg_1920x1200.jpg /usr/share/images/xsplash/

cp images/bg_2560x1600.jpg /usr/share/images/xsplash/

cp images/logo_xtra_large.png /usr/share/images/xsplash/

cp images/logo_large.png /usr/share/images/xsplash/

cp images/logo_small.png /usr/share/images/xsplash/

cp images/logo_medium.png /usr/share/images/xsplash/

######## Set Grub Screen ###############################

cp images/schoolos-grub-image.tga /boot/grub/

cp images/05_debian_theme /etc/grub.d/05_debian_theme

cp images/grub /etc/default/grub

######### Changes Ubuntu Header ###########################

cp images/header.png /usr/share/ubuntu-docs/libs/img/

cp images/headerlogo.png /usr/share/ubuntu-docs/libs/img/

cp images/ubuntuheader.png /usr/share/ubuntu-docs/libs/img/

cp images/headerlogo1.png /usr/share/ubuntu-artwork/img/headerlogo.png

########## Set Wallpaper ################################################

cp images/schoolos-wallpaper.png /usr/share/backgrounds/schoolos-wallpaper.png

9
########## Copy Templates ############################################

cp -R ./Templates /etc/skel/

####### gconf #########################################################

cp -R /root/.gconf /etc/skel/

########## Copy Scripts ############################################

mkdir -p /etc/skel/.gnome2/nautilus-scripts

cp -Rv ./nautilus-scripts/* /etc/skel/.gnome2/nautilus-scripts/

######### Set LSB release #############################################

cp lsb-release /etc/lsb-release

########## copy Remington Layout ############################################

cp images/hi-remington.mim /usr/share/m17n/hi-remington.mim

########### Copy Bashrc file ##############################################

rm -v /etc/skel/.bashrc

cp -v bashrc /etc/skel/.bashrc

########### Copy Ebooks #####################################################

echo "=========Copying Ebooks ======="

cp -R ./Ebooks /usr/share/

mkdir -p /etc/skel/Desktop

ln -s /usr/share/Ebooks /etc/skel/Desktop/

cp images/Ebooklogo.png /usr/share/images/

#TODO - This command is not working.

gvfs-set-attribute /etc/skel/Desktop/Ebooks metadata::custom-icon


file:///usr/share/images/Ebooklogo.png

10
##### remove Example Folder from Desktop

rm -v /etc/skel/examples.desktop

####### Creating Desktop Launcher #########

cp /usr/share/applications/gnomecc.desktop /etc/skel/Desktop/

cp /usr/share/applications/firefox.desktop /etc/skel/Desktop/

cp /usr/share/applications/openoffice.org-impress.desktop /etc/skel/Desktop/

cp /usr/share/applications/openoffice.org-writer.desktop /etc/skel/Desktop/

cp /usr/share/applications/gnome-system-monitor.desktop /etc/skel/Desktop/

########## Adding Gedit modification ###############

mkdir -p /etc/skel/.gnome2/gedit/tools

cp -v /tmp/gedit-extra/compile /etc/skel/.gnome2/gedit/tools

cp -v /gedit-extra/run /etc/skel/.gnome2/gedit/tools

######## link Images ###########

mkdir -p /etc/skel/Pictures

ln -s /usr/share/backgrounds /etc/skel/Pictures/

########## Apply modified SlidesShow ######################################


###copy new icons

cp -R ./slides/icons/*.png /usr/share/ubiquity-slideshow/slides/icons/

###copy new html files

cp -R ./slides/*.html /usr/share/ubiquity-slideshow/slides/

######## copy Ubiquity #########


cp images/ubiquity-gtkui.desktop /usr/share/applications/

exit 0

11
lsb-release

DISTRIB_ID=ECBlinux

DISTRIB_RELEASE=1.0

DISTRIB_CODENAME=karmic

DISTRIB_DESCRIPTION="ECBlinux 1.0"

Modify_SourceList.sh

#!/bin/bash

##### No need to run sudo, are you are copying into tmp

cp /etc/apt/sources.list ./sources.list.backup

### for cinderalla

dpkg -i addakirad.deb

#wget -q http://repository.akirad.net/dists/akirad.key -O- | sudo apt-key add -

#sudo sh -c 'echo "deb http://repository.akirad.net akirad-lucid main" >> /etc/apt/sources.list'

if [ "$1" == "lucid"]

then

sudo sh -c 'echo "deb http://ppa.launchpad.net/scratch/ppa/ubuntu lucid main" >>


/etc/apt/sources.list'

sudo sh -c 'echo "deb-src http://ppa.launchpad.net/scratch/ppa/ubuntu lucid main" >>


/etc/apt/sources.list'

sudo sh -c 'echo "deb http://127.0.0.1/ubuntu/ lucid main universe multiverse restricted" >>
/etc/apt/sources.list'

sudo sh -c 'echo "deb http://127.0.0.1/ubuntu/ lucid-security main universe multiverse restricted"


>> /etc/apt/sources.list'

sudo sh -c 'echo "deb http://127.0.0.1/ubuntu/ lucid-updates main universe multiverse restricted"


>> /etc/apt/sources.list'

else

12
##### for firefox 3.6 - this is not working

##add-apt-repository ppa:mozillateam/firefox-stable

sudo sh -c 'echo "deb http://ppa.launchpad.net/scratch/ppa/ubuntu karmic main" >>


/etc/apt/sources.list'

sudo sh -c 'echo "deb-src http://ppa.launchpad.net/scratch/ppa/ubuntu karmic main" >>


/etc/apt/sources.list'

sudo sh -c 'echo "deb http://127.0.0.1/ubuntu/ karmic main universe multiverse restricted" >>
/etc/apt/sources.list'

sudo sh -c 'echo "deb http://127.0.0.1/ubuntu/ karmic-security main universe multiverse restricted"


>> /etc/apt/sources.list'

sudo sh -c 'echo "deb http://127.0.0.1/ubuntu/ karmic-updates main universe multiverse restricted"


>> /etc/apt/sources.list'

fi

exit 0

Add_Remove_Packages.sh

#!/bin/bash

##### remove packages ###

apt-get -y remove libmono* evolution brasero totem totem-common empathy mono-common

### Copy archive directory into /var/cache/apt

apt-get install -y grsync supertux okular okular-extra-backends freemind vym gnochm unrar-free
gnote rednotebook gnucash scribus scribus-template kile compizconfig-settings-manager spider
gparted gdesklets blueman build-essential openssh-server libapache2-mod-auth-mysql mysql-admin
byzanz pdfjam pdfedit pdftk pdfshuffler unoconv gcu-bin bluefish kompozer nmap freeglut3-dev
libglu1-mesa-dev wvdial gnome-schedule vrms

####### coding Related #############

apt-get install -y subversion-tools netbeans codeblocks codeblocks-dbg codeblocks-contrib


subversion gitk commit-tool diffuse octave3.2

####### Internet Related Software ############33

apt-get install -y xchat ekiga filezilla gftp d4x mozilla-firefox-adblock mozilla-thunderbird


lightning-extension

13
######## Image Sound and media Related Applications #######

apt-get install -y inkscape gthumb vlc mozilla-plugin-vlc winff ffmpeg ffmpeg2theora oggconvert
audacity cheese gtk-recordmydesktop recordmydesktop vorbis-tools dir2ogg oggfwd oggz-tools
ogmtools miro pitivi moovida

######## Adding Samba sharing #######

apt-get install -y samba samba-common samba-common-bin smbclient smbfs samba-tools system-


config-samba

######## gedit ######################

apt-get install -y gedit gedit-plugins gedit-latex-plugin

######### Pidgin Addons #############

apt-get install -y \

pidgin \

pidgin-facebookchat \

pidgin-plugin-pack \

pidgin-privacy-please \

pidgin-themes \

pidgin-guifications \

pidgin-encryption \

pidgin-musictracker

######## Nautilus Addons ###############

apt-get install -y \

nautilus-actions \

nautilus-cd-burner \

nautilus-clamscan \

nautilus-filename-repairer \

nautilus-gksu \

14
nautilus-image-converter \

nautilus-open-terminal \

nautilus-script-audio-convert \

nautilus-script-collection-svn

nautilus-script-manager \

nautilus-share \

nautilus-wallpaper \

ooo-thumbnailer \

phatch-nautilus \

####### Educational Software ###########

apt-get install -y tuxpaint ktouch gobby stardict stardict-gnome stardict-tools k3b kalgebra kmplot
kwordquiz kanagram kig kalzium plotdrop drgeo dia celestia celestia-gnome stellarium stellarium-
data ghemical blender octave-linear-algebra scilab gambas2 scratch kturtle bkchem

############## Installating Java ##########

#TODO we need to check its license.Or add openjdk

apt-get install -y sun-java6-plugin sun-java6-jre

## apt-get install firefox-3.6 cinelerracv

##TODO LTSP server will be needed for SchoolOS server

# apt-get install ltsp-server-standalone

tasksel install lamp-server

#### Installting Google Chrome

dpkg -i google-chrome-beta_current_i386.deb

dpkg -i meiga_0.3.3-1_i386.deb

############# Install Wine ???? wihtout ttf-mscorefonts #############

### TODO When you try to install wine, it try to install mscorefonts etc which are non-free

15
##### Other Utilities ######

### fslint-gui delete the duplicate files

apt-get install -y fslint-gui

exit 0

PROCESS LOG

$sudo uck-remaster-clean

[~]

$sudo uck-remaster-unpack-iso Ubuntu\ 9.iso

Mounting ISO image...

Unpacking ISO image...

Unmounting ISO image...

[~]

$sudo uck-remaster-unpack-rootfs

Mounting SquashFS image...


Unpacking SquashFS image...

Unmounting SquashFS image...

[~]

$cd Desktop/Ubuntu/

[~/Desktop/Ubuntu]

$./CopyResources.sh

`gedit-extra/compile' -> `/home/mascarandes/tmp/remaster-root/tmp/gedit-extra/compile'

`gedit-extra/run' -> `/home/mascarandes/tmp/remaster-root/tmp/gedit-extra/run'

[~/Desktop/Ubuntu]

$sudo uck-remaster-chroot-rootfs
16
Copying resolv.conf...

Copying local apt cache, if available

Mounting X11 sockets directory to allow access from customization environment...

root@mascarandes-desktop:/# cd /tmp/

root@mascarandes-desktop:/tmp# ./Apply_Gconf_Setting.sh

root@mascarandes-desktop:/tmp# ./"Apply Theme Changes.sh"

cp: cannot stat `images/schoolos-wallpaper.png': No such file or directory

`./nautilus-scripts/Admin' -> `/etc/skel/.gnome2/nautilus-scripts/Admin'

`./nautilus-scripts/Admin/WhichPKG (RPM)' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/WhichPKG (RPM)'

`./nautilus-scripts/Admin/WhichPKG (Portage)' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/WhichPKG (Portage)'

`./nautilus-scripts/Admin/Update Package List' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/Update Package List'

`./nautilus-scripts/Admin/Apt' -> `/etc/skel/.gnome2/nautilus-scripts/Admin/Apt'

`./nautilus-scripts/Admin/WhichPKG (DPKG)' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/WhichPKG (DPKG)'

`./nautilus-scripts/Admin/Apt Cache' -> `/etc/skel/.gnome2/nautilus-scripts/Admin/Apt Cache'

`./nautilus-scripts/Files' -> `/etc/skel/.gnome2/nautilus-scripts/Files'

`./nautilus-scripts/Files/Send Shortcut To' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Send Shortcut


To'

`./nautilus-scripts/Files/Convert to Executable' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Convert


to Executable'

`./nautilus-scripts/Files/pdf' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf'

`./nautilus-scripts/Files/pdf/PDF Join' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/PDF Join'

`./nautilus-scripts/Files/pdf/PDF Shuffle' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/PDF


Shuffle'

`./nautilus-scripts/Files/pdf/Print' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/Print'

`./nautilus-scripts/Files/pdf/PDF info' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/PDF info'

17
`./nautilus-scripts/Files/Split File' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Split File'

`./nautilus-scripts/Files/Encrypt-Decrypt' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Encrypt-


Decrypt'

`./nautilus-scripts/Files/md5' -> `/etc/skel/.gnome2/nautilus-scripts/Files/md5'

`./nautilus-scripts/Files/md5/Check md5' -> `/etc/skel/.gnome2/nautilus-scripts/Files/md5/Check


md5'

`./nautilus-scripts/Files/md5/Check_md5_old' -> `/etc/skel/.gnome2/nautilus-


scripts/Files/md5/Check_md5_old'

`./nautilus-scripts/Files/md5/Create md5' -> `/etc/skel/.gnome2/nautilus-scripts/Files/md5/Create


md5'

`./nautilus-scripts/Files/Shredder' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Shredder'

`./nautilus-scripts/Files/CopyTo' -> `/etc/skel/.gnome2/nautilus-scripts/Files/CopyTo'

`./nautilus-scripts/Files/MoveTo' -> `/etc/skel/.gnome2/nautilus-scripts/Files/MoveTo'

`./nautilus-scripts/Files/Remove temp Files' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Remove


temp Files'

`./nautilus-scripts/Files/File Type' -> `/etc/skel/.gnome2/nautilus-scripts/Files/File Type'

`./nautilus-scripts/Files/Create Patch' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Create Patch'

`./nautilus-scripts/ISO Manager' -> `/etc/skel/.gnome2/nautilus-scripts/ISO Manager'

`./nautilus-scripts/ISO Manager/ISO unMount' -> `/etc/skel/.gnome2/nautilus-scripts/ISO


Manager/ISO unMount'

`./nautilus-scripts/ISO Manager/Make ISO' -> `/etc/skel/.gnome2/nautilus-scripts/ISO


Manager/Make ISO'

`./nautilus-scripts/ISO Manager/Make ISO/ISO X' -> `/etc/skel/.gnome2/nautilus-scripts/ISO


Manager/Make ISO/ISO X'

`./nautilus-scripts/ISO Manager/ISO Mount' -> `/etc/skel/.gnome2/nautilus-scripts/ISO


Manager/ISO Mount'

`./nautilus-scripts/Image Editor' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor'

`./nautilus-scripts/Image Editor/grigio' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/grigio'

`./nautilus-scripts/Image Editor/rotate +90' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/rotate +90'

`./nautilus-scripts/Image Editor/+contrast' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/


+contrast'
18
`./nautilus-scripts/Image Editor/flop' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/flop'

`./nautilus-scripts/Image Editor/-contrast' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/-


contrast'

`./nautilus-scripts/Image Editor/rotate -90' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/rotate


-90'

`./nautilus-scripts/Image Editor/flip' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/flip'

`./nautilus-scripts/Image Editor/gamma 1.4' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/gamma 1.4'

`./nautilus-scripts/Image Editor/trim' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/trim'

`./nautilus-scripts/Image Editor/Scale Image' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Scale Image'

`./nautilus-scripts/Image Editor/Scale Image/Scale Image To Sizes' -> `/etc/skel/.gnome2/nautilus-


scripts/Image Editor/Scale Image/Scale Image To Sizes'

`./nautilus-scripts/Image Editor/Scale Image/Scale Image' -> `/etc/skel/.gnome2/nautilus-


scripts/Image Editor/Scale Image/Scale Image'

`./nautilus-scripts/Image Editor/Image Converter' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter'

`./nautilus-scripts/Image Editor/Image Converter/pdf' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/pdf'

`./nautilus-scripts/Image Editor/Image Converter/tif' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/tif'

`./nautilus-scripts/Image Editor/Image Converter/bmp' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/bmp'

`./nautilus-scripts/Image Editor/Image Converter/jpg' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/jpg'

`./nautilus-scripts/Image Editor/Image Converter/png' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/png'

`./nautilus-scripts/Media' -> `/etc/skel/.gnome2/nautilus-scripts/Media'

`./nautilus-scripts/Media/Video Converter' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Video


Converter'

`./nautilus-scripts/Media/Naudilus' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Naudilus'

`./nautilus-scripts/Media/Audio Video Convert' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Audio


Video Convert'
19
`./nautilus-scripts/Media/Add to Playlist' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Add to
Playlist'

`./nautilus-scripts/Media/Extract Audio' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Extract Audio'

`./nautilus-scripts/Media/ConvertAudioFile' -> `/etc/skel/.gnome2/nautilus-


scripts/Media/ConvertAudioFile'

`./nautilus-scripts/Network' -> `/etc/skel/.gnome2/nautilus-scripts/Network'

`./nautilus-scripts/Network/Add Google DNS' -> `/etc/skel/.gnome2/nautilus-scripts/Network/Add


Google DNS'

`./nautilus-scripts/Network/Start WebServer Here' -> `/etc/skel/.gnome2/nautilus-


scripts/Network/Start WebServer Here'

`./nautilus-scripts/Network/Download Here' -> `/etc/skel/.gnome2/nautilus-


scripts/Network/Download Here'

`./nautilus-scripts/Network/Show IP Address' -> `/etc/skel/.gnome2/nautilus-scripts/Network/Show


IP Address'

`./nautilus-scripts/Network/Show External IP Address' -> `/etc/skel/.gnome2/nautilus-


scripts/Network/Show External IP Address'

`./nautilus-scripts/Root' -> `/etc/skel/.gnome2/nautilus-scripts/Root'

`./nautilus-scripts/Root/Rootilus' -> `/etc/skel/.gnome2/nautilus-scripts/Root/Rootilus'

`./nautilus-scripts/Root/RootOpenInGEdit' -> `/etc/skel/.gnome2/nautilus-


scripts/Root/RootOpenInGEdit'

`./nautilus-scripts/Root/RootTermInCurdir' -> `/etc/skel/.gnome2/nautilus-


scripts/Root/RootTermInCurdir'

`./nautilus-scripts/Utils' -> `/etc/skel/.gnome2/nautilus-scripts/Utils'

`./nautilus-scripts/Utils/Font Installer' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Font Installer'

`./nautilus-scripts/Utils/OpenInGEdit' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/OpenInGEdit'

`./nautilus-scripts/Utils/Record as Gif' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Record as Gif'

`./nautilus-scripts/Utils/TermInCurdir' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/TermInCurdir'

`./nautilus-scripts/Utils/SendShortcutTo' -> `/etc/skel/.gnome2/nautilus-


scripts/Utils/SendShortcutTo'

`./nautilus-scripts/Utils/InstallTheme' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/InstallTheme'

`./nautilus-scripts/Utils/Search Here' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Search Here'


20
`./nautilus-scripts/Utils/SetAsSplash' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/SetAsSplash'

`./nautilus-scripts/Utils/Open Terminal Here' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Open


Terminal Here'

`./nautilus-scripts/Utils/SetAsWallpaper' -> `/etc/skel/.gnome2/nautilus-


scripts/Utils/SetAsWallpaper'

`./nautilus-scripts/Utils/SendToMenu' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/SendToMenu'

`./nautilus-scripts/toadd.txt' -> `/etc/skel/.gnome2/nautilus-scripts/toadd.txt'

removed `/etc/skel/.bashrc'

`bashrc' -> `/etc/skel/.bashrc'

=========Copying Ebooks =======

Error setting attribute: Setting attribute metadata::custom-icon not supported

removed `/etc/skel/examples.desktop'

`/tmp/gedit-extra/compile' -> `/etc/skel/.gnome2/gedit/tools/compile'

cp: cannot stat `/gedit-extra/run': No such file or directory

root@mascarandes-desktop:/tmp# ./"Apply Theme Changes.sh"

cp: cannot stat `images/schoolos-wallpaper.png': No such file or directory

`./nautilus-scripts/Admin/WhichPKG (RPM)' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/WhichPKG (RPM)'

`./nautilus-scripts/Admin/WhichPKG (Portage)' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/WhichPKG (Portage)'

`./nautilus-scripts/Admin/Update Package List' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/Update Package List'

`./nautilus-scripts/Admin/Apt' -> `/etc/skel/.gnome2/nautilus-scripts/Admin/Apt'

`./nautilus-scripts/Admin/WhichPKG (DPKG)' -> `/etc/skel/.gnome2/nautilus-


scripts/Admin/WhichPKG (DPKG)'

`./nautilus-scripts/Admin/Apt Cache' -> `/etc/skel/.gnome2/nautilus-scripts/Admin/Apt Cache'

`./nautilus-scripts/Files/Send Shortcut To' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Send Shortcut


To'

`./nautilus-scripts/Files/Convert to Executable' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Convert


to Executable'
21
`./nautilus-scripts/Files/pdf/PDF Join' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/PDF Join'

`./nautilus-scripts/Files/pdf/PDF Shuffle' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/PDF


Shuffle'

`./nautilus-scripts/Files/pdf/Print' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/Print'

`./nautilus-scripts/Files/pdf/PDF info' -> `/etc/skel/.gnome2/nautilus-scripts/Files/pdf/PDF info'

`./nautilus-scripts/Files/Split File' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Split File'

`./nautilus-scripts/Files/Encrypt-Decrypt' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Encrypt-


Decrypt'

`./nautilus-scripts/Files/md5/Check md5' -> `/etc/skel/.gnome2/nautilus-scripts/Files/md5/Check


md5'

`./nautilus-scripts/Files/md5/Check_md5_old' -> `/etc/skel/.gnome2/nautilus-


scripts/Files/md5/Check_md5_old'

`./nautilus-scripts/Files/md5/Create md5' -> `/etc/skel/.gnome2/nautilus-scripts/Files/md5/Create


md5'

`./nautilus-scripts/Files/Shredder' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Shredder'

`./nautilus-scripts/Files/CopyTo' -> `/etc/skel/.gnome2/nautilus-scripts/Files/CopyTo'

`./nautilus-scripts/Files/MoveTo' -> `/etc/skel/.gnome2/nautilus-scripts/Files/MoveTo'

`./nautilus-scripts/Files/Remove temp Files' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Remove


temp Files'

`./nautilus-scripts/Files/File Type' -> `/etc/skel/.gnome2/nautilus-scripts/Files/File Type'

`./nautilus-scripts/Files/Create Patch' -> `/etc/skel/.gnome2/nautilus-scripts/Files/Create Patch'

`./nautilus-scripts/ISO Manager/ISO unMount' -> `/etc/skel/.gnome2/nautilus-scripts/ISO


Manager/ISO unMount'

`./nautilus-scripts/ISO Manager/Make ISO/ISO X' -> `/etc/skel/.gnome2/nautilus-scripts/ISO


Manager/Make ISO/ISO X'

`./nautilus-scripts/ISO Manager/ISO Mount' -> `/etc/skel/.gnome2/nautilus-scripts/ISO


Manager/ISO Mount'

`./nautilus-scripts/Image Editor/grigio' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/grigio'

`./nautilus-scripts/Image Editor/rotate +90' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/rotate +90'

`./nautilus-scripts/Image Editor/+contrast' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/


22
+contrast'

`./nautilus-scripts/Image Editor/flop' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/flop'

`./nautilus-scripts/Image Editor/-contrast' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/-


contrast'

`./nautilus-scripts/Image Editor/rotate -90' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/rotate


-90'

`./nautilus-scripts/Image Editor/flip' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/flip'

`./nautilus-scripts/Image Editor/gamma 1.4' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/gamma 1.4'

`./nautilus-scripts/Image Editor/trim' -> `/etc/skel/.gnome2/nautilus-scripts/Image Editor/trim'

`./nautilus-scripts/Image Editor/Scale Image/Scale Image To Sizes' -> `/etc/skel/.gnome2/nautilus-


scripts/Image Editor/Scale Image/Scale Image To Sizes'

`./nautilus-scripts/Image Editor/Scale Image/Scale Image' -> `/etc/skel/.gnome2/nautilus-


scripts/Image Editor/Scale Image/Scale Image'

`./nautilus-scripts/Image Editor/Image Converter/pdf' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/pdf'

`./nautilus-scripts/Image Editor/Image Converter/tif' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/tif'

`./nautilus-scripts/Image Editor/Image Converter/bmp' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/bmp'

`./nautilus-scripts/Image Editor/Image Converter/jpg' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/jpg'

`./nautilus-scripts/Image Editor/Image Converter/png' -> `/etc/skel/.gnome2/nautilus-scripts/Image


Editor/Image Converter/png'

`./nautilus-scripts/Media/Video Converter' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Video


Converter'

`./nautilus-scripts/Media/Naudilus' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Naudilus'

`./nautilus-scripts/Media/Audio Video Convert' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Audio


Video Convert'

`./nautilus-scripts/Media/Add to Playlist' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Add to


Playlist'

`./nautilus-scripts/Media/Extract Audio' -> `/etc/skel/.gnome2/nautilus-scripts/Media/Extract Audio'

`./nautilus-scripts/Media/ConvertAudioFile' -> `/etc/skel/.gnome2/nautilus-


23
scripts/Media/ConvertAudioFile'

`./nautilus-scripts/Network/Add Google DNS' -> `/etc/skel/.gnome2/nautilus-scripts/Network/Add


Google DNS'

`./nautilus-scripts/Network/Start WebServer Here' -> `/etc/skel/.gnome2/nautilus-


scripts/Network/Start WebServer Here'

`./nautilus-scripts/Network/Download Here' -> `/etc/skel/.gnome2/nautilus-


scripts/Network/Download Here'

`./nautilus-scripts/Network/Show IP Address' -> `/etc/skel/.gnome2/nautilus-scripts/Network/Show


IP Address'

`./nautilus-scripts/Network/Show External IP Address' -> `/etc/skel/.gnome2/nautilus-


scripts/Network/Show External IP Address'

`./nautilus-scripts/Root/Rootilus' -> `/etc/skel/.gnome2/nautilus-scripts/Root/Rootilus'

`./nautilus-scripts/Root/RootOpenInGEdit' -> `/etc/skel/.gnome2/nautilus-


scripts/Root/RootOpenInGEdit'

`./nautilus-scripts/Root/RootTermInCurdir' -> `/etc/skel/.gnome2/nautilus-


scripts/Root/RootTermInCurdir'

`./nautilus-scripts/Utils/Font Installer' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Font Installer'

`./nautilus-scripts/Utils/OpenInGEdit' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/OpenInGEdit'

`./nautilus-scripts/Utils/Record as Gif' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Record as Gif'

`./nautilus-scripts/Utils/TermInCurdir' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/TermInCurdir'

`./nautilus-scripts/Utils/SendShortcutTo' -> `/etc/skel/.gnome2/nautilus-


scripts/Utils/SendShortcutTo'

`./nautilus-scripts/Utils/InstallTheme' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/InstallTheme'

`./nautilus-scripts/Utils/Search Here' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Search Here'

`./nautilus-scripts/Utils/SetAsSplash' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/SetAsSplash'

`./nautilus-scripts/Utils/Open Terminal Here' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/Open


Terminal Here'

`./nautilus-scripts/Utils/SetAsWallpaper' -> `/etc/skel/.gnome2/nautilus-


scripts/Utils/SetAsWallpaper'

`./nautilus-scripts/Utils/SendToMenu' -> `/etc/skel/.gnome2/nautilus-scripts/Utils/SendToMenu'

`./nautilus-scripts/toadd.txt' -> `/etc/skel/.gnome2/nautilus-scripts/toadd.txt'

24
removed `/etc/skel/.bashrc'

`bashrc' -> `/etc/skel/.bashrc'

=========Copying Ebooks =======

ln: creating symbolic link `/etc/skel/Desktop/Ebooks': File exists

Error setting attribute: Setting attribute metadata::custom-icon not supported

rm: cannot remove `/etc/skel/examples.desktop': No such file or directory

`/tmp/gedit-extra/compile' -> `/etc/skel/.gnome2/gedit/tools/compile'

cp: cannot stat `/gedit-extra/run': No such file or directory

ln: creating symbolic link `/etc/skel/Pictures/backgrounds': File exists

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp#

root@mascarandes-desktop:/tmp# exit

exit

Unmounting directory /home/mascarandes/tmp/remaster-root/proc...

Unmounting directory /home/mascarandes/tmp/remaster-root/sys...

Unmounting directory /home/mascarandes/tmp/remaster-root/dev/pts...

Unmounting directory /home/mascarandes/tmp/remaster-root/var/run...

25
Saving apt cache

Cleaning up apt

Removing customize dir...

Cleaning up temporary directories...

Restoring /root directory...

Removing /home/username directory, if created...

Restoring resolv.conf...

[~/Desktop/Ubuntu]

$########## changes Splash Images of Live CD #########

[~/Desktop/Ubuntu]

[~/Desktop/Ubuntu]

$sudo cp images/splash.pcx ~/tmp/remaster-iso/isolinux/splash.pcx

[sudo] password for mascarandes:

[~/Desktop/Ubuntu]

$sudo uck-remaster-pack-rootfs

Updating files lists...

Packing SquashFS image...

Parallel mksquashfs: Using 2 processors

Creating 4.0 filesystem on /home/mascarandes/tmp/remaster-iso/casper/filesystem.squashfs, block


size 131072.

[===========================================================\] 96993/96993
100%

26
Exportable Squashfs 4.0 filesystem, data block size 131072

compressed data, compressed metadata, compressed fragments

duplicates are removed

Filesystem size 791314.71 Kbytes (772.77 Mbytes)

39.42% of uncompressed filesystem size (2007234.97 Kbytes)

Inode table size 1333699 bytes (1302.44 Kbytes)

25.53% of uncompressed inode table size (5223737 bytes)

Directory table size 1303490 bytes (1272.94 Kbytes)

40.64% of uncompressed directory table size (3207587 bytes)

Number of duplicate files found 9047

Number of inodes 134244

Number of files 91932

Number of fragments 6578

Number of symbolic links 26804

Number of device nodes 94

Number of fifo nodes 0

Number of socket nodes 1

Number of directories 15413

Number of ids (unique uids + gids) 30

Number of uids 10

root (0)

man (6)

daemon (1)

couchdb (106)

hplip (103)

mascarandes (1000)

27
avahi-autoipd (104

[~/Desktop/Ubuntu]

$sudo uck-remaster-pack-iso ECBlinux.iso

Preparing directory for new files

Updating md5sums...

~/tmp/remaster-iso ~/Desktop/Ubuntu

~/Desktop/Ubuntu

Packing ISO image...

ISO description set to: Remastered Ubuntu LiveCD

Size of boot image is 4 sectors -> No emulation

Total translation table size: 2048

Total rockridge attributes bytes: 23882

Total directory bytes: 110992

Path table size(bytes): 690

Max brk space used 52000

411501 extents written (803 MB)

28
HOW TO

Preparing a New Partition

In this article, the partition which will host the LINUX system is prepared. We will create the
partition itself, create a file system on it, and mount it.

Creating a New Partition


Like most other operating systems, Linux is usually installed on a dedicated partition. The
recommended approach to building an Linux system is to use an available empty partition or, if you
have enough unpartitioned space, to create one. A minimal system requires a partition of around 1.3
gigabytes (GB). This is enough to store all the source tarballs and compile the packages. However,
if the LINUX system is intended to be the primary Linux system, additional software will probably
be installed which will require additional space (2-3 GB). The LINUX system itself will not take up
this much room. A large portion of this requirement is to provide sufficient free temporary storage.
Compiling packages can require a lot of disk space which will be reclaimed after the package is
installed. Because there is not always enough Random Access Memory (RAM) available for
compilation processes, it is a good idea to use a small disk partition as swap space. This is used by
the kernel to store seldom-used data and leave more memory available for active processes. The
swap partition for an LINUX system can be the same as the one used by the host system, in which
case it is not necessary to create another one. Start a disk partitioning program such as cfdisk or
fdisk with a command line option naming the hard disk on which the new partition will be created
—for example /dev/hda for the primary Integrated Drive Electronics (IDE) disk. Create a Linux
native partition and a swap partition, if needed. Please refer to cfdisk(8) or fdisk(8) if you do not yet
know how to use the programs.Remember the designation of the new partition (e.g., hda5). This
book will refer to this as the LINUX partition. Also remember the designation of the swap partition.
These names will be needed later for the /etc/fstab file.

Other Partition Issues

Requests for advice on system partitioning are often posted on the LINUX mailing lists. This is a
highly subjective topic.The default size for most distributions is to use the entire drive with the
exception of one small swap partition. This is not optimal for LINUX for several reasons. It reduces
flexibility, makes sharing of data across multiple distributions or LINUX builds more difficult,
makes backups more time consuming, and can waste disk space through inefficient allocation of file
system structures.

The Root Partition

A root LINUX partition (not to be confused with the /root directory) of ten gigabytes is a good
compromise for most systems. It provides enough space to build LINUX and most of BLINUX,
but is small enough so that multiple partitions can be easily created for experimentation.

The Swap Partition

Most distributions automatically create a swap partition. Generally the recommneded size of the
swap partition is about twice the amount of physical RAM, however this is rarely needed. If disk
space is limited, hold the swap partition to two gigabytes and monitor the amount of disk swapping.
d. Generally you can tell if a system is swapping by just listening to disk activity and observing
how the system reacts to commands. The first reaction to swapping should be to check for an
unreasonable command such as trying to edit a five gigabyte file. If swapping becomes a normal
occurance, the best solution is to purchase more RAM for your system.
29
Convenience Partitions

There are several other partitions that are not required, but should be considered when designing a
disk layout, The following list is not comprehensive, but is meant as a guide.
• /boot – Highly recommended. Use this partition to store kernels and other booting information. To
minimize potential boot problems with larger disks, make this the first physical partition on your
first disk drive. A partition size of 100 megabytes is quite adequate.
• /home – Highly recommended. Share your home directory and user customization across multiple
distributions or LINUX builds. The size is generally fairly large and depends on available disk
space.
• /usr – A separate /usr partition is generally used if providing a server for a thin client or diskless
workstation. It is normally not needed for LINUX. A size of five gigabytes will handle most
installations.
• /opt – This directory is most useful for BLINUX where multiple installations of large packages
like Gnome or KDE can be installed without embedding the files in the /usr hierarchy. If used, five
to ten gigabytes is generally adequate.
• /tmp – A separate /tmp directory is rare, but useful if coufiguring a thin client. This partition, if
used, will usually not need to exceed a couple of gigabytes.
• /usr/src – This partition is very useful for providing a location to store BLINUX source files and
share them across

LINUX builds. It can also be used as a location for building BLINUX packages. A reasonably large
partition of 30-50 gigabytes allows plenty of room. Any separate partition that you want
automatically mounted upon boot needs to be specified in the /etc/fstab. Details about how to
specify partitions will be discussed in Section 8.2, “Creating the /etc/fstab File”.

Creating a File System on the Partition

Now that a blank partition has been set up, the file system can be created. The most widely-used
system in the Linux world is the second extended file system (ext2), but with newer high-capacity
hard disks, journaling file systems are becoming increasingly popular. The third extended filesystem
(ext3) is a widely used enhancement to ext2 which adds journalling capabilities and is compatible
with the E2fsprogs utilities. We will create an ext3 file system. Instructions for creating other file
systems can be found at http://www.linuxfromscratch.org/bLinux/view/svn/postLinux/
filesystems.html.

To create an ext3 file system on the LINUX partition, run the following:

mke2fs -jv /dev/<xxx>

Replace <xxx> with the name of the LINUX partition (hda5 in our previous example).

Note
Some host distributions use custom features in their filesystem creation tools (E2fsprogs). This can
cause problems when booting into your new LINUX in Article 9, as those features will not be
supported by the LINUX-installed E2fsprogs; you will get an error similar to “unsupported
filesystem features, upgrade your e2fsprogs”. To check if your host system uses custom
enhancements, run the following command:
debugfs -R feature /dev/<xxx>
If the output contains features other than has_journal, ext_attr, resize_inode, dir_index, filetype,
sparse_super, large_file or needs_recovery, then your host system may have custom enhancements.
30
In that case, to avoid later problems, you should compile the stock E2fsprogs package and use the
resulting binaries to re-create the filesystem on your LINUX partition:

cd /tmp

tar -xzvf /path/to/sources/e2fsprogs-1.41.10.tar.gz

cd e2fsprogs-1.41.10

mkdir -v build

cd build

../configure

make #note that we intentionally don't 'make install' here!

./misc/mke2fs -jv /dev/<xxx>

cd /tmp

rm -rfv e2fsprogs-1.41.10

If you are using an existing swap partition, there is no need to format it. If a new swap partition
was created. it will need to be initialized with this command:

mkswap /dev/<yyy>

Replace <yyy> with the name of the swap partition.

Mounting the New Partition

Now that a file system has been created, the partition needs to be made accessible. In order to do
this, the partition needs to be mounted at a chosen mount point. For the purposes of this book, it is
assumed that the file system is

mounted under /mnt/Linux, but the directory choice is up to you.

Choose a mount point and assign it to the LINUX environment variable by running:

export LINUX=/mnt/Linux

Next, create the mount point and mount the LINUX file system by running:

mkdir -pv $LINUX

mount -v -t ext3 /dev/<xxx> $LINUX

Replace <xxx> with the designation of the LINUX partition.

If using multiple partitions for LINUX (e.g., one for / and another for /usr), mount them using:

31
mkdir -pv $LINUX

mount -v -t ext3 /dev/<xxx> $LINUX

mkdir -v $LINUX/usr

mount -v -t ext3 /dev/<yyy> $LINUX/usr

Replace <xxx> and <yyy> with the appropriate partition names.

Ensure that this new partition is not mounted with permissions that are too restrictive (such as the
nosuid, nodev, or noatime options). Run the mount command without any parameters to see what
options are set for the mounted LINUX partition. If nosuid, nodev, and/or noatime are set, the
partition will need to be remounted.If you are using a swap partition, ensure that it is enabled using
the swapon command:

/sbin/swapon -v /dev/<zzz>

Replace <zzz> with the name of the swap partition.


Now that there is an established place to work, it is time to download the packages.

Packages and Patches

This article includes a list of packages that need to be downloaded in order to build a basic Linux
system. The listed version numbers correspond to versions of the software that are known to work,
and this book is based on their use. We highly recommend against using newer versions because the
build commands for one version may not work with a newer version. The newest package versions
may also have problems that require work-arounds. These work- arounds will be developed and
stabilized in the development version of the book. Download locations may not always be
accessible. If a download location has changed since this book was published, Google
(http://www.google.com/) provides a useful search engine for most packages.
packages.html#packages.

Downloaded packages and patches will need to be stored somewhere that is conveniently available
throughout the entire build. A working directory is also required to unpack the sources and build
them. $LINUX/sources can be used both as the place to store the tarballs and patches and as a
working directory. By using this directory, the required elements will be located on the LINUX
partition and will be available during all stages of the building process. To create this directory,
execute the following command, as user root, before starting the download session:

mkdir -v $LINUX/sources

Make this directory writable and sticky. “Sticky” means that even if multiple users have write
permission on a directory, only the owner of a file can delete the file within a sticky directory. The
following command will enable the write and sticky modes:

chmod -v a+wt $LINUX/sources

An easy way to download all of the packages and patches is by using wget-list as an input to wget.

All Packages
32
Download or otherwise obtain the following packages:

• Autoconf (2.65) - 1,301 KB:

Home page: http://www.gnu.org/software/autoconf/

Download: http://ftp.gnu.org/gnu/autoconf/autoconf-2.65.tar.bz2

MD5 sum: a6de1cc6434cd64038b0a0ae4e252b33

• Automake (1.11.1) - 1,042 KB:

Home page: http://www.gnu.org/software/automake/

Download: http://ftp.gnu.org/gnu/automake/automake-1.11.1.tar.bz2

MD5 sum: c2972c4d9b3e29c03d5f2af86249876f

• Bash (4.1) - 6,444 KB:

Home page: http://www.gnu.org/software/bash/

Download: http://ftp.gnu.org/gnu/bash/bash-4.1.tar.gz

MD5 sum: 9800d8724815fd84994d9be65ab5e7b8

• Binutils (2.20) - 17,096 KB:

Home page: http://sources.redhat.com/binutils/

Download: http://ftp.gnu.org/gnu/binutils/binutils-2.20.tar.bz2

MD5 sum: ee2d3e996e9a2d669808713360fa96f8

• Bison (2.4.1) - 1,433 KB:

Home page: http://www.gnu.org/software/bison/

Download: http://ftp.gnu.org/gnu/bison/bison-2.4.1.tar.bz2

MD5 sum: 84e80a2a192c1a4c02d43fbf2bcc4ca4

• Bzip2 (1.0.5) - 822 KB:

Home page: http://www.bzip.org/

Download: http://www.bzip.org/1.0.5/bzip2-1.0.5.tar.gz

MD5 sum: 3c15a0c8d1d3ee1c46a1634d00617b1a

• Coreutils (8.4) - 10,273 KB:


33
Home page: http://www.gnu.org/software/coreutils/

Download: http://ftp.gnu.org/gnu/coreutils/coreutils-8.4.tar.gz

MD5 sum: 56f549854d723d9dcebb77919019df55

• DejaGNU (1.4.4) - 1,055 KB:

Home page: http://www.gnu.org/software/dejagnu/

Download: http://ftp.gnu.org/gnu/dejagnu/dejagnu-1.4.4.tar.gz

MD5 sum: 053f18fd5d00873de365413cab17a666

• Diffutils (2.8.1) - 762 KB:

Home page: http://www.gnu.org/software/diffutils/

Download: http://ftp.gnu.org/gnu/diffutils/diffutils-2.8.1.tar.gz

MD5 sum: 71f9c5ae19b60608f6c7f162da86a428

• E2fsprogs (1.41.10) - 4,363 KB:

Home page: http://e2fsprogs.sourceforge.net/

Download: http://prdownloads.sourceforge.net/e2fsprogs/e2fsprogs-1.41.10.tar.gz

MD5 sum: f9c7bb5c036a119453ce02fa871038da

• Expect (5.43.0) - 513 KB:

Home page: http://expect.nist.gov/

Download: http://expect.nist.gov/src/expect-5.43.0.tar.gz

MD5 sum: 43e1dc0e0bc9492cf2e1a6f59f276bc3

• File (5.04) - 607 KB:

Home page: http://www.darwinsys.com/file/

Download: ftp://ftp.astron.com/pub/file/file-5.04.tar.gz

MD5 sum: accade81ff1cc774904b47c72c8aeea0

• Findutils (4.4.2) - 2,100 KB:

Home page: http://www.gnu.org/software/findutils/

Download: http://ftp.gnu.org/gnu/findutils/findutils-4.4.2.tar.gz
34
MD5 sum: 351cc4adb07d54877fa15f75fb77d39f

• Flex (2.5.35) - 1,227 KB:

Home page: http://flex.sourceforge.net

Download: http://prdownloads.sourceforge.net/flex/flex-2.5.35.tar.bz2

MD5 sum: 10714e50cea54dc7a227e3eddcd44d57

• Gawk (3.1.7) - 2,310 KB:

Home page: http://www.gnu.org/software/gawk/

Download: http://ftp.gnu.org/gnu/gawk/gawk-3.1.7.tar.bz2

MD5 sum: 674cc5875714315c490b26293d36dfcf

• GCC (4.4.3) - 61,470 KB:

Home page: http://gcc.gnu.org/

Download: http://ftp.gnu.org/gnu/gcc/gcc-4.4.3/gcc-4.4.3.tar.bz2

MD5 sum: fe1ca818fc6d2caeffc9051fe67ff103

• GDBM (1.8.3) - 223 KB:

Home page: http://www.gnu.org/software/gdbm/

Download: http://ftp.gnu.org/gnu/gdbm/gdbm-1.8.3.tar.gz

MD5 sum: 1d1b1d5c0245b1c00aff92da751e9aa1

• Gettext (0.17) - 11,368 KB:

Home page: http://www.gnu.org/software/gettext/

Download: http://ftp.gnu.org/gnu/gettext/gettext-0.17.tar.gz

MD5 sum: 58a2bc6d39c0ba57823034d55d65d606

• Glibc (2.11.1) - 15,302 KB:

Home page: http://www.gnu.org/software/libc/

Download: http://ftp.gnu.org/gnu/glibc/glibc-2.11.1.tar.bz2

MD5 sum: 6856d5d8b1239556687f0d1217f3f266

• GMP (5.0.0) - 1,907 KB:


35
Home page: http://www.gnu.org/software/gmp/

Download: http://ftp.gnu.org/gnu/gmp/gmp-5.0.0.tar.bz2

MD5 sum: 46fc3a85a3fecc98a4bbd498a83ee459

• Grep (2.5.4) - 706 KB:

Home page: http://www.gnu.org/software/grep/

Download: http://ftp.gnu.org/gnu/grep/grep-2.5.4.tar.bz2

MD5 sum: 5650ee2ae6ea4b39e9459d7d0585b315

• Groff (1.20.1) - 3,510 KB:

Home page: http://www.gnu.org/software/groff/

Download: http://ftp.gnu.org/gnu/groff/groff-1.20.1.tar.gz

MD5 sum: 48fa768dd6fdeb7968041dd5ae8e2b02

• GRUB (1.97.2) - 1,219 KB:

Home page: http://www.gnu.org/software/grub/

Download: ftp://alpha.gnu.org/gnu/grub/grub-1.97.2.tar.gz

MD5 sum: db4d23fb8897523a7e484e974ae3d1c9

• Gzip (1.4) - 886 KB:

Home page: http://www.gzip.org/

Download: http://ftp.gnu.org/gnu/gzip/gzip-1.4.tar.gz

MD5 sum: e381b8506210c794278f5527cba0e765

• Iana-Etc (2.30) - 201 KB:

Home page: http://sethwklein.net/iana-etc

Download: http://sethwklein.net/iana-etc-2.30.tar.bz2

MD5 sum: 3ba3afb1d1b261383d247f46cb135ee8

• Inetutils (1.7) - 1,861 KB:

Home page: http://www.gnu.org/software/inetutils/

36
Download: http://ftp.gnu.org/gnu/inetutils/inetutils-1.7.tar.gz

MD5 sum: a1d5a01b0ab8a7e596ac4cff0cce7129

• IPRoute2 (2.6.31) - 364 KB:

Home page: http://linux-net.osdl.org/index.php/Iproute2

Download: http://developer.osdl.org/dev/iproute2/download/iproute2-2.6.31.tar.bz2

MD5 sum: 230f35282a95451622f3e8394f9cd80a

• Kbd (1.15.1) - 1,081 KB:

Download: http://ftp.altlinux.com/pub/people/legion/kbd/kbd-1.15.1.tar.gz

MD5 sum: f997c490fe5ede839aacf31da6c4eb06

• Less (436) - 297 KB:

Home page: http://www.greenwoodsoftware.com/less/

Download: http://www.greenwoodsoftware.com/less/less-436.tar.gz

MD5 sum: 817bf051953ad2dea825a1cdf460caa4

• LINUX-Bootscripts (20100124) - 42 KB:

Download: http://www.linuxfromscratch.org/Linux/downloads/6.6/Linux-bootscripts-
20100124.tar.bz2

MD5 sum: 259968939ae12a0a791acbdc07f5bc52

• Libtool (2.2.6b) - 2,292 KB:

Home page: http://www.gnu.org/software/libtool/

Download: http://ftp.gnu.org/gnu/libtool/libtool-2.2.6b.tar.gz

MD5 sum: 07da460450490148c6d2df0f21481a25

• Linux (2.6.32.8) - 62,864 KB:

Home page: http://www.kernel.org/

Download: http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.32.8.tar.bz2

MD5 sum: 82023ede52f067fcc55c5e70b02e48ae

• M4 (1.4.13) - 985 KB:

Home page: http://www.gnu.org/software/m4/


37
Download: http://ftp.gnu.org/gnu/m4/m4-1.4.13.tar.bz2

MD5 sum: 28f9ccd3ac4da45409251008b911d677

• Make (3.81) - 1,125 KB:

Home page: http://www.gnu.org/software/make/

Download: http://ftp.gnu.org/gnu/make/make-3.81.tar.bz2

MD5 sum: 354853e0b2da90c527e35aabb8d6f1e6

• Man-DB (2.5.6) - 2,045 KB:

Home page: http://www.nongnu.org/man-db/

Download: http://download.savannah.gnu.org/releases/man-db/man-db-2.5.6.tar.gz

MD5 sum: 69585b19c5600a863f1a0d7b7f283975

• Man-pages (3.23) - 1,066 KB:

Home page: http://www.kernel.org/doc/man-pages/

Download: http://www.kernel.org/pub/linux/docs/manpages/Archive/man-pages-3.23.tar.bz2

MD5 sum: 153704ffa27160d708e0e8c56c1da58f

• Module-Init-Tools (3.11.1) - 196 KB:

Home page: http://www.kerneltools.org/KernelTools.org

Download: http://www.kernel.org/pub/linux/utils/kernel/module-init-tools/module-init-tools-
3.11.1.tar.bz2

MD5 sum: 28dfcb9e24cdbeb12b99ac1eb8af7dea

• MPFR (2.4.2) - 1,053 KB:

Home page: http://www.mpfr.org/

Download: http://www.mpfr.org/mpfr-2.4.2/mpfr-2.4.2.tar.bz2

MD5 sum: 89e59fe665e2b3ad44a6789f40b059a0

• Ncurses (5.7) - 2,388 KB:

Home page: http://www.gnu.org/software/ncurses/

Download: ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.7.tar.gz

38
MD5 sum: cce05daf61a64501ef6cd8da1f727ec6

• Patch (2.6.1) - 248 KB:

Home page: http://directory.fsf.org/project/patch/

Download: http://ftp.gnu.org/gnu/patch/patch-2.6.1.tar.bz2

MD5 sum: 0818d1763ae0c4281bcdc63cdac0b2c0

• Perl (5.10.1) - 11,336 KB:

Home page: http://cpan.org/

Download: http://cpan.org/src/5.0/perl-5.10.1.tar.bz2

MD5 sum: 82400c6d34f7b7b43d0196c76cd2bbb1

• Pkg-config (0.23) - 1,009 KB:

Home page: http://pkg-config.freedesktop.org/

Download: http://pkgconfig.freedesktop.org/releases/pkg-config-0.23.tar.gz

MD5 sum: d922a88782b64441d06547632fd85744

• Procps (3.2.8) - 279 KB:

Home page: http://procps.sourceforge.net/

Download: http://procps.sourceforge.net/procps-3.2.8.tar.gz

MD5 sum: 9532714b6846013ca9898984ba4cd7e0

• Psmisc (22.10) - 307 KB:

Home page: http://psmisc.sourceforge.net/

Download: http://prdownloads.sourceforge.net/psmisc/psmisc-22.10.tar.gz

MD5 sum: e881383e7f399121cd0ce744f97d91a5

• Readline (6.1) - 2,209 KB:

Home page: http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html

Download: http://ftp.gnu.org/gnu/readline/readline-6.1.tar.gz

MD5 sum: fc2f7e714fe792db1ce6ddc4c9fb4ef3

• Sed (4.2.1) - 878 KB:

39
Home page: http://www.gnu.org/software/sed/

Download: http://ftp.gnu.org/gnu/sed/sed-4.2.1.tar.bz2

MD5 sum: 7d310fbd76e01a01115075c1fd3f455a

• Shadow (4.1.4.2) - 1,748 KB:

Home page: http://pkg-shadow.alioth.debian.org/

Download: ftp://pkg-shadow.alioth.debian.org/pub/pkg-shadow/shadow-4.1.4.2.tar.bz2

MD5 sum: d593a9cab93c48ee0a6ba056db8c1997

• Sysklogd (1.5) - 85 KB:

Home page: http://www.infodrom.org/projects/sysklogd/

Download: http://www.infodrom.org/projects/sysklogd/download/sysklogd-1.5.tar.gz

MD5 sum: e053094e8103165f98ddafe828f6ae4b

• Sysvinit (2.86) - 97 KB:

Download: ftp://ftp.cistron.nl/pub/people/miquels/sysvinit/sysvinit-2.86.tar.gz

MD5 sum: 7d5d61c026122ab791ac04c8a84db967

• Tar (1.22) - 2,046 KB:

Home page: http://www.gnu.org/software/tar/

Download: http://ftp.gnu.org/gnu/tar/tar-1.22.tar.bz2

MD5 sum: 07fa517027f426bb80f5f5ff91b63585

• Tcl (8.5.8) - 4,348 KB:

Home page: http://tcl.sourceforge.net/

Download: http://prdownloads.sourceforge.net/tcl/tcl8.5.8-src.tar.gz

MD5 sum: 7f123e53b3daaaba2478d3af5a0752e3

• Texinfo (4.13a) - 2,687 KB:

Home page: http://www.gnu.org/software/texinfo/

Download: http://ftp.gnu.org/gnu/texinfo/texinfo-4.13a.tar.gz

MD5 sum: 71ba711519209b5fb583fed2b3d86fcb

40
• Udev (151) - 498 KB:

Home page: http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev.html

Download: http://www.kernel.org/pub/linux/utils/kernel/hotplug/udev-151.tar.bz2

MD5 sum: aeae0e6273dcbec246c3c1b9868ebed1

• Udev Configuration Tarball - 7 KB:

Download: http://www.linuxfromscratch.org/Linux/downloads/6.6/udev-config-20100128.tar.bz2

MD5 sum: 523e17e737ca91c2c11a3fa76d887247

• Util-linux-ng (2.17) - 3,680 KB:

Home page: http://userweb.kernel.org/~kzak/util-linux-ng/

Download: http://www.kernel.org/pub/linux/utils/util-linux-ng/v2.17/util-linux-ng-2.17.tar.bz2

MD5 sum: 11cc8a0138019e7060dd275d47dbc096

• Vim (7.2) - 7,035 KB:

Home page: http://www.vim.org

Download: ftp://ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2

MD5 sum: f0901284b338e448bfd79ccca0041254

• Vim (7.2) language files (optional) - 1,365 KB:

Home page: http://www.vim.org

Download: ftp://ftp.vim.org/pub/vim/extra/vim-7.2-lang.tar.gz

MD5 sum: d8884786979e0e520c112faf2e176f05

• Zlib (1.2.3) - 415 KB:

Home page: http://www.zlib.net/

Download: http://www.zlib.net/zlib-1.2.3.tar.bz2

MD5 sum: dee233bf288ee795ac96a98cc2e369b6

Total size of these packages: about 260 MB

Needed Patches

In addition to the packages, several patches are also required. These patches correct any mistakes in
the packages that should be fixed by the maintainer. The patches also make small modifications to
41
make the packages easier to work with. The following patches will be needed to build an LINUX
system:

• Bzip2 Documentation Patch - 1.6 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/bzip2-1.0.5-install_docs-1.patch

MD5 sum: 6a5ac7e89b791aae556de0f745916f7f

• Coreutils Internationalization Fixes Patch - 118 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/coreutils-8.4-i18n-1.patch

MD5 sum: 13699e7e1c2ab2165dbe9f35c047e804

• Coreutils Uname Patch - 4.4 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/coreutils-8.4-uname-1.patch

MD5 sum: 510a730e7bc8fd92daaf47aad4dc1200

• Diffutils Internationalization Fixes Patch - 18 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/diffutils-2.8.1-i18n-1.patch

MD5 sum: c8d481223db274a33b121fb8c25af9f7

• Expect Spawn Patch - 6.8 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/expect-5.43.0-spawn-1.patch

MD5 sum: ef6d0d0221c571fb420afb7033b3bbba

• Expect Tcl Patch - 4.1 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/expect-5.43.0-tcl_8.5.5_fix-1.patch

MD5 sum: 6904a384960ce0e8f0d0b32f7903d7a1

• Flex GCC-4.4.x Patch - 1 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/flex-2.5.35-gcc44-1.patch

MD5 sum: ad9109820534278c6dd0898178c0788f

• GCC Startfiles Fix Patch - 1.5 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/gcc-4.4.3-startfiles_fix-1.patch

MD5 sum: 799ef1971350d2e3c794f2123f247cc6

• Gettext Upstream Fix Patch - 2.9 KB:


42
Download: http://www.linuxfromscratch.org/patches/Linux/6.6/gettext-0.17-upstream_fixes-2.patch

MD5 sum: ae64b6399ed6536e148e8386bcb91689

• Grep Debian Patch - 27 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/grep-2.5.4-debian_fixes-1.patch

MD5 sum: 337d017202d7e3b08d428a89da3ee572

• Kbd Backspace/Delete Fix Patch - 12 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/kbd-1.15.1-backspace-1.patch

MD5 sum: f75cca16a38da6caa7d52151f7136895

• Make Upstream Fixes Patch - 5 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/make-3.81-upstream_fixes-1.patch

MD5 sum: 8b1e478d8e733dc2d72e31bc7af1defa

• Patch Testsuite Fix Patch - 1 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/patch-2.6.1-test_fix-1.patch

MD5 sum: c51e1a95bfc5310635d05081472c3534

• Perl Libc Patch - 1 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/perl-5.10.1-libc-1.patch

MD5 sum: 800dfd3c9618731ee5cf57f77a7942b4

• Perl UTF8 Patch - 8 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/perl-5.10.1-utf8-1.patch

MD5 sum: f0c8a66598708bd7def8e85eed82bb95

• Procps Watch Patch - 3.5 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/procps-3.2.8-watch_unicode-
1.patch

MD5 sum: cd1a757e532d93662a7ed71da80e6b58

• Vim Fixes Patch - 826 KB:

Download: http://www.linuxfromscratch.org/patches/Linux/6.6/vim-7.2-fixes-5.patch

43
MD5 sum: 3af30a47fbf94d141c4317bf87d28e25

Total size of these patches: about 1,041.8 KB

44

You might also like