Dear Wiki user, You have subscribed to a wiki page or wiki category on "Debian Wiki" for change notification.
The "DebianMed/HowToGet" page has been changed by SteffenMoeller: https://wiki.debian.org/DebianMed/HowToGet?action=diff&rev1=27&rev2=28 Comment: Smoothing user experience by eliminating some sudo probs and gpg keyserver unset Now I can contact the maintainer of the package (as listed in the debian/control file or revealed by dpkg -s etc.) directly, copying the message to the [[http://lists.debian.org/debian-med/|mailing list]]. If I explain my changes clearly the maintainer will see that they are correct and a push the changes through to Debian. These can go into Debian Sid immediately filter through to Debian Testing and the Ubuntu development release in short order. == Q. How can I install packages from Bio-Linux PPA to a default Ubuntu trusty system? == - * Create a file /etc/apt/sources.list.d/20-bio-linux-ppa.list with the following content + * Create a file /etc/apt/sources.list.d/20-bio-linux-ppa.list to point to a repository of Bio-Linux that uses as much of the libraries in trusty as possible {{{ - deb http://ppa.launchpad.net/nebc/bio-linux/ubuntu/ trusty main + echo deb http://ppa.launchpad.net/nebc/bio-linux/ubuntu/ trusty main |sudo tee /etc/apt/sources.list.d/20-bio-linux-ppa.list }}} * Import the signing key of "Launchpad PPA for NEBC Team" via {{{ - gpg --recv-keys 759A8E0E5BA15160 + gpg --keyserver pgpkeys.mit.edu --recv-keys 759A8E0E5BA15160 - gpg -a --export 759A8E0E5BA15160 | sudo apt-key add - + gpg --keyserver pgpkeys.mit.edu -a --export 759A8E0E5BA15160 | sudo apt-key add - }}} == Q. How can I install packages from Debian Med PPA to a default Ubuntu trusty system? == - * Create a file /etc/apt/sources.list.d/20-debian-med-ppa.list with the following content + * Create a file /etc/apt/sources.list.d/20-debian-med-ppa.list to point to a community-run repository of Ubuntu that uses as much of the libraries in trusty as possible {{{ + cat <<EOF |sudo tee /etc/apt/sources.list.d/20-debian-med-ppa.list deb http://ppa.launchpad.net/debian-med/ppa/ubuntu trusty main deb-src http://ppa.launchpad.net/debian-med/ppa/ubuntu trusty main + EOF }}} * Import the signing key of "Launchpad PPA for Debian Med" via {{{ - gpg --recv-keys 5F8D4E5375DD1BE7 + gpg --keyserver pgpkeys.mit.edu --recv-keys 5F8D4E5375DD1BE7 - gpg -a --export 5F8D4E5375DD1BE7 | sudo apt-key add - + gpg --keyserver pgpkeys.mit.edu -a --export 5F8D4E5375DD1BE7 | sudo apt-key add - + }}} + * Update the Debian package index of your machine, so the packages are found: + {{{ + apt-get update }}} * Here you can find a list of [[https://launchpad.net/~debian-med/+archive/ubuntu/ppa/+packages?field.series_filter=trusty|packages backported to trusty]] == Q. How can I upload packages to Debian Med PPA? == _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
