最近想做一个Ubuntu Live CD,但是不知道怎么安装novo-builder,文件是Install_Novo_Builder.bash,请教一下怎么用bash安装novo-builder。
答案1
Install_Novo_Builder.bash
是您需要执行的脚本的文件名。因此,使文件可执行并执行它。
cd ~/Downloads
tar xvf Install_Novo_Builder.tar.gz
chmod 775 Install_Novo_Builder.bash
./Install_Novo_Builder.bash
- tar 将提取该
Install_Novo_Builder.bash
文件。
顺便说一下...该脚本执行正常的“获取密钥、添加 PPA、更新和安装包”:
#!/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
因此,如果您想自己执行此操作,请执行从上到下wget
的 4 行。