saanırım aşagıda anlatıyor bişeyler.



----------------------------------------------------------------------------
AFTER BOOTING BY USING THE LATEST BYZANTINE OS BUILDSYSTEM, CREATE A
DIRECTORY TO MOUNT AN EXISTING HDD PARTITION:
mkdir /lala
mount /dev/[your partition] /lala
DOWNLOAD THE LATEST BYZANTINE OS NIGHTLY CVS TARBALL AND UNTAR IT
(http://cvs.sourceforge.net/cvstarbal...root.tar.bz2):
cd /lala
tar xjvf [your download location]/byzgl-cvsroot.tar.bz2
CREATE A NEW BYZANTINE OS ISO:
cd /lala/byzgl
make distclean
make -f Makefile.kernel
make
----------------------------------------------------------------------------
IF YOU WANT TO CUSTOMISE BYZANTINE OS ISO, EDIT THE CONFIGURATION FILES
'/lala/byzgl/Config/Config.*' (FOR THE DEFAULT CONFIGURATION LAYER).
YOU CAN CHANGE THE CONFIGURATION LAYER BY EDITING THE '/lala/byzgl/config_layer'
FILE. THE DEFAULT CONFIGURATION LAYER IS BYZANTINE OS ISO.
EVERY CONFIGURATION LAYER HAS HIS OWN CONFIG DIRECTORY (Config.xxx FOR THE
xxx CONFIGURATION LAYER) WHICH CONTAINS ONLY THE CONFIG FILES WHICH ARE THE
DEVIATIONS FROM THE DEFAULT CONFIGURATION LAYER.
THE SCRIPT FILES WHICH ARE RESPONSIBLE FOR CONFIGURING THE SYSTEM ACCORDING
THE SELECTED CONFIGURATION LAYER ARE:
/lala/byzgl/scripts/config_cat.sh
/lala/byzgl/scripts/config_cp.sh
/lala/byzgl/scripts/config_exec.sh
/lala/byzgl/scripts/config_update.sh
FOR EXAMPLE, THE 'config_cat.sh' LOOKS LIKE THIS:
#!/bin/sh
TOPDIR=`dirname $0`/..
CONFIGDIR=`grep "^config_layer=" $TOPDIR/config_layer | cut -d= -f 2 | head -1`
[ "$CONFIGDIR" = "" ] && CONFIGDIR=Config
if [ -f $TOPDIR/$CONFIGDIR/$1 ]; then
cat $TOPDIR/$CONFIGDIR/$1
else
cat $TOPDIR/Config/$1
fi
----------------------------------------------------------------------------
> LIST OF 'Config.*' FILES AND DESCRIPTION
1) Config.Bookmarks : the mozilla bookmarks
2) Config.Busybox : the build options for busybox non static
version
DO NOT EDIT THIS FILE BY HAND, RUN INSTEAD
'make -f Makefile.busybox'
[buildsystem only]
3) Config.Busybox-static: the build options for busybox static version
DO NOT EDIT THIS FILE BY HAND, RUN INSTEAD
'make -f Makefile.busybox-static'
[buildsystem only]
4) Config.CFLAGS : compile options used while compiling mozilla
and all the other packages
[buildsystem only]
5) Config.Clock : set UTC=yes if your clock is set
to UTC (GMT)
6) Config.directfbrc : the DirectFB configuration files
(usefull for left-handlers)
7) Config.DropIns : the ByzantineOS DropIns configuration
file (useful if you want to add more DropIns to
the system or install ByzantineOS on a HDD
partition or CF)
8) Config.fb_modes : sample video mode (used by DirectFB
non VESA2 modes)
9) Config.fstab : the /etc/fstab file
10) Config.gconv : glibc gconv installation files (if you
need more character encodings then you
must edit this file)
11) Config.hosts : the /etc/hosts file
12) Config.inittab : the /etc/inittab file
13) Config.iPilot : the iPilot startup page (if you need to
change the startup page; defualt is the
application manager:
"chrome://applications/content/applications.xul".
You can use any HTTP URL for this.)
14) Config.Linux : the Linux .config file
DO NOT EDIT THIS FILE BY HAND, RUN INSTEAD
'make -f Makefile.kernel'
[buildsystem only]
15) Config.Locale : decide which locale (based on your
location and language and which character
set you want to use)
16) Config.Mozilla : default properties for mozilla (useful
maybe to predefine a proxy server)
17) Config.Mozilla-panels: mozilla sidebar panels RDF file
18) Config.MPlayer : command line options for MPlayer (you
may want to change the -slang value)
19) Config.Network : the /etc/sysconfig/network file (network
settings)
20) Config.Timezone : set TX=, where is
a value suitable for the TZ environment
variable
21) Config.Xkbd : X Windows keyboard configuration (you may
want to change the default keyboard layout;
default is the first entry in the
/etc/ipilot.d/xkbd.xml file)
================================================== ==========================
We hope you will have a great time working on your own ByzantineOS!
the ByzantineOS team.
================================================== ==========================
__________________