On 02/08/2016 04:39 AM, Nio Wiklund wrote: > > Hi again everybody, > > I forgot to mention that there is a special procedure to install mkusb > to debian via the unstable ppa, described at > > https://help.ubuntu.com/community/mkusb/install-to-debian > > and modified (mkusb/ppa-->mkusb/unstable) > > In a terminal window or text screen, run a simple text editor for example > > sudo nano /etc/apt/sources.list > > and add the line > > deb http://ppa.launchpad.net/mkusb/unstable/ubuntu trusty main > > Save the file. > > Then make the system aware of the PPA (update) and install mkusb > > sudo apt-get update > sudo apt-get install mkusb > > There might be complaints about security, but should work anyway (and > when the stable ppa will be updated, this is not an issue). > > Best regards > Nio Hey there is also another way to do this. Here is from my torios-jessie-x86.sh
PPArepos=(numix torios-dev/torios-core mkusb/ppa) for i in "${PPArepos[@]}" do sudo add-apt-repository -y "ppa:$i" && echolog "added ppa:$i" done for i in /etc/apt/sources.list.d/** do if [ -f "$i" ] then sudo sed -i "s#$RELEASE#trusty#g" "$i" && echolog "$(cat $i)" else echolog "$i doesn't exist :(" fi done Basically you change the jessie line in the mkusb sources list to trusty -- Regards -- Mailing list: https://launchpad.net/~torios-dev Post to : torios-dev@lists.launchpad.net Unsubscribe : https://launchpad.net/~torios-dev More help : https://help.launchpad.net/ListHelp