Como instalar o novo-builder?

1

Recentemente, quero fazer um live CD do Ubuntu. No entanto, não sei como instalar o novo-builder. O documento é Install_Novo_Builder.bash. Como instalar o novo-builder por .bash?

    
por CorenX 16.03.2015 / 15:36

1 resposta

0

Install_Novo_Builder.bash é o nome do arquivo do script que você precisa executar. Então torne o arquivo executável e execute-o.

cd ~/Downloads
tar xvf Install_Novo_Builder.tar.gz 
chmod 775 Install_Novo_Builder.bash
./Install_Novo_Builder.bash
  • o tar extrairá o arquivo Install_Novo_Builder.bash .

A propósito ... o script executa uma "chave get normal, adicione PPA, atualize e instale o pacote":

#!/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

então, se você quiser fazer isso, execute as 4 linhas de wget na parte inferior.

    
por Rinzwind 16.03.2015 / 15:41