add-apt-repository

2016-03-25 Thread Michael
does 'add-apt-repository ' work like 'apt-get install ' where you can just list the repositories after one ' add-apt-repository? 'add-apt-repository' -- :-)~MIKE~(-: --- PLUG-discuss mailing list - PLUG-disc

Re: add-apt-repository

2016-03-25 Thread Brian Cluff
add-apt-repository only takes a single repository at a time. Brian On 03/25/2016 06:10 AM, Michael wrote: does 'add-apt-repository ' work like 'apt-get install ' where you can just list the repositories after one ' add-apt-repository? 'add-a

Re: add-apt-repository

2016-03-25 Thread Michael
bummer. thanks for the news! On Fri, Mar 25, 2016 at 1:01 PM, Brian Cluff wrote: > add-apt-repository only takes a single repository at a time. > > Brian > > On 03/25/2016 06:10 AM, Michael wrote: > > does 'add-apt-repository ' work like 'apt-get ins

Re: add-apt-repository

2016-03-25 Thread Rusty Carruth
On 03/25/2016 01:30 PM, Carruth, Rusty wrote: for rep in < whatever3> ; do add-apt-repository $rep ; done There. A command that will take a list of repos. And if you did that a lot, make it an alias or a function: function addrepos() { for rep in $* ; do add-apt-repositor

Re: add-apt-repository

2016-03-25 Thread Michael
not quite: sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds ppa:mc3man/trusty-media ppa:nilarimogard/webupd8 ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do add-apt-repository $rep ; done bash: syntax error near unexpected token `do' On Fri, Mar 25, 2016 at 9:57 PM,

Re: add-apt-repository

2016-03-26 Thread Brien Dieterle
a:nilarimogard/webupd8 > ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do > add-apt-repository $rep ; done > bash: syntax error near unexpected token `do' > > > On Fri, Mar 25, 2016 at 9:57 PM, Rusty Carruth > wrote: > >> >> >> On 03/25/2016

Re: add-apt-repository

2016-03-26 Thread Michael
6 8:00 PM, "Michael" wrote: > >> not quite: >> >> sudo for rep in ppa:dhor/myway ppa:hugin/hugin-builds >> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8 >> ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do >> add-apt-repository $rep ; done &g

Re: add-apt-repository

2016-03-26 Thread Michael
out: $ for rep in ppa:dhor/myway ppa:hugin/hugin-builds ppa:mc3man/trusty-media ppa:nilarimogard/webupd8 ppa:otto-kesselgulasch/gimp ppa:yannubuntu/boot-repair; do sudo add-apt-repository $rep\r ; done [sudo] password for bmike1: 'This PPA does not support trusty' Cannot add PPA: &#

Re: add-apt-repository

2016-03-26 Thread Brien Dieterle
n the command. After running the command it spat out: > > $ for rep in ppa:dhor/myway ppa:hugin/hugin-builds ppa:mc3man/trusty-media > ppa:nilarimogard/webupd8 ppa:otto-kesselgulasch/gimp > ppa:yannubuntu/boot-repair; do sudo add-apt-repository $rep\r ; done > [sudo] password for bmike1

Re: add-apt-repository

2016-03-26 Thread Michael
that to do it I just need to put a '\r'. Cool? I thought >> so until I ran the command. After running the command it spat out: >> >> $ for rep in ppa:dhor/myway ppa:hugin/hugin-builds >> ppa:mc3man/trusty-media ppa:nilarimogard/webupd8 >> ppa:otto-kessel

Re: add-apt-repository

2016-03-26 Thread Brien Dieterle
Oh is it asking you to confirm adding the ppa and hitting enter is like yes? If so try adding a -y http://manpages.ubuntu.com/manpages/wily/man1/add-apt-repository.1.html You could add -r to remove them and try again. On Mar 26, 2016 9:14 PM, "Michael" wrote: > no they all

Re: add-apt-repository

2016-03-26 Thread Michael
is like > yes? If so try adding a -y > http://manpages.ubuntu.com/manpages/wily/man1/add-apt-repository.1.html > > You could add -r to remove them and try again. > On Mar 26, 2016 9:14 PM, "Michael" wrote: > >> no they all returned the same error. I just didn