|
Ubuntu/Debian packagesPreparationIn order to install Disko on Debian based distributions you have to go through the following steps. Adding the Disko repository for your Ubuntu distributionIn order to access the latest disko packages, you have to add following line the sources.list. deb /repository/ubuntu/ maverick main It can be done by modifying the /etc/apt/sources.list directly with your favorite editor or using following command. sudo sh -c 'echo "\ndeb /repository/ubuntu/ maverick main" \ >> /etc/apt/sources.list' But it might be more convenient for you if you create a new file in /etc/apt/sources.list.d/ sudo sh -c 'echo -e "deb /repository/ubuntu/ maverick main" \ > /etc/apt/sources.list.d/disko.list' Adding the disko repository for your Debian distributionIn order to access the latest disko packages, you have to add following line the sources.list. deb /repository/debian/ squeeze main It can be done by modifying the /etc/apt/sources.list directly with your favorite editor or using following command. sudo sh -c 'echo "\ndeb /repository/debian/ squeeze main" \ >> /etc/apt/sources.list' But it might be more convenient for you if you create a new file in /etc/apt/sources.list.d/ sudo sh -c 'echo -e "deb /repository/debian/ squeeze main" \ > /etc/apt/sources.list.d/disko.list' Adding trusted key for Debian and UbuntuTo authenticate the disko packages you have to add the public key to apt. wget -qO- /disko.pkey | sudo apt-key add - Refreshing apt cache for Debian and Ubuntusudo apt-get update Installationsudo apt-get install disko-dev You might want to install the git version which is built regularly. sudo apt-get install disko-git-dev |