First off...hello to everyone, this is my first post on this site. I used to run Windows and used BartPE to build my XPE LiveCD's but I'm sick of Windows and decided to finally switch to Linux...so I'm pretty much a total newb

I am trying to use the scripts from http://www.linux-live.org/ to build a LiveCD with Kubuntu but I'm having a problem.
1. Is there a step-by-step "how to" for these scripts?
2. Are these script the 'best' method to create a LiveCD with Kubuntu?
My issue:
3. I can't figure out how to install the kernel from the linux-live site, I can't get the file "doinst.sh" to run. I tried using these three commands from root terminal:
- Code: Select all
sh ./doinst.sh
- Code: Select all
bash ./doinst.sh
- Code: Select all
bash doinst.sh
When I run doinst.sh I with these commands I get the following errors:
------
- Code: Select all
root@Me:/home/user/Desktop/linux-kernal/install# sh ./doinst.sh
cd: 1: can't cd to lib/modules/2.6.20
cd: 2: can't cd to lib/modules/2.6.20
cd: 3: can't cd to lib/modules/2.6.20
cd: 4: can't cd to lib/modules/2.6.20
------
root@Me:/home/user/Desktop/linux-kernal/install# bash ./doinst.sh
./doinst.sh: line 1: cd: lib/modules/2.6.20: No such file or directory
./doinst.sh: line 2: cd: lib/modules/2.6.20: No such file or directory
./doinst.sh: line 3: cd: lib/modules/2.6.20: No such file or directory
./doinst.sh: line 4: cd: lib/modules/2.6.20: No such file or directory
------
root@Me:/home/user/Desktop/linux-kernal/install# bash doinst.sh
doinst.sh: line 1: cd: lib/modules/2.6.20: No such file or directory
doinst.sh: line 2: cd: lib/modules/2.6.20: No such file or directory
doinst.sh: line 3: cd: lib/modules/2.6.20: No such file or directory
doinst.sh: line 4: cd: lib/modules/2.6.20: No such file or directory
------
Anyone know what I'm doing wrong?
THanks you