Recently,I want make a Ubuntu live CD. However I don't know how to install novo-builder. The document is Install_Novo_Builder.bash. Please tell me how to install novo-builder using bash.
Asked
Active
Viewed 2,272 times
1 Answers
0
Install_Novo_Builder.bash is the filename of the script you need to execute. So make the file executable and execute it.
cd ~/Downloads
tar xvf Install_Novo_Builder.tar.gz
chmod 775 Install_Novo_Builder.bash
./Install_Novo_Builder.bash
- the tar will extract the
Install_Novo_Builder.bashfile.
By the way... the script executes a normal "get key, add PPA, update and install package":
#!/bin/bash
if [ "$UID" -ne "0" ]
then
gksudo -k -u root bash $0
fi
if [ "$UID" -ne "0" ]
then
exit
fi
wget -O - http://www.cyvoc.net/novo-repo/Cyvoc.key | apt-key add -
echo deb http://www.cyvoc.net/novo-repo stable main non-free > /etc/apt/sources.list.d/cyvoc.list
apt-get update
apt-get install novo-builder novo-preset-lastos
so if you want to do this yourself execute the 4 lines from wget to the bottom.
Rinzwind
- 309,379